@vkontakte/videoplayer-core 2.0.131-dev.20b944d3.0 → 2.0.131-dev.45e99145.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.
- package/es2015.cjs.js +17 -66
- package/es2015.esm.js +17 -66
- package/es2018.cjs.js +17 -66
- package/es2018.esm.js +17 -66
- package/es2024.cjs.js +17 -66
- package/es2024.esm.js +17 -66
- package/esnext.cjs.js +17 -66
- package/esnext.esm.js +17 -66
- package/evergreen.esm.js +15 -64
- package/package.json +2 -2
- package/types/player/Player.d.ts +2 -9
- package/types/player/types.d.ts +0 -5
- package/types/providers/ChromecastProvider/ChromecastInitializer/index.d.ts +1 -5
- package/types/providers/ChromecastProvider/index.d.ts +0 -2
- package/types/providers/DashLiveProvider/DashLiveProvider.d.ts +0 -1
- package/types/providers/DashLiveProvider/utils/FilesFetcher.d.ts +1 -2
- package/types/providers/DashLiveProvider/utils/LiveDashPlayer.d.ts +0 -1
- package/types/providers/DashLiveProvider/utils/ThroughputEstimator.d.ts +0 -4
- package/types/providers/DashProvider/baseDashProvider.d.ts +2 -2
- package/types/providers/DashProvider/lib/buffer.d.ts +3 -0
- package/types/providers/DashProvider/lib/fetcher.d.ts +4 -5
- package/types/providers/DashProvider/lib/player.d.ts +2 -4
- package/types/providers/DashProvider/lib/sourceBufferBufferedDiff.d.ts +19 -0
- package/types/providers/DashProvider/lib/utils.d.ts +11 -0
- package/types/providers/DashProviderNew/baseDashProvider.d.ts +57 -0
- package/types/providers/DashProviderNew/consts.d.ts +3 -0
- package/types/providers/DashProviderNew/index.d.ts +2 -0
- package/types/providers/DashProviderNew/lib/ElementSizeManager.d.ts +19 -0
- package/types/providers/DashProviderNew/lib/LiveTextManager.d.ts +23 -0
- package/types/providers/DashProviderNew/lib/buffer.d.ts +117 -0
- package/types/providers/DashProviderNew/lib/fetcher.d.ts +59 -0
- package/types/providers/DashProviderNew/lib/parsers/ietf/index.d.ts +13 -0
- package/types/providers/DashProviderNew/lib/parsers/index.d.ts +3 -0
- package/types/providers/DashProviderNew/lib/parsers/mpd.d.ts +3 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxModel.d.ts +20 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxParser.d.ts +21 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxTypeEnum.d.ts +30 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/box.d.ts +74 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/avc1.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/equi.d.ts +21 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/ftyp.d.ts +17 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/index.d.ts +26 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdat.d.ts +15 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdia.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mfhd.d.ts +11 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/minf.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moof.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moov.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mvhd.d.ts +35 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/prhd.d.ts +16 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/proj.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sidx.d.ts +48 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/st3d.d.ts +23 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stbl.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stsd.d.ts +11 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sv3d.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfdt.d.ts +17 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfhd.d.ts +22 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tkhd.d.ts +42 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/traf.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trak.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trun.d.ts +31 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/unknown.d.ts +6 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/uuid.d.ts +11 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/fullBox.d.ts +15 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/isobmff.d.ts +12 -0
- package/types/providers/DashProviderNew/lib/parsers/webm/ebml.d.ts +76 -0
- package/types/providers/DashProviderNew/lib/parsers/webm/webm.d.ts +3 -0
- package/types/providers/DashProviderNew/lib/player.d.ts +92 -0
- package/types/providers/DashProviderNew/lib/sourceBufferTaskQueue.d.ts +19 -0
- package/types/providers/DashProviderNew/lib/types.d.ts +186 -0
- package/types/providers/DashProviderNew/lib/utils.d.ts +21 -0
- package/types/providers/DashProviderNew/newDashCmafLiveProvider.d.ts +8 -0
- package/types/providers/DashProviderNew/newDashProvider.d.ts +6 -0
- package/types/providers/ProviderContainer/index.d.ts +0 -2
- package/types/providers/WebRTCLiveProvider/WebRTCLiveProvider.d.ts +0 -1
- package/types/providers/types.d.ts +1 -4
- package/types/providers/utils/HTMLVideoElement/DroppedFramesManager.d.ts +1 -3
- package/types/providers/utils/StallsManager.d.ts +18 -4
- package/types/utils/autoSelectTrack.d.ts +7 -5
- package/types/utils/qualityLimits.d.ts +3 -18
- package/types/utils/smoothedValue/baseSmoothedValue.d.ts +0 -3
- package/types/utils/tuningConfig.d.ts +28 -7
package/es2015.cjs.js
CHANGED
|
@@ -1,73 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vkontakte/videoplayer-core v2.0.131-dev.
|
|
3
|
-
*
|
|
2
|
+
* @vkontakte/videoplayer-core v2.0.131-dev.45e99145.0
|
|
3
|
+
* Mon, 05 May 2025 08:19:59 GMT
|
|
4
4
|
* https://st.mycdn.me/static/vkontakte-videoplayer/2-0-131/doc/
|
|
5
5
|
*/
|
|
6
|
-
"use strict";var OS=Object.create;var Sr=Object.defineProperty,BS=Object.defineProperties,_S=Object.getOwnPropertyDescriptor,NS=Object.getOwnPropertyDescriptors,FS=Object.getOwnPropertyNames,os=Object.getOwnPropertySymbols,qS=Object.getPrototypeOf,Mn=Object.prototype.hasOwnProperty,hc=Object.prototype.propertyIsEnumerable;var US=(a,e)=>(e=Symbol[a])?e:Symbol.for("Symbol."+a);var bt=Math.pow,pc=(a,e,t)=>e in a?Sr(a,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):a[e]=t,L=(a,e)=>{for(var t in e||(e={}))Mn.call(e,t)&&pc(a,t,e[t]);if(os)for(var t of os(e))hc.call(e,t)&&pc(a,t,e[t]);return a},U=(a,e)=>BS(a,NS(e));var mc=(a,e)=>{var t={};for(var i in a)Mn.call(a,i)&&e.indexOf(i)<0&&(t[i]=a[i]);if(a!=null&&os)for(var i of os(a))e.indexOf(i)<0&&hc.call(a,i)&&(t[i]=a[i]);return t};var b=(a,e)=>()=>(e||a((e={exports:{}}).exports,e),e.exports),HS=(a,e)=>{for(var t in e)Sr(a,t,{get:e[t],enumerable:!0})},fc=(a,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of FS(e))!Mn.call(a,r)&&r!==t&&Sr(a,r,{get:()=>e[r],enumerable:!(i=_S(e,r))||i.enumerable});return a};var W=(a,e,t)=>(t=a!=null?OS(qS(a)):{},fc(e||!a||!a.__esModule?Sr(t,"default",{value:a,enumerable:!0}):t,a)),jS=a=>fc(Sr({},"__esModule",{value:!0}),a);var A=(a,e,t)=>new Promise((i,r)=>{var s=u=>{try{o(t.next(u))}catch(l){r(l)}},n=u=>{try{o(t.throw(u))}catch(l){r(l)}},o=u=>u.done?i(u.value):Promise.resolve(u.value).then(s,n);o((t=t.apply(a,e)).next())}),us=function(a,e){this[0]=a,this[1]=e},Te=(a,e,t)=>{var i=(n,o,u,l)=>{try{var c=t[n](o),d=(o=c.value)instanceof us,m=c.done;Promise.resolve(d?o[0]:o).then(h=>d?i(n==="return"?n:"next",o[1]?{done:h.done,value:h.value}:h,u,l):u({value:h,done:m})).catch(h=>i("throw",h,u,l))}catch(h){l(h)}},r=n=>s[n]=o=>new Promise((u,l)=>i(n,o,u,l)),s={};return t=t.apply(a,e),s[US("asyncIterator")]=()=>s,r("next"),r("throw"),r("return"),s};var ve=b((Dn,bc)=>{"use strict";var Ir=function(a){return a&&a.Math===Math&&a};bc.exports=Ir(typeof globalThis=="object"&&globalThis)||Ir(typeof window=="object"&&window)||Ir(typeof self=="object"&&self)||Ir(typeof global=="object"&&global)||Ir(typeof Dn=="object"&&Dn)||function(){return this}()||Function("return this")()});var ke=b((E$,gc)=>{"use strict";gc.exports=function(a){try{return!!a()}catch(e){return!0}}});var Er=b((x$,vc)=>{"use strict";var QS=ke();vc.exports=!QS(function(){var a=function(){}.bind();return typeof a!="function"||a.hasOwnProperty("prototype")})});var Vn=b((P$,Ic)=>{"use strict";var GS=Er(),Tc=Function.prototype,Sc=Tc.apply,yc=Tc.call;Ic.exports=typeof Reflect=="object"&&Reflect.apply||(GS?yc.bind(Sc):function(){return yc.apply(Sc,arguments)})});var xe=b((w$,Pc)=>{"use strict";var Ec=Er(),xc=Function.prototype,On=xc.call,WS=Ec&&xc.bind.bind(On,On);Pc.exports=Ec?WS:function(a){return function(){return On.apply(a,arguments)}}});var pi=b((A$,Ac)=>{"use strict";var wc=xe(),YS=wc({}.toString),zS=wc("".slice);Ac.exports=function(a){return zS(YS(a),8,-1)}});var Bn=b((k$,kc)=>{"use strict";var KS=pi(),XS=xe();kc.exports=function(a){if(KS(a)==="Function")return XS(a)}});var be=b((R$,Rc)=>{"use strict";var _n=typeof document=="object"&&document.all;Rc.exports=typeof _n=="undefined"&&_n!==void 0?function(a){return typeof a=="function"||a===_n}:function(a){return typeof a=="function"}});var Qe=b(($$,$c)=>{"use strict";var JS=ke();$c.exports=!JS(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var Ge=b((L$,Lc)=>{"use strict";var ZS=Er(),ds=Function.prototype.call;Lc.exports=ZS?ds.bind(ds):function(){return ds.apply(ds,arguments)}});var Nn=b(Dc=>{"use strict";var Mc={}.propertyIsEnumerable,Cc=Object.getOwnPropertyDescriptor,ey=Cc&&!Mc.call({1:2},1);Dc.f=ey?function(e){var t=Cc(this,e);return!!t&&t.enumerable}:Mc});var xr=b((C$,Vc)=>{"use strict";Vc.exports=function(a,e){return{enumerable:!(a&1),configurable:!(a&2),writable:!(a&4),value:e}}});var Bc=b((D$,Oc)=>{"use strict";var ty=xe(),iy=ke(),ry=pi(),Fn=Object,ay=ty("".split);Oc.exports=iy(function(){return!Fn("z").propertyIsEnumerable(0)})?function(a){return ry(a)==="String"?ay(a,""):Fn(a)}:Fn});var Oi=b((V$,_c)=>{"use strict";_c.exports=function(a){return a==null}});var Gt=b((O$,Nc)=>{"use strict";var sy=Oi(),ny=TypeError;Nc.exports=function(a){if(sy(a))throw new ny("Can't call method on "+a);return a}});var hi=b((B$,Fc)=>{"use strict";var oy=Bc(),uy=Gt();Fc.exports=function(a){return oy(uy(a))}});var We=b((_$,qc)=>{"use strict";var ly=be();qc.exports=function(a){return typeof a=="object"?a!==null:ly(a)}});var Bi=b((N$,Uc)=>{"use strict";Uc.exports={}});var kt=b((F$,jc)=>{"use strict";var qn=Bi(),Un=ve(),cy=be(),Hc=function(a){return cy(a)?a:void 0};jc.exports=function(a,e){return arguments.length<2?Hc(qn[a])||Hc(Un[a]):qn[a]&&qn[a][e]||Un[a]&&Un[a][e]}});var Pr=b((q$,Qc)=>{"use strict";var dy=xe();Qc.exports=dy({}.isPrototypeOf)});var mi=b((U$,Yc)=>{"use strict";var py=ve(),Gc=py.navigator,Wc=Gc&&Gc.userAgent;Yc.exports=Wc?String(Wc):""});var jn=b((H$,ed)=>{"use strict";var Zc=ve(),Hn=mi(),zc=Zc.process,Kc=Zc.Deno,Xc=zc&&zc.versions||Kc&&Kc.version,Jc=Xc&&Xc.v8,nt,ps;Jc&&(nt=Jc.split("."),ps=nt[0]>0&&nt[0]<4?1:+(nt[0]+nt[1]));!ps&&Hn&&(nt=Hn.match(/Edge\/(\d+)/),(!nt||nt[1]>=74)&&(nt=Hn.match(/Chrome\/(\d+)/),nt&&(ps=+nt[1])));ed.exports=ps});var Qn=b((j$,id)=>{"use strict";var td=jn(),hy=ke(),my=ve(),fy=my.String;id.exports=!!Object.getOwnPropertySymbols&&!hy(function(){var a=Symbol("symbol detection");return!fy(a)||!(Object(a)instanceof Symbol)||!Symbol.sham&&td&&td<41})});var Gn=b((Q$,rd)=>{"use strict";var by=Qn();rd.exports=by&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Wn=b((G$,ad)=>{"use strict";var gy=kt(),vy=be(),Sy=Pr(),yy=Gn(),Ty=Object;ad.exports=yy?function(a){return typeof a=="symbol"}:function(a){var e=gy("Symbol");return vy(e)&&Sy(e.prototype,Ty(a))}});var wr=b((W$,sd)=>{"use strict";var Iy=String;sd.exports=function(a){try{return Iy(a)}catch(e){return"Object"}}});var vt=b((Y$,nd)=>{"use strict";var Ey=be(),xy=wr(),Py=TypeError;nd.exports=function(a){if(Ey(a))return a;throw new Py(xy(a)+" is not a function")}});var Ar=b((z$,od)=>{"use strict";var wy=vt(),Ay=Oi();od.exports=function(a,e){var t=a[e];return Ay(t)?void 0:wy(t)}});var ld=b((K$,ud)=>{"use strict";var Yn=Ge(),zn=be(),Kn=We(),ky=TypeError;ud.exports=function(a,e){var t,i;if(e==="string"&&zn(t=a.toString)&&!Kn(i=Yn(t,a))||zn(t=a.valueOf)&&!Kn(i=Yn(t,a))||e!=="string"&&zn(t=a.toString)&&!Kn(i=Yn(t,a)))return i;throw new ky("Can't convert object to primitive value")}});var ot=b((X$,cd)=>{"use strict";cd.exports=!0});var hd=b((J$,pd)=>{"use strict";var dd=ve(),Ry=Object.defineProperty;pd.exports=function(a,e){try{Ry(dd,a,{value:e,configurable:!0,writable:!0})}catch(t){dd[a]=e}return e}});var kr=b((Z$,bd)=>{"use strict";var $y=ot(),Ly=ve(),My=hd(),md="__core-js_shared__",fd=bd.exports=Ly[md]||My(md,{});(fd.versions||(fd.versions=[])).push({version:"3.38.0",mode:$y?"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 Xn=b((eL,vd)=>{"use strict";var gd=kr();vd.exports=function(a,e){return gd[a]||(gd[a]=e||{})}});var _i=b((tL,Sd)=>{"use strict";var Cy=Gt(),Dy=Object;Sd.exports=function(a){return Dy(Cy(a))}});var ut=b((iL,yd)=>{"use strict";var Vy=xe(),Oy=_i(),By=Vy({}.hasOwnProperty);yd.exports=Object.hasOwn||function(e,t){return By(Oy(e),t)}});var Jn=b((rL,Td)=>{"use strict";var _y=xe(),Ny=0,Fy=Math.random(),qy=_y(1 .toString);Td.exports=function(a){return"Symbol("+(a===void 0?"":a)+")_"+qy(++Ny+Fy,36)}});var Re=b((aL,Ed)=>{"use strict";var Uy=ve(),Hy=Xn(),Id=ut(),jy=Jn(),Qy=Qn(),Gy=Gn(),Ni=Uy.Symbol,Zn=Hy("wks"),Wy=Gy?Ni.for||Ni:Ni&&Ni.withoutSetter||jy;Ed.exports=function(a){return Id(Zn,a)||(Zn[a]=Qy&&Id(Ni,a)?Ni[a]:Wy("Symbol."+a)),Zn[a]}});var Ad=b((sL,wd)=>{"use strict";var Yy=Ge(),xd=We(),Pd=Wn(),zy=Ar(),Ky=ld(),Xy=Re(),Jy=TypeError,Zy=Xy("toPrimitive");wd.exports=function(a,e){if(!xd(a)||Pd(a))return a;var t=zy(a,Zy),i;if(t){if(e===void 0&&(e="default"),i=Yy(t,a,e),!xd(i)||Pd(i))return i;throw new Jy("Can't convert object to primitive value")}return e===void 0&&(e="number"),Ky(a,e)}});var eo=b((nL,kd)=>{"use strict";var eT=Ad(),tT=Wn();kd.exports=function(a){var e=eT(a,"string");return tT(e)?e:e+""}});var hs=b((oL,$d)=>{"use strict";var iT=ve(),Rd=We(),to=iT.document,rT=Rd(to)&&Rd(to.createElement);$d.exports=function(a){return rT?to.createElement(a):{}}});var io=b((uL,Ld)=>{"use strict";var aT=Qe(),sT=ke(),nT=hs();Ld.exports=!aT&&!sT(function(){return Object.defineProperty(nT("div"),"a",{get:function(){return 7}}).a!==7})});var Dd=b(Cd=>{"use strict";var oT=Qe(),uT=Ge(),lT=Nn(),cT=xr(),dT=hi(),pT=eo(),hT=ut(),mT=io(),Md=Object.getOwnPropertyDescriptor;Cd.f=oT?Md:function(e,t){if(e=dT(e),t=pT(t),mT)try{return Md(e,t)}catch(i){}if(hT(e,t))return cT(!uT(lT.f,e,t),e[t])}});var ro=b((cL,Vd)=>{"use strict";var fT=ke(),bT=be(),gT=/#|\.prototype\./,Rr=function(a,e){var t=ST[vT(a)];return t===TT?!0:t===yT?!1:bT(e)?fT(e):!!e},vT=Rr.normalize=function(a){return String(a).replace(gT,".").toLowerCase()},ST=Rr.data={},yT=Rr.NATIVE="N",TT=Rr.POLYFILL="P";Vd.exports=Rr});var Fi=b((dL,Bd)=>{"use strict";var Od=Bn(),IT=vt(),ET=Er(),xT=Od(Od.bind);Bd.exports=function(a,e){return IT(a),e===void 0?a:ET?xT(a,e):function(){return a.apply(e,arguments)}}});var ao=b((pL,_d)=>{"use strict";var PT=Qe(),wT=ke();_d.exports=PT&&wT(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var St=b((hL,Nd)=>{"use strict";var AT=We(),kT=String,RT=TypeError;Nd.exports=function(a){if(AT(a))return a;throw new RT(kT(a)+" is not an object")}});var fi=b(qd=>{"use strict";var $T=Qe(),LT=io(),MT=ao(),ms=St(),Fd=eo(),CT=TypeError,so=Object.defineProperty,DT=Object.getOwnPropertyDescriptor,no="enumerable",oo="configurable",uo="writable";qd.f=$T?MT?function(e,t,i){if(ms(e),t=Fd(t),ms(i),typeof e=="function"&&t==="prototype"&&"value"in i&&uo in i&&!i[uo]){var r=DT(e,t);r&&r[uo]&&(e[t]=i.value,i={configurable:oo in i?i[oo]:r[oo],enumerable:no in i?i[no]:r[no],writable:!1})}return so(e,t,i)}:so:function(e,t,i){if(ms(e),t=Fd(t),ms(i),LT)try{return so(e,t,i)}catch(r){}if("get"in i||"set"in i)throw new CT("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var qi=b((fL,Ud)=>{"use strict";var VT=Qe(),OT=fi(),BT=xr();Ud.exports=VT?function(a,e,t){return OT.f(a,e,BT(1,t))}:function(a,e,t){return a[e]=t,a}});var Ie=b((bL,jd)=>{"use strict";var $r=ve(),_T=Vn(),NT=Bn(),FT=be(),qT=Dd().f,UT=ro(),Ui=Bi(),HT=Fi(),Hi=qi(),Hd=ut();kr();var jT=function(a){var e=function(t,i,r){if(this instanceof e){switch(arguments.length){case 0:return new a;case 1:return new a(t);case 2:return new a(t,i)}return new a(t,i,r)}return _T(a,this,arguments)};return e.prototype=a.prototype,e};jd.exports=function(a,e){var t=a.target,i=a.global,r=a.stat,s=a.proto,n=i?$r:r?$r[t]:$r[t]&&$r[t].prototype,o=i?Ui:Ui[t]||Hi(Ui,t,{})[t],u=o.prototype,l,c,d,m,h,f,g,S,y;for(m in e)l=UT(i?m:t+(r?".":"#")+m,a.forced),c=!l&&n&&Hd(n,m),f=o[m],c&&(a.dontCallGetSet?(y=qT(n,m),g=y&&y.value):g=n[m]),h=c&&g?g:e[m],!(!l&&!s&&typeof f==typeof h)&&(a.bind&&c?S=HT(h,$r):a.wrap&&c?S=jT(h):s&&FT(h)?S=NT(h):S=h,(a.sham||h&&h.sham||f&&f.sham)&&Hi(S,"sham",!0),Hi(o,m,S),s&&(d=t+"Prototype",Hd(Ui,d)||Hi(Ui,d,{}),Hi(Ui[d],m,h),a.real&&u&&(l||!u[m])&&Hi(u,m,h)))}});var Gd=b((gL,Qd)=>{"use strict";var QT=Math.ceil,GT=Math.floor;Qd.exports=Math.trunc||function(e){var t=+e;return(t>0?GT:QT)(t)}});var Lr=b((vL,Wd)=>{"use strict";var WT=Gd();Wd.exports=function(a){var e=+a;return e!==e||e===0?0:WT(e)}});var zd=b((SL,Yd)=>{"use strict";var YT=Lr(),zT=Math.max,KT=Math.min;Yd.exports=function(a,e){var t=YT(a);return t<0?zT(t+e,0):KT(t,e)}});var lo=b((yL,Kd)=>{"use strict";var XT=Lr(),JT=Math.min;Kd.exports=function(a){var e=XT(a);return e>0?JT(e,9007199254740991):0}});var ji=b((TL,Xd)=>{"use strict";var ZT=lo();Xd.exports=function(a){return ZT(a.length)}});var co=b((IL,Zd)=>{"use strict";var eI=hi(),tI=zd(),iI=ji(),Jd=function(a){return function(e,t,i){var r=eI(e),s=iI(r);if(s===0)return!a&&-1;var n=tI(i,s),o;if(a&&t!==t){for(;s>n;)if(o=r[n++],o!==o)return!0}else for(;s>n;n++)if((a||n in r)&&r[n]===t)return a||n||0;return!a&&-1}};Zd.exports={includes:Jd(!0),indexOf:Jd(!1)}});var Mr=b((EL,ep)=>{"use strict";ep.exports=function(){}});var tp=b(()=>{"use strict";var rI=Ie(),aI=co().includes,sI=ke(),nI=Mr(),oI=sI(function(){return!Array(1).includes()});rI({target:"Array",proto:!0,forced:oI},{includes:function(e){return aI(this,e,arguments.length>1?arguments[1]:void 0)}});nI("includes")});var Wt=b((wL,ip)=>{"use strict";var uI=kt();ip.exports=uI});var ap=b((AL,rp)=>{"use strict";tp();var lI=Wt();rp.exports=lI("Array","includes")});var np=b((kL,sp)=>{"use strict";var cI=ap();sp.exports=cI});var Je=b((RL,op)=>{"use strict";var dI=np();op.exports=dI});var bs=b((FL,cp)=>{"use strict";var hI=Xn(),mI=Jn(),lp=hI("keys");cp.exports=function(a){return lp[a]||(lp[a]=mI(a))}});var pp=b((qL,dp)=>{"use strict";var fI=ke();dp.exports=!fI(function(){function a(){}return a.prototype.constructor=null,Object.getPrototypeOf(new a)!==a.prototype})});var gs=b((UL,mp)=>{"use strict";var bI=ut(),gI=be(),vI=_i(),SI=bs(),yI=pp(),hp=SI("IE_PROTO"),po=Object,TI=po.prototype;mp.exports=yI?po.getPrototypeOf:function(a){var e=vI(a);if(bI(e,hp))return e[hp];var t=e.constructor;return gI(t)&&e instanceof t?t.prototype:e instanceof po?TI:null}});var vs=b((HL,fp)=>{"use strict";fp.exports={}});var vp=b((jL,gp)=>{"use strict";var II=xe(),ho=ut(),EI=hi(),xI=co().indexOf,PI=vs(),bp=II([].push);gp.exports=function(a,e){var t=EI(a),i=0,r=[],s;for(s in t)!ho(PI,s)&&ho(t,s)&&bp(r,s);for(;e.length>i;)ho(t,s=e[i++])&&(~xI(r,s)||bp(r,s));return r}});var mo=b((QL,Sp)=>{"use strict";Sp.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var fo=b((GL,yp)=>{"use strict";var wI=vp(),AI=mo();yp.exports=Object.keys||function(e){return wI(e,AI)}});var bo=b((WL,Pp)=>{"use strict";var Ip=Qe(),kI=ke(),Ep=xe(),RI=gs(),$I=fo(),LI=hi(),MI=Nn().f,xp=Ep(MI),CI=Ep([].push),DI=Ip&&kI(function(){var a=Object.create(null);return a[2]=2,!xp(a,2)}),Tp=function(a){return function(e){for(var t=LI(e),i=$I(t),r=DI&&RI(t)===null,s=i.length,n=0,o=[],u;s>n;)u=i[n++],(!Ip||(r?u in t:xp(t,u)))&&CI(o,a?[u,t[u]]:t[u]);return o}};Pp.exports={entries:Tp(!0),values:Tp(!1)}});var wp=b(()=>{"use strict";var VI=Ie(),OI=bo().entries;VI({target:"Object",stat:!0},{entries:function(e){return OI(e)}})});var kp=b((KL,Ap)=>{"use strict";wp();var BI=Bi();Ap.exports=BI.Object.entries});var $p=b((XL,Rp)=>{"use strict";var _I=kp();Rp.exports=_I});var Qi=b((JL,Lp)=>{"use strict";var NI=$p();Lp.exports=NI});var bi=b((ZL,Mp)=>{"use strict";Mp.exports={}});var Vp=b((eM,Dp)=>{"use strict";var FI=ve(),qI=be(),Cp=FI.WeakMap;Dp.exports=qI(Cp)&&/native code/.test(String(Cp))});var yo=b((tM,_p)=>{"use strict";var UI=Vp(),Bp=ve(),HI=We(),jI=qi(),go=ut(),vo=kr(),QI=bs(),GI=vs(),Op="Object already initialized",So=Bp.TypeError,WI=Bp.WeakMap,Ss,Cr,ys,YI=function(a){return ys(a)?Cr(a):Ss(a,{})},zI=function(a){return function(e){var t;if(!HI(e)||(t=Cr(e)).type!==a)throw new So("Incompatible receiver, "+a+" required");return t}};UI||vo.state?(lt=vo.state||(vo.state=new WI),lt.get=lt.get,lt.has=lt.has,lt.set=lt.set,Ss=function(a,e){if(lt.has(a))throw new So(Op);return e.facade=a,lt.set(a,e),e},Cr=function(a){return lt.get(a)||{}},ys=function(a){return lt.has(a)}):(gi=QI("state"),GI[gi]=!0,Ss=function(a,e){if(go(a,gi))throw new So(Op);return e.facade=a,jI(a,gi,e),e},Cr=function(a){return go(a,gi)?a[gi]:{}},ys=function(a){return go(a,gi)});var lt,gi;_p.exports={set:Ss,get:Cr,has:ys,enforce:YI,getterFor:zI}});var Eo=b((iM,Fp)=>{"use strict";var To=Qe(),KI=ut(),Np=Function.prototype,XI=To&&Object.getOwnPropertyDescriptor,Io=KI(Np,"name"),JI=Io&&function(){}.name==="something",ZI=Io&&(!To||To&&XI(Np,"name").configurable);Fp.exports={EXISTS:Io,PROPER:JI,CONFIGURABLE:ZI}});var Up=b(qp=>{"use strict";var eE=Qe(),tE=ao(),iE=fi(),rE=St(),aE=hi(),sE=fo();qp.f=eE&&!tE?Object.defineProperties:function(e,t){rE(e);for(var i=aE(t),r=sE(t),s=r.length,n=0,o;s>n;)iE.f(e,o=r[n++],i[o]);return e}});var xo=b((aM,Hp)=>{"use strict";var nE=kt();Hp.exports=nE("document","documentElement")});var ko=b((sM,Kp)=>{"use strict";var oE=St(),uE=Up(),jp=mo(),lE=vs(),cE=xo(),dE=hs(),pE=bs(),Qp=">",Gp="<",wo="prototype",Ao="script",Yp=pE("IE_PROTO"),Po=function(){},zp=function(a){return Gp+Ao+Qp+a+Gp+"/"+Ao+Qp},Wp=function(a){a.write(zp("")),a.close();var e=a.parentWindow.Object;return a=null,e},hE=function(){var a=dE("iframe"),e="java"+Ao+":",t;return a.style.display="none",cE.appendChild(a),a.src=String(e),t=a.contentWindow.document,t.open(),t.write(zp("document.F=Object")),t.close(),t.F},Ts,Is=function(){try{Ts=new ActiveXObject("htmlfile")}catch(e){}Is=typeof document!="undefined"?document.domain&&Ts?Wp(Ts):hE():Wp(Ts);for(var a=jp.length;a--;)delete Is[wo][jp[a]];return Is()};lE[Yp]=!0;Kp.exports=Object.create||function(e,t){var i;return e!==null?(Po[wo]=oE(e),i=new Po,Po[wo]=null,i[Yp]=e):i=Is(),t===void 0?i:uE.f(i,t)}});var Gi=b((nM,Xp)=>{"use strict";var mE=qi();Xp.exports=function(a,e,t,i){return i&&i.enumerable?a[e]=t:mE(a,e,t),a}});var Mo=b((oM,eh)=>{"use strict";var fE=ke(),bE=be(),gE=We(),vE=ko(),Jp=gs(),SE=Gi(),yE=Re(),TE=ot(),Lo=yE("iterator"),Zp=!1,Rt,Ro,$o;[].keys&&($o=[].keys(),"next"in $o?(Ro=Jp(Jp($o)),Ro!==Object.prototype&&(Rt=Ro)):Zp=!0);var IE=!gE(Rt)||fE(function(){var a={};return Rt[Lo].call(a)!==a});IE?Rt={}:TE&&(Rt=vE(Rt));bE(Rt[Lo])||SE(Rt,Lo,function(){return this});eh.exports={IteratorPrototype:Rt,BUGGY_SAFARI_ITERATORS:Zp}});var Es=b((uM,ih)=>{"use strict";var EE=Re(),xE=EE("toStringTag"),th={};th[xE]="z";ih.exports=String(th)==="[object z]"});var Dr=b((lM,rh)=>{"use strict";var PE=Es(),wE=be(),xs=pi(),AE=Re(),kE=AE("toStringTag"),RE=Object,$E=xs(function(){return arguments}())==="Arguments",LE=function(a,e){try{return a[e]}catch(t){}};rh.exports=PE?xs:function(a){var e,t,i;return a===void 0?"Undefined":a===null?"Null":typeof(t=LE(e=RE(a),kE))=="string"?t:$E?xs(e):(i=xs(e))==="Object"&&wE(e.callee)?"Arguments":i}});var sh=b((cM,ah)=>{"use strict";var ME=Es(),CE=Dr();ah.exports=ME?{}.toString:function(){return"[object "+CE(this)+"]"}});var Vr=b((dM,oh)=>{"use strict";var DE=Es(),VE=fi().f,OE=qi(),BE=ut(),_E=sh(),NE=Re(),nh=NE("toStringTag");oh.exports=function(a,e,t,i){var r=t?a:a&&a.prototype;r&&(BE(r,nh)||VE(r,nh,{configurable:!0,value:e}),i&&!DE&&OE(r,"toString",_E))}});var lh=b((pM,uh)=>{"use strict";var FE=Mo().IteratorPrototype,qE=ko(),UE=xr(),HE=Vr(),jE=bi(),QE=function(){return this};uh.exports=function(a,e,t,i){var r=e+" Iterator";return a.prototype=qE(FE,{next:UE(+!i,t)}),HE(a,r,!1,!0),jE[r]=QE,a}});var dh=b((hM,ch)=>{"use strict";var GE=xe(),WE=vt();ch.exports=function(a,e,t){try{return GE(WE(Object.getOwnPropertyDescriptor(a,e)[t]))}catch(i){}}});var hh=b((mM,ph)=>{"use strict";var YE=We();ph.exports=function(a){return YE(a)||a===null}});var fh=b((fM,mh)=>{"use strict";var zE=hh(),KE=String,XE=TypeError;mh.exports=function(a){if(zE(a))return a;throw new XE("Can't set "+KE(a)+" as a prototype")}});var Co=b((bM,bh)=>{"use strict";var JE=dh(),ZE=We(),ex=Gt(),tx=fh();bh.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var a=!1,e={},t;try{t=JE(Object.prototype,"__proto__","set"),t(e,[]),a=e instanceof Array}catch(i){}return function(r,s){return ex(r),tx(s),ZE(r)&&(a?t(r,s):r.__proto__=s),r}}():void 0)});var Ah=b((gM,wh)=>{"use strict";var ix=Ie(),rx=Ge(),Ps=ot(),xh=Eo(),ax=be(),sx=lh(),gh=gs(),vh=Co(),nx=Vr(),ox=qi(),Do=Gi(),ux=Re(),Sh=bi(),Ph=Mo(),lx=xh.PROPER,cx=xh.CONFIGURABLE,yh=Ph.IteratorPrototype,ws=Ph.BUGGY_SAFARI_ITERATORS,Or=ux("iterator"),Th="keys",Br="values",Ih="entries",Eh=function(){return this};wh.exports=function(a,e,t,i,r,s,n){sx(t,e,i);var o=function(y){if(y===r&&m)return m;if(!ws&&y&&y in c)return c[y];switch(y){case Th:return function(){return new t(this,y)};case Br:return function(){return new t(this,y)};case Ih:return function(){return new t(this,y)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,c=a.prototype,d=c[Or]||c["@@iterator"]||r&&c[r],m=!ws&&d||o(r),h=e==="Array"&&c.entries||d,f,g,S;if(h&&(f=gh(h.call(new a)),f!==Object.prototype&&f.next&&(!Ps&&gh(f)!==yh&&(vh?vh(f,yh):ax(f[Or])||Do(f,Or,Eh)),nx(f,u,!0,!0),Ps&&(Sh[u]=Eh))),lx&&r===Br&&d&&d.name!==Br&&(!Ps&&cx?ox(c,"name",Br):(l=!0,m=function(){return rx(d,this)})),r)if(g={values:o(Br),keys:s?m:o(Th),entries:o(Ih)},n)for(S in g)(ws||l||!(S in c))&&Do(c,S,g[S]);else ix({target:e,proto:!0,forced:ws||l},g);return(!Ps||n)&&c[Or]!==m&&Do(c,Or,m,{name:r}),Sh[e]=m,g}});var Rh=b((vM,kh)=>{"use strict";kh.exports=function(a,e){return{value:a,done:e}}});var Oo=b((SM,Dh)=>{"use strict";var dx=hi(),Vo=Mr(),$h=bi(),Mh=yo(),px=fi().f,hx=Ah(),As=Rh(),mx=ot(),fx=Qe(),Ch="Array Iterator",bx=Mh.set,gx=Mh.getterFor(Ch);Dh.exports=hx(Array,"Array",function(a,e){bx(this,{type:Ch,target:dx(a),index:0,kind:e})},function(){var a=gx(this),e=a.target,t=a.index++;if(!e||t>=e.length)return a.target=void 0,As(void 0,!0);switch(a.kind){case"keys":return As(t,!1);case"values":return As(e[t],!1)}return As([t,e[t]],!1)},"values");var Lh=$h.Arguments=$h.Array;Vo("keys");Vo("values");Vo("entries");if(!mx&&fx&&Lh.name!=="values")try{px(Lh,"name",{value:"values"})}catch(a){}});var Oh=b((yM,Vh)=>{"use strict";var vx=Re(),Sx=bi(),yx=vx("iterator"),Tx=Array.prototype;Vh.exports=function(a){return a!==void 0&&(Sx.Array===a||Tx[yx]===a)}});var Bo=b((TM,_h)=>{"use strict";var Ix=Dr(),Bh=Ar(),Ex=Oi(),xx=bi(),Px=Re(),wx=Px("iterator");_h.exports=function(a){if(!Ex(a))return Bh(a,wx)||Bh(a,"@@iterator")||xx[Ix(a)]}});var Fh=b((IM,Nh)=>{"use strict";var Ax=Ge(),kx=vt(),Rx=St(),$x=wr(),Lx=Bo(),Mx=TypeError;Nh.exports=function(a,e){var t=arguments.length<2?Lx(a):e;if(kx(t))return Rx(Ax(t,a));throw new Mx($x(a)+" is not iterable")}});var Hh=b((EM,Uh)=>{"use strict";var Cx=Ge(),qh=St(),Dx=Ar();Uh.exports=function(a,e,t){var i,r;qh(a);try{if(i=Dx(a,"return"),!i){if(e==="throw")throw t;return t}i=Cx(i,a)}catch(s){r=!0,i=s}if(e==="throw")throw t;if(r)throw i;return qh(i),t}});var Rs=b((xM,Wh)=>{"use strict";var Vx=Fi(),Ox=Ge(),Bx=St(),_x=wr(),Nx=Oh(),Fx=ji(),jh=Pr(),qx=Fh(),Ux=Bo(),Qh=Hh(),Hx=TypeError,ks=function(a,e){this.stopped=a,this.result=e},Gh=ks.prototype;Wh.exports=function(a,e,t){var i=t&&t.that,r=!!(t&&t.AS_ENTRIES),s=!!(t&&t.IS_RECORD),n=!!(t&&t.IS_ITERATOR),o=!!(t&&t.INTERRUPTED),u=Vx(e,i),l,c,d,m,h,f,g,S=function(I){return l&&Qh(l,"normal",I),new ks(!0,I)},y=function(I){return r?(Bx(I),o?u(I[0],I[1],S):u(I[0],I[1])):o?u(I,S):u(I)};if(s)l=a.iterator;else if(n)l=a;else{if(c=Ux(a),!c)throw new Hx(_x(a)+" is not iterable");if(Nx(c)){for(d=0,m=Fx(a);m>d;d++)if(h=y(a[d]),h&&jh(Gh,h))return h;return new ks(!1)}l=qx(a,c)}for(f=s?a.next:l.next;!(g=Ox(f,l)).done;){try{h=y(g.value)}catch(I){Qh(l,"throw",I)}if(typeof h=="object"&&h&&jh(Gh,h))return h}return new ks(!1)}});var zh=b((PM,Yh)=>{"use strict";var jx=Qe(),Qx=fi(),Gx=xr();Yh.exports=function(a,e,t){jx?Qx.f(a,e,Gx(0,t)):a[e]=t}});var Kh=b(()=>{"use strict";var Wx=Ie(),Yx=Rs(),zx=zh();Wx({target:"Object",stat:!0},{fromEntries:function(e){var t={};return Yx(e,function(i,r){zx(t,i,r)},{AS_ENTRIES:!0}),t}})});var Jh=b((kM,Xh)=>{"use strict";Oo();Kh();var Kx=Bi();Xh.exports=Kx.Object.fromEntries});var em=b((RM,Zh)=>{"use strict";Zh.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 im=b(()=>{"use strict";Oo();var Xx=em(),Jx=ve(),Zx=Vr(),tm=bi();for($s in Xx)Zx(Jx[$s],$s),tm[$s]=tm.Array;var $s});var am=b((MM,rm)=>{"use strict";var eP=Jh();im();rm.exports=eP});var _o=b((CM,sm)=>{"use strict";var tP=am();sm.exports=tP});var nm=b(()=>{"use strict"});var No=b((OM,om)=>{"use strict";var _r=ve(),iP=mi(),rP=pi(),Ls=function(a){return iP.slice(0,a.length)===a};om.exports=function(){return Ls("Bun/")?"BUN":Ls("Cloudflare-Workers")?"CLOUDFLARE":Ls("Deno/")?"DENO":Ls("Node.js/")?"NODE":_r.Bun&&typeof Bun.version=="string"?"BUN":_r.Deno&&typeof Deno.version=="object"?"DENO":rP(_r.process)==="process"?"NODE":_r.window&&_r.document?"BROWSER":"REST"}()});var Ms=b((BM,um)=>{"use strict";var aP=No();um.exports=aP==="NODE"});var cm=b((_M,lm)=>{"use strict";var sP=fi();lm.exports=function(a,e,t){return sP.f(a,e,t)}});var hm=b((NM,pm)=>{"use strict";var nP=kt(),oP=cm(),uP=Re(),lP=Qe(),dm=uP("species");pm.exports=function(a){var e=nP(a);lP&&e&&!e[dm]&&oP(e,dm,{configurable:!0,get:function(){return this}})}});var fm=b((FM,mm)=>{"use strict";var cP=Pr(),dP=TypeError;mm.exports=function(a,e){if(cP(e,a))return a;throw new dP("Incorrect invocation")}});var qo=b((qM,bm)=>{"use strict";var pP=xe(),hP=be(),Fo=kr(),mP=pP(Function.toString);hP(Fo.inspectSource)||(Fo.inspectSource=function(a){return mP(a)});bm.exports=Fo.inspectSource});var Ho=b((UM,Tm)=>{"use strict";var fP=xe(),bP=ke(),gm=be(),gP=Dr(),vP=kt(),SP=qo(),vm=function(){},Sm=vP("Reflect","construct"),Uo=/^\s*(?:class|function)\b/,yP=fP(Uo.exec),TP=!Uo.test(vm),Nr=function(e){if(!gm(e))return!1;try{return Sm(vm,[],e),!0}catch(t){return!1}},ym=function(e){if(!gm(e))return!1;switch(gP(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return TP||!!yP(Uo,SP(e))}catch(t){return!0}};ym.sham=!0;Tm.exports=!Sm||bP(function(){var a;return Nr(Nr.call)||!Nr(Object)||!Nr(function(){a=!0})||a})?ym:Nr});var Em=b((HM,Im)=>{"use strict";var IP=Ho(),EP=wr(),xP=TypeError;Im.exports=function(a){if(IP(a))return a;throw new xP(EP(a)+" is not a constructor")}});var jo=b((jM,Pm)=>{"use strict";var xm=St(),PP=Em(),wP=Oi(),AP=Re(),kP=AP("species");Pm.exports=function(a,e){var t=xm(a).constructor,i;return t===void 0||wP(i=xm(t)[kP])?e:PP(i)}});var Am=b((QM,wm)=>{"use strict";var RP=xe();wm.exports=RP([].slice)});var Rm=b((GM,km)=>{"use strict";var $P=TypeError;km.exports=function(a,e){if(a<e)throw new $P("Not enough arguments");return a}});var Qo=b((WM,$m)=>{"use strict";var LP=mi();$m.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(LP)});var eu=b((YM,Nm)=>{"use strict";var Ye=ve(),MP=Vn(),CP=Fi(),Lm=be(),DP=ut(),_m=ke(),Mm=xo(),VP=Am(),Cm=hs(),OP=Rm(),BP=Qo(),_P=Ms(),Xo=Ye.setImmediate,Jo=Ye.clearImmediate,NP=Ye.process,Go=Ye.Dispatch,FP=Ye.Function,Dm=Ye.MessageChannel,qP=Ye.String,Wo=0,Fr={},Vm="onreadystatechange",qr,vi,Yo,zo;_m(function(){qr=Ye.location});var Zo=function(a){if(DP(Fr,a)){var e=Fr[a];delete Fr[a],e()}},Ko=function(a){return function(){Zo(a)}},Om=function(a){Zo(a.data)},Bm=function(a){Ye.postMessage(qP(a),qr.protocol+"//"+qr.host)};(!Xo||!Jo)&&(Xo=function(e){OP(arguments.length,1);var t=Lm(e)?e:FP(e),i=VP(arguments,1);return Fr[++Wo]=function(){MP(t,void 0,i)},vi(Wo),Wo},Jo=function(e){delete Fr[e]},_P?vi=function(a){NP.nextTick(Ko(a))}:Go&&Go.now?vi=function(a){Go.now(Ko(a))}:Dm&&!BP?(Yo=new Dm,zo=Yo.port2,Yo.port1.onmessage=Om,vi=CP(zo.postMessage,zo)):Ye.addEventListener&&Lm(Ye.postMessage)&&!Ye.importScripts&&qr&&qr.protocol!=="file:"&&!_m(Bm)?(vi=Bm,Ye.addEventListener("message",Om,!1)):Vm in Cm("script")?vi=function(a){Mm.appendChild(Cm("script"))[Vm]=function(){Mm.removeChild(this),Zo(a)}}:vi=function(a){setTimeout(Ko(a),0)});Nm.exports={set:Xo,clear:Jo}});var Um=b((zM,qm)=>{"use strict";var Fm=ve(),UP=Qe(),HP=Object.getOwnPropertyDescriptor;qm.exports=function(a){if(!UP)return Fm[a];var e=HP(Fm,a);return e&&e.value}});var tu=b((KM,jm)=>{"use strict";var Hm=function(){this.head=null,this.tail=null};Hm.prototype={add:function(a){var e={item:a,next:null},t=this.tail;t?t.next=e:this.head=e,this.tail=e},get:function(){var a=this.head;if(a){var e=this.head=a.next;return e===null&&(this.tail=null),a.item}}};jm.exports=Hm});var Gm=b((XM,Qm)=>{"use strict";var jP=mi();Qm.exports=/ipad|iphone|ipod/i.test(jP)&&typeof Pebble!="undefined"});var Ym=b((JM,Wm)=>{"use strict";var QP=mi();Wm.exports=/web0s(?!.*chrome)/i.test(QP)});var tf=b((ZM,ef)=>{"use strict";var Yi=ve(),GP=Um(),zm=Fi(),iu=eu().set,WP=tu(),YP=Qo(),zP=Gm(),KP=Ym(),ru=Ms(),Km=Yi.MutationObserver||Yi.WebKitMutationObserver,Xm=Yi.document,Jm=Yi.process,Cs=Yi.Promise,nu=GP("queueMicrotask"),Wi,au,su,Ds,Zm;nu||(Ur=new WP,Hr=function(){var a,e;for(ru&&(a=Jm.domain)&&a.exit();e=Ur.get();)try{e()}catch(t){throw Ur.head&&Wi(),t}a&&a.enter()},!YP&&!ru&&!KP&&Km&&Xm?(au=!0,su=Xm.createTextNode(""),new Km(Hr).observe(su,{characterData:!0}),Wi=function(){su.data=au=!au}):!zP&&Cs&&Cs.resolve?(Ds=Cs.resolve(void 0),Ds.constructor=Cs,Zm=zm(Ds.then,Ds),Wi=function(){Zm(Hr)}):ru?Wi=function(){Jm.nextTick(Hr)}:(iu=zm(iu,Yi),Wi=function(){iu(Hr)}),nu=function(a){Ur.head||Wi(),Ur.add(a)});var Ur,Hr;ef.exports=nu});var af=b((eC,rf)=>{"use strict";rf.exports=function(a,e){try{arguments.length===1?console.error(a):console.error(a,e)}catch(t){}}});var Vs=b((tC,sf)=>{"use strict";sf.exports=function(a){try{return{error:!1,value:a()}}catch(e){return{error:!0,value:e}}}});var Si=b((iC,nf)=>{"use strict";var XP=ve();nf.exports=XP.Promise});var zi=b((rC,cf)=>{"use strict";var JP=ve(),jr=Si(),ZP=be(),ew=ro(),tw=qo(),iw=Re(),of=No(),rw=ot(),ou=jn(),uf=jr&&jr.prototype,aw=iw("species"),uu=!1,lf=ZP(JP.PromiseRejectionEvent),sw=ew("Promise",function(){var a=tw(jr),e=a!==String(jr);if(!e&&ou===66||rw&&!(uf.catch&&uf.finally))return!0;if(!ou||ou<51||!/native code/.test(a)){var t=new jr(function(s){s(1)}),i=function(s){s(function(){},function(){})},r=t.constructor={};if(r[aw]=i,uu=t.then(function(){})instanceof i,!uu)return!0}return!e&&(of==="BROWSER"||of==="DENO")&&!lf});cf.exports={CONSTRUCTOR:sw,REJECTION_EVENT:lf,SUBCLASSING:uu}});var Ki=b((aC,pf)=>{"use strict";var df=vt(),nw=TypeError,ow=function(a){var e,t;this.promise=new a(function(i,r){if(e!==void 0||t!==void 0)throw new nw("Bad Promise constructor");e=i,t=r}),this.resolve=df(e),this.reject=df(t)};pf.exports.f=function(a){return new ow(a)}});var Lf=b(()=>{"use strict";var uw=Ie(),lw=ot(),Ns=Ms(),Yt=ve(),er=Ge(),hf=Gi(),mf=Co(),cw=Vr(),dw=hm(),pw=vt(),_s=be(),hw=We(),mw=fm(),fw=jo(),Sf=eu().set,hu=tf(),bw=af(),gw=Vs(),vw=tu(),yf=yo(),Fs=Si(),mu=zi(),Tf=Ki(),qs="Promise",If=mu.CONSTRUCTOR,Sw=mu.REJECTION_EVENT,yw=mu.SUBCLASSING,lu=yf.getterFor(qs),Tw=yf.set,Xi=Fs&&Fs.prototype,yi=Fs,Os=Xi,Ef=Yt.TypeError,cu=Yt.document,fu=Yt.process,du=Tf.f,Iw=du,Ew=!!(cu&&cu.createEvent&&Yt.dispatchEvent),xf="unhandledrejection",xw="rejectionhandled",ff=0,Pf=1,Pw=2,bu=1,wf=2,Bs,bf,ww,gf,Af=function(a){var e;return hw(a)&&_s(e=a.then)?e:!1},kf=function(a,e){var t=e.value,i=e.state===Pf,r=i?a.ok:a.fail,s=a.resolve,n=a.reject,o=a.domain,u,l,c;try{r?(i||(e.rejection===wf&&kw(e),e.rejection=bu),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),c=!0)),u===a.promise?n(new Ef("Promise-chain cycle")):(l=Af(u))?er(l,u,s,n):s(u)):n(t)}catch(d){o&&!c&&o.exit(),n(d)}},Rf=function(a,e){a.notified||(a.notified=!0,hu(function(){for(var t=a.reactions,i;i=t.get();)kf(i,a);a.notified=!1,e&&!a.rejection&&Aw(a)}))},$f=function(a,e,t){var i,r;Ew?(i=cu.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(a,!1,!0),Yt.dispatchEvent(i)):i={promise:e,reason:t},!Sw&&(r=Yt["on"+a])?r(i):a===xf&&bw("Unhandled promise rejection",t)},Aw=function(a){er(Sf,Yt,function(){var e=a.facade,t=a.value,i=vf(a),r;if(i&&(r=gw(function(){Ns?fu.emit("unhandledRejection",t,e):$f(xf,e,t)}),a.rejection=Ns||vf(a)?wf:bu,r.error))throw r.value})},vf=function(a){return a.rejection!==bu&&!a.parent},kw=function(a){er(Sf,Yt,function(){var e=a.facade;Ns?fu.emit("rejectionHandled",e):$f(xw,e,a.value)})},Ji=function(a,e,t){return function(i){a(e,i,t)}},Zi=function(a,e,t){a.done||(a.done=!0,t&&(a=t),a.value=e,a.state=Pw,Rf(a,!0))},pu=function(a,e,t){if(!a.done){a.done=!0,t&&(a=t);try{if(a.facade===e)throw new Ef("Promise can't be resolved itself");var i=Af(e);i?hu(function(){var r={done:!1};try{er(i,e,Ji(pu,r,a),Ji(Zi,r,a))}catch(s){Zi(r,s,a)}}):(a.value=e,a.state=Pf,Rf(a,!1))}catch(r){Zi({done:!1},r,a)}}};if(If&&(yi=function(e){mw(this,Os),pw(e),er(Bs,this);var t=lu(this);try{e(Ji(pu,t),Ji(Zi,t))}catch(i){Zi(t,i)}},Os=yi.prototype,Bs=function(e){Tw(this,{type:qs,done:!1,notified:!1,parent:!1,reactions:new vw,rejection:!1,state:ff,value:void 0})},Bs.prototype=hf(Os,"then",function(e,t){var i=lu(this),r=du(fw(this,yi));return i.parent=!0,r.ok=_s(e)?e:!0,r.fail=_s(t)&&t,r.domain=Ns?fu.domain:void 0,i.state===ff?i.reactions.add(r):hu(function(){kf(r,i)}),r.promise}),bf=function(){var a=new Bs,e=lu(a);this.promise=a,this.resolve=Ji(pu,e),this.reject=Ji(Zi,e)},Tf.f=du=function(a){return a===yi||a===ww?new bf(a):Iw(a)},!lw&&_s(Fs)&&Xi!==Object.prototype)){gf=Xi.then,yw||hf(Xi,"then",function(e,t){var i=this;return new yi(function(r,s){er(gf,i,r,s)}).then(e,t)},{unsafe:!0});try{delete Xi.constructor}catch(a){}mf&&mf(Xi,Os)}uw({global:!0,constructor:!0,wrap:!0,forced:If},{Promise:yi});cw(yi,qs,!1,!0);dw(qs)});var Of=b((oC,Vf)=>{"use strict";var Rw=Re(),Cf=Rw("iterator"),Df=!1;try{Mf=0,gu={next:function(){return{done:!!Mf++}},return:function(){Df=!0}},gu[Cf]=function(){return this},Array.from(gu,function(){throw 2})}catch(a){}var Mf,gu;Vf.exports=function(a,e){try{if(!e&&!Df)return!1}catch(r){return!1}var t=!1;try{var i={};i[Cf]=function(){return{next:function(){return{done:t=!0}}}},a(i)}catch(r){}return t}});var vu=b((uC,Bf)=>{"use strict";var $w=Si(),Lw=Of(),Mw=zi().CONSTRUCTOR;Bf.exports=Mw||!Lw(function(a){$w.all(a).then(void 0,function(){})})});var _f=b(()=>{"use strict";var Cw=Ie(),Dw=Ge(),Vw=vt(),Ow=Ki(),Bw=Vs(),_w=Rs(),Nw=vu();Cw({target:"Promise",stat:!0,forced:Nw},{all:function(e){var t=this,i=Ow.f(t),r=i.resolve,s=i.reject,n=Bw(function(){var o=Vw(t.resolve),u=[],l=0,c=1;_w(e,function(d){var m=l++,h=!1;c++,Dw(o,t,d).then(function(f){h||(h=!0,u[m]=f,--c||r(u))},s)}),--c||r(u)});return n.error&&s(n.value),i.promise}})});var Ff=b(()=>{"use strict";var Fw=Ie(),qw=ot(),Uw=zi().CONSTRUCTOR,yu=Si(),Hw=kt(),jw=be(),Qw=Gi(),Nf=yu&&yu.prototype;Fw({target:"Promise",proto:!0,forced:Uw,real:!0},{catch:function(a){return this.then(void 0,a)}});!qw&&jw(yu)&&(Su=Hw("Promise").prototype.catch,Nf.catch!==Su&&Qw(Nf,"catch",Su,{unsafe:!0}));var Su});var qf=b(()=>{"use strict";var Gw=Ie(),Ww=Ge(),Yw=vt(),zw=Ki(),Kw=Vs(),Xw=Rs(),Jw=vu();Gw({target:"Promise",stat:!0,forced:Jw},{race:function(e){var t=this,i=zw.f(t),r=i.reject,s=Kw(function(){var n=Yw(t.resolve);Xw(e,function(o){Ww(n,t,o).then(i.resolve,r)})});return s.error&&r(s.value),i.promise}})});var Uf=b(()=>{"use strict";var Zw=Ie(),eA=Ki(),tA=zi().CONSTRUCTOR;Zw({target:"Promise",stat:!0,forced:tA},{reject:function(e){var t=eA.f(this),i=t.reject;return i(e),t.promise}})});var Tu=b((gC,Hf)=>{"use strict";var iA=St(),rA=We(),aA=Ki();Hf.exports=function(a,e){if(iA(a),rA(e)&&e.constructor===a)return e;var t=aA.f(a),i=t.resolve;return i(e),t.promise}});var Gf=b(()=>{"use strict";var sA=Ie(),nA=kt(),jf=ot(),oA=Si(),Qf=zi().CONSTRUCTOR,uA=Tu(),lA=nA("Promise"),cA=jf&&!Qf;sA({target:"Promise",stat:!0,forced:jf||Qf},{resolve:function(e){return uA(cA&&this===lA?oA:this,e)}})});var Wf=b(()=>{"use strict";Lf();_f();Ff();qf();Uf();Gf()});var Xf=b(()=>{"use strict";var dA=Ie(),pA=ot(),Us=Si(),hA=ke(),zf=kt(),Kf=be(),mA=jo(),Yf=Tu(),fA=Gi(),Eu=Us&&Us.prototype,bA=!!Us&&hA(function(){Eu.finally.call({then:function(){}},function(){})});dA({target:"Promise",proto:!0,real:!0,forced:bA},{finally:function(a){var e=mA(this,zf("Promise")),t=Kf(a);return this.then(t?function(i){return Yf(e,a()).then(function(){return i})}:a,t?function(i){return Yf(e,a()).then(function(){throw i})}:a)}});!pA&&Kf(Us)&&(Iu=zf("Promise").prototype.finally,Eu.finally!==Iu&&fA(Eu,"finally",Iu,{unsafe:!0}));var Iu});var Zf=b((xC,Jf)=>{"use strict";nm();Wf();Xf();var gA=Wt();Jf.exports=gA("Promise","finally")});var tb=b((PC,eb)=>{"use strict";var vA=Zf();eb.exports=vA});var Hs=b((wC,ib)=>{"use strict";var SA=tb();ib.exports=SA});var lb=b(()=>{"use strict";var xA=Ie(),PA=bo().values;xA({target:"Object",stat:!0},{values:function(e){return PA(e)}})});var db=b((rD,cb)=>{"use strict";lb();var wA=Bi();cb.exports=wA.Object.values});var hb=b((aD,pb)=>{"use strict";var AA=db();pb.exports=AA});var tr=b((sD,mb)=>{"use strict";var kA=hb();mb.exports=kA});var wb=b(()=>{"use strict";var _A=Ie(),NA=_i(),FA=ji(),qA=Lr(),UA=Mr();_A({target:"Array",proto:!0},{at:function(e){var t=NA(this),i=FA(t),r=qA(e),s=r>=0?r:i+r;return s<0||s>=i?void 0:t[s]}});UA("at")});var kb=b((p0,Ab)=>{"use strict";wb();var HA=Wt();Ab.exports=HA("Array","at")});var $b=b((h0,Rb)=>{"use strict";var jA=kb();Rb.exports=jA});var Jt=b((m0,Lb)=>{"use strict";var QA=$b();Lb.exports=QA});var Hu=b((QV,Zb)=>{"use strict";var rk=pi();Zb.exports=Array.isArray||function(e){return rk(e)==="Array"}});var tg=b((GV,eg)=>{"use strict";var ak=TypeError,sk=9007199254740991;eg.exports=function(a){if(a>sk)throw ak("Maximum allowed index exceeded");return a}});var ag=b((WV,rg)=>{"use strict";var nk=Hu(),ok=ji(),uk=tg(),lk=Fi(),ig=function(a,e,t,i,r,s,n,o){for(var u=r,l=0,c=n?lk(n,o):!1,d,m;l<i;)l in t&&(d=c?c(t[l],l,e):t[l],s>0&&nk(d)?(m=ok(d),u=ig(a,e,d,m,u,s-1)-1):(uk(u+1),a[u]=d),u++),l++;return u};rg.exports=ig});var ug=b((YV,og)=>{"use strict";var sg=Hu(),ck=Ho(),dk=We(),pk=Re(),hk=pk("species"),ng=Array;og.exports=function(a){var e;return sg(a)&&(e=a.constructor,ck(e)&&(e===ng||sg(e.prototype))?e=void 0:dk(e)&&(e=e[hk],e===null&&(e=void 0))),e===void 0?ng:e}});var cg=b((zV,lg)=>{"use strict";var mk=ug();lg.exports=function(a,e){return new(mk(a))(e===0?0:e)}});var dg=b(()=>{"use strict";var fk=Ie(),bk=ag(),gk=vt(),vk=_i(),Sk=ji(),yk=cg();fk({target:"Array",proto:!0},{flatMap:function(e){var t=vk(this),i=Sk(t),r;return gk(e),r=yk(t,0),r.length=bk(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var pg=b(()=>{"use strict";var Tk=Mr();Tk("flatMap")});var mg=b((eO,hg)=>{"use strict";dg();pg();var Ik=Wt();hg.exports=Ik("Array","flatMap")});var bg=b((tO,fg)=>{"use strict";var Ek=mg();fg.exports=Ek});var ju=b((iO,gg)=>{"use strict";var xk=bg();gg.exports=xk});var ia=b((rO,vg)=>{"use strict";var Pk=Dr(),wk=String;vg.exports=function(a){if(Pk(a)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return wk(a)}});var Qu=b((aO,Sg)=>{"use strict";Sg.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 Ig=b((sO,Tg)=>{"use strict";var Ak=xe(),kk=Gt(),Rk=ia(),Wu=Qu(),yg=Ak("".replace),$k=RegExp("^["+Wu+"]+"),Lk=RegExp("(^|[^"+Wu+"])["+Wu+"]+$"),Gu=function(a){return function(e){var t=Rk(kk(e));return a&1&&(t=yg(t,$k,"")),a&2&&(t=yg(t,Lk,"$1")),t}};Tg.exports={start:Gu(1),end:Gu(2),trim:Gu(3)}});var wg=b((nO,Pg)=>{"use strict";var Mk=Eo().PROPER,Ck=ke(),Eg=Qu(),xg="\u200B\x85\u180E";Pg.exports=function(a){return Ck(function(){return!!Eg[a]()||xg[a]()!==xg||Mk&&Eg[a].name!==a})}});var Yu=b((oO,Ag)=>{"use strict";var Dk=Ig().start,Vk=wg();Ag.exports=Vk("trimStart")?function(){return Dk(this)}:"".trimStart});var Rg=b(()=>{"use strict";var Ok=Ie(),kg=Yu();Ok({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==kg},{trimLeft:kg})});var Lg=b(()=>{"use strict";Rg();var Bk=Ie(),$g=Yu();Bk({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==$g},{trimStart:$g})});var Cg=b((pO,Mg)=>{"use strict";Lg();var _k=Wt();Mg.exports=_k("String","trimLeft")});var Vg=b((hO,Dg)=>{"use strict";var Nk=Cg();Dg.exports=Nk});var Bg=b((mO,Og)=>{"use strict";var Fk=Vg();Og.exports=Fk});var Xg=b(()=>{"use strict"});var Jg=b(()=>{"use strict"});var ev=b((W_,Zg)=>{"use strict";var nR=We(),oR=pi(),uR=Re(),lR=uR("match");Zg.exports=function(a){var e;return nR(a)&&((e=a[lR])!==void 0?!!e:oR(a)==="RegExp")}});var iv=b((Y_,tv)=>{"use strict";var cR=St();tv.exports=function(){var a=cR(this),e="";return a.hasIndices&&(e+="d"),a.global&&(e+="g"),a.ignoreCase&&(e+="i"),a.multiline&&(e+="m"),a.dotAll&&(e+="s"),a.unicode&&(e+="u"),a.unicodeSets&&(e+="v"),a.sticky&&(e+="y"),e}});var sv=b((z_,av)=>{"use strict";var dR=Ge(),pR=ut(),hR=Pr(),mR=iv(),rv=RegExp.prototype;av.exports=function(a){var e=a.flags;return e===void 0&&!("flags"in rv)&&!pR(a,"flags")&&hR(rv,a)?dR(mR,a):e}});var ov=b((K_,nv)=>{"use strict";var tl=xe(),fR=_i(),bR=Math.floor,Zu=tl("".charAt),gR=tl("".replace),el=tl("".slice),vR=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,SR=/\$([$&'`]|\d{1,2})/g;nv.exports=function(a,e,t,i,r,s){var n=t+a.length,o=i.length,u=SR;return r!==void 0&&(r=fR(r),u=vR),gR(s,u,function(l,c){var d;switch(Zu(c,0)){case"$":return"$";case"&":return a;case"`":return el(e,0,t);case"'":return el(e,n);case"<":d=r[el(c,1,-1)];break;default:var m=+c;if(m===0)return l;if(m>o){var h=bR(m/10);return h===0?l:h<=o?i[h-1]===void 0?Zu(c,1):i[h-1]+Zu(c,1):l}d=i[m-1]}return d===void 0?"":d})}});var cv=b(()=>{"use strict";var yR=Ie(),TR=Ge(),rl=xe(),uv=Gt(),IR=be(),ER=Oi(),xR=ev(),ur=ia(),PR=Ar(),wR=sv(),AR=ov(),kR=Re(),RR=ot(),$R=kR("replace"),LR=TypeError,il=rl("".indexOf),MR=rl("".replace),lv=rl("".slice),CR=Math.max;yR({target:"String",proto:!0},{replaceAll:function(e,t){var i=uv(this),r,s,n,o,u,l,c,d,m,h,f=0,g="";if(!ER(e)){if(r=xR(e),r&&(s=ur(uv(wR(e))),!~il(s,"g")))throw new LR("`.replaceAll` does not allow non-global regexes");if(n=PR(e,$R),n)return TR(n,e,i,t);if(RR&&r)return MR(ur(i),e,t)}for(o=ur(i),u=ur(e),l=IR(t),l||(t=ur(t)),c=u.length,d=CR(1,c),m=il(o,u);m!==-1;)h=l?ur(t(u,m,o)):AR(u,o,m,[],void 0,t),g+=lv(o,f,m)+h,f=m+c,m=m+d>o.length?-1:il(o,u,m+d);return f<o.length&&(g+=lv(o,f)),g}})});var pv=b((Z_,dv)=>{"use strict";Xg();Jg();cv();var DR=Wt();dv.exports=DR("String","replaceAll")});var mv=b((eN,hv)=>{"use strict";var VR=pv();hv.exports=VR});var bv=b((tN,fv)=>{"use strict";var OR=mv();fv.exports=OR});var vv=b((iN,gv)=>{"use strict";var BR=Lr(),_R=ia(),NR=Gt(),FR=RangeError;gv.exports=function(e){var t=_R(NR(this)),i="",r=BR(e);if(r<0||r===1/0)throw new FR("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var Ev=b((rN,Iv)=>{"use strict";var Tv=xe(),qR=lo(),Sv=ia(),UR=vv(),HR=Gt(),jR=Tv(UR),QR=Tv("".slice),GR=Math.ceil,yv=function(a){return function(e,t,i){var r=Sv(HR(e)),s=qR(t),n=r.length,o=i===void 0?" ":Sv(i),u,l;return s<=n||o===""?r:(u=s-n,l=jR(o,GR(u/o.length)),l.length>u&&(l=QR(l,0,u)),a?r+l:l+r)}};Iv.exports={start:yv(!1),end:yv(!0)}});var Pv=b((aN,xv)=>{"use strict";var WR=mi();xv.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(WR)});var wv=b(()=>{"use strict";var YR=Ie(),zR=Ev().start,KR=Pv();YR({target:"String",proto:!0,forced:KR},{padStart:function(e){return zR(this,e,arguments.length>1?arguments[1]:void 0)}})});var kv=b((oN,Av)=>{"use strict";wv();var XR=Wt();Av.exports=XR("String","padStart")});var $v=b((uN,Rv)=>{"use strict";var JR=kv();Rv.exports=JR});var Mv=b((lN,Lv)=>{"use strict";var ZR=$v();Lv.exports=ZR});var S$={};HS(S$,{ChromecastState:()=>yr,HttpConnectionType:()=>ls,Observable:()=>xt.Observable,PlaybackState:()=>_e,Player:()=>Wa,PredefinedQualityLimits:()=>Tr,SDK_VERSION:()=>v$,Subject:()=>xt.Subject,Subscription:()=>xt.Subscription,Surface:()=>cs,VERSION:()=>Cn,ValueSubject:()=>xt.ValueSubject,VideoFormat:()=>gt,VideoQuality:()=>xt.VideoQuality,clientChecker:()=>ee,isMobile:()=>ir});module.exports=jS(S$);var Cn="2.0.131-dev.20b944d3.0";var _e=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(_e||{}),gt=(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))(gt||{});var yr=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(yr||{}),ls=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(ls||{});var cs=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(cs||{}),Tr=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(Tr||{});var kS=W(Je(),1);var G=require("@vkontakte/videoplayer-shared/es2015");var up=a=>new Promise((e,t)=>{let i=document.createElement("script");i.setAttribute("src",a),i.onload=()=>e(),i.onerror=r=>t(r),document.body.appendChild(i)});var fs=class{constructor(e){this.connection$=new G.ValueSubject(void 0);this.castState$=new G.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new G.Subject;this.realCastState$=new G.ValueSubject("NOT_AVAILABLE");this.subscription=new G.Subscription;this.isDestroyed=!1;var s;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,G.isNonNullable)((s=window.chrome)==null?void 0:s.cast),r=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=n=>{delete window.__onGCastApiAvailable,n&&!this.isDestroyed&&this.initializeCastApi()},r||up("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:G.ErrorCategory.NETWORK,message:"Script loading failed!"})))}connect(){var e;(e=cast.framework.CastContext.getInstance())==null||e.requestSession()}disconnect(){var e,t;(t=(e=cast.framework.CastContext.getInstance())==null?void 0:e.getCurrentSession())==null||t.endSession(!0)}stopMedia(){return new Promise((e,t)=>{var i,r,s;(s=(r=(i=cast.framework.CastContext.getInstance())==null?void 0:i.getCurrentSession())==null?void 0:r.getMediaSession())==null||s.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){(0,G.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,G.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,G.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,G.fromEvent)(i,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(r=>{var s,n,o;switch(r.sessionState){case cast.framework.SessionState.SESSION_STARTED:case cast.framework.SessionState.SESSION_STARTING:case cast.framework.SessionState.SESSION_RESUMED:this.contentId=(o=(n=(s=i.getCurrentSession())==null?void 0:s.getMediaSession())==null?void 0:n.media)==null?void 0:o.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,G.assertNever)(r.sessionState)}})).add((0,G.merge)((0,G.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,G.tap)(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),(0,G.map)(r=>r.castState)),(0,G.observableFrom)([i.getCastState()])).pipe((0,G.filterChanged)(),(0,G.map)(pI),(0,G.tap)(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{var o,u;let s=r==="CONNECTED",n=(0,G.isNonNullable)(this.connection$.getValue());if(s&&!n){let l=i.getCurrentSession();(0,G.assertNonNullable)(l);let c=l.getCastDevice(),d=(u=(o=l.getMediaSession())==null?void 0:o.media)==null?void 0:u.contentId;((0,G.isNullable)(d)||d===this.contentId)&&(this.log({message:"connection created"}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:l,castDevice:c}))}else!s&&n&&(this.log({message:"connection destroyed"}),this.connection$.next(void 0));this.castState$.next(r==="CONNECTED"?(0,G.isNonNullable)(this.connection$.getValue())?"CONNECTED":"AVAILABLE":r)}))}initializeCastApi(){var r;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(s){return}try{e.setOptions({receiverApplicationId:(r=this.params.receiverApplicationId)!=null?r:t,autoJoinPolicy:i}),this.initListeners()}catch(s){this.errorEvent$.next({id:"ChromecastInitializer",category:G.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:s})}}},pI=a=>{switch(a){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,G.assertNever)(a)}};var Pl=W(Je(),1),fS=W(Qi(),1),bS=W(_o(),1);var nb=W(Hs(),1);var xu=require("@vkontakte/videoplayer-shared/es2015");var $e=(a,e=0,t=0)=>{switch(t){case 0:return a.replace("_offset_p",e===0?"":"_"+e.toFixed(0));case 1:{if(e===0)return a;let i=new URL(a);return i.searchParams.append("playback_shift",e.toFixed(0)),i.toString()}case 2:{let i=new URL(a);return!i.searchParams.get("offset_p")&&e===0?a:(i.searchParams.set("offset_p",e.toFixed(0)),i.toString())}default:(0,xu.assertNever)(t)}return a},js=(a,e)=>{var t;switch(e){case 0:return NaN;case 1:{let i=new URL(a);return Number(i.searchParams.get("playback_shift"))}case 2:{let i=new URL(a);return Number((t=i.searchParams.get("offset_p"))!=null?t:0)}default:(0,xu.assertNever)(e)}};var M=(a,e,t=!1)=>{let i=a.getTransition();(t||!i||i.to===e)&&a.setState(e)};var yt=require("@vkontakte/videoplayer-shared/es2015"),Y=class{constructor(e){this.transitionStarted$=new yt.Subject;this.transitionEnded$=new yt.Subject;this.transitionUpdated$=new yt.Subject;this.forceChanged$=new yt.Subject;this.stateChangeStarted$=(0,yt.merge)(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=(0,yt.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,yt.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 rb=require("@vkontakte/videoplayer-shared/es2015"),ab=a=>{switch(a){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,rb.assertNever)(a)}};var D=require("@vkontakte/videoplayer-shared/es2015");var yA=5,TA=5,IA=500,sb=7e3,Qr=class{constructor(e){this.subscription=new D.Subscription;this.loadMediaTimeoutSubscription=new D.Subscription;this.videoState=new Y("stopped");this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=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((r==null?void 0:r.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,D.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,D.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,D.assertNever)(e)}break}default:(0,D.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(ab(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 D.Subscription;this.subscription.add(e),this.subscription.add((0,D.merge)(this.videoState.stateChangeStarted$.pipe((0,D.map)(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe((0,D.map)(r=>`stateChangeEnded$ ${JSON.stringify(r)}`))).subscribe(r=>this.log({message:`[videoState] ${r}`})));let t=(r,s)=>this.subscription.add(r.subscribe(s));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let r=new D.Subject;e.add(r.pipe((0,D.debounce)(IA)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let s=NaN;e.add((0,D.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)>yA)&&r.next(o),s=o})),e.add((0,D.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t((0,D.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,D.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t((0,D.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),r=>{this.logRemoteEvent(r);let{remotePlayer:s}=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()&&s.duration-s.currentTime<TA&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),M(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,D.assertNever)(n)}}),t((0,D.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t((0,D.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=(0,D.merge)(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,D.observableFrom)(["init"])).pipe((0,D.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"),M(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),M(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(),t=this.videoState.getTransition();((t==null?void 0:t.to)==="paused"||e==="playing")&&(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState(),t=this.videoState.getTransition();((t==null?void 0:t.to)==="playing"||e==="paused")&&(this.videoState.setState("playing"),M(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){var t;let e=this.videoState.getTransition();(e==null?void 0:e.to)==="ready"&&this.videoState.setState("ready"),((t=this.params.desiredState.playbackState.getTransition())==null?void 0:t.to)==="ready"&&M(this.params.desiredState.playbackState,"ready")}handleRemoteStop(){this.videoState.getState()!=="stopped"&&this.videoState.setState("stopped")}handleRemoteVolumeChange(e){var r,s;let t=this.params.output.volume$.getValue(),i={volume:(r=e.volume)!=null?r:t.volume,muted:(s=e.muted)!=null?s: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){var l;let t=this.params.source,i,r,s;switch(e){case"MPEG":{let c=t[e];(0,D.assertNonNullable)(c);let d=(0,D.getHighestQuality)(Object.keys(c));(0,D.assertNonNullable)(d);let m=c[d];(0,D.assertNonNullable)(m),i=m,r="video/mp4",s=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let c=t[e];(0,D.assertNonNullable)(c),i=c.url,r="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 c=t[e];(0,D.assertNonNullable)(c),i=c.url,r="application/dash+xml",s=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let c=t[e];(0,D.assertNonNullable)(c),i=c.url,r="application/dash+xml",s=chrome.cast.media.StreamType.LIVE;break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let c=t[e];(0,D.assertNonNullable)(c),i=$e(c.url),r="application/x-mpegurl",s=chrome.cast.media.StreamType.LIVE;break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let c="Unsupported format for Chromecast",d=new Error(c);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:D.ErrorCategory.VIDEO_PIPELINE,message:c,thrown:d}),d}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,D.assertNever)(e)}let n=new chrome.cast.media.MediaInfo((l=this.params.meta.videoId)!=null?l:i,r);n.contentUrl=i,n.streamType=s,n.metadata=new chrome.cast.media.GenericMediaMetadata;let{title:o,subtitle:u}=this.params.meta;return(0,D.isNonNullable)(o)&&(n.metadata.title=o),(0,D.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,s)=>{this.loadMediaTimeoutSubscription.add((0,D.timeout)(sb).subscribe(()=>s(`timeout(${sb})`)))});(0,nb.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 s=`[prepare] loadMedia failed, format: ${this.params.format}, reason: ${r}`;this.log({message:s}),this.params.output.error$.next({id:"ChromecastProvider.loadMedia",category:D.ErrorCategory.VIDEO_PIPELINE,message:s,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var qu=W(Je(),1);var ku=require("@vkontakte/videoplayer-shared/es2015");var ob=require("@vkontakte/videoplayer-shared/es2015"),ub=a=>{try{a.pause(),a.playbackRate=0,(0,ob.clearVideoElement)(a),a.remove()}catch(e){console.error(e)}};var Qs=require("@vkontakte/videoplayer-shared/es2015"),Pu=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)}},wu=window.WeakMap?new WeakMap:new Pu,Au=window.WeakMap?new WeakMap:new Map,EA=(a,e=20)=>{let t=0;return(0,Qs.fromEvent)(a,"ratechange").subscribe(i=>{t++,t>=e&&(a.currentTime=a.currentTime,t=0)})},Ne=(a,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=a.querySelector("video"),r=!!i;i?(0,ku.clearVideoElement)(i):(i=document.createElement("video"),a.appendChild(i)),wu.set(i,r);let s=new Qs.Subscription;return s.add(EA(i,e)),Au.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},Fe=a=>{let e=Au.get(a);e==null||e.unsubscribe(),Au.delete(a);let t=wu.get(a);wu.delete(a),t?(0,ku.clearVideoElement)(a):ub(a)};var Ru=W(tr(),1),V=require("@vkontakte/videoplayer-shared/es2015");var zt=require("@vkontakte/videoplayer-shared/es2015"),Gs=(a,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:s}={})=>{let n=a.getState(),o=e(),u=(0,zt.isNullable)(r),l=new zt.Subscription;return r&&l.add(r.subscribe(c=>{let d=a.getState();i(c,d)&&a.setState(c)},s)),i(o,n)||(t(n),u&&a.setState(n)),l.add(a.stateChangeStarted$.subscribe(c=>{t(c.to),u&&a.setState(c.to)},s)),l},Tt=(a,e,t)=>Gs(e,()=>a.loop,i=>{(0,zt.isNonNullable)(i)&&(a.loop=i)},{onError:t}),qe=(a,e,t,i)=>Gs(e,()=>({muted:a.muted,volume:a.volume}),r=>{(0,zt.isNonNullable)(r)&&(a.muted=r.muted,a.volume=r.volume)},{equal:(r,s)=>r===s||(r==null?void 0:r.muted)===(s==null?void 0:s.muted)&&(r==null?void 0:r.volume)===(s==null?void 0:s.volume),changed$:t,onError:i}),Ze=(a,e,t,i)=>Gs(e,()=>a.playbackRate,r=>{(0,zt.isNonNullable)(r)&&(a.playbackRate=r)},{changed$:t,onError:i}),Kt=Gs;var RA=a=>["__",a.language,a.label].join("|"),$A=(a,e)=>{if(a.id===e)return!0;let[t,i,r]=e.split("|");return a.language===i&&a.label===r},$u=class a{constructor(e){this.available$=new V.Subject;this.current$=new V.ValueSubject(void 0);this.error$=new V.Subject;this.subscription=new V.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=s=>{this.error$.next({id:"TextTracksManager",category:V.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(Kt(t.internalTextTracks,()=>(0,Ru.default)(this.internalTracks),s=>{(0,V.isNonNullable)(s)&&this.setInternal(s)},{equal:(s,n)=>(0,V.isNonNullable)(s)&&(0,V.isNonNullable)(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,V.map)(s=>s.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(Kt(t.externalTextTracks,()=>(0,Ru.default)(this.externalTracks),s=>{(0,V.isNonNullable)(s)&&this.setExternal(s)},{equal:(s,n)=>(0,V.isNonNullable)(s)&&(0,V.isNonNullable)(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,V.map)(s=>s.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(Kt(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:r})),this.subscription.add(Kt(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let s of this.htmlTextTracksAsArray())this.applyCueSettings(s.cues),this.applyCueSettings(s.activeCues)}))}subscribe(){(0,V.assertNonNullable)(this.video);let{textTracks:e}=this.video;this.subscription.add((0,V.fromEvent)(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add((0,V.merge)((0,V.fromEvent)(e,"addtrack"),(0,V.fromEvent)(e,"removetrack"),(0,V.observableFrom)(["init"])).pipe((0,V.map)(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),(0,V.filterChanged)((i,r)=>i.length===r.length&&i.every(({id:s},n)=>s===r[n].id))).subscribe(this.available$)),this.subscription.add((0,V.merge)((0,V.fromEvent)(e,"change"),(0,V.observableFrom)(["init"])).pipe((0,V.map)(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),(0,V.map)(i=>i&&this.htmlTextTrackToITextTrack(i).id),(0,V.filterChanged)()).subscribe(this.current$));let t=i=>{var r,s;return this.applyCueSettings((s=(r=i.target)==null?void 0:r.activeCues)!=null?s:null)};this.subscription.add((0,V.fromEvent)(e,"addtrack").subscribe(i=>{var s,n;(s=i.track)==null||s.addEventListener("cuechange",t);let r=o=>{var l,c,d,m,h;let u=(c=(l=o.target)==null?void 0:l.cues)!=null?c:null;u&&u.length&&(this.applyCueSettings((m=(d=o.target)==null?void 0:d.cues)!=null?m:null),(h=o.target)==null||h.removeEventListener("cuechange",r))};(n=i.track)==null||n.addEventListener("cuechange",r)})),this.subscription.add((0,V.fromEvent)(e,"removetrack").subscribe(i=>{var r;(r=i.track)==null||r.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,V.isNonNullable)(t.align)&&(r.align=t.align),(0,V.isNonNullable)(t.position)&&(r.position=t.position),(0,V.isNonNullable)(t.size)&&(r.size=t.size),(0,V.isNonNullable)(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){(0,V.assertNonNullable)(this.video);let t=[...this.video.textTracks];return e?t:t.filter(a.isHealthyTrack)}htmlTextTrackToITextTrack(e){var o,u,l,c,d;let{language:t,label:i}=e,r=e.id?e.id:RA(e),s=this.externalTracks.has(r),n=(l=s?(o=this.externalTracks.get(r))==null?void 0:o.isAuto:(u=this.internalTracks.get(r))==null?void 0:u.isAuto)!=null?l:r.includes("auto");return s?{id:r,type:"external",isAuto:n,language:t,label:i,url:(c=this.externalTracks.get(r))==null?void 0:c.url}:{id:r,type:"internal",isAuto:n,language:t,label:i,url:(d=this.internalTracks.get(r))==null?void 0:d.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:s})=>!this.internalTracks.has(i)&&!t.some(([,n])=>n.language===r&&n.isAuto===s)).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,V.assertNonNullable)(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))((0,V.isNullable)(e)||!$A(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,V.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,V.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)}},et=$u;var Ti=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 fb=a=>{let e=a;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e==null?void 0:e.parentNode;return e!=null?e:void 0},Lu=a=>{let e=fb(a);return!!(e&&e.fullscreenElement&&e.fullscreenElement===a)},bb=a=>{let e=fb(a);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===a)};var R=require("@vkontakte/videoplayer-shared/es2015");var LA=3,gb=(a,e,t=LA)=>{let i=0,r=0;for(let s=0;s<a.length;s++){let n=a.start(s),o=a.end(s);if(n<=e&&e<=o){if(i=n,r=o,!t)return{from:i,to:r};for(let u=s-1;u>=0;u--)a.end(u)+t>=i&&(i=a.start(u));for(let u=s+1;u<a.length;u++)a.start(u)-t<=r&&(r=a.end(u))}}return{from:i,to:r}};var Ws=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,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||r||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],r=parseInt(i,10);if(isNaN(r))return;this._safariVersion=r}catch(e){console.error(e)}}};var vb=W(Je(),1);var ir=()=>{var a,e;return/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test((a=navigator.appVersion)!=null?a:navigator.userAgent)||((e=navigator==null?void 0:navigator.userAgentData)==null?void 0:e.mobile)};var Ys=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,vb.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=ir()}catch(t){console.error(t)}this.detectDevice(e),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}detectHighEntropyValues(){return A(this,null,function*(){let{userAgentData:e}=navigator;if(e){let t=yield 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,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||r||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 r=parseFloat(i);if(isNaN(r))return;this._iosVersion=r}catch(e){console.error(e)}}};var zs=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(){var t;let{maxTouchPoints:e}=navigator;try{this._maxTouchPoints=e!=null?e:0,this._isHdr=!!((t=matchMedia("(dynamic-range: high)"))!=null&&t.matches),this._colorDepth=screen.colorDepth}catch(i){console.error(i)}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(i){console.error(i)}}};var ct=()=>window.ManagedMediaSource||window.MediaSource,Ks=()=>{var a,e;return!!(window.ManagedMediaSource&&((e=(a=window.ManagedSourceBuffer)==null?void 0:a.prototype)!=null&&e.appendBuffer))},Sb=()=>{var a,e;return!!(window.MediaSource&&((e=(a=window.SourceBuffer)==null?void 0:a.prototype)!=null&&e.appendBuffer))},yb=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var MA=document.createElement("video"),CA='video/mp4; codecs="avc1.42000a,mp4a.40.2"',DA='video/mp4; codecs="hev1.1.6.L93.B0"',Tb='video/webm; codecs="vp09.00.10.08"',Ib='video/webm; codecs="av01.0.00M.08"',VA='audio/mp4; codecs="mp4a.40.2"',OA='audio/webm; codecs="opus"',Eb,BA=()=>A(void 0,null,function*(){if(!window.navigator.mediaCapabilities)return;let a={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[e,t]=yield Promise.all([window.navigator.mediaCapabilities.decodingInfo(U(L({},a),{video:U(L({},a.video),{contentType:Ib})})),window.navigator.mediaCapabilities.decodingInfo(U(L({},a),{video:U(L({},a.video),{contentType:Tb})}))]);Eb={DASH_WEBM_AV1:e,DASH_WEBM:t}});BA().catch(a=>{console.log(MA),console.error(a)});var Xs=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 Eb}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){var e,t,i,r,s,n,o,u,l,c,d,m,h,f,g,S,y,I,x,w;this._video=document.createElement("video");try{this._protocols={mms:Ks(),mse:Sb(),hls:!!((t=(e=this._video).canPlayType)!=null&&t.call(e,"application/x-mpegurl")||(r=(i=this._video).canPlayType)!=null&&r.call(i,"vnd.apple.mpegURL")),webrtc:!!window.RTCPeerConnection,ws:!!window.WebSocket},this._containers={mp4:!!((n=(s=this._video).canPlayType)!=null&&n.call(s,"video/mp4")),webm:!!((u=(o=this._video).canPlayType)!=null&&u.call(o,"video/webm")),cmaf:!0};let P=!!((c=(l=ct())==null?void 0:l.isTypeSupported)!=null&&c.call(l,CA)),O=!!((m=(d=ct())==null?void 0:d.isTypeSupported)!=null&&m.call(d,DA)),J=!!((f=(h=ct())==null?void 0:h.isTypeSupported)!=null&&f.call(h,VA));this._codecs={h264:P,h265:O,vp9:!!((S=(g=ct())==null?void 0:g.isTypeSupported)!=null&&S.call(g,Tb)),av1:!!((I=(y=ct())==null?void 0:y.isTypeSupported)!=null&&I.call(y,Ib)),aac:J,opus:!!((w=(x=ct())==null?void 0:x.isTypeSupported)!=null&&w.call(x,OA)),mpeg:(P||O)&&J},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(P){console.error(P)}this.destroyVideoElement()}destroyVideoElement(){var t;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);(t=this._video.parentNode)==null||t.replaceChild(e,this._video),this._video=null}};var xb="audio/mpeg",Js=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){var e,t,i,r;this._audio=document.createElement("audio");try{this._containers={mpeg:!!((t=(e=this._audio).canPlayType)!=null&&t.call(e,xb))},this._codecs={mp3:!!((r=(i=ct())==null?void 0:i.isTypeSupported)!=null&&r.call(i,xb))}}catch(s){console.error(s)}this.destroyAudioElement()}destroyAudioElement(){var t;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);(t=this._audio.parentNode)==null||t.replaceChild(e,this._audio),this._audio=null}};var Pb=require("@vkontakte/videoplayer-shared/es2015");var Mu=class{constructor(){this.isInited$=new Pb.ValueSubject(!1);this._displayChecker=new zs,this._deviceChecker=new Ys(this._displayChecker),this._browserChecker=new Ws,this._videoChecker=new Xs(this._deviceChecker,this._browserChecker),this._audioChecker=new Js,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}detect(){return A(this,null,function*(){this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0)})}},ee=new Mu;var Ue=a=>{let e=k=>(0,R.fromEvent)(a,k).pipe((0,R.mapTo)(void 0)),t=new R.Subscription,i=()=>t.unsubscribe(),s=(0,R.merge)(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(k=>(0,R.fromEvent)(a,k))).pipe((0,R.map)(k=>k.type==="ended"?a.readyState<2:a.readyState<3),(0,R.filterChanged)()),n=(0,R.merge)((0,R.fromEvent)(a,"progress"),(0,R.fromEvent)(a,"timeupdate")).pipe((0,R.map)(()=>gb(a.buffered,a.currentTime))),o=ee.browser.isSafari?(0,R.combine)({play:e("play").pipe((0,R.once)()),playing:e("playing")}).pipe((0,R.mapTo)(void 0)):e("playing"),u=(0,R.fromEvent)(a,"volumechange").pipe((0,R.map)(()=>({muted:a.muted,volume:a.volume}))),l=(0,R.fromEvent)(a,"ratechange").pipe((0,R.map)(()=>a.playbackRate)),c=(0,R.fromEvent)(a,"error").pipe((0,R.filter)(()=>!!(a.error||a.played.length)),(0,R.map)(()=>{var te;let k=a.error;return{id:k?`MediaError#${k.code}`:"HtmlVideoError",category:R.ErrorCategory.VIDEO_PIPELINE,message:k?k.message:"Error event from HTML video element",thrown:(te=a.error)!=null?te:void 0}})),d=(0,R.fromEvent)(a,"timeupdate").pipe((0,R.map)(()=>a.currentTime)),m=new R.Subject,h=.3,f;t.add(d.subscribe(k=>{a.loop&&(0,R.isNonNullable)(f)&&(0,R.isNonNullable)(k)&&f>=a.duration-h&&k<=h&&m.next(f),f=k}));let g=e("pause").pipe((0,R.filter)(()=>!a.error&&f!==a.duration)),S=(0,R.fromEvent)(a,"enterpictureinpicture"),y=(0,R.fromEvent)(a,"leavepictureinpicture"),I=new R.ValueSubject(bb(a));t.add(S.subscribe(()=>I.next(!0))),t.add(y.subscribe(()=>I.next(!1)));let x=new R.ValueSubject(Lu(a)),w=(0,R.fromEvent)(a,"fullscreenchange");t.add(w.pipe((0,R.map)(()=>Lu(a))).subscribe(x));let P=.1,O=1e3,J=(0,R.fromEvent)(a,"timeupdate").pipe((0,R.filter)(k=>a.duration-a.currentTime<P)),Z=(0,R.merge)(J.pipe((0,R.filter)(k=>!a.loop)),(0,R.fromEvent)(a,"ended")).pipe((0,R.throttle)(O),(0,R.mapTo)(void 0)),ne=J.pipe((0,R.filter)(k=>a.loop));return{playing$:o,pause$:g,canplay$:e("canplay"),ended$:Z,looped$:m,loopExpected$:ne,error$:c,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:d,durationChange$:(0,R.fromEvent)(a,"durationchange").pipe((0,R.map)(()=>a.duration)),isBuffering$:s,currentBuffer$:n,volumeState$:u,playbackRateState$:l,inPiP$:I,inFullscreen$:x,enterPip$:S,leavePip$:y,destroy:i}};var Lt=require("@vkontakte/videoplayer-shared/es2015"),Xt=a=>{switch(a){case"mobile":return Lt.VideoQuality.Q_144P;case"lowest":return Lt.VideoQuality.Q_240P;case"low":return Lt.VideoQuality.Q_360P;case"sd":case"medium":return Lt.VideoQuality.Q_480P;case"hd":case"high":return Lt.VideoQuality.Q_720P;case"fullhd":case"full":return Lt.VideoQuality.Q_1080P;case"quadhd":case"quad":return Lt.VideoQuality.Q_1440P;case"ultrahd":case"ultra":return Lt.VideoQuality.Q_2160P}};var Zt=W(Jt(),1),Bb=W(Je(),1),Zs=W(Qi(),1),F=require("@vkontakte/videoplayer-shared/es2015");var Cu=!1,Mt={},Mb=a=>{Cu=a},Cb=()=>{Mt={}},Db=a=>{a(Mt)},Gr=(a,e)=>{var t;Cu&&(Mt.meta=(t=Mt.meta)!=null?t:{},Mt.meta[a]=e)},De=class{constructor(e){this.name=e}next(e){var i,r;if(!Cu)return;Mt.series=(i=Mt.series)!=null?i:{};let t=(r=Mt.series[this.name])!=null?r:[];t.push([Date.now(),e]),Mt.series[this.name]=t}};var Ee=require("@vkontakte/videoplayer-shared/es2015");function Du({limits:a,highQualityLimit:e,trafficSavingLimit:t}){return!a.max&&a.min===e?"high_quality":!a.min&&a.max===t?"traffic_saving":"unknown"}function Vu({limits:a,highQualityLimit:e,trafficSavingLimit:t}){return!!a&&Du({limits:a,highQualityLimit:e,trafficSavingLimit:t})==="high_quality"}function Wr({limits:a,highestAvailableQuality:e,lowestAvailableQuality:t}){return(0,Ee.isNullable)(a)||(0,Ee.isNonNullable)(a.min)&&(0,Ee.isNonNullable)(a.max)&&(0,Ee.isLower)(a.max,a.min)||(0,Ee.isNonNullable)(a.min)&&e&&(0,Ee.isHigher)(a.min,e)||(0,Ee.isNonNullable)(a.max)&&t&&(0,Ee.isLower)(a.max,t)}function Vb({limits:a,highestAvailableHeight:e,lowestAvailableHeight:t}){return Wr({limits:{max:a!=null&&a.max?(0,Ee.videoHeightToQuality)(a.max):void 0,min:a!=null&&a.min?(0,Ee.videoHeightToQuality)(a.min):void 0},highestAvailableQuality:e?(0,Ee.videoHeightToQuality)(e):void 0,lowestAvailableQuality:t?(0,Ee.videoHeightToQuality)(t):void 0})}var GA=new De("best_bitrate"),_b=(a,e,t)=>(e-t)*Math.pow(2,-10*a)+t;var Ou=a=>(e,t)=>a*(Number(e.bitrate)-Number(t.bitrate)),Yr=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=(0,F.now)()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},Nb='Assertion "ABR Tracks is empty array" failed',en=(a,e,t,i)=>{var u;let r=[...e].sort(Ou(1)),s=[...t].sort(Ou(1)),n=s.filter(l=>(0,F.isNonNullable)(l.bitrate)&&(0,F.isNonNullable)(a.bitrate)?a.bitrate/l.bitrate>i:!0),o=(u=(0,Zt.default)(s,Math.round(s.length*r.indexOf(a)/(r.length+1))))!=null?u:(0,Zt.default)(s,-1);return o&&(0,Bb.default)(n,o)?o:n.length?(0,Zt.default)(n,-1):(0,Zt.default)(s,0)},Ob=a=>"quality"in a,Fb=(a,e,t,i)=>{var n;let r=(0,F.isNonNullable)((n=i==null?void 0:i.last)==null?void 0:n.bitrate)&&(0,F.isNonNullable)(t==null?void 0:t.bitrate)&&i.last.bitrate<t.bitrate?a.trackCooldownIncreaseQuality:a.trackCooldownDecreaseQuality,s=t&&i&&i.history[t.id]&&(0,F.now)()-i.history[t.id]<=r&&(!i.last||t.id!==i.last.id);if(t!=null&&t.id&&i&&!s&&i.recordSelection(t),s&&(i!=null&&i.last)){let o=i.last;i==null||i.recordSwitch(o);let u=Ob(o)?"video":"audio",l=Ob(o)?o.quality:o.bitrate;return e({message:`
|
|
8
|
-
[
|
|
9
|
-
`}),o}return i==null||i.recordSwitch(t),t},WA=(a,e)=>Math.log(e)/Math.log(a),YA=({tuning:a,container:e,limits:t,panelSize:i})=>{let r=a.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(a.usePixelRatio&&ee.display.pixelRatio){let s=ee.display.pixelRatio;if(a.pixelRatioMultiplier)r*=a.pixelRatioMultiplier*(s-1)+1;else{let n=a.pixelRatioLogBase,[o=0,u=0,l=0]=a.pixelRatioLogCoefficients,c=WA(n,o*s+u)+l;Number.isFinite(c)&&(r*=c)}}return Vu({highQualityLimit:a.highQualityLimit,trafficSavingLimit:a.trafficSavingLimit,limits:t})&&(r*=2),{containerSizeLimit:a.limitByContainer&&e&&e.width>0&&e.height>0?{width:e.width*r,height:e.height*r}:void 0,containerSizeFactor:r}},ei=(a,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:s=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:c,droppedVideoMaxQualityLimit:d,stallsVideoMaxQualityLimit:m,stallsPredictedThroughput:h,abrLogger:f,panelSize:g})=>{var K,ue,C,Q,oe;(0,F.assertNotEmptyArray)(a,Nb);let{containerSizeFactor:S,containerSizeLimit:y}=YA({container:e,tuning:i,limits:r,panelSize:g}),I=i.considerPlaybackRate&&(0,F.isNonNullable)(o)?o:1,x=a.filter($=>!(0,F.isInvariantQuality)($.quality)).sort(($,N)=>(0,F.isHigher)($.quality,N.quality)?-1:1),w=(K=(0,Zt.default)(x,-1))==null?void 0:K.quality,P=(ue=(0,Zt.default)(x,0))==null?void 0:ue.quality,O=Wr({limits:r,lowestAvailableQuality:w,highestAvailableQuality:P}),J=I*_b(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),Z={},k=x.filter($=>{let N=!0;if(y)if($.size)N=$.size.width<=y.width&&$.size.height<=y.height;else{let wt=y&&(0,F.videoSizeToQuality)(y);N=wt?(0,F.isLowerOrEqual)($.quality,wt):!0}if(!N)return Z[$.quality]="FitsContainer",!1;let Ae=h||t,ki=(0,F.isNonNullable)(Ae)&&isFinite(Ae)&&(0,F.isNonNullable)($.bitrate)?Ae-s>=$.bitrate*J:!0,Pt=Vu({highQualityLimit:i.highQualityLimit,trafficSavingLimit:i.trafficSavingLimit,limits:r})&&(r==null?void 0:r.min)===$.quality;if(!ki&&!Pt)return Z[$.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&(0,F.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,F.isInvariantQuality)(u.quality)&&(n!=null?n:0)<i.minBufferToSwitchUp&&(0,F.isHigher)($.quality,u.quality))return Z[$.quality]="Buffer",!1;if(!!d&&(0,F.isHigherOrEqual)($.quality,d)&&!Pt)return Z[$.quality]="DroppedFramesLimit",!1;if(!!m&&(0,F.isHigherOrEqual)($.quality,m)&&!Pt)return Z[$.quality]="StallsLimit",!1;let Be=O||((0,F.isNullable)(r==null?void 0:r.max)||(0,F.isLowerOrEqual)($.quality,r.max))&&((0,F.isNullable)(r==null?void 0:r.min)||(0,F.isHigherOrEqual)($.quality,r.min)),ht=(0,F.isNonNullable)(c)&&!c?(0,F.isLowerOrEqual)($.quality,i.backgroundVideoQualityLimit):!0;return!Be||!ht?(Z[$.quality]="FitsQualityLimits",!1):!0})[0];k&&k.bitrate&&GA.next(k.bitrate);let te=(C=k!=null?k:(0,Zt.default)(x,-1))!=null?C:a[0],_=l==null?void 0:l.last,ie=Fb(i,f,te,l);return(0,F.isNonNullable)(l)&&ie.quality!==(_==null?void 0:_.quality)&&f({message:`
|
|
10
|
-
[VIDEO TRACKS ABR]
|
|
11
|
-
[available video tracks]
|
|
12
|
-
${a.map($=>{var N,Ae;return`{ id: ${$.id}, quality: ${$.quality}, bitrate: ${$.bitrate}, size: ${(N=$.size)==null?void 0:N.width}:${(Ae=$.size)==null?void 0:Ae.height} }`}).join(`
|
|
13
|
-
`)}
|
|
14
|
-
|
|
15
|
-
[tuning]
|
|
16
|
-
${(0,Zs.default)(i!=null?i:{}).map(([$,N])=>`${$}: ${N}`).join(`
|
|
17
|
-
`)}
|
|
18
|
-
|
|
19
|
-
[limit params]
|
|
20
|
-
containerSizeFactor: ${S},
|
|
21
|
-
containerSizeLimit: ${(Q=y==null?void 0:y.width)!=null?Q:0} x ${(oe=y==null?void 0:y.height)!=null?oe:0},
|
|
22
|
-
estimatedThroughput: ${t},
|
|
23
|
-
stallsPredictedThroughput: ${h},
|
|
24
|
-
reserve: ${s},
|
|
25
|
-
playbackRate: ${o},
|
|
26
|
-
playbackRateFactor: ${I},
|
|
27
|
-
forwardBufferHealth: ${n},
|
|
28
|
-
bitrateFactor: ${J},
|
|
29
|
-
minBufferToSwitchUp: ${i.minBufferToSwitchUp},
|
|
30
|
-
droppedVideoMaxQualityLimit: ${d},
|
|
31
|
-
stallsVideoMaxQualityLimit: ${m},
|
|
32
|
-
limitsAreInvalid: ${O},
|
|
33
|
-
maxQualityLimit: ${r==null?void 0:r.max},
|
|
34
|
-
minQualityLimit: ${r==null?void 0:r.min},
|
|
35
|
-
|
|
36
|
-
[limited video tracks]
|
|
37
|
-
${(0,Zs.default)(Z).map(([$,N])=>`${$}: ${N}`).join(`
|
|
38
|
-
`)||"All tracks are available"}
|
|
39
|
-
|
|
40
|
-
[best video track] ${k==null?void 0:k.quality}
|
|
41
|
-
[selected video track] ${ie==null?void 0:ie.quality}
|
|
42
|
-
`}),ie},qb=(a,e,t,{estimatedThroughput:i,tuning:r,playbackRate:s,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,F.assertNotEmptyArray)(t,Nb);let c=r.considerPlaybackRate&&(0,F.isNonNullable)(s)?s:1,d=[...t].sort(Ou(-1)),m=a.bitrate;(0,F.assertNonNullable)(m);let h=c*_b(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,g=en(a,e,t,r.minVideoAudioRatio),S=l||i;(0,F.isNonNullable)(S)&&isFinite(S)&&(f=d.find(x=>(0,F.isNonNullable)(x.bitrate)&&(0,F.isNonNullable)(g==null?void 0:g.bitrate)?S-m>=x.bitrate*h&&x.bitrate>=g.bitrate:!1)),f||(f=g);let y=o==null?void 0:o.last,I=f&&Fb(r,u,f,o);return(0,F.isNonNullable)(o)&&(I==null?void 0:I.bitrate)!==(y==null?void 0:y.bitrate)&&u({message:`
|
|
43
|
-
[AUDIO TRACKS ABR]
|
|
44
|
-
[available audio tracks]
|
|
45
|
-
${t.map(x=>`{ id: ${x.id}, bitrate: ${x.bitrate} }`).join(`
|
|
46
|
-
`)}
|
|
47
|
-
|
|
48
|
-
[tuning]
|
|
49
|
-
${(0,Zs.default)(r!=null?r:{}).map(([x,w])=>`${x}: ${w}`).join(`
|
|
50
|
-
`)}
|
|
51
|
-
|
|
52
|
-
[limit params]
|
|
53
|
-
estimatedThroughput: ${i},
|
|
54
|
-
stallsPredictedThroughput: ${l},
|
|
55
|
-
reserve: ${m},
|
|
56
|
-
playbackRate: ${s},
|
|
57
|
-
playbackRateFactor: ${c},
|
|
58
|
-
forwardBufferHealth: ${n},
|
|
59
|
-
bitrateFactor: ${h},
|
|
60
|
-
minBufferToSwitchUp: ${r.minBufferToSwitchUp},
|
|
61
|
-
|
|
62
|
-
[selected audio track] ${I==null?void 0:I.id}
|
|
63
|
-
`}),I};var Pe=a=>new URL(a).hostname;var B=require("@vkontakte/videoplayer-shared/es2015");var Wb=W(Jt(),1);var Hb=W(Je(),1);var Ub=a=>{if(a instanceof DOMException&&(0,Hb.default)(["Failed to load because no supported source was found.","The element has no supported sources."],a.message))throw a;return!(a instanceof DOMException&&(a.code===20||a.name==="AbortError"))},He=(a,e)=>A(void 0,null,function*(){let t=a.muted;try{yield a.play()}catch(i){if(!Ub(i))return!1;if(e&&e(),t)return console.warn(i),!1;a.muted=!0;try{yield a.play()}catch(r){return Ub(r)&&(a.muted=!1,console.warn(r)),!1}}return!0});var ze=require("@vkontakte/videoplayer-shared/es2015");var jb=W(tr(),1),It=require("@vkontakte/videoplayer-shared/es2015");function we(){return(0,It.now)()}function Bu(a){return we()-a}function _u(a){let e=a.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 Qb(a,e,t){let i=(...r)=>{t.apply(null,r),a.removeEventListener(e,i)};a.addEventListener(e,i)}function rr(a,e,t,i){let r=window.XMLHttpRequest,s,n,o,u=!1,l=0,c,d,m=!1,h="arraybuffer",f=7e3,g=2e3,S=()=>{if(u)return;(0,It.assertNonNullable)(c);let _=Bu(c),ie;if(_<g){ie=g-_,setTimeout(S,ie);return}g*=2,g>f&&(g=f),n&&n.abort(),n=new r,O()},y=_=>(s=_,te),I=_=>(d=_,te),x=()=>(h="json",te),w=()=>{if(!u){if(--l>=0){S(),i&&i();return}u=!0,d&&d(),t&&t()}},P=_=>(m=_,te),O=()=>{c=we(),n=new r,n.open("get",a);let _=0,ie,K=0,ue=()=>((0,It.assertNonNullable)(c),Math.max(c,Math.max(ie||0,K||0)));if(s&&n.addEventListener("progress",C=>{let Q=we();s.updateChunk&&C.loaded>_&&(s.updateChunk(ue(),C.loaded-_),_=C.loaded,ie=Q)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>w())),n.addEventListener("load",()=>{if(u)return;(0,It.assertNonNullable)(n);let C=n.status;if(C>=200&&C<300){let{response:Q,responseType:oe}=n,$=Q==null?void 0:Q.byteLength;if(typeof $=="number"&&s){let N=$-_;N&&s.updateChunk&&s.updateChunk(ue(),N)}oe==="json"&&(!Q||!(0,jb.default)(Q).length)?w():(d&&d(),e(Q))}else w()}),n.addEventListener("error",()=>{w()}),m){let C=()=>{(0,It.assertNonNullable)(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(K=we(),n.removeEventListener("readystatechange",C))};n.addEventListener("readystatechange",C)}return n.responseType=h,n.send(),te},te={withBitrateReporting:y,withParallel:P,withJSONResponse:x,withRetryCount:_=>(l=_,te),withRetryInterval:(_,ie)=>((0,It.isNonNullable)(_)&&(g=_),(0,It.isNonNullable)(ie)&&(f=ie),te),withTimeout:_=>(o=_,te),withFinally:I,send:O,abort:()=>{n&&(n.abort(),n=void 0),u=!0,d&&d()}};return te}var zr=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 s=this.intervals[0];if(s.end<=t)i+=s.end-s.start,r+=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;r+=u,s.start=t,s.bytes-=u}}}if(r>0&&i>0){let s=r*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(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 Gb=W(tr(),1);var Kr=class{constructor(e,t,i,r,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=r,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=we(),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)},s=u=>{e._complete=1,e._responseData=u,e._downloadTime=we()-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,s,()=>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=we()}_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=we();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,Gb.default)(this.activeRequests).forEach(e=>{e&&e._request&&e._request.abort()}),this.activeRequests={},this.pendingQueue=[],this.completeRequests={}}requestData(e,t,i,r){let s={};return s.send=()=>{let n=this.activeRequests[e]||this.completeRequests[e];if(n)n._cb=t,n._errorCB=i,n._retryCB=r,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=r,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 Yb=require("@vkontakte/videoplayer-shared/es2015");var tn=1e4,Nu=3;var KA=6e4,XA=10,JA=1,ZA=500,Xr=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 Yb.Subject,this.chunkRateEstimator=new zr(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=_u(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=_u(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",()=>{var r;!!e.error&&!this.destroyed&&(t(`Video element error: ${(r=e.error)==null?void 0:r.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,s,n=t&&1.62*(ee.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||{};!Vb({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,Wb.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)?(!r||s.bitrate>r.bitrate)&&(r=s):(!i||i.bitrate>s.bitrate)&&(i=s))}return r||i}shouldPlay(){if(this.paused)return!1;let t=this._getBufferSizeSec()-Math.max(1,this.sourceJitter);return t>3||(0,ze.isNonNullable)(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){let{logger:i,videoElement:r,playerCallback:s}=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=()=>{Qb(r,"progress",()=>{r.buffered.length?(r.currentTime=r.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 Kr(Nu,tn,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,s=!1,n=null,o=null,u=null,l=null,c=!1,d=()=>{let w=s&&(!c||c===this.rep);return w||t("Not running!"),w},m=(w,P,O)=>{u&&u.abort(),u=rr(this.urlResolver.resolve(w,!1),P,O,()=>this._retryCallback()).withTimeout(tn).withBitrateReporting(this.bitrateSwitcher).withRetryCount(Nu).withFinally(()=>{u=null}).send()},h=(w,P,O)=>{(0,ze.assertNonNullable)(this.filesFetcher),o==null||o.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(w,!1),P,O,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},f=w=>{let P=i.playbackRate;i.playbackRate!==w&&(t(`Playback rate switch: ${P}=>${w}`),i.playbackRate=w)},g=w=>{this.lowLatency=w,t(`lowLatency changed to ${w}`),S()},S=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)f(1);else{let w=this._getBufferSizeSec();if(this.bufferStates.length<5){f(1);return}let O=we()-1e4,J=0;for(let ne=0;ne<this.bufferStates.length;ne++){let k=this.bufferStates[ne];w=Math.min(w,k.buf),k.ts<O&&J++}this.bufferStates.splice(0,J),t(`update playback rate; minBuffer=${w} drop=${J} jitter=${this.sourceJitter}`);let Z=w-JA;this.sourceJitter>=0?Z-=this.sourceJitter/2:this.sourceJitter-=1,Z>3?f(1.15):Z>1?f(1.1):Z>.3?f(1.05):f(1)}},y=w=>{let P,O=()=>P&&P.start?P.start.length:0,J=C=>P.start[C]/1e3,Z=C=>P.dur[C]/1e3,ne=C=>P.fragIndex+C,k=(C,Q)=>({chunkIdx:ne(C),startTS:J(C),dur:Z(C),discontinuity:Q}),te=()=>{let C=0;if(P&&P.dur){let Q=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,oe=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,$=Q;this.sourceJitter>1&&($+=this.sourceJitter-1);let N=P.dur.length-1;for(;N>=0&&($-=P.dur[N],!($<=0));--N);C=Math.min(N,P.dur.length-1-oe),C=Math.max(C,0)}return k(C,!0)},_=C=>{let Q=O();if(!(Q<=0)){if((0,ze.isNonNullable)(C)){for(let oe=0;oe<Q;oe++)if(J(oe)>C)return k(oe)}return te()}},ie=C=>{let Q=O(),oe=C?C.chunkIdx+1:0,$=oe-P.fragIndex;if(!(Q<=0)){if(!C||$<0||$-Q>XA)return t(`Resync: offset=${$} bChunks=${Q} chunk=`+JSON.stringify(C)),te();if(!($>=Q))return k(oe-P.fragIndex,!1)}},K=(C,Q,oe)=>{l&&l.abort(),l=rr(this.urlResolver.resolve(C,!0,this.lowLatency),Q,oe,()=>this._retryCallback()).withTimeout(tn).withRetryCount(Nu).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(C,Q)=>{K(w,oe=>{if(!d())return;P=oe;let $=!!P.lowLatency;$!==this.lowLatency&&g($);let N=0;for(let Ae=0;Ae<P.dur.length;++Ae)N+=P.dur[Ae];N>0&&((0,ze.assertNonNullable)(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(N/P.dur.length)),r({name:"index",zeroTime:P.zeroTime,shiftDuration:P.shiftDuration}),this.sourceJitter=P.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,P.jitter/1e3)):1,C(_(Q))},()=>this._handleNetworkError())},nextChunk:ie}},I=()=>{s=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),(0,ze.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return c={start:w=>{let{videoElement:P,logger:O}=this.params,J=y(e.jidxUrl),Z,ne,k,te,_=0,ie,K,ue,C=()=>{ie&&(clearTimeout(ie),ie=void 0);let se=Math.max(ZA,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Me=_+se,Oe=we(),Be=Math.min(1e4,Me-Oe);_=Oe;let ht=()=>{l||d()&&J.seek(()=>{d()&&(_=we(),Q(),C())})};Be>0?ie=window.setTimeout(()=>{this.paused?C():ht()},Be):ht()},Q=()=>{let se;for(;se=J.nextChunk(te);)te=se,ki(se);let Me=J.nextChunk(k);if(Me){if(k&&Me.discontinuity){O("Detected discontinuity; restarting playback"),this.paused?C():(I(),this._initPlayerWith(e));return}Ae(Me)}else C()},oe=(se,Me)=>{if(!d()||!this.sourceBuffer)return;let Oe,Be,ht,wt=Nt=>{window.setTimeout(()=>{d()&&oe(se,Me)},Nt)};if(this.sourceBuffer.updating)O("Source buffer is updating; delaying appendBuffer"),wt(100);else{let Nt=we(),si=P.currentTime;!this.paused&&P.buffered.length>1&&K===si&&Nt-ue>500&&(O("Stall suspected; trying to fix"),this._fixupStall()),K!==si&&(K=si,ue=Nt);let Ri=this._getBufferSizeSec();if(Ri>30)O(`Buffered ${Ri} seconds; delaying appendBuffer`),wt(2e3);else try{this.sourceBuffer.appendBuffer(se),this.videoPlayStarted?(this.bufferStates.push({ts:Nt,buf:Ri}),S(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),Me&&Me()}catch(pr){if(pr.name==="QuotaExceededError")O("QuotaExceededError; delaying appendBuffer"),ht=this.sourceBuffer.buffered.length,ht!==0&&(Oe=this.sourceBuffer.buffered.start(0),Be=si,Be-Oe>4&&this.sourceBuffer.remove(Oe,Be-3)),wt(1e3);else throw pr}}},$=()=>{ne&&Z&&(O([`Appending chunk, sz=${ne.byteLength}:`,JSON.stringify(k)]),oe(ne,function(){ne=null,Q()}))},N=se=>e.fragUrlTemplate.replace("%%id%%",se.chunkIdx),Ae=se=>{d()&&h(N(se),(Me,Oe)=>{if(d()){if(Oe/=1e3,ne=Me,k=se,n=se.startTS,Oe){let Be=Math.min(10,se.dur/Oe);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*Be:Be}$()}},()=>this._handleNetworkError())},ki=se=>{d()&&((0,ze.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(N(se),!1)))},Pt=se=>{d()&&(e.cachedHeader=se,oe(se,()=>{Z=!0,$()}))};s=!0,J.seek(se=>{if(d()){if(_=we(),!se){C();return}te=se,!(0,ze.isNullable)(w)||se.startTS>w?Ae(se):(k=se,Q())}},w),e.cachedHeader?Pt(e.cachedHeader):m(e.headerUrl,Pt,()=>this._handleNetworkError())},stop:I,getTimestampSec:()=>n},c}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),(0,ze.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,ze.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,ze.isNonNullable)(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=d=>{if(!this.autoQuality)return;let m,h,f;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&d<this.bitrate&&(h=this._getBufferSizeSec(),f=d/this.bitrate,h>10&&f>.8||h>15&&f>.5||h>20&&f>.3)){e(`Not switching: buffer=${Math.floor(h)}; bitrate=${this.bitrate}; newRate=${Math.floor(d)}`);return}m=this._selectQuality(d),m?this._switchToQuality(m):e(`Could not find quality by bitrate ${d}`)},s={updateChunk:(m,h)=>{let f=we();if(this.chunkRateEstimator.addInterval(m,f,h)){let S=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:h,duration:f-m,speed:S}),!0}},get:()=>{let m=this.chunkRateEstimator.getBitRate();return m?m*.85:0}},n=-1/0,o,u=!0,l=()=>{let d=s.get();if(d&&o&&this.autoQuality){if(u&&d>o&&Bu(n)<3e4)return;i(d)}u=this.autoQuality};return{updateChunk:(d,m)=>{let h=s.updateChunk(d,m);return h&&l(),h},notifySwitch:d=>{let m=we();d<o&&(n=m),o=d}}}_fetchManifest(e,t,i){this.manifestRequest=rr(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(tn).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;He(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,s=n=>{let o=[];return n!=null&&n.length?(n.forEach((u,l)=>{var c,d;u.video&&r.canPlayType(u.codecs).replace(/no/,"")&&((d=(c=window.MediaSource)==null?void 0:c.isTypeSupported)!=null&&d.call(c,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))},KA))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var zb=W(Qi(),1),fe=require("@vkontakte/videoplayer-shared/es2015"),Fu=class{constructor(){this.onDroopedVideoFramesLimit$=new fe.Subject;this.subscription=new fe.Subscription;this.playing=!1;this.tracks=[];this.forceChecker$=new fe.Subject;this.isForceCheckCounter=0;this.prevTotalVideoFrames=0;this.prevDroppedVideoFrames=0;this.limitCounts={};this.handleChangeVideoQuality=()=>{let e=this.tracks.find(({size:t})=>(t==null?void 0:t.height)===this.video.videoHeight&&(t==null?void 0:t.width)===this.video.videoWidth);e&&!(0,fe.isInvariantQuality)(e.quality)&&this.onChangeQuality(e.quality)};this.checkDroppedFrames=()=>{var n;let{totalVideoFrames:e,droppedVideoFrames:t}=this.video.getVideoPlaybackQuality(),i=e-this.prevTotalVideoFrames,r=t-this.prevDroppedVideoFrames,s=1-(i-r)/i;!isNaN(s)&&s>0&&this.log({message:`[dropped]. current dropped percent: ${s}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(s)&&s>=this.droppedFramesChecker.percentLimit&&(0,fe.isHigher)(this.currentQuality,this.droppedFramesChecker.minQualityBanLimit)&&(this.limitCounts[this.currentQuality]=((n=this.limitCounts[this.currentQuality])!=null?n: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,fe.fromEvent)(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=(0,fe.interval)(this.droppedFramesChecker.checkTime).pipe((0,fe.filter)(()=>this.playing),(0,fe.filter)(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe((0,fe.debounce)(this.droppedFramesChecker.checkTime)),i=(0,fe.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){var i,r;let t=(r=(i=(0,zb.default)(this.limitCounts).filter(([,s])=>s>=this.droppedFramesChecker.countLimit).sort(([s],[n])=>(0,fe.isLower)(s,n)?-1:1))==null?void 0:i[0])==null?void 0:r[0];return e!=null?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}},rn=Fu;var an=require("@vkontakte/videoplayer-shared/es2015"),Kb=require("@vkontakte/videoplayer-shared/es2015");var Jr=()=>{var a;return!!((a=window.documentPictureInPicture)!=null&&a.window)||!!document.pictureInPictureElement};var ek=(a,e)=>new an.Observable(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Jr()))},L(L({},i),e));r.observe(a);let s=(0,Kb.fromEvent)(document,"visibilitychange").pipe((0,an.map)(n=>!document.hidden||Jr())).subscribe(n=>t.next(n));return()=>{r.unobserve(a),s.unsubscribe()}}),tt=ek;var tk=["paused","playing","ready"],ik=["paused","playing","ready"],Zr=class{constructor(e){this.subscription=new B.Subscription;this.videoState=new Y("stopped");this.representations$=new B.ValueSubject([]);this.droppedFramesManager=new rn;this.maxSeekBackTime$=new B.ValueSubject(1/0);this.zeroTime$=new B.ValueSubject(void 0);this.liveOffset=new Ti;this._dashCb=e=>{var t,i,r,s;switch(e.name){case"buffering":{let n=e.isBuffering;this.params.output.isBuffering$.next(n);break}case"error":{this.params.output.error$.next({id:`DashLiveProviderInternal:${e.type}`,category:B.ErrorCategory.WTF,message:"LiveDashPlayer reported error"});break}case"manifest":{let n=e.manifest,o=[];for(let u of n){let l=(t=u.name)!=null?t:u.index.toString(10),c=(i=Xt(u.name))!=null?i:(0,B.videoSizeToQuality)(u.video),d=u.bitrate/1e3,m=L({},u.video);if(!c)continue;let h={id:l,quality:c,bitrate:d,size:m};o.push({track:h,representation:u})}this.representations$.next(o),this.params.output.availableVideoTracks$.next(o.map(({track:u})=>u)),((r=this.videoState.getTransition())==null?void 0:r.to)==="manifest_ready"&&this.videoState.setState("manifest_ready");break}case"qualitySwitch":{let n=e.quality,o=(s=this.representations$.getValue().find(({representation:u})=>u===n))==null?void 0:s.track;this.params.output.hostname$.next(new URL(n.headerUrl,this.params.source.url).hostname),(0,B.isNonNullable)(o)&&this.params.output.currentVideoTrack$.next(o);break}case"bandwidth":{let{size:n,duration:o}=e;this.params.dependencies.throughputEstimator.addRawSpeed(n,o);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(),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,qu.default)(ik,e)&&(n||o)){this.prepare();return}if((r==null?void 0:r.to)!=="paused"&&s.state==="requested"&&(0,qu.default)(tk,e)){this.seek(s.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==null?void 0: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,B.assertNever)(e)}};this.textTracksManager=new et(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:B.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add((0,B.merge)(this.videoState.stateChangeStarted$.pipe((0,B.map)(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,B.map)(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:s})=>{this.log({message:`[videoState change] ${s}: ${JSON.stringify(r)}`})})),this.video=Ne(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(Pe(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=Ue(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,B.map)(r=>r.map(({track:s})=>s)),(0,B.filter)(r=>!!r.length),(0,B.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(()=>{var r;((r=this.videoState.getTransition())==null?void 0:r.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,B.filterChanged)(),(0,B.map)(r=>-r/1e3)).subscribe(this.params.output.duration$)).add((0,B.combine)({zeroTime:this.zeroTime$.pipe((0,B.filter)(B.isNonNullable)),position:i.timeUpdate$}).subscribe(({zeroTime:r,position:s})=>this.params.output.liveTime$.next(r+s*1e3),t)).add(Tt(this.video,this.params.desiredState.isLooped,t)).add(qe(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(Ze(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(tt(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:r,min:s}})=>{this.dash.setAutoQualityLimits({max:r&&(0,B.videoQualityToHeight)(r),min:s&&(0,B.videoQualityToHeight)(s)}),this.params.output.autoVideoTrackLimits$.next({max:r,min:s})})).add(this.videoState.stateChangeEnded$.subscribe(r=>{var s;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":((s=this.params.desiredState.playbackState.getTransition())==null?void 0:s.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,B.assertNever)(r.to)}},t)).add((0,B.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,B.observableFrom)(["init"])).pipe((0,B.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),Fe(this.video)}createLiveDashPlayer(){let e=new Xr({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(){var l,c,d,m,h,f;let e=this.representations$.getValue(),t=(c=(l=this.params.desiredState.videoTrack.getTransition())==null?void 0:l.to)!=null?c:this.params.desiredState.videoTrack.getState(),i=(m=(d=this.params.desiredState.autoVideoTrackSwitching.getTransition())==null?void 0:d.to)!=null?m:this.params.desiredState.autoVideoTrackSwitching.getState(),r=!i&&(0,B.isNonNullable)(t)?t:ei(e.map(({track:g})=>g),{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=r==null?void 0:r.id,n=this.params.desiredState.videoTrack.getTransition(),o=(h=this.params.desiredState.videoTrack.getState())==null?void 0:h.id,u=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(r&&(n||s!==o)&&this.setVideoTrack(r),u&&this.setAutoQuality(i),n||u||s!==o){let g=(f=e.find(({track:S})=>S.id===s))==null?void 0:f.representation;(0,B.assertNonNullable)(g,"Representations missing"),this.dash.startPlay(g,i)}}setVideoTrack(e){var i;let t=(i=this.representations$.getValue().find(({track:r})=>r.id===e.id))==null?void 0:i.representation;(0,B.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",s=-e,n=s<=this.maxSeekBackTime$.getValue()?s: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 Xb=Zr;var sS=W(Je(),1);var ar=(a,e)=>{let t=0;for(let i=0;i<a.length;i++){let r=a.start(i)*1e3,s=a.end(i)*1e3;r<=e&&e<=s&&(t=s)}return Math.max(t-e,0)};var j=require("@vkontakte/videoplayer-shared/es2015");var sn=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,s=i.length;r<s;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,s=i.length;r<s;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}},sr=class extends sn{constructor(){super(),this.listeners||sn.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)}},ea=class{constructor(){Object.defineProperty(this,"signal",{value:new sr,writable:!0,configurable:!0})}abort(e){let t;try{t=new Event("abort")}catch(r){typeof document!="undefined"?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=="undefined")i=new Error("This operation was aborted"),i.name="AbortError";else try{i=new DOMException("signal is aborted without reason")}catch(r){i=new Error("This operation was aborted"),i.name="AbortError"}this.signal.reason=i,this.signal.dispatchEvent(t)}toString(){return"[object AbortController]"}};typeof Symbol!="undefined"&&Symbol.toStringTag&&(ea.prototype[Symbol.toStringTag]="AbortController",sr.prototype[Symbol.toStringTag]="AbortSignal");function nn(a){return a.__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL?(console.log("__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL=true is set, will force install polyfill"),!0):typeof a.Request=="function"&&!a.Request.prototype.hasOwnProperty("signal")||!a.AbortController}function Uu(a){typeof a=="function"&&(a={fetch:a});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=a;if(!nn({fetch:e,Request:t,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r}))return{fetch:e,Request:s};let s=t;(s&&!s.prototype.hasOwnProperty("signal")||r)&&(s=function(l,c){let d;c&&c.signal&&(d=c.signal,delete c.signal);let m=new t(l,c);return d&&Object.defineProperty(m,"signal",{writable:!1,enumerable:!1,configurable:!0,value:d}),m},s.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let c=s&&s.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(c){let d;try{d=new DOMException("Aborted","AbortError")}catch(h){d=new Error("Aborted"),d.name="AbortError"}if(c.aborted)return Promise.reject(d);let m=new Promise((h,f)=>{c.addEventListener("abort",()=>f(d),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([m,n(u,l)])}return n(u,l)},Request:s}}var ta=nn({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),Jb=ta?Uu({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,Et=ta?Jb.fetch:window.fetch,UV=ta?Jb.Request:window.Request,Le=ta?ea:window.AbortController,HV=ta?sr:window.AbortSignal;var vl=W(ju(),1);var _g=W(Bg(),1),nr=require("@vkontakte/videoplayer-shared/es2015"),Ng=a=>{if(!a)return{id:"EmptyResponse",category:nr.ErrorCategory.PARSER,message:"Empty response"};if(a.length<=2&&a.match(/^\d+$/))return{id:`UVError#${a}`,category:nr.ErrorCategory.NETWORK,message:`UV Error ${a}`};let e=(0,_g.default)(a).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:nr.ErrorCategory.NETWORK,message:"Received unexpected HTML, possibly a ISP block"};if(e.startsWith("<?xml"))return new DOMParser().parseFromString(a,"text/xml").querySelector("parsererror")?{id:"InvalidXML",category:nr.ErrorCategory.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:nr.ErrorCategory.PARSER,message:"Response is valid XML, but parser failed"}};var ti=(a,e,t=0)=>{for(let i=0;i<a.length;i++)if(a.start(i)*1e3-t<=e&&a.end(i)*1e3+t>e)return!0;return!1};var v=require("@vkontakte/videoplayer-shared/es2015");var on=W(Je(),1),lr=W(Jt(),1),un=W(ju(),1);var qk=(a,e={})=>{let i=e.timeout||1,r=performance.now();return window.setTimeout(()=>{a({get didTimeout(){return e.timeout?!1:performance.now()-r-1>i},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},Uk=a=>window.clearTimeout(a),Fg=a=>typeof a=="function"&&(a==null?void 0:a.toString().endsWith("{ [native code] }")),qg=!Fg(window.requestIdleCallback)||!Fg(window.cancelIdleCallback),zu=qg?qk:window.requestIdleCallback,ra=qg?Uk:window.cancelIdleCallback;var Wv=W(Hs(),1);var ii=require("@vkontakte/videoplayer-shared/es2015");var Hk=18,Ug=!1;try{Ug=ee.browser.isSafari&&!!ee.browser.safariVersion&&ee.browser.safariVersion<=Hk}catch(a){console.error(a)}var Ku=class{constructor(e){this.bufferFull$=new ii.Subject;this.error$=new ii.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.completeTask=()=>{var e;try{if(this.currentTask){let t=(e=this.currentTask.signal)==null?void 0:e.aborted;this.currentTask.callback(!t),this.currentTask=null}this.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:ii.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,this.buffer.addEventListener("updateend",this.completeTask)}append(e,t){return A(this,null,function*(){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})})}remove(e,t,i){return A(this,null,function*(){return i&&i.aborted?!1:new Promise(r=>{let s={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(s),this.pull()})})}abort(e){return A(this,null,function*(){return new Promise(t=>{let i,r=s=>{this.abortRequested=!1,t(s)};Ug&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};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(){var r;if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.queue.shift();if(!e)return;if((r=e.signal)!=null&&r.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(s){s instanceof DOMException&&s.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):s instanceof DOMException&&s.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:ii.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:s}),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,ii.assertNever)(t)}}},Hg=Ku;var Xu=a=>{let e=0;for(let t=0;t<a.length;t++)e+=a.end(t)-a.start(t);return e*1e3};var E=require("@vkontakte/videoplayer-shared/es2015");var re=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,s=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,s,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 or=class extends re{};var aa=class extends re{constructor(t,i){super(t,i);this.ondemandPrefix="ondemandlivejson";this.ondemandDataReceivedKey="t-in";this.ondemandDataPreparedKey="t-out";let r=this.content.byteOffset,s=r+this.content.byteLength,n=new TextDecoder("ascii").decode(this.content.buffer.slice(r,s)).split(this.ondemandPrefix)[1],o=JSON.parse(n);this.serverDataReceivedTimestamp=o[this.ondemandDataReceivedKey],this.serverDataPreparedTime=o[this.ondemandDataPreparedKey]}};var sa=class extends re{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 na=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var pe=class extends re{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var oa=class extends pe{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 ua=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var la=class extends re{constructor(e,t){super(e,t),this.data=this.content}};var Ii=class extends pe{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(),s=r>>>31,n=r<<1>>>1,o=this.readUint32();r=this.readUint32();let u=r>>>28,l=r<<3>>>3;this.segments.push({referenceType:s,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var ca=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var da=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var pa=class extends pe{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 ha=class extends pe{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var ma=class extends pe{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var fa=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ba=class extends pe{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 ga=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var va=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Sa=class extends pe{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var ya=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ta=class extends pe{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 Ia=class extends pe{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 Ea=class extends pe{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 xa=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Pa=class extends pe{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 wa=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var Qk={ftyp:sa,moov:na,mvhd:oa,moof:ua,mdat:la,sidx:Ii,trak:ca,mdia:fa,mfhd:Sa,tkhd:ba,traf:ya,tfhd:Ta,tfdt:Ia,trun:Ea,minf:ga,sv3d:da,st3d:pa,prhd:ha,proj:va,equi:ma,uuid:aa,stbl:xa,stsd:Pa,avc1:wa,unknown:or},Ct=class a{constructor(e={}){this.options=L({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(r){break}return t}createBox(e,t){let i=Qk[e];return i?new i(t,new a):new or(t,new a)}};var ri=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{var i,r,s;(s=(i=this.index)[r=t.type])!=null||(i[r]=[]),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 Wk=new TextDecoder("ascii"),Yk=a=>Wk.decode(new DataView(a.buffer,a.byteOffset+4,4))==="ftyp",zk=a=>{let e=new Ii(a,new Ct),t=e.earliestPresentationTime/e.timescale*1e3,i=a.byteOffset+a.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})},Kk=(a,e)=>{let i=new Ct().parse(a),r=new ri(i),s=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&s.length))return null;let o=s[0],u=n[n.length-1],l=o.source.byteOffset,d=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(a.buffer,l,d)},Xk=a=>{let t=new Ct().parse(a),i=new ri(t),r={},s=i.findAll("uuid");return s.length?s[s.length-1]:r},Jk=a=>{var r;let t=new Ct().parse(a);return(r=new ri(t).find("sidx"))==null?void 0:r.timescale},Zk=(a,e)=>{let i=new Ct().parse(a),s=new ri(i).findAll("traf"),n=s[s.length-1].children.find(d=>d.type==="tfhd"),o=s[s.length-1].children.find(d=>d.type==="tfdt"),u=s[s.length-1].children.find(d=>d.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((d,m)=>d+m,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},eR=a=>{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 Ct().parse(a),r=new ri(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},jg={validateData:Yk,parseInit:eR,getIndexRange:()=>{},parseSegments:zk,parseFeedableSegmentChunk:Kk,getChunkEndTime:Zk,getServerLatencyTimestamps:Xk,getTimescaleFromIndex:Jk};var ka=W(Je(),1),Dt=require("@vkontakte/videoplayer-shared/es2015");var Gg=require("@vkontakte/videoplayer-shared/es2015");var Qg={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"}},Wg=a=>{let e=a.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=Aa(a,t),r=i in Qg,s=r?Qg[i].type:"binary",n=a.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(a.buffer,a.byteOffset+t+1,o-1),l=n&255>>o,c=Aa(u),d=l*bt(2,(o-1)*8)+c,m=t+o,h;return m+d>a.byteLength?h=new DataView(a.buffer,a.byteOffset+m):h=new DataView(a.buffer,a.byteOffset+m,d),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:s,tagHeaderSize:m,tagSize:m+d,value:h,valueSize:d}},Aa=(a,e=a.byteLength)=>{switch(e){case 1:return a.getUint8(0);case 2:return a.getUint16(0);case 3:return a.getUint8(0)*bt(2,16)+a.getUint16(1);case 4:return a.getUint32(0);case 5:return a.getUint8(0)*bt(2,32)+a.getUint32(1);case 6:return a.getUint16(0)*bt(2,32)+a.getUint32(2);case 7:{let t=a.getUint8(0)*281474976710656+a.getUint16(1)*4294967296+a.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},dt=(a,e)=>{switch(e){case"int":return a.getInt8(0);case"uint":return Aa(a);case"float":return a.byteLength===4?a.getFloat32(0):a.getFloat64(0);case"string":return new TextDecoder("ascii").decode(a);case"utf8":return new TextDecoder("utf-8").decode(a);case"date":return new Date(Date.UTC(2001,0)+a.getInt8(0)).getTime();case"master":return a;case"binary":return a;default:(0,Gg.assertNever)(e)}},Ei=(a,e)=>{let t=0;for(;t<a.byteLength;){let i=new DataView(a.buffer,a.byteOffset+t),r=Wg(i);if(!e(r))return;r.type==="master"&&Ei(r.value,e),t=r.value.byteOffset-a.byteOffset+r.valueSize}},Yg=a=>{if(a.getUint32(0)!==440786851)return!1;let e,t,i,r=Wg(a);return Ei(r.value,({tag:s,type:n,value:o})=>(s===17143?e=dt(o,n):s===17026?t=dt(o,n):s===17029&&(i=dt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var zg=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],tR=[231,22612,22743,167,171,163,160,175],iR=a=>{let e,t,i,r,s=!1,n=!1,o=!1,u,l,c=!1,d=0;return Ei(a,({tag:m,type:h,value:f,valueSize:g})=>{if(m===21419){let S=dt(f,h);l=Aa(S)}else m!==21420&&(l=void 0);return m===408125543?(e=f.byteOffset,t=f.byteOffset+g):m===357149030?s=!0:m===290298740?n=!0:m===2807729?i=dt(f,h):m===17545?r=dt(f,h):m===21420&&l===475249515?u=dt(f,h):m===374648427?Ei(f,({tag:S,type:y,value:I})=>S===30321?(c=dt(I,y)===1,!1):!0):s&&n&&(0,ka.default)(zg,m)&&(o=!0),!o}),(0,Dt.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,Dt.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,Dt.assertNonNullable)(r,"Failed to parse webm Segment duration"),i=i!=null?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:d,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},rR=a=>{if((0,Dt.isNullable)(a.cuesSeekPosition))return;let e=a.segmentStart+a.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},aR=(a,e)=>{let t=!1,i=!1,r=o=>(0,Dt.isNonNullable)(o.time)&&(0,Dt.isNonNullable)(o.position),s=[],n;return Ei(a,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&s.push(n),n={};break;case 179:n&&(n.time=dt(l,u));break;case 183:break;case 241:n&&(n.position=dt(l,u));break;default:t&&(0,ka.default)(zg,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&s.push(n),s.map((o,u)=>{let{time:l,position:c}=o,d=s[u+1];return{status:"none",time:{from:l,to:d?d.time:e.segmentDuration},byte:{from:e.segmentStart+c,to:d?e.segmentStart+d.position-1:e.segmentEnd-1}}})},sR=a=>{let e=0,t=!1;try{Ei(a,i=>i.tag===524531317?i.tagSize<=a.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,ka.default)(tR,i.tag)?(e+i.tagSize<=a.byteLength&&(e+=i.tagSize,t||(t=(0,ka.default)([163,160,175],i.tag))),!0):!1)}catch(i){}return e>0&&e<=a.byteLength&&t?new DataView(a.buffer,a.byteOffset,e):null},Kg={validateData:Yg,parseInit:iR,getIndexRange:rR,parseSegments:aR,parseFeedableSegmentChunk:sR};var Ra=a=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(a);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return Kg;case"mp4":return jg}}throw new ReferenceError(`Unsupported mime type ${a}`)};var cl=W(bv(),1),Uv=W(Qi(),1),Hv=W(Mv(),1),jv=W(Jt(),1),dl=W(tr(),1);var Cv=W(Je(),1),al=a=>{let e=a.split("."),[t,...i]=e;if(!t)return!1;switch(t){case"av01":{let[r,s,n]=i;return!!(n&&parseInt(n,10)>8)}case"vp09":{let[r,s,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[s,n]=r.toUpperCase(),o=s+n;return(0,Cv.default)(["6E","7A","F4"],o)}}return!1};var La=require("@vkontakte/videoplayer-shared/es2015");var Dv=a=>{if(a.includes("/")){let e=a.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(a)};var Vv=a=>{var e;try{let t=e$(),i=a.match(t),{groups:r}=i!=null?i:{};if(r){let s={};if(r.extensions){let u=r.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(u||[]).forEach(l=>{s[l[0]]=l.slice(2)})}let n=(e=r.variants)==null?void 0:e.split(/-/).filter(u=>u!==""),o={extlang:r.extlang,langtag:r.langtag,language:r.language,privateuse:r.privateuse||r.privateuse2,region:r.region,script:r.script,extensions:s,variants:n};return Object.keys(o).forEach(u=>{let l=o[u];(typeof l=="undefined"||l==="")&&delete o[u]}),o}return null}catch(t){return null}};function e$(){let a="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",c=`^(?:(?<langtag>${`
|
|
64
|
-
(?<language>${`(?:[a-z]{2,3}(?:-${a})?|[a-z]{4}|[a-z]{5,8})`})
|
|
6
|
+
"use strict";var RT=Object.create;var ta=Object.defineProperty,MT=Object.defineProperties,LT=Object.getOwnPropertyDescriptor,BT=Object.getOwnPropertyDescriptors,DT=Object.getOwnPropertyNames,tp=Object.getOwnPropertySymbols,$T=Object.getPrototypeOf,rp=Object.prototype.hasOwnProperty,CT=Object.prototype.propertyIsEnumerable;var VT=(s,e)=>(e=Symbol[s])?e:Symbol.for("Symbol."+s);var ft=Math.pow,ip=(s,e,t)=>e in s?ta(s,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):s[e]=t,R=(s,e)=>{for(var t in e||(e={}))rp.call(e,t)&&ip(s,t,e[t]);if(tp)for(var t of tp(e))CT.call(e,t)&&ip(s,t,e[t]);return s},N=(s,e)=>MT(s,BT(e));var g=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports),OT=(s,e)=>{for(var t in e)ta(s,t,{get:e[t],enumerable:!0})},sp=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of DT(e))!rp.call(s,r)&&r!==t&&ta(s,r,{get:()=>e[r],enumerable:!(i=LT(e,r))||i.enumerable});return s};var Y=(s,e,t)=>(t=s!=null?RT($T(s)):{},sp(e||!s||!s.__esModule?ta(t,"default",{value:s,enumerable:!0}):t,s)),_T=s=>sp(ta({},"__esModule",{value:!0}),s);var P=(s,e,t)=>new Promise((i,r)=>{var a=u=>{try{o(t.next(u))}catch(l){r(l)}},n=u=>{try{o(t.throw(u))}catch(l){r(l)}},o=u=>u.done?i(u.value):Promise.resolve(u.value).then(a,n);o((t=t.apply(s,e)).next())}),lr=function(s,e){this[0]=s,this[1]=e},ue=(s,e,t)=>{var i=(n,o,u,l)=>{try{var d=t[n](o),c=(o=d.value)instanceof lr,h=d.done;Promise.resolve(c?o[0]:o).then(p=>c?i(n==="return"?n:"next",o[1]?{done:p.done,value:p.value}:p,u,l):u({value:p,done:h})).catch(p=>i("throw",p,u,l))}catch(p){l(p)}},r=n=>a[n]=o=>new Promise((u,l)=>i(n,o,u,l)),a={};return t=t.apply(s,e),a[VT("asyncIterator")]=()=>a,r("next"),r("throw"),r("return"),a};var _e=g((tl,ap)=>{"use strict";var sa=function(s){return s&&s.Math===Math&&s};ap.exports=sa(typeof globalThis=="object"&&globalThis)||sa(typeof window=="object"&&window)||sa(typeof self=="object"&&self)||sa(typeof global=="object"&&global)||sa(typeof tl=="object"&&tl)||function(){return this}()||Function("return this")()});var Ze=g((qB,np)=>{"use strict";np.exports=function(s){try{return!!s()}catch(e){return!0}}});var aa=g((HB,op)=>{"use strict";var FT=Ze();op.exports=!FT(function(){var s=function(){}.bind();return typeof s!="function"||s.hasOwnProperty("prototype")})});var il=g((jB,dp)=>{"use strict";var NT=aa(),cp=Function.prototype,up=cp.apply,lp=cp.call;dp.exports=typeof Reflect=="object"&&Reflect.apply||(NT?lp.bind(up):function(){return lp.apply(up,arguments)})});var Xe=g((GB,fp)=>{"use strict";var pp=aa(),hp=Function.prototype,rl=hp.call,UT=pp&&hp.bind.bind(rl,rl);fp.exports=pp?UT:function(s){return function(){return rl.apply(s,arguments)}}});var cr=g((zB,bp)=>{"use strict";var mp=Xe(),qT=mp({}.toString),HT=mp("".slice);bp.exports=function(s){return HT(qT(s),8,-1)}});var sl=g((WB,gp)=>{"use strict";var jT=cr(),GT=Xe();gp.exports=function(s){if(jT(s)==="Function")return GT(s)}});var Ve=g((QB,Sp)=>{"use strict";var al=typeof document=="object"&&document.all;Sp.exports=typeof al=="undefined"&&al!==void 0?function(s){return typeof s=="function"||s===al}:function(s){return typeof s=="function"}});var Mt=g((YB,vp)=>{"use strict";var zT=Ze();vp.exports=!zT(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var Lt=g((KB,yp)=>{"use strict";var WT=aa(),co=Function.prototype.call;yp.exports=WT?co.bind(co):function(){return co.apply(co,arguments)}});var nl=g(xp=>{"use strict";var Tp={}.propertyIsEnumerable,Ip=Object.getOwnPropertyDescriptor,QT=Ip&&!Tp.call({1:2},1);xp.f=QT?function(e){var t=Ip(this,e);return!!t&&t.enumerable}:Tp});var na=g((JB,Ep)=>{"use strict";Ep.exports=function(s,e){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:e}}});var Pp=g((ZB,wp)=>{"use strict";var YT=Xe(),KT=Ze(),XT=cr(),ol=Object,JT=YT("".split);wp.exports=KT(function(){return!ol("z").propertyIsEnumerable(0)})?function(s){return XT(s)==="String"?JT(s,""):ol(s)}:ol});var Mr=g((eD,Ap)=>{"use strict";Ap.exports=function(s){return s==null}});var Gi=g((tD,kp)=>{"use strict";var ZT=Mr(),eI=TypeError;kp.exports=function(s){if(ZT(s))throw new eI("Can't call method on "+s);return s}});var dr=g((iD,Rp)=>{"use strict";var tI=Pp(),iI=Gi();Rp.exports=function(s){return tI(iI(s))}});var Bt=g((rD,Mp)=>{"use strict";var rI=Ve();Mp.exports=function(s){return typeof s=="object"?s!==null:rI(s)}});var Lr=g((sD,Lp)=>{"use strict";Lp.exports={}});var Ri=g((aD,Dp)=>{"use strict";var ul=Lr(),ll=_e(),sI=Ve(),Bp=function(s){return sI(s)?s:void 0};Dp.exports=function(s,e){return arguments.length<2?Bp(ul[s])||Bp(ll[s]):ul[s]&&ul[s][e]||ll[s]&&ll[s][e]}});var oa=g((nD,$p)=>{"use strict";var aI=Xe();$p.exports=aI({}.isPrototypeOf)});var pr=g((oD,Op)=>{"use strict";var nI=_e(),Cp=nI.navigator,Vp=Cp&&Cp.userAgent;Op.exports=Vp?String(Vp):""});var dl=g((uD,Hp)=>{"use strict";var qp=_e(),cl=pr(),_p=qp.process,Fp=qp.Deno,Np=_p&&_p.versions||Fp&&Fp.version,Up=Np&&Np.v8,Kt,po;Up&&(Kt=Up.split("."),po=Kt[0]>0&&Kt[0]<4?1:+(Kt[0]+Kt[1]));!po&&cl&&(Kt=cl.match(/Edge\/(\d+)/),(!Kt||Kt[1]>=74)&&(Kt=cl.match(/Chrome\/(\d+)/),Kt&&(po=+Kt[1])));Hp.exports=po});var pl=g((lD,Gp)=>{"use strict";var jp=dl(),oI=Ze(),uI=_e(),lI=uI.String;Gp.exports=!!Object.getOwnPropertySymbols&&!oI(function(){var s=Symbol("symbol detection");return!lI(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&jp&&jp<41})});var hl=g((cD,zp)=>{"use strict";var cI=pl();zp.exports=cI&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var fl=g((dD,Wp)=>{"use strict";var dI=Ri(),pI=Ve(),hI=oa(),fI=hl(),mI=Object;Wp.exports=fI?function(s){return typeof s=="symbol"}:function(s){var e=dI("Symbol");return pI(e)&&hI(e.prototype,mI(s))}});var ua=g((pD,Qp)=>{"use strict";var bI=String;Qp.exports=function(s){try{return bI(s)}catch(e){return"Object"}}});var ni=g((hD,Yp)=>{"use strict";var gI=Ve(),SI=ua(),vI=TypeError;Yp.exports=function(s){if(gI(s))return s;throw new vI(SI(s)+" is not a function")}});var la=g((fD,Kp)=>{"use strict";var yI=ni(),TI=Mr();Kp.exports=function(s,e){var t=s[e];return TI(t)?void 0:yI(t)}});var Jp=g((mD,Xp)=>{"use strict";var ml=Lt(),bl=Ve(),gl=Bt(),II=TypeError;Xp.exports=function(s,e){var t,i;if(e==="string"&&bl(t=s.toString)&&!gl(i=ml(t,s))||bl(t=s.valueOf)&&!gl(i=ml(t,s))||e!=="string"&&bl(t=s.toString)&&!gl(i=ml(t,s)))return i;throw new II("Can't convert object to primitive value")}});var Xt=g((bD,Zp)=>{"use strict";Zp.exports=!0});var ih=g((gD,th)=>{"use strict";var eh=_e(),xI=Object.defineProperty;th.exports=function(s,e){try{xI(eh,s,{value:e,configurable:!0,writable:!0})}catch(t){eh[s]=e}return e}});var ca=g((SD,ah)=>{"use strict";var EI=Xt(),wI=_e(),PI=ih(),rh="__core-js_shared__",sh=ah.exports=wI[rh]||PI(rh,{});(sh.versions||(sh.versions=[])).push({version:"3.38.0",mode:EI?"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 Sl=g((vD,oh)=>{"use strict";var nh=ca();oh.exports=function(s,e){return nh[s]||(nh[s]=e||{})}});var Br=g((yD,uh)=>{"use strict";var AI=Gi(),kI=Object;uh.exports=function(s){return kI(AI(s))}});var Jt=g((TD,lh)=>{"use strict";var RI=Xe(),MI=Br(),LI=RI({}.hasOwnProperty);lh.exports=Object.hasOwn||function(e,t){return LI(MI(e),t)}});var vl=g((ID,ch)=>{"use strict";var BI=Xe(),DI=0,$I=Math.random(),CI=BI(1 .toString);ch.exports=function(s){return"Symbol("+(s===void 0?"":s)+")_"+CI(++DI+$I,36)}});var et=g((xD,ph)=>{"use strict";var VI=_e(),OI=Sl(),dh=Jt(),_I=vl(),FI=pl(),NI=hl(),Dr=VI.Symbol,yl=OI("wks"),UI=NI?Dr.for||Dr:Dr&&Dr.withoutSetter||_I;ph.exports=function(s){return dh(yl,s)||(yl[s]=FI&&dh(Dr,s)?Dr[s]:UI("Symbol."+s)),yl[s]}});var bh=g((ED,mh)=>{"use strict";var qI=Lt(),hh=Bt(),fh=fl(),HI=la(),jI=Jp(),GI=et(),zI=TypeError,WI=GI("toPrimitive");mh.exports=function(s,e){if(!hh(s)||fh(s))return s;var t=HI(s,WI),i;if(t){if(e===void 0&&(e="default"),i=qI(t,s,e),!hh(i)||fh(i))return i;throw new zI("Can't convert object to primitive value")}return e===void 0&&(e="number"),jI(s,e)}});var Tl=g((wD,gh)=>{"use strict";var QI=bh(),YI=fl();gh.exports=function(s){var e=QI(s,"string");return YI(e)?e:e+""}});var ho=g((PD,vh)=>{"use strict";var KI=_e(),Sh=Bt(),Il=KI.document,XI=Sh(Il)&&Sh(Il.createElement);vh.exports=function(s){return XI?Il.createElement(s):{}}});var xl=g((AD,yh)=>{"use strict";var JI=Mt(),ZI=Ze(),ex=ho();yh.exports=!JI&&!ZI(function(){return Object.defineProperty(ex("div"),"a",{get:function(){return 7}}).a!==7})});var xh=g(Ih=>{"use strict";var tx=Mt(),ix=Lt(),rx=nl(),sx=na(),ax=dr(),nx=Tl(),ox=Jt(),ux=xl(),Th=Object.getOwnPropertyDescriptor;Ih.f=tx?Th:function(e,t){if(e=ax(e),t=nx(t),ux)try{return Th(e,t)}catch(i){}if(ox(e,t))return sx(!ix(rx.f,e,t),e[t])}});var El=g((RD,Eh)=>{"use strict";var lx=Ze(),cx=Ve(),dx=/#|\.prototype\./,da=function(s,e){var t=hx[px(s)];return t===mx?!0:t===fx?!1:cx(e)?lx(e):!!e},px=da.normalize=function(s){return String(s).replace(dx,".").toLowerCase()},hx=da.data={},fx=da.NATIVE="N",mx=da.POLYFILL="P";Eh.exports=da});var $r=g((MD,Ph)=>{"use strict";var wh=sl(),bx=ni(),gx=aa(),Sx=wh(wh.bind);Ph.exports=function(s,e){return bx(s),e===void 0?s:gx?Sx(s,e):function(){return s.apply(e,arguments)}}});var wl=g((LD,Ah)=>{"use strict";var vx=Mt(),yx=Ze();Ah.exports=vx&&yx(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var oi=g((BD,kh)=>{"use strict";var Tx=Bt(),Ix=String,xx=TypeError;kh.exports=function(s){if(Tx(s))return s;throw new xx(Ix(s)+" is not an object")}});var hr=g(Mh=>{"use strict";var Ex=Mt(),wx=xl(),Px=wl(),fo=oi(),Rh=Tl(),Ax=TypeError,Pl=Object.defineProperty,kx=Object.getOwnPropertyDescriptor,Al="enumerable",kl="configurable",Rl="writable";Mh.f=Ex?Px?function(e,t,i){if(fo(e),t=Rh(t),fo(i),typeof e=="function"&&t==="prototype"&&"value"in i&&Rl in i&&!i[Rl]){var r=kx(e,t);r&&r[Rl]&&(e[t]=i.value,i={configurable:kl in i?i[kl]:r[kl],enumerable:Al in i?i[Al]:r[Al],writable:!1})}return Pl(e,t,i)}:Pl:function(e,t,i){if(fo(e),t=Rh(t),fo(i),wx)try{return Pl(e,t,i)}catch(r){}if("get"in i||"set"in i)throw new Ax("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var Cr=g(($D,Lh)=>{"use strict";var Rx=Mt(),Mx=hr(),Lx=na();Lh.exports=Rx?function(s,e,t){return Mx.f(s,e,Lx(1,t))}:function(s,e,t){return s[e]=t,s}});var Ue=g((CD,Dh)=>{"use strict";var pa=_e(),Bx=il(),Dx=sl(),$x=Ve(),Cx=xh().f,Vx=El(),Vr=Lr(),Ox=$r(),Or=Cr(),Bh=Jt();ca();var _x=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 Bx(s,this,arguments)};return e.prototype=s.prototype,e};Dh.exports=function(s,e){var t=s.target,i=s.global,r=s.stat,a=s.proto,n=i?pa:r?pa[t]:pa[t]&&pa[t].prototype,o=i?Vr:Vr[t]||Or(Vr,t,{})[t],u=o.prototype,l,d,c,h,p,f,m,S,v;for(h in e)l=Vx(i?h:t+(r?".":"#")+h,s.forced),d=!l&&n&&Bh(n,h),f=o[h],d&&(s.dontCallGetSet?(v=Cx(n,h),m=v&&v.value):m=n[h]),p=d&&m?m:e[h],!(!l&&!a&&typeof f==typeof p)&&(s.bind&&d?S=Ox(p,pa):s.wrap&&d?S=_x(p):a&&$x(p)?S=Dx(p):S=p,(s.sham||p&&p.sham||f&&f.sham)&&Or(S,"sham",!0),Or(o,h,S),a&&(c=t+"Prototype",Bh(Vr,c)||Or(Vr,c,{}),Or(Vr[c],h,p),s.real&&u&&(l||!u[h])&&Or(u,h,p)))}});var Ch=g((VD,$h)=>{"use strict";var Fx=Math.ceil,Nx=Math.floor;$h.exports=Math.trunc||function(e){var t=+e;return(t>0?Nx:Fx)(t)}});var ha=g((OD,Vh)=>{"use strict";var Ux=Ch();Vh.exports=function(s){var e=+s;return e!==e||e===0?0:Ux(e)}});var _h=g((_D,Oh)=>{"use strict";var qx=ha(),Hx=Math.max,jx=Math.min;Oh.exports=function(s,e){var t=qx(s);return t<0?Hx(t+e,0):jx(t,e)}});var Ml=g((FD,Fh)=>{"use strict";var Gx=ha(),zx=Math.min;Fh.exports=function(s){var e=Gx(s);return e>0?zx(e,9007199254740991):0}});var _r=g((ND,Nh)=>{"use strict";var Wx=Ml();Nh.exports=function(s){return Wx(s.length)}});var Ll=g((UD,qh)=>{"use strict";var Qx=dr(),Yx=_h(),Kx=_r(),Uh=function(s){return function(e,t,i){var r=Qx(e),a=Kx(r);if(a===0)return!s&&-1;var n=Yx(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}};qh.exports={includes:Uh(!0),indexOf:Uh(!1)}});var fa=g((qD,Hh)=>{"use strict";Hh.exports=function(){}});var jh=g(()=>{"use strict";var Xx=Ue(),Jx=Ll().includes,Zx=Ze(),eE=fa(),tE=Zx(function(){return!Array(1).includes()});Xx({target:"Array",proto:!0,forced:tE},{includes:function(e){return Jx(this,e,arguments.length>1?arguments[1]:void 0)}});eE("includes")});var zi=g((GD,Gh)=>{"use strict";var iE=Ri();Gh.exports=iE});var Wh=g((zD,zh)=>{"use strict";jh();var rE=zi();zh.exports=rE("Array","includes")});var Yh=g((WD,Qh)=>{"use strict";var sE=Wh();Qh.exports=sE});var Ot=g((QD,Kh)=>{"use strict";var aE=Yh();Kh.exports=aE});var bo=g((r0,Zh)=>{"use strict";var oE=Sl(),uE=vl(),Jh=oE("keys");Zh.exports=function(s){return Jh[s]||(Jh[s]=uE(s))}});var tf=g((s0,ef)=>{"use strict";var lE=Ze();ef.exports=!lE(function(){function s(){}return s.prototype.constructor=null,Object.getPrototypeOf(new s)!==s.prototype})});var go=g((a0,sf)=>{"use strict";var cE=Jt(),dE=Ve(),pE=Br(),hE=bo(),fE=tf(),rf=hE("IE_PROTO"),Bl=Object,mE=Bl.prototype;sf.exports=fE?Bl.getPrototypeOf:function(s){var e=pE(s);if(cE(e,rf))return e[rf];var t=e.constructor;return dE(t)&&e instanceof t?t.prototype:e instanceof Bl?mE:null}});var So=g((n0,af)=>{"use strict";af.exports={}});var uf=g((o0,of)=>{"use strict";var bE=Xe(),Dl=Jt(),gE=dr(),SE=Ll().indexOf,vE=So(),nf=bE([].push);of.exports=function(s,e){var t=gE(s),i=0,r=[],a;for(a in t)!Dl(vE,a)&&Dl(t,a)&&nf(r,a);for(;e.length>i;)Dl(t,a=e[i++])&&(~SE(r,a)||nf(r,a));return r}});var $l=g((u0,lf)=>{"use strict";lf.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var Cl=g((l0,cf)=>{"use strict";var yE=uf(),TE=$l();cf.exports=Object.keys||function(e){return yE(e,TE)}});var Vl=g((c0,mf)=>{"use strict";var pf=Mt(),IE=Ze(),hf=Xe(),xE=go(),EE=Cl(),wE=dr(),PE=nl().f,ff=hf(PE),AE=hf([].push),kE=pf&&IE(function(){var s=Object.create(null);return s[2]=2,!ff(s,2)}),df=function(s){return function(e){for(var t=wE(e),i=EE(t),r=kE&&xE(t)===null,a=i.length,n=0,o=[],u;a>n;)u=i[n++],(!pf||(r?u in t:ff(t,u)))&&AE(o,s?[u,t[u]]:t[u]);return o}};mf.exports={entries:df(!0),values:df(!1)}});var bf=g(()=>{"use strict";var RE=Ue(),ME=Vl().entries;RE({target:"Object",stat:!0},{entries:function(e){return ME(e)}})});var Sf=g((h0,gf)=>{"use strict";bf();var LE=Lr();gf.exports=LE.Object.entries});var yf=g((f0,vf)=>{"use strict";var BE=Sf();vf.exports=BE});var Fr=g((m0,Tf)=>{"use strict";var DE=yf();Tf.exports=DE});var fr=g((b0,If)=>{"use strict";If.exports={}});var wf=g((g0,Ef)=>{"use strict";var $E=_e(),CE=Ve(),xf=$E.WeakMap;Ef.exports=CE(xf)&&/native code/.test(String(xf))});var Nl=g((S0,kf)=>{"use strict";var VE=wf(),Af=_e(),OE=Bt(),_E=Cr(),Ol=Jt(),_l=ca(),FE=bo(),NE=So(),Pf="Object already initialized",Fl=Af.TypeError,UE=Af.WeakMap,vo,ma,yo,qE=function(s){return yo(s)?ma(s):vo(s,{})},HE=function(s){return function(e){var t;if(!OE(e)||(t=ma(e)).type!==s)throw new Fl("Incompatible receiver, "+s+" required");return t}};VE||_l.state?(Zt=_l.state||(_l.state=new UE),Zt.get=Zt.get,Zt.has=Zt.has,Zt.set=Zt.set,vo=function(s,e){if(Zt.has(s))throw new Fl(Pf);return e.facade=s,Zt.set(s,e),e},ma=function(s){return Zt.get(s)||{}},yo=function(s){return Zt.has(s)}):(mr=FE("state"),NE[mr]=!0,vo=function(s,e){if(Ol(s,mr))throw new Fl(Pf);return e.facade=s,_E(s,mr,e),e},ma=function(s){return Ol(s,mr)?s[mr]:{}},yo=function(s){return Ol(s,mr)});var Zt,mr;kf.exports={set:vo,get:ma,has:yo,enforce:qE,getterFor:HE}});var Hl=g((v0,Mf)=>{"use strict";var Ul=Mt(),jE=Jt(),Rf=Function.prototype,GE=Ul&&Object.getOwnPropertyDescriptor,ql=jE(Rf,"name"),zE=ql&&function(){}.name==="something",WE=ql&&(!Ul||Ul&&GE(Rf,"name").configurable);Mf.exports={EXISTS:ql,PROPER:zE,CONFIGURABLE:WE}});var Bf=g(Lf=>{"use strict";var QE=Mt(),YE=wl(),KE=hr(),XE=oi(),JE=dr(),ZE=Cl();Lf.f=QE&&!YE?Object.defineProperties:function(e,t){XE(e);for(var i=JE(t),r=ZE(t),a=r.length,n=0,o;a>n;)KE.f(e,o=r[n++],i[o]);return e}});var jl=g((T0,Df)=>{"use strict";var ew=Ri();Df.exports=ew("document","documentElement")});var Ql=g((I0,Nf)=>{"use strict";var tw=oi(),iw=Bf(),$f=$l(),rw=So(),sw=jl(),aw=ho(),nw=bo(),Cf=">",Vf="<",zl="prototype",Wl="script",_f=nw("IE_PROTO"),Gl=function(){},Ff=function(s){return Vf+Wl+Cf+s+Vf+"/"+Wl+Cf},Of=function(s){s.write(Ff("")),s.close();var e=s.parentWindow.Object;return s=null,e},ow=function(){var s=aw("iframe"),e="java"+Wl+":",t;return s.style.display="none",sw.appendChild(s),s.src=String(e),t=s.contentWindow.document,t.open(),t.write(Ff("document.F=Object")),t.close(),t.F},To,Io=function(){try{To=new ActiveXObject("htmlfile")}catch(e){}Io=typeof document!="undefined"?document.domain&&To?Of(To):ow():Of(To);for(var s=$f.length;s--;)delete Io[zl][$f[s]];return Io()};rw[_f]=!0;Nf.exports=Object.create||function(e,t){var i;return e!==null?(Gl[zl]=tw(e),i=new Gl,Gl[zl]=null,i[_f]=e):i=Io(),t===void 0?i:iw.f(i,t)}});var Nr=g((x0,Uf)=>{"use strict";var uw=Cr();Uf.exports=function(s,e,t,i){return i&&i.enumerable?s[e]=t:uw(s,e,t),s}});var Jl=g((E0,jf)=>{"use strict";var lw=Ze(),cw=Ve(),dw=Bt(),pw=Ql(),qf=go(),hw=Nr(),fw=et(),mw=Xt(),Xl=fw("iterator"),Hf=!1,Mi,Yl,Kl;[].keys&&(Kl=[].keys(),"next"in Kl?(Yl=qf(qf(Kl)),Yl!==Object.prototype&&(Mi=Yl)):Hf=!0);var bw=!dw(Mi)||lw(function(){var s={};return Mi[Xl].call(s)!==s});bw?Mi={}:mw&&(Mi=pw(Mi));cw(Mi[Xl])||hw(Mi,Xl,function(){return this});jf.exports={IteratorPrototype:Mi,BUGGY_SAFARI_ITERATORS:Hf}});var xo=g((w0,zf)=>{"use strict";var gw=et(),Sw=gw("toStringTag"),Gf={};Gf[Sw]="z";zf.exports=String(Gf)==="[object z]"});var ba=g((P0,Wf)=>{"use strict";var vw=xo(),yw=Ve(),Eo=cr(),Tw=et(),Iw=Tw("toStringTag"),xw=Object,Ew=Eo(function(){return arguments}())==="Arguments",ww=function(s,e){try{return s[e]}catch(t){}};Wf.exports=vw?Eo:function(s){var e,t,i;return s===void 0?"Undefined":s===null?"Null":typeof(t=ww(e=xw(s),Iw))=="string"?t:Ew?Eo(e):(i=Eo(e))==="Object"&&yw(e.callee)?"Arguments":i}});var Yf=g((A0,Qf)=>{"use strict";var Pw=xo(),Aw=ba();Qf.exports=Pw?{}.toString:function(){return"[object "+Aw(this)+"]"}});var ga=g((k0,Xf)=>{"use strict";var kw=xo(),Rw=hr().f,Mw=Cr(),Lw=Jt(),Bw=Yf(),Dw=et(),Kf=Dw("toStringTag");Xf.exports=function(s,e,t,i){var r=t?s:s&&s.prototype;r&&(Lw(r,Kf)||Rw(r,Kf,{configurable:!0,value:e}),i&&!kw&&Mw(r,"toString",Bw))}});var Zf=g((R0,Jf)=>{"use strict";var $w=Jl().IteratorPrototype,Cw=Ql(),Vw=na(),Ow=ga(),_w=fr(),Fw=function(){return this};Jf.exports=function(s,e,t,i){var r=e+" Iterator";return s.prototype=Cw($w,{next:Vw(+!i,t)}),Ow(s,r,!1,!0),_w[r]=Fw,s}});var tm=g((M0,em)=>{"use strict";var Nw=Xe(),Uw=ni();em.exports=function(s,e,t){try{return Nw(Uw(Object.getOwnPropertyDescriptor(s,e)[t]))}catch(i){}}});var rm=g((L0,im)=>{"use strict";var qw=Bt();im.exports=function(s){return qw(s)||s===null}});var am=g((B0,sm)=>{"use strict";var Hw=rm(),jw=String,Gw=TypeError;sm.exports=function(s){if(Hw(s))return s;throw new Gw("Can't set "+jw(s)+" as a prototype")}});var Zl=g((D0,nm)=>{"use strict";var zw=tm(),Ww=Bt(),Qw=Gi(),Yw=am();nm.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var s=!1,e={},t;try{t=zw(Object.prototype,"__proto__","set"),t(e,[]),s=e instanceof Array}catch(i){}return function(r,a){return Qw(r),Yw(a),Ww(r)&&(s?t(r,a):r.__proto__=a),r}}():void 0)});var gm=g(($0,bm)=>{"use strict";var Kw=Ue(),Xw=Lt(),wo=Xt(),fm=Hl(),Jw=Ve(),Zw=Zf(),om=go(),um=Zl(),eP=ga(),tP=Cr(),ec=Nr(),iP=et(),lm=fr(),mm=Jl(),rP=fm.PROPER,sP=fm.CONFIGURABLE,cm=mm.IteratorPrototype,Po=mm.BUGGY_SAFARI_ITERATORS,Sa=iP("iterator"),dm="keys",va="values",pm="entries",hm=function(){return this};bm.exports=function(s,e,t,i,r,a,n){Zw(t,e,i);var o=function(v){if(v===r&&h)return h;if(!Po&&v&&v in d)return d[v];switch(v){case dm:return function(){return new t(this,v)};case va:return function(){return new t(this,v)};case pm:return function(){return new t(this,v)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,d=s.prototype,c=d[Sa]||d["@@iterator"]||r&&d[r],h=!Po&&c||o(r),p=e==="Array"&&d.entries||c,f,m,S;if(p&&(f=om(p.call(new s)),f!==Object.prototype&&f.next&&(!wo&&om(f)!==cm&&(um?um(f,cm):Jw(f[Sa])||ec(f,Sa,hm)),eP(f,u,!0,!0),wo&&(lm[u]=hm))),rP&&r===va&&c&&c.name!==va&&(!wo&&sP?tP(d,"name",va):(l=!0,h=function(){return Xw(c,this)})),r)if(m={values:o(va),keys:a?h:o(dm),entries:o(pm)},n)for(S in m)(Po||l||!(S in d))&&ec(d,S,m[S]);else Kw({target:e,proto:!0,forced:Po||l},m);return(!wo||n)&&d[Sa]!==h&&ec(d,Sa,h,{name:r}),lm[e]=h,m}});var vm=g((C0,Sm)=>{"use strict";Sm.exports=function(s,e){return{value:s,done:e}}});var ic=g((V0,Em)=>{"use strict";var aP=dr(),tc=fa(),ym=fr(),Im=Nl(),nP=hr().f,oP=gm(),Ao=vm(),uP=Xt(),lP=Mt(),xm="Array Iterator",cP=Im.set,dP=Im.getterFor(xm);Em.exports=oP(Array,"Array",function(s,e){cP(this,{type:xm,target:aP(s),index:0,kind:e})},function(){var s=dP(this),e=s.target,t=s.index++;if(!e||t>=e.length)return s.target=void 0,Ao(void 0,!0);switch(s.kind){case"keys":return Ao(t,!1);case"values":return Ao(e[t],!1)}return Ao([t,e[t]],!1)},"values");var Tm=ym.Arguments=ym.Array;tc("keys");tc("values");tc("entries");if(!uP&&lP&&Tm.name!=="values")try{nP(Tm,"name",{value:"values"})}catch(s){}});var Pm=g((O0,wm)=>{"use strict";var pP=et(),hP=fr(),fP=pP("iterator"),mP=Array.prototype;wm.exports=function(s){return s!==void 0&&(hP.Array===s||mP[fP]===s)}});var rc=g((_0,km)=>{"use strict";var bP=ba(),Am=la(),gP=Mr(),SP=fr(),vP=et(),yP=vP("iterator");km.exports=function(s){if(!gP(s))return Am(s,yP)||Am(s,"@@iterator")||SP[bP(s)]}});var Mm=g((F0,Rm)=>{"use strict";var TP=Lt(),IP=ni(),xP=oi(),EP=ua(),wP=rc(),PP=TypeError;Rm.exports=function(s,e){var t=arguments.length<2?wP(s):e;if(IP(t))return xP(TP(t,s));throw new PP(EP(s)+" is not iterable")}});var Dm=g((N0,Bm)=>{"use strict";var AP=Lt(),Lm=oi(),kP=la();Bm.exports=function(s,e,t){var i,r;Lm(s);try{if(i=kP(s,"return"),!i){if(e==="throw")throw t;return t}i=AP(i,s)}catch(a){r=!0,i=a}if(e==="throw")throw t;if(r)throw i;return Lm(i),t}});var Ro=g((U0,Om)=>{"use strict";var RP=$r(),MP=Lt(),LP=oi(),BP=ua(),DP=Pm(),$P=_r(),$m=oa(),CP=Mm(),VP=rc(),Cm=Dm(),OP=TypeError,ko=function(s,e){this.stopped=s,this.result=e},Vm=ko.prototype;Om.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=RP(e,i),l,d,c,h,p,f,m,S=function(x){return l&&Cm(l,"normal",x),new ko(!0,x)},v=function(x){return r?(LP(x),o?u(x[0],x[1],S):u(x[0],x[1])):o?u(x,S):u(x)};if(a)l=s.iterator;else if(n)l=s;else{if(d=VP(s),!d)throw new OP(BP(s)+" is not iterable");if(DP(d)){for(c=0,h=$P(s);h>c;c++)if(p=v(s[c]),p&&$m(Vm,p))return p;return new ko(!1)}l=CP(s,d)}for(f=a?s.next:l.next;!(m=MP(f,l)).done;){try{p=v(m.value)}catch(x){Cm(l,"throw",x)}if(typeof p=="object"&&p&&$m(Vm,p))return p}return new ko(!1)}});var Fm=g((q0,_m)=>{"use strict";var _P=Mt(),FP=hr(),NP=na();_m.exports=function(s,e,t){_P?FP.f(s,e,NP(0,t)):s[e]=t}});var Nm=g(()=>{"use strict";var UP=Ue(),qP=Ro(),HP=Fm();UP({target:"Object",stat:!0},{fromEntries:function(e){var t={};return qP(e,function(i,r){HP(t,i,r)},{AS_ENTRIES:!0}),t}})});var qm=g((G0,Um)=>{"use strict";ic();Nm();var jP=Lr();Um.exports=jP.Object.fromEntries});var jm=g((z0,Hm)=>{"use strict";Hm.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 zm=g(()=>{"use strict";ic();var GP=jm(),zP=_e(),WP=ga(),Gm=fr();for(Mo in GP)WP(zP[Mo],Mo),Gm[Mo]=Gm.Array;var Mo});var Qm=g((Y0,Wm)=>{"use strict";var QP=qm();zm();Wm.exports=QP});var sc=g((K0,Ym)=>{"use strict";var YP=Qm();Ym.exports=YP});var Km=g(()=>{"use strict"});var ac=g((Z0,Xm)=>{"use strict";var ya=_e(),KP=pr(),XP=cr(),Lo=function(s){return KP.slice(0,s.length)===s};Xm.exports=function(){return Lo("Bun/")?"BUN":Lo("Cloudflare-Workers")?"CLOUDFLARE":Lo("Deno/")?"DENO":Lo("Node.js/")?"NODE":ya.Bun&&typeof Bun.version=="string"?"BUN":ya.Deno&&typeof Deno.version=="object"?"DENO":XP(ya.process)==="process"?"NODE":ya.window&&ya.document?"BROWSER":"REST"}()});var Bo=g((e$,Jm)=>{"use strict";var JP=ac();Jm.exports=JP==="NODE"});var eb=g((t$,Zm)=>{"use strict";var ZP=hr();Zm.exports=function(s,e,t){return ZP.f(s,e,t)}});var rb=g((i$,ib)=>{"use strict";var eA=Ri(),tA=eb(),iA=et(),rA=Mt(),tb=iA("species");ib.exports=function(s){var e=eA(s);rA&&e&&!e[tb]&&tA(e,tb,{configurable:!0,get:function(){return this}})}});var ab=g((r$,sb)=>{"use strict";var sA=oa(),aA=TypeError;sb.exports=function(s,e){if(sA(e,s))return s;throw new aA("Incorrect invocation")}});var oc=g((s$,nb)=>{"use strict";var nA=Xe(),oA=Ve(),nc=ca(),uA=nA(Function.toString);oA(nc.inspectSource)||(nc.inspectSource=function(s){return uA(s)});nb.exports=nc.inspectSource});var lc=g((a$,db)=>{"use strict";var lA=Xe(),cA=Ze(),ob=Ve(),dA=ba(),pA=Ri(),hA=oc(),ub=function(){},lb=pA("Reflect","construct"),uc=/^\s*(?:class|function)\b/,fA=lA(uc.exec),mA=!uc.test(ub),Ta=function(e){if(!ob(e))return!1;try{return lb(ub,[],e),!0}catch(t){return!1}},cb=function(e){if(!ob(e))return!1;switch(dA(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return mA||!!fA(uc,hA(e))}catch(t){return!0}};cb.sham=!0;db.exports=!lb||cA(function(){var s;return Ta(Ta.call)||!Ta(Object)||!Ta(function(){s=!0})||s})?cb:Ta});var hb=g((n$,pb)=>{"use strict";var bA=lc(),gA=ua(),SA=TypeError;pb.exports=function(s){if(bA(s))return s;throw new SA(gA(s)+" is not a constructor")}});var cc=g((o$,mb)=>{"use strict";var fb=oi(),vA=hb(),yA=Mr(),TA=et(),IA=TA("species");mb.exports=function(s,e){var t=fb(s).constructor,i;return t===void 0||yA(i=fb(t)[IA])?e:vA(i)}});var gb=g((u$,bb)=>{"use strict";var xA=Xe();bb.exports=xA([].slice)});var vb=g((l$,Sb)=>{"use strict";var EA=TypeError;Sb.exports=function(s,e){if(s<e)throw new EA("Not enough arguments");return s}});var dc=g((c$,yb)=>{"use strict";var wA=pr();yb.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(wA)});var yc=g((d$,Rb)=>{"use strict";var Dt=_e(),PA=il(),AA=$r(),Tb=Ve(),kA=Jt(),kb=Ze(),Ib=jl(),RA=gb(),xb=ho(),MA=vb(),LA=dc(),BA=Bo(),gc=Dt.setImmediate,Sc=Dt.clearImmediate,DA=Dt.process,pc=Dt.Dispatch,$A=Dt.Function,Eb=Dt.MessageChannel,CA=Dt.String,hc=0,Ia={},wb="onreadystatechange",xa,br,fc,mc;kb(function(){xa=Dt.location});var vc=function(s){if(kA(Ia,s)){var e=Ia[s];delete Ia[s],e()}},bc=function(s){return function(){vc(s)}},Pb=function(s){vc(s.data)},Ab=function(s){Dt.postMessage(CA(s),xa.protocol+"//"+xa.host)};(!gc||!Sc)&&(gc=function(e){MA(arguments.length,1);var t=Tb(e)?e:$A(e),i=RA(arguments,1);return Ia[++hc]=function(){PA(t,void 0,i)},br(hc),hc},Sc=function(e){delete Ia[e]},BA?br=function(s){DA.nextTick(bc(s))}:pc&&pc.now?br=function(s){pc.now(bc(s))}:Eb&&!LA?(fc=new Eb,mc=fc.port2,fc.port1.onmessage=Pb,br=AA(mc.postMessage,mc)):Dt.addEventListener&&Tb(Dt.postMessage)&&!Dt.importScripts&&xa&&xa.protocol!=="file:"&&!kb(Ab)?(br=Ab,Dt.addEventListener("message",Pb,!1)):wb in xb("script")?br=function(s){Ib.appendChild(xb("script"))[wb]=function(){Ib.removeChild(this),vc(s)}}:br=function(s){setTimeout(bc(s),0)});Rb.exports={set:gc,clear:Sc}});var Bb=g((p$,Lb)=>{"use strict";var Mb=_e(),VA=Mt(),OA=Object.getOwnPropertyDescriptor;Lb.exports=function(s){if(!VA)return Mb[s];var e=OA(Mb,s);return e&&e.value}});var Tc=g((h$,$b)=>{"use strict";var Db=function(){this.head=null,this.tail=null};Db.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}}};$b.exports=Db});var Vb=g((f$,Cb)=>{"use strict";var _A=pr();Cb.exports=/ipad|iphone|ipod/i.test(_A)&&typeof Pebble!="undefined"});var _b=g((m$,Ob)=>{"use strict";var FA=pr();Ob.exports=/web0s(?!.*chrome)/i.test(FA)});var Gb=g((b$,jb)=>{"use strict";var qr=_e(),NA=Bb(),Fb=$r(),Ic=yc().set,UA=Tc(),qA=dc(),HA=Vb(),jA=_b(),xc=Bo(),Nb=qr.MutationObserver||qr.WebKitMutationObserver,Ub=qr.document,qb=qr.process,Do=qr.Promise,Pc=NA("queueMicrotask"),Ur,Ec,wc,$o,Hb;Pc||(Ea=new UA,wa=function(){var s,e;for(xc&&(s=qb.domain)&&s.exit();e=Ea.get();)try{e()}catch(t){throw Ea.head&&Ur(),t}s&&s.enter()},!qA&&!xc&&!jA&&Nb&&Ub?(Ec=!0,wc=Ub.createTextNode(""),new Nb(wa).observe(wc,{characterData:!0}),Ur=function(){wc.data=Ec=!Ec}):!HA&&Do&&Do.resolve?($o=Do.resolve(void 0),$o.constructor=Do,Hb=Fb($o.then,$o),Ur=function(){Hb(wa)}):xc?Ur=function(){qb.nextTick(wa)}:(Ic=Fb(Ic,qr),Ur=function(){Ic(wa)}),Pc=function(s){Ea.head||Ur(),Ea.add(s)});var Ea,wa;jb.exports=Pc});var Wb=g((g$,zb)=>{"use strict";zb.exports=function(s,e){try{arguments.length===1?console.error(s):console.error(s,e)}catch(t){}}});var Co=g((S$,Qb)=>{"use strict";Qb.exports=function(s){try{return{error:!1,value:s()}}catch(e){return{error:!0,value:e}}}});var gr=g((v$,Yb)=>{"use strict";var GA=_e();Yb.exports=GA.Promise});var Hr=g((y$,Zb)=>{"use strict";var zA=_e(),Pa=gr(),WA=Ve(),QA=El(),YA=oc(),KA=et(),Kb=ac(),XA=Xt(),Ac=dl(),Xb=Pa&&Pa.prototype,JA=KA("species"),kc=!1,Jb=WA(zA.PromiseRejectionEvent),ZA=QA("Promise",function(){var s=YA(Pa),e=s!==String(Pa);if(!e&&Ac===66||XA&&!(Xb.catch&&Xb.finally))return!0;if(!Ac||Ac<51||!/native code/.test(s)){var t=new Pa(function(a){a(1)}),i=function(a){a(function(){},function(){})},r=t.constructor={};if(r[JA]=i,kc=t.then(function(){})instanceof i,!kc)return!0}return!e&&(Kb==="BROWSER"||Kb==="DENO")&&!Jb});Zb.exports={CONSTRUCTOR:ZA,REJECTION_EVENT:Jb,SUBCLASSING:kc}});var jr=g((T$,tg)=>{"use strict";var eg=ni(),ek=TypeError,tk=function(s){var e,t;this.promise=new s(function(i,r){if(e!==void 0||t!==void 0)throw new ek("Bad Promise constructor");e=i,t=r}),this.resolve=eg(e),this.reject=eg(t)};tg.exports.f=function(s){return new tk(s)}});var yg=g(()=>{"use strict";var ik=Ue(),rk=Xt(),Fo=Bo(),Wi=_e(),Qr=Lt(),ig=Nr(),rg=Zl(),sk=ga(),ak=rb(),nk=ni(),_o=Ve(),ok=Bt(),uk=ab(),lk=cc(),ug=yc().set,Dc=Gb(),ck=Wb(),dk=Co(),pk=Tc(),lg=Nl(),No=gr(),$c=Hr(),cg=jr(),Uo="Promise",dg=$c.CONSTRUCTOR,hk=$c.REJECTION_EVENT,fk=$c.SUBCLASSING,Rc=lg.getterFor(Uo),mk=lg.set,Gr=No&&No.prototype,Sr=No,Vo=Gr,pg=Wi.TypeError,Mc=Wi.document,Cc=Wi.process,Lc=cg.f,bk=Lc,gk=!!(Mc&&Mc.createEvent&&Wi.dispatchEvent),hg="unhandledrejection",Sk="rejectionhandled",sg=0,fg=1,vk=2,Vc=1,mg=2,Oo,ag,yk,ng,bg=function(s){var e;return ok(s)&&_o(e=s.then)?e:!1},gg=function(s,e){var t=e.value,i=e.state===fg,r=i?s.ok:s.fail,a=s.resolve,n=s.reject,o=s.domain,u,l,d;try{r?(i||(e.rejection===mg&&Ik(e),e.rejection=Vc),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),d=!0)),u===s.promise?n(new pg("Promise-chain cycle")):(l=bg(u))?Qr(l,u,a,n):a(u)):n(t)}catch(c){o&&!d&&o.exit(),n(c)}},Sg=function(s,e){s.notified||(s.notified=!0,Dc(function(){for(var t=s.reactions,i;i=t.get();)gg(i,s);s.notified=!1,e&&!s.rejection&&Tk(s)}))},vg=function(s,e,t){var i,r;gk?(i=Mc.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(s,!1,!0),Wi.dispatchEvent(i)):i={promise:e,reason:t},!hk&&(r=Wi["on"+s])?r(i):s===hg&&ck("Unhandled promise rejection",t)},Tk=function(s){Qr(ug,Wi,function(){var e=s.facade,t=s.value,i=og(s),r;if(i&&(r=dk(function(){Fo?Cc.emit("unhandledRejection",t,e):vg(hg,e,t)}),s.rejection=Fo||og(s)?mg:Vc,r.error))throw r.value})},og=function(s){return s.rejection!==Vc&&!s.parent},Ik=function(s){Qr(ug,Wi,function(){var e=s.facade;Fo?Cc.emit("rejectionHandled",e):vg(Sk,e,s.value)})},zr=function(s,e,t){return function(i){s(e,i,t)}},Wr=function(s,e,t){s.done||(s.done=!0,t&&(s=t),s.value=e,s.state=vk,Sg(s,!0))},Bc=function(s,e,t){if(!s.done){s.done=!0,t&&(s=t);try{if(s.facade===e)throw new pg("Promise can't be resolved itself");var i=bg(e);i?Dc(function(){var r={done:!1};try{Qr(i,e,zr(Bc,r,s),zr(Wr,r,s))}catch(a){Wr(r,a,s)}}):(s.value=e,s.state=fg,Sg(s,!1))}catch(r){Wr({done:!1},r,s)}}};if(dg&&(Sr=function(e){uk(this,Vo),nk(e),Qr(Oo,this);var t=Rc(this);try{e(zr(Bc,t),zr(Wr,t))}catch(i){Wr(t,i)}},Vo=Sr.prototype,Oo=function(e){mk(this,{type:Uo,done:!1,notified:!1,parent:!1,reactions:new pk,rejection:!1,state:sg,value:void 0})},Oo.prototype=ig(Vo,"then",function(e,t){var i=Rc(this),r=Lc(lk(this,Sr));return i.parent=!0,r.ok=_o(e)?e:!0,r.fail=_o(t)&&t,r.domain=Fo?Cc.domain:void 0,i.state===sg?i.reactions.add(r):Dc(function(){gg(r,i)}),r.promise}),ag=function(){var s=new Oo,e=Rc(s);this.promise=s,this.resolve=zr(Bc,e),this.reject=zr(Wr,e)},cg.f=Lc=function(s){return s===Sr||s===yk?new ag(s):bk(s)},!rk&&_o(No)&&Gr!==Object.prototype)){ng=Gr.then,fk||ig(Gr,"then",function(e,t){var i=this;return new Sr(function(r,a){Qr(ng,i,r,a)}).then(e,t)},{unsafe:!0});try{delete Gr.constructor}catch(s){}rg&&rg(Gr,Vo)}ik({global:!0,constructor:!0,wrap:!0,forced:dg},{Promise:Sr});sk(Sr,Uo,!1,!0);ak(Uo)});var wg=g((E$,Eg)=>{"use strict";var xk=et(),Ig=xk("iterator"),xg=!1;try{Tg=0,Oc={next:function(){return{done:!!Tg++}},return:function(){xg=!0}},Oc[Ig]=function(){return this},Array.from(Oc,function(){throw 2})}catch(s){}var Tg,Oc;Eg.exports=function(s,e){try{if(!e&&!xg)return!1}catch(r){return!1}var t=!1;try{var i={};i[Ig]=function(){return{next:function(){return{done:t=!0}}}},s(i)}catch(r){}return t}});var _c=g((w$,Pg)=>{"use strict";var Ek=gr(),wk=wg(),Pk=Hr().CONSTRUCTOR;Pg.exports=Pk||!wk(function(s){Ek.all(s).then(void 0,function(){})})});var Ag=g(()=>{"use strict";var Ak=Ue(),kk=Lt(),Rk=ni(),Mk=jr(),Lk=Co(),Bk=Ro(),Dk=_c();Ak({target:"Promise",stat:!0,forced:Dk},{all:function(e){var t=this,i=Mk.f(t),r=i.resolve,a=i.reject,n=Lk(function(){var o=Rk(t.resolve),u=[],l=0,d=1;Bk(e,function(c){var h=l++,p=!1;d++,kk(o,t,c).then(function(f){p||(p=!0,u[h]=f,--d||r(u))},a)}),--d||r(u)});return n.error&&a(n.value),i.promise}})});var Rg=g(()=>{"use strict";var $k=Ue(),Ck=Xt(),Vk=Hr().CONSTRUCTOR,Nc=gr(),Ok=Ri(),_k=Ve(),Fk=Nr(),kg=Nc&&Nc.prototype;$k({target:"Promise",proto:!0,forced:Vk,real:!0},{catch:function(s){return this.then(void 0,s)}});!Ck&&_k(Nc)&&(Fc=Ok("Promise").prototype.catch,kg.catch!==Fc&&Fk(kg,"catch",Fc,{unsafe:!0}));var Fc});var Mg=g(()=>{"use strict";var Nk=Ue(),Uk=Lt(),qk=ni(),Hk=jr(),jk=Co(),Gk=Ro(),zk=_c();Nk({target:"Promise",stat:!0,forced:zk},{race:function(e){var t=this,i=Hk.f(t),r=i.reject,a=jk(function(){var n=qk(t.resolve);Gk(e,function(o){Uk(n,t,o).then(i.resolve,r)})});return a.error&&r(a.value),i.promise}})});var Lg=g(()=>{"use strict";var Wk=Ue(),Qk=jr(),Yk=Hr().CONSTRUCTOR;Wk({target:"Promise",stat:!0,forced:Yk},{reject:function(e){var t=Qk.f(this),i=t.reject;return i(e),t.promise}})});var Uc=g(($$,Bg)=>{"use strict";var Kk=oi(),Xk=Bt(),Jk=jr();Bg.exports=function(s,e){if(Kk(s),Xk(e)&&e.constructor===s)return e;var t=Jk.f(s),i=t.resolve;return i(e),t.promise}});var Cg=g(()=>{"use strict";var Zk=Ue(),eR=Ri(),Dg=Xt(),tR=gr(),$g=Hr().CONSTRUCTOR,iR=Uc(),rR=eR("Promise"),sR=Dg&&!$g;Zk({target:"Promise",stat:!0,forced:Dg||$g},{resolve:function(e){return iR(sR&&this===rR?tR:this,e)}})});var Vg=g(()=>{"use strict";yg();Ag();Rg();Mg();Lg();Cg()});var Ng=g(()=>{"use strict";var aR=Ue(),nR=Xt(),qo=gr(),oR=Ze(),_g=Ri(),Fg=Ve(),uR=cc(),Og=Uc(),lR=Nr(),Hc=qo&&qo.prototype,cR=!!qo&&oR(function(){Hc.finally.call({then:function(){}},function(){})});aR({target:"Promise",proto:!0,real:!0,forced:cR},{finally:function(s){var e=uR(this,_g("Promise")),t=Fg(s);return this.then(t?function(i){return Og(e,s()).then(function(){return i})}:s,t?function(i){return Og(e,s()).then(function(){throw i})}:s)}});!nR&&Fg(qo)&&(qc=_g("Promise").prototype.finally,Hc.finally!==qc&&lR(Hc,"finally",qc,{unsafe:!0}));var qc});var qg=g((U$,Ug)=>{"use strict";Km();Vg();Ng();var dR=zi();Ug.exports=dR("Promise","finally")});var jg=g((q$,Hg)=>{"use strict";var pR=qg();Hg.exports=pR});var Aa=g((H$,Gg)=>{"use strict";var hR=jg();Gg.exports=hR});var Jg=g(()=>{"use strict";var SR=Ue(),vR=Vl().values;SR({target:"Object",stat:!0},{values:function(e){return vR(e)}})});var eS=g((vC,Zg)=>{"use strict";Jg();var yR=Lr();Zg.exports=yR.Object.values});var iS=g((yC,tS)=>{"use strict";var TR=eS();tS.exports=TR});var vr=g((TC,rS)=>{"use strict";var IR=iS();rS.exports=IR});var fS=g(()=>{"use strict";var BR=Ue(),DR=Br(),$R=_r(),CR=ha(),VR=fa();BR({target:"Array",proto:!0},{at:function(e){var t=DR(this),i=$R(t),r=CR(e),a=r>=0?r:i+r;return a<0||a>=i?void 0:t[a]}});VR("at")});var bS=g((kV,mS)=>{"use strict";fS();var OR=zi();mS.exports=OR("Array","at")});var SS=g((RV,gS)=>{"use strict";var _R=bS();gS.exports=_R});var ei=g((MV,vS)=>{"use strict";var FR=SS();vS.exports=FR});var od=g((r_,OS)=>{"use strict";var XR=cr();OS.exports=Array.isArray||function(e){return XR(e)==="Array"}});var FS=g((s_,_S)=>{"use strict";var JR=TypeError,ZR=9007199254740991;_S.exports=function(s){if(s>ZR)throw JR("Maximum allowed index exceeded");return s}});var qS=g((a_,US)=>{"use strict";var eM=od(),tM=_r(),iM=FS(),rM=$r(),NS=function(s,e,t,i,r,a,n,o){for(var u=r,l=0,d=n?rM(n,o):!1,c,h;l<i;)l in t&&(c=d?d(t[l],l,e):t[l],a>0&&eM(c)?(h=tM(c),u=NS(s,e,c,h,u,a-1)-1):(iM(u+1),s[u]=c),u++),l++;return u};US.exports=NS});var zS=g((n_,GS)=>{"use strict";var HS=od(),sM=lc(),aM=Bt(),nM=et(),oM=nM("species"),jS=Array;GS.exports=function(s){var e;return HS(s)&&(e=s.constructor,sM(e)&&(e===jS||HS(e.prototype))?e=void 0:aM(e)&&(e=e[oM],e===null&&(e=void 0))),e===void 0?jS:e}});var QS=g((o_,WS)=>{"use strict";var uM=zS();WS.exports=function(s,e){return new(uM(s))(e===0?0:e)}});var YS=g(()=>{"use strict";var lM=Ue(),cM=qS(),dM=ni(),pM=Br(),hM=_r(),fM=QS();lM({target:"Array",proto:!0},{flatMap:function(e){var t=pM(this),i=hM(t),r;return dM(e),r=fM(t,0),r.length=cM(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var KS=g(()=>{"use strict";var mM=fa();mM("flatMap")});var JS=g((p_,XS)=>{"use strict";YS();KS();var bM=zi();XS.exports=bM("Array","flatMap")});var ev=g((h_,ZS)=>{"use strict";var gM=JS();ZS.exports=gM});var _a=g((f_,tv)=>{"use strict";var SM=ev();tv.exports=SM});var Fa=g((m_,iv)=>{"use strict";var vM=ba(),yM=String;iv.exports=function(s){if(vM(s)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return yM(s)}});var ud=g((b_,rv)=>{"use strict";rv.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 nv=g((g_,av)=>{"use strict";var TM=Xe(),IM=Gi(),xM=Fa(),cd=ud(),sv=TM("".replace),EM=RegExp("^["+cd+"]+"),wM=RegExp("(^|[^"+cd+"])["+cd+"]+$"),ld=function(s){return function(e){var t=xM(IM(e));return s&1&&(t=sv(t,EM,"")),s&2&&(t=sv(t,wM,"$1")),t}};av.exports={start:ld(1),end:ld(2),trim:ld(3)}});var cv=g((S_,lv)=>{"use strict";var PM=Hl().PROPER,AM=Ze(),ov=ud(),uv="\u200B\x85\u180E";lv.exports=function(s){return AM(function(){return!!ov[s]()||uv[s]()!==uv||PM&&ov[s].name!==s})}});var dd=g((v_,dv)=>{"use strict";var kM=nv().start,RM=cv();dv.exports=RM("trimStart")?function(){return kM(this)}:"".trimStart});var hv=g(()=>{"use strict";var MM=Ue(),pv=dd();MM({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==pv},{trimLeft:pv})});var mv=g(()=>{"use strict";hv();var LM=Ue(),fv=dd();LM({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==fv},{trimStart:fv})});var gv=g((E_,bv)=>{"use strict";mv();var BM=zi();bv.exports=BM("String","trimLeft")});var vv=g((w_,Sv)=>{"use strict";var DM=gv();Sv.exports=DM});var Tv=g((P_,yv)=>{"use strict";var $M=vv();yv.exports=$M});var $v=g(()=>{"use strict"});var Cv=g(()=>{"use strict"});var Ov=g((aU,Vv)=>{"use strict";var eL=Bt(),tL=cr(),iL=et(),rL=iL("match");Vv.exports=function(s){var e;return eL(s)&&((e=s[rL])!==void 0?!!e:tL(s)==="RegExp")}});var Fv=g((nU,_v)=>{"use strict";var sL=oi();_v.exports=function(){var s=sL(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 qv=g((oU,Uv)=>{"use strict";var aL=Lt(),nL=Jt(),oL=oa(),uL=Fv(),Nv=RegExp.prototype;Uv.exports=function(s){var e=s.flags;return e===void 0&&!("flags"in Nv)&&!nL(s,"flags")&&oL(Nv,s)?aL(uL,s):e}});var jv=g((uU,Hv)=>{"use strict";var bd=Xe(),lL=Br(),cL=Math.floor,fd=bd("".charAt),dL=bd("".replace),md=bd("".slice),pL=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,hL=/\$([$&'`]|\d{1,2})/g;Hv.exports=function(s,e,t,i,r,a){var n=t+s.length,o=i.length,u=hL;return r!==void 0&&(r=lL(r),u=pL),dL(a,u,function(l,d){var c;switch(fd(d,0)){case"$":return"$";case"&":return s;case"`":return md(e,0,t);case"'":return md(e,n);case"<":c=r[md(d,1,-1)];break;default:var h=+d;if(h===0)return l;if(h>o){var p=cL(h/10);return p===0?l:p<=o?i[p-1]===void 0?fd(d,1):i[p-1]+fd(d,1):l}c=i[h-1]}return c===void 0?"":c})}});var Wv=g(()=>{"use strict";var fL=Ue(),mL=Lt(),Sd=Xe(),Gv=Gi(),bL=Ve(),gL=Mr(),SL=Ov(),ns=Fa(),vL=la(),yL=qv(),TL=jv(),IL=et(),xL=Xt(),EL=IL("replace"),wL=TypeError,gd=Sd("".indexOf),PL=Sd("".replace),zv=Sd("".slice),AL=Math.max;fL({target:"String",proto:!0},{replaceAll:function(e,t){var i=Gv(this),r,a,n,o,u,l,d,c,h,p,f=0,m="";if(!gL(e)){if(r=SL(e),r&&(a=ns(Gv(yL(e))),!~gd(a,"g")))throw new wL("`.replaceAll` does not allow non-global regexes");if(n=vL(e,EL),n)return mL(n,e,i,t);if(xL&&r)return PL(ns(i),e,t)}for(o=ns(i),u=ns(e),l=bL(t),l||(t=ns(t)),d=u.length,c=AL(1,d),h=gd(o,u);h!==-1;)p=l?ns(t(u,h,o)):TL(u,o,h,[],void 0,t),m+=zv(o,f,h)+p,f=h+d,h=h+c>o.length?-1:gd(o,u,h+c);return f<o.length&&(m+=zv(o,f)),m}})});var Yv=g((dU,Qv)=>{"use strict";$v();Cv();Wv();var kL=zi();Qv.exports=kL("String","replaceAll")});var Xv=g((pU,Kv)=>{"use strict";var RL=Yv();Kv.exports=RL});var vd=g((hU,Jv)=>{"use strict";var ML=Xv();Jv.exports=ML});var ey=g((fU,Zv)=>{"use strict";var LL=ha(),BL=Fa(),DL=Gi(),$L=RangeError;Zv.exports=function(e){var t=BL(DL(this)),i="",r=LL(e);if(r<0||r===1/0)throw new $L("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var ay=g((mU,sy)=>{"use strict";var ry=Xe(),CL=Ml(),ty=Fa(),VL=ey(),OL=Gi(),_L=ry(VL),FL=ry("".slice),NL=Math.ceil,iy=function(s){return function(e,t,i){var r=ty(OL(e)),a=CL(t),n=r.length,o=i===void 0?" ":ty(i),u,l;return a<=n||o===""?r:(u=a-n,l=_L(o,NL(u/o.length)),l.length>u&&(l=FL(l,0,u)),s?r+l:l+r)}};sy.exports={start:iy(!1),end:iy(!0)}});var oy=g((bU,ny)=>{"use strict";var UL=pr();ny.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(UL)});var uy=g(()=>{"use strict";var qL=Ue(),HL=ay().start,jL=oy();qL({target:"String",proto:!0,forced:jL},{padStart:function(e){return HL(this,e,arguments.length>1?arguments[1]:void 0)}})});var cy=g((vU,ly)=>{"use strict";uy();var GL=zi();ly.exports=GL("String","padStart")});var py=g((yU,dy)=>{"use strict";var zL=cy();dy.exports=zL});var yd=g((TU,hy)=>{"use strict";var WL=py();hy.exports=WL});var _B={};OT(_B,{ChromecastState:()=>ia,HttpConnectionType:()=>uo,Observable:()=>fi.Observable,PlaybackState:()=>mt,Player:()=>oo,PredefinedQualityLimits:()=>ra,SDK_VERSION:()=>OB,Subject:()=>fi.Subject,Subscription:()=>fi.Subscription,Surface:()=>lo,VERSION:()=>el,ValueSubject:()=>fi.ValueSubject,VideoFormat:()=>ai,VideoQuality:()=>fi.VideoQuality,clientChecker:()=>ee,isMobile:()=>Yr});module.exports=_T(_B);var el="2.0.131-dev.45e99145.0";var mt=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(mt||{}),ai=(I=>(I.MPEG="MPEG",I.DASH="DASH",I.DASH_SEP="DASH_SEP",I.DASH_SEP_VK="DASH_SEP",I.DASH_WEBM="DASH_WEBM",I.DASH_WEBM_AV1="DASH_WEBM_AV1",I.DASH_STREAMS="DASH_STREAMS",I.DASH_WEBM_VK="DASH_WEBM",I.DASH_ONDEMAND="DASH_ONDEMAND",I.DASH_ONDEMAND_VK="DASH_ONDEMAND",I.DASH_LIVE="DASH_LIVE",I.DASH_LIVE_CMAF="DASH_LIVE_CMAF",I.DASH_LIVE_WEBM="DASH_LIVE_WEBM",I.HLS="HLS",I.HLS_ONDEMAND="HLS_ONDEMAND",I.HLS_JS="HLS",I.HLS_LIVE="HLS_LIVE",I.HLS_LIVE_CMAF="HLS_LIVE_CMAF",I.WEB_RTC_LIVE="WEB_RTC_LIVE",I))(ai||{});var ia=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(ia||{}),uo=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(uo||{});var lo=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(lo||{}),ra=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(ra||{});var kT=Y(Ot(),1);var ce=require("@vkontakte/videoplayer-shared/es2015");var Xh=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 mo=class{constructor(e){this.connection$=new ce.ValueSubject(void 0);this.castState$=new ce.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new ce.Subject;this.realCastState$=new ce.ValueSubject("NOT_AVAILABLE");this.subscription=new ce.Subscription;this.isDestroyed=!1;var a;this.params=e;let t="chrome"in window;if(e.isDisabled||!t)return;let i=(0,ce.isNonNullable)((a=window.chrome)==null?void 0:a.cast),r=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=n=>{delete window.__onGCastApiAvailable,n&&!this.isDestroyed&&this.initializeCastApi()},r||Xh("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:ce.ErrorCategory.NETWORK,message:"Script loading failed!"})))}connect(){var e;(e=cast.framework.CastContext.getInstance())==null||e.requestSession()}disconnect(){var e,t;(t=(e=cast.framework.CastContext.getInstance())==null?void 0:e.getCurrentSession())==null||t.endSession(!0)}stopMedia(){return new Promise((e,t)=>{var i,r,a;(a=(r=(i=cast.framework.CastContext.getInstance())==null?void 0:i.getCurrentSession())==null?void 0:r.getMediaSession())==null||a.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){(0,ce.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,ce.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,ce.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,ce.fromEvent)(i,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(r=>{var a,n,o;switch(r.sessionState){case cast.framework.SessionState.SESSION_STARTED:case cast.framework.SessionState.SESSION_STARTING:case cast.framework.SessionState.SESSION_RESUMED:this.contentId=(o=(n=(a=i.getCurrentSession())==null?void 0:a.getMediaSession())==null?void 0:n.media)==null?void 0:o.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,ce.assertNever)(r.sessionState)}})).add((0,ce.merge)((0,ce.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,ce.map)(r=>r.castState)),(0,ce.observableFrom)([i.getCastState()])).pipe((0,ce.filterChanged)(),(0,ce.map)(nE)).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{var o,u;let a=r==="CONNECTED",n=(0,ce.isNonNullable)(this.connection$.getValue());if(a&&!n){let l=i.getCurrentSession();(0,ce.assertNonNullable)(l);let d=l.getCastDevice(),c=(u=(o=l.getMediaSession())==null?void 0:o.media)==null?void 0:u.contentId;((0,ce.isNullable)(c)||c===this.contentId)&&this.connection$.next({remotePlayer:e,remotePlayerController:t,session:l,castDevice:d})}else!a&&n&&this.connection$.next(void 0);this.castState$.next(r==="CONNECTED"?(0,ce.isNonNullable)(this.connection$.getValue())?"CONNECTED":"AVAILABLE":r)}))}initializeCastApi(){var r;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(a){return}try{e.setOptions({receiverApplicationId:(r=this.params.receiverApplicationId)!=null?r:t,autoJoinPolicy:i}),this.initListeners()}catch(a){this.errorEvent$.next({id:"ChromecastInitializer",category:ce.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:a})}}},nE=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,ce.assertNever)(s)}};var Jd=Y(Ot(),1),mT=Y(Fr(),1),bT=Y(sc(),1);var Yg=Y(Aa(),1);var jc=require("@vkontakte/videoplayer-shared/es2015");var Oe=(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,jc.assertNever)(t)}return s},Qi=(s,e)=>{var t;switch(e){case 0:return NaN;case 1:{let i=new URL(s);return Number(i.searchParams.get("playback_shift"))}case 2:{let i=new URL(s);return Number((t=i.searchParams.get("offset_p"))!=null?t:0)}default:(0,jc.assertNever)(e)}};var V=(s,e,t=!1)=>{let i=s.getTransition();(t||!i||i.to===e)&&s.setState(e)};var ui=require("@vkontakte/videoplayer-shared/es2015"),ie=class{constructor(e){this.transitionStarted$=new ui.Subject;this.transitionEnded$=new ui.Subject;this.transitionUpdated$=new ui.Subject;this.forceChanged$=new ui.Subject;this.stateChangeStarted$=(0,ui.merge)(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=(0,ui.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,ui.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 zg=require("@vkontakte/videoplayer-shared/es2015"),Wg=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,zg.assertNever)(s)}};var K=require("@vkontakte/videoplayer-shared/es2015");var fR=5,mR=5,bR=500,Qg=7e3,ka=class{constructor(e){this.subscription=new K.Subscription;this.loadMediaTimeoutSubscription=new K.Subscription;this.videoState=new ie("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(i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.stop());return}if(!t){if((r==null?void 0: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,K.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,K.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,K.assertNever)(e)}break}default:(0,K.assertNever)(i)}}};this.params=e,this.params.output.isLive$.next(Wg(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.subscription.unsubscribe()}subscribe(){this.subscription.add(this.loadMediaTimeoutSubscription);let e=new K.Subscription;this.subscription.add(e);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 K.Subject;e.add(r.pipe((0,K.debounce)(bR)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let a=NaN;e.add((0,K.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.CURRENT_TIME_CHANGED).subscribe(n=>{let o=n.value;this.params.output.position$.next(o),(this.params.desiredState.seekState.getState().state==="applying"||Math.abs(o-a)>fR)&&r.next(o),a=o})),e.add((0,K.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.params.output.duration$.next(n.value)}))}t((0,K.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),r=>{r.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t((0,K.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{r.value?this.handleRemotePause():this.handleRemotePlay()}),t((0,K.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),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<mR&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),V(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,K.assertNever)(n)}}),t((0,K.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.handleRemoteVolumeChange({volume:r.value})}),t((0,K.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.handleRemoteVolumeChange({muted:r.value})});let i=(0,K.merge)(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,K.observableFrom)(["init"])).pipe((0,K.debounce)(0));t(i,this.syncPlayback)}restoreSession(e){let{remotePlayer:t}=this.params.connection;if(e.playerState!==chrome.cast.media.PlayerState.IDLE){t.isPaused?(this.videoState.setState("paused"),V(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),V(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,t=this.createMediaInfo(e),i=this.createLoadRequest(t);this.loadMedia(i)}handleRemotePause(){let e=this.videoState.getState(),t=this.videoState.getTransition();((t==null?void 0:t.to)==="paused"||e==="playing")&&(this.videoState.setState("paused"),V(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState(),t=this.videoState.getTransition();((t==null?void 0:t.to)==="playing"||e==="paused")&&(this.videoState.setState("playing"),V(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){var t;let e=this.videoState.getTransition();(e==null?void 0:e.to)==="ready"&&this.videoState.setState("ready"),((t=this.params.desiredState.playbackState.getTransition())==null?void 0:t.to)==="ready"&&V(this.params.desiredState.playbackState,"ready")}handleRemoteStop(){this.videoState.getState()!=="stopped"&&this.videoState.setState("stopped")}handleRemoteVolumeChange(e){var r,a;let t=this.params.output.volume$.getValue(),i={volume:(r=e.volume)!=null?r:t.volume,muted:(a=e.muted)!=null?a: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){var l;let t=this.params.source,i,r,a;switch(e){case"MPEG":{let d=t[e];(0,K.assertNonNullable)(d);let c=(0,K.getHighestQuality)(Object.keys(d));(0,K.assertNonNullable)(c);let h=d[c];(0,K.assertNonNullable)(h),i=h,r="video/mp4",a=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let d=t[e];(0,K.assertNonNullable)(d),i=d.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 d=t[e];(0,K.assertNonNullable)(d),i=d.url,r="application/dash+xml",a=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let d=t[e];(0,K.assertNonNullable)(d),i=d.url,r="application/dash+xml",a=chrome.cast.media.StreamType.LIVE;break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let d=t[e];(0,K.assertNonNullable)(d),i=Oe(d.url),r="application/x-mpegurl",a=chrome.cast.media.StreamType.LIVE;break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let d="Unsupported format for Chromecast",c=new Error(d);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:K.ErrorCategory.VIDEO_PIPELINE,message:d,thrown:c}),c}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,K.assertNever)(e)}let n=new chrome.cast.media.MediaInfo((l=this.params.meta.videoId)!=null?l: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,K.isNonNullable)(o)&&(n.metadata.title=o),(0,K.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,K.timeout)(Qg).subscribe(()=>a(`timeout(${Qg})`)))});(0,Yg.default)(Promise.race([t,i]).then(()=>{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.params.output.error$.next({id:"ChromecastProvider.loadMedia",category:K.ErrorCategory.VIDEO_PIPELINE,message:a,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}};var ad=Y(Ot(),1);var Qc=require("@vkontakte/videoplayer-shared/es2015");var Kg=require("@vkontakte/videoplayer-shared/es2015"),Xg=s=>{try{s.pause(),s.playbackRate=0,(0,Kg.clearVideoElement)(s),s.remove()}catch(e){console.error(e)}};var Ho=require("@vkontakte/videoplayer-shared/es2015"),Gc=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)}},zc=window.WeakMap?new WeakMap:new Gc,Wc=window.WeakMap?new WeakMap:new Map,gR=(s,e=20)=>{let t=0;return(0,Ho.fromEvent)(s,"ratechange").subscribe(i=>{t++,t>=e&&(s.currentTime=s.currentTime,t=0)})},tt=(s,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=s.querySelector("video"),r=!!i;i?(0,Qc.clearVideoElement)(i):(i=document.createElement("video"),s.appendChild(i)),zc.set(i,r);let a=new Ho.Subscription;return a.add(gR(i,e)),Wc.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},it=s=>{let e=Wc.get(s);e==null||e.unsubscribe(),Wc.delete(s);let t=zc.get(s);zc.delete(s),t?(0,Qc.clearVideoElement)(s):Xg(s)};var Yc=Y(vr(),1),Q=require("@vkontakte/videoplayer-shared/es2015");var Yi=require("@vkontakte/videoplayer-shared/es2015"),jo=(s,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:a}={})=>{let n=s.getState(),o=e(),u=(0,Yi.isNullable)(r),l=new Yi.Subscription;return r&&l.add(r.subscribe(d=>{let c=s.getState();i(d,c)&&s.setState(d)},a)),i(o,n)||(t(n),u&&s.setState(n)),l.add(s.stateChangeStarted$.subscribe(d=>{t(d.to),u&&s.setState(d.to)},a)),l},_t=(s,e,t)=>jo(e,()=>s.loop,i=>{(0,Yi.isNonNullable)(i)&&(s.loop=i)},{onError:t}),rt=(s,e,t,i)=>jo(e,()=>({muted:s.muted,volume:s.volume}),r=>{(0,Yi.isNonNullable)(r)&&(s.muted=r.muted,s.volume=r.volume)},{equal:(r,a)=>r===a||(r==null?void 0:r.muted)===(a==null?void 0:a.muted)&&(r==null?void 0:r.volume)===(a==null?void 0:a.volume),changed$:t,onError:i}),vt=(s,e,t,i)=>jo(e,()=>s.playbackRate,r=>{(0,Yi.isNonNullable)(r)&&(s.playbackRate=r)},{changed$:t,onError:i}),Ki=jo;var xR=s=>["__",s.language,s.label].join("|"),ER=(s,e)=>{if(s.id===e)return!0;let[t,i,r]=e.split("|");return s.language===i&&s.label===r},Kc=class s{constructor(e){this.available$=new Q.Subject;this.current$=new Q.ValueSubject(void 0);this.error$=new Q.Subject;this.subscription=new Q.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:Q.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(Ki(t.internalTextTracks,()=>(0,Yc.default)(this.internalTracks),a=>{(0,Q.isNonNullable)(a)&&this.setInternal(a)},{equal:(a,n)=>(0,Q.isNonNullable)(a)&&(0,Q.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,Q.map)(a=>a.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(Ki(t.externalTextTracks,()=>(0,Yc.default)(this.externalTracks),a=>{(0,Q.isNonNullable)(a)&&this.setExternal(a)},{equal:(a,n)=>(0,Q.isNonNullable)(a)&&(0,Q.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,Q.map)(a=>a.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(Ki(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(Ki(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let a of this.htmlTextTracksAsArray())this.applyCueSettings(a.cues),this.applyCueSettings(a.activeCues)}))}subscribe(){(0,Q.assertNonNullable)(this.video);let{textTracks:e}=this.video;this.subscription.add((0,Q.fromEvent)(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add((0,Q.merge)((0,Q.fromEvent)(e,"addtrack"),(0,Q.fromEvent)(e,"removetrack"),(0,Q.observableFrom)(["init"])).pipe((0,Q.map)(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),(0,Q.filterChanged)((i,r)=>i.length===r.length&&i.every(({id:a},n)=>a===r[n].id))).subscribe(this.available$)),this.subscription.add((0,Q.merge)((0,Q.fromEvent)(e,"change"),(0,Q.observableFrom)(["init"])).pipe((0,Q.map)(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),(0,Q.map)(i=>i&&this.htmlTextTrackToITextTrack(i).id),(0,Q.filterChanged)()).subscribe(this.current$));let t=i=>{var r,a;return this.applyCueSettings((a=(r=i.target)==null?void 0:r.activeCues)!=null?a:null)};this.subscription.add((0,Q.fromEvent)(e,"addtrack").subscribe(i=>{var a,n;(a=i.track)==null||a.addEventListener("cuechange",t);let r=o=>{var l,d,c,h,p;let u=(d=(l=o.target)==null?void 0:l.cues)!=null?d:null;u&&u.length&&(this.applyCueSettings((h=(c=o.target)==null?void 0:c.cues)!=null?h:null),(p=o.target)==null||p.removeEventListener("cuechange",r))};(n=i.track)==null||n.addEventListener("cuechange",r)})),this.subscription.add((0,Q.fromEvent)(e,"removetrack").subscribe(i=>{var r;(r=i.track)==null||r.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,Q.isNonNullable)(t.align)&&(r.align=t.align),(0,Q.isNonNullable)(t.position)&&(r.position=t.position),(0,Q.isNonNullable)(t.size)&&(r.size=t.size),(0,Q.isNonNullable)(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){(0,Q.assertNonNullable)(this.video);let t=[...this.video.textTracks];return e?t:t.filter(s.isHealthyTrack)}htmlTextTrackToITextTrack(e){var o,u,l,d,c;let{language:t,label:i}=e,r=e.id?e.id:xR(e),a=this.externalTracks.has(r),n=(l=a?(o=this.externalTracks.get(r))==null?void 0:o.isAuto:(u=this.internalTracks.get(r))==null?void 0:u.isAuto)!=null?l:r.includes("auto");return a?{id:r,type:"external",isAuto:n,language:t,label:i,url:(d=this.externalTracks.get(r))==null?void 0:d.url}:{id:r,type:"internal",isAuto:n,language:t,label:i,url:(c=this.internalTracks.get(r))==null?void 0:c.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,Q.assertNonNullable)(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))((0,Q.isNullable)(e)||!ER(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,Q.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,Q.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)}},yt=Kc;var yr=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 sS=s=>{let e=s;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e==null?void 0:e.parentNode;return e!=null?e:void 0},Xc=s=>{let e=sS(s);return!!(e&&e.fullscreenElement&&e.fullscreenElement===s)},aS=s=>{let e=sS(s);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===s)};var q=require("@vkontakte/videoplayer-shared/es2015");var wR=3,nS=(s,e,t=wR)=>{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 Go=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 oS=Y(Ot(),1);var Yr=()=>{var s,e;return/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test((s=navigator.appVersion)!=null?s:navigator.userAgent)||((e=navigator==null?void 0:navigator.userAgentData)==null?void 0:e.mobile)};var zo=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,oS.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=Yr()}catch(t){console.error(t)}this.detectDevice(e),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}detectHighEntropyValues(){return P(this,null,function*(){let{userAgentData:e}=navigator;if(e){let t=yield 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 Wo=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(){var t;let{maxTouchPoints:e}=navigator;try{this._maxTouchPoints=e!=null?e:0,this._isHdr=!!((t=matchMedia("(dynamic-range: high)"))!=null&&t.matches),this._colorDepth=screen.colorDepth}catch(i){console.error(i)}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(i){console.error(i)}}};var $t=()=>window.ManagedMediaSource||window.MediaSource,Kr=()=>{var s,e;return!!(window.ManagedMediaSource&&((e=(s=window.ManagedSourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},uS=()=>{var s,e;return!!(window.MediaSource&&((e=(s=window.SourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},Qo=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var PR=document.createElement("video"),AR='video/mp4; codecs="avc1.42000a,mp4a.40.2"',kR='video/mp4; codecs="hev1.1.6.L93.B0"',lS='video/webm; codecs="vp09.00.10.08"',cS='video/webm; codecs="av01.0.00M.08"',RR='audio/mp4; codecs="mp4a.40.2"',MR='audio/webm; codecs="opus"',dS,LR=()=>P(void 0,null,function*(){if(!window.navigator.mediaCapabilities)return;let s={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[e,t]=yield Promise.all([window.navigator.mediaCapabilities.decodingInfo(N(R({},s),{video:N(R({},s.video),{contentType:cS})})),window.navigator.mediaCapabilities.decodingInfo(N(R({},s),{video:N(R({},s.video),{contentType:lS})}))]);dS={DASH_WEBM_AV1:e,DASH_WEBM:t}});LR().catch(s=>{console.log(PR),console.error(s)});var Yo=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 dS}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){var e,t,i,r,a,n,o,u,l,d,c,h,p,f,m,S,v,x,I,E;this._video=document.createElement("video");try{this._protocols={mms:Kr(),mse:uS(),hls:!!((t=(e=this._video).canPlayType)!=null&&t.call(e,"application/x-mpegurl")||(r=(i=this._video).canPlayType)!=null&&r.call(i,"vnd.apple.mpegURL")),webrtc:!!window.RTCPeerConnection,ws:!!window.WebSocket},this._containers={mp4:!!((n=(a=this._video).canPlayType)!=null&&n.call(a,"video/mp4")),webm:!!((u=(o=this._video).canPlayType)!=null&&u.call(o,"video/webm")),cmaf:!0};let L=!!((d=(l=$t())==null?void 0:l.isTypeSupported)!=null&&d.call(l,AR)),M=!!((h=(c=$t())==null?void 0:c.isTypeSupported)!=null&&h.call(c,kR)),_=!!((f=(p=$t())==null?void 0:p.isTypeSupported)!=null&&f.call(p,RR));this._codecs={h264:L,h265:M,vp9:!!((S=(m=$t())==null?void 0:m.isTypeSupported)!=null&&S.call(m,lS)),av1:!!((x=(v=$t())==null?void 0:v.isTypeSupported)!=null&&x.call(v,cS)),aac:_,opus:!!((E=(I=$t())==null?void 0:I.isTypeSupported)!=null&&E.call(I,MR)),mpeg:(L||M)&&_},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(L){console.error(L)}this.destroyVideoElement()}destroyVideoElement(){var t;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);(t=this._video.parentNode)==null||t.replaceChild(e,this._video),this._video=null}};var pS="audio/mpeg",Ko=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){var e,t,i,r;this._audio=document.createElement("audio");try{this._containers={mpeg:!!((t=(e=this._audio).canPlayType)!=null&&t.call(e,pS))},this._codecs={mp3:!!((r=(i=$t())==null?void 0:i.isTypeSupported)!=null&&r.call(i,pS))}}catch(a){console.error(a)}this.destroyAudioElement()}destroyAudioElement(){var t;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);(t=this._audio.parentNode)==null||t.replaceChild(e,this._audio),this._audio=null}};var hS=require("@vkontakte/videoplayer-shared/es2015");var Jc=class{constructor(){this.isInited$=new hS.ValueSubject(!1);this._displayChecker=new Wo,this._deviceChecker=new zo(this._displayChecker),this._browserChecker=new Go,this._videoChecker=new Yo(this._deviceChecker,this._browserChecker),this._audioChecker=new Ko,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}detect(){return P(this,null,function*(){this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0)})}},ee=new Jc;var st=s=>{let e=D=>(0,q.fromEvent)(s,D).pipe((0,q.mapTo)(void 0)),t=new q.Subscription,i=()=>t.unsubscribe(),a=(0,q.merge)(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(D=>(0,q.fromEvent)(s,D))).pipe((0,q.map)(D=>D.type==="ended"?s.readyState<2:s.readyState<3),(0,q.filterChanged)()),n=(0,q.merge)((0,q.fromEvent)(s,"progress"),(0,q.fromEvent)(s,"timeupdate")).pipe((0,q.map)(()=>nS(s.buffered,s.currentTime))),o=ee.browser.isSafari?(0,q.combine)({play:e("play").pipe((0,q.once)()),playing:e("playing")}).pipe((0,q.mapTo)(void 0)):e("playing"),u=(0,q.fromEvent)(s,"volumechange").pipe((0,q.map)(()=>({muted:s.muted,volume:s.volume}))),l=(0,q.fromEvent)(s,"ratechange").pipe((0,q.map)(()=>s.playbackRate)),d=(0,q.fromEvent)(s,"error").pipe((0,q.filter)(()=>!!(s.error||s.played.length)),(0,q.map)(()=>{var U;let D=s.error;return{id:D?`MediaError#${D.code}`:"HtmlVideoError",category:q.ErrorCategory.VIDEO_PIPELINE,message:D?D.message:"Error event from HTML video element",thrown:(U=s.error)!=null?U:void 0}})),c=(0,q.fromEvent)(s,"timeupdate").pipe((0,q.map)(()=>s.currentTime)),h=new q.Subject,p=.3,f;t.add(c.subscribe(D=>{s.loop&&(0,q.isNonNullable)(f)&&(0,q.isNonNullable)(D)&&f>=s.duration-p&&D<=p&&h.next(f),f=D}));let m=e("pause").pipe((0,q.filter)(()=>!s.error&&f!==s.duration)),S=(0,q.fromEvent)(s,"enterpictureinpicture"),v=(0,q.fromEvent)(s,"leavepictureinpicture"),x=new q.ValueSubject(aS(s));t.add(S.subscribe(()=>x.next(!0))),t.add(v.subscribe(()=>x.next(!1)));let I=new q.ValueSubject(Xc(s)),E=(0,q.fromEvent)(s,"fullscreenchange");t.add(E.pipe((0,q.map)(()=>Xc(s))).subscribe(I));let L=.1,M=1e3,_=(0,q.fromEvent)(s,"timeupdate").pipe((0,q.filter)(D=>s.duration-s.currentTime<L)),G=(0,q.merge)(_.pipe((0,q.filter)(D=>!s.loop)),(0,q.fromEvent)(s,"ended")).pipe((0,q.throttle)(M),(0,q.mapTo)(void 0)),X=_.pipe((0,q.filter)(D=>s.loop));return{playing$:o,pause$:m,canplay$:e("canplay"),ended$:G,looped$:h,loopExpected$:X,error$:d,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:c,durationChange$:(0,q.fromEvent)(s,"durationchange").pipe((0,q.map)(()=>s.duration)),isBuffering$:a,currentBuffer$:n,volumeState$:u,playbackRateState$:l,inPiP$:x,inFullscreen$:I,enterPip$:S,leavePip$:v,destroy:i}};var Li=require("@vkontakte/videoplayer-shared/es2015"),ci=s=>{switch(s){case"mobile":return Li.VideoQuality.Q_144P;case"lowest":return Li.VideoQuality.Q_240P;case"low":return Li.VideoQuality.Q_360P;case"sd":case"medium":return Li.VideoQuality.Q_480P;case"hd":case"high":return Li.VideoQuality.Q_720P;case"fullhd":case"full":return Li.VideoQuality.Q_1080P;case"quadhd":case"quad":return Li.VideoQuality.Q_1440P;case"ultrahd":case"ultra":return Li.VideoQuality.Q_2160P}};var bt=Y(ei(),1),ed=Y(Ot(),1),B=require("@vkontakte/videoplayer-shared/es2015");var NR=!1,Xo={};var Jo=class{constructor(e){this.name=e}next(e){var i,r;if(!NR)return;Xo.series=(i=Xo.series)!=null?i:{};let t=(r=Xo.series[this.name])!=null?r:[];t.push([Date.now(),e]),Xo.series[this.name]=t}};var qe=require("@vkontakte/videoplayer-shared/es2015");function Zc(s,e,t){return!s.max&&s.min===e?"high_quality":!s.min&&s.max===t?"traffic_saving":"unknown"}function Zo(s,e,t){return!!s&&Zc(s,e,t)==="high_quality"}function Xr(s,e,t){return(0,qe.isNullable)(s)||(0,qe.isNonNullable)(s.min)&&(0,qe.isNonNullable)(s.max)&&(0,qe.isLower)(s.max,s.min)||(0,qe.isNonNullable)(s.min)&&e&&(0,qe.isHigher)(s.min,e)||(0,qe.isNonNullable)(s.max)&&t&&(0,qe.isLower)(s.max,t)}function yS({limits:s,highestAvailableHeight:e,lowestAvailableHeight:t}){return Xr({max:s!=null&&s.max?(0,qe.videoHeightToQuality)(s.max):void 0,min:s!=null&&s.min?(0,qe.videoHeightToQuality)(s.min):void 0},e?(0,qe.videoHeightToQuality)(e):void 0,t?(0,qe.videoHeightToQuality)(t):void 0)}var ES=new Jo("best_bitrate"),tu=(s,e,t)=>(e-t)*Math.pow(2,-10*s)+t;var Jr=s=>(e,t)=>s*(Number(e.bitrate)-Number(t.bitrate)),Xi=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={}}},iu='Assertion "ABR Tracks is empty array" failed',eu=new WeakMap,TS=new WeakMap,IS=new WeakMap,Ra=(s,e,t,i)=>{var u;let r=[...e].sort(Jr(1)),a=[...t].sort(Jr(1)),n=a.filter(l=>(0,B.isNonNullable)(l.bitrate)&&(0,B.isNonNullable)(s.bitrate)?s.bitrate/l.bitrate>i:!0),o=(u=(0,bt.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,bt.default)(a,-1);return o&&(0,ed.default)(n,o)?o:n.length?(0,bt.default)(n,-1):(0,bt.default)(a,0)},Ma=(s,e,t,i)=>{var u;let r=eu.get(e);r||(r=[...e].sort(Jr(1)),eu.set(e,r));let a=eu.get(t);a||(a=[...t].sort(Jr(1)),eu.set(t,a));let n=IS.get(s);n||(n=a.filter(l=>(0,B.isNonNullable)(l.bitrate)&&(0,B.isNonNullable)(s.bitrate)?s.bitrate/l.bitrate>i:!0),IS.set(s,n));let o=(u=(0,bt.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,bt.default)(a,-1);return o&&(0,ed.default)(n,o)?o:n.length?(0,bt.default)(n,-1):(0,bt.default)(a,0)},ru=(s,e,t)=>{var a;let i=(0,B.isNonNullable)((a=t==null?void 0:t.last)==null?void 0:a.bitrate)&&(0,B.isNonNullable)(e==null?void 0:e.bitrate)&&t.last.bitrate<e.bitrate?s.trackCooldownIncreaseQuality:s.trackCooldownDecreaseQuality,r=e&&t&&t.history[e.id]&&(0,B.now)()-t.history[e.id]<=i&&(!t.last||e.id!==t.last.id);if(e!=null&&e.id&&t&&!r&&t.recordSelection(e),r&&(t!=null&&t.last)){let n=t.last;return t==null||t.recordSwitch(n),n}return t==null||t.recordSwitch(e),e},UR=(s,e)=>Math.log(e)/Math.log(s),wS=({tuning:s,container:e,limits:t,panelSize:i})=>{let r=s.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(s.usePixelRatio&&ee.display.pixelRatio){let a=ee.display.pixelRatio;if(s.pixelRatioMultiplier)r*=s.pixelRatioMultiplier*(a-1)+1;else{let n=s.pixelRatioLogBase,[o=0,u=0,l=0]=s.pixelRatioLogCoefficients,d=UR(n,o*a+u)+l;Number.isFinite(d)&&(r*=d)}}return Zo(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}},xS=new WeakMap,di=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:d,droppedVideoMaxQualityLimit:c,stallsVideoMaxQualityLimit:h,stallsPredictedThroughput:p,panelSize:f})=>{var D,U,O;(0,B.assertNotEmptyArray)(s,iu);let{containerSizeLimit:m}=wS({container:e,tuning:i,limits:r,panelSize:f}),S=i.considerPlaybackRate&&(0,B.isNonNullable)(o)?o:1,v=xS.get(s);v||(v=s.filter(F=>!(0,B.isInvariantQuality)(F.quality)).sort((F,$)=>(0,B.isHigher)(F.quality,$.quality)?-1:1),xS.set(s,v));let x=(D=(0,bt.default)(v,-1))==null?void 0:D.quality,I=(U=(0,bt.default)(v,0))==null?void 0:U.quality,E=Xr(r,I,x),L=S*tu(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),M={},_=null;for(let F of v){let $=!0;if(m)if(F.size)$=F.size.width<=m.width&&F.size.height<=m.height;else{let Le=m&&(0,B.videoSizeToQuality)(m);$=Le?(0,B.isLowerOrEqual)(F.quality,Le):!0}if(!$){M[F.quality]="FitsContainer";continue}let H=p||t,C=(0,B.isNonNullable)(H)&&isFinite(H)&&(0,B.isNonNullable)(F.bitrate)?H-a>=F.bitrate*L:!0,j=Zo(r,i.highQualityLimit,i.trafficSavingLimit)&&(r==null?void 0:r.min)===F.quality;if(!C&&!j){M[F.quality]="FitsThroughput";continue}if(i.lazyQualitySwitch&&(0,B.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,B.isInvariantQuality)(u.quality)&&(n!=null?n:0)<i.minBufferToSwitchUp&&(0,B.isHigher)(F.quality,u.quality)){M[F.quality]="Buffer";continue}if(!!c&&(0,B.isHigherOrEqual)(F.quality,c)&&!j){M[F.quality]="DroppedFramesLimit";continue}if(!!h&&(0,B.isHigherOrEqual)(F.quality,h)&&!j){M[F.quality]="StallsLimit";continue}let Ut=E||((0,B.isNullable)(r==null?void 0:r.max)||(0,B.isLowerOrEqual)(F.quality,r.max))&&((0,B.isNullable)(r==null?void 0:r.min)||(0,B.isHigherOrEqual)(F.quality,r.min)),pe=(0,B.isNonNullable)(d)&&!d?(0,B.isLowerOrEqual)(F.quality,i.backgroundVideoQualityLimit):!0;if(!Ut||!pe){M[F.quality]="FitsQualityLimits";continue}_||(_=F)}_&&_.bitrate&&ES.next(_.bitrate);let G=(O=_!=null?_:(0,bt.default)(v,-1))!=null?O:s[0];return ru(i,G,l)},su=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:d,droppedVideoMaxQualityLimit:c,stallsVideoMaxQualityLimit:h,stallsPredictedThroughput:p,panelSize:f})=>{var U,O,F;(0,B.assertNotEmptyArray)(s,iu);let{containerSizeLimit:m}=wS({container:e,tuning:i,limits:r,panelSize:f}),S=i.considerPlaybackRate&&(0,B.isNonNullable)(o)?o:1,v=s.filter($=>!(0,B.isInvariantQuality)($.quality)).sort(($,H)=>(0,B.isHigher)($.quality,H.quality)?-1:1),x=(U=(0,bt.default)(v,-1))==null?void 0:U.quality,I=(O=(0,bt.default)(v,0))==null?void 0:O.quality,E=Xr(r,x,I),L=S*tu(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),M={},G=v.filter($=>{let H=!0;if(m)if($.size)H=$.size.width<=m.width&&$.size.height<=m.height;else{let Fe=m&&(0,B.videoSizeToQuality)(m);H=Fe?(0,B.isLowerOrEqual)($.quality,Fe):!0}if(!H)return M[$.quality]="FitsContainer",!1;let C=p||t,j=(0,B.isNonNullable)(C)&&isFinite(C)&&(0,B.isNonNullable)($.bitrate)?C-a>=$.bitrate*L:!0,be=Zo(r,i.highQualityLimit,i.trafficSavingLimit)&&(r==null?void 0:r.min)===$.quality;if(!j&&!be)return M[$.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&(0,B.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,B.isInvariantQuality)(u.quality)&&(n!=null?n:0)<i.minBufferToSwitchUp&&(0,B.isHigher)($.quality,u.quality))return M[$.quality]="Buffer",!1;if(!!c&&(0,B.isHigherOrEqual)($.quality,c)&&!be)return M[$.quality]="DroppedFramesLimit",!1;if(!!h&&(0,B.isHigherOrEqual)($.quality,h)&&!be)return M[$.quality]="StallsLimit",!1;let pe=E||((0,B.isNullable)(r==null?void 0:r.max)||(0,B.isLowerOrEqual)($.quality,r.max))&&((0,B.isNullable)(r==null?void 0:r.min)||(0,B.isHigherOrEqual)($.quality,r.min)),Le=(0,B.isNonNullable)(d)&&!d?(0,B.isLowerOrEqual)($.quality,i.backgroundVideoQualityLimit):!0;return!pe||!Le?(M[$.quality]="FitsQualityLimits",!1):!0})[0];G&&G.bitrate&&ES.next(G.bitrate);let X=(F=G!=null?G:(0,bt.default)(v,-1))!=null?F:s[0];return ru(i,X,l)},au=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,stallsPredictedThroughput:u})=>{(0,B.assertNotEmptyArray)(t,iu);let l=r.considerPlaybackRate&&(0,B.isNonNullable)(a)?a:1,d=[...t].sort(Jr(-1)),c=s.bitrate;(0,B.assertNonNullable)(c);let h=l*tu(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),p,f=Ra(s,e,t,r.minVideoAudioRatio),m=u||i;return(0,B.isNonNullable)(m)&&isFinite(m)&&(p=d.find(v=>(0,B.isNonNullable)(v.bitrate)&&(0,B.isNonNullable)(f==null?void 0:f.bitrate)?m-c>=v.bitrate*h&&v.bitrate>=f.bitrate:!1)),p||(p=f),p&&ru(r,p,o)},nu=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,stallsPredictedThroughput:u})=>{(0,B.assertNotEmptyArray)(t,iu);let l=r.considerPlaybackRate&&(0,B.isNonNullable)(a)?a:1,d=TS.get(t);d||(d=[...t].sort(Jr(-1)),TS.set(t,d));let c=s.bitrate;(0,B.assertNonNullable)(c);let h=l*tu(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),p,f=Ma(s,e,t,r.minVideoAudioRatio),m=u||i;return(0,B.isNonNullable)(m)&&isFinite(m)&&(p=d.find(v=>(0,B.isNonNullable)(v.bitrate)&&(0,B.isNonNullable)(f==null?void 0:f.bitrate)?m-c>=v.bitrate*h&&v.bitrate>=f.bitrate:!1)),p||(p=f),p&&ru(r,p,o)};var He=s=>new URL(s).hostname;var re=require("@vkontakte/videoplayer-shared/es2015");var LS=Y(ei(),1);var AS=Y(Ot(),1);var PS=s=>{if(s instanceof DOMException&&(0,AS.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"))},at=(s,e)=>P(void 0,null,function*(){let t=s.muted;try{yield s.play()}catch(i){if(!PS(i))return!1;if(e&&e(),t)return console.warn(i),!1;s.muted=!0;try{yield s.play()}catch(r){return PS(r)&&(s.muted=!1,console.warn(r)),!1}}return!0});var Ct=require("@vkontakte/videoplayer-shared/es2015");var kS=Y(vr(),1),pi=require("@vkontakte/videoplayer-shared/es2015");function Je(){return(0,pi.now)()}function td(s){return Je()-s}function id(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 RS(s,e,t){let i=(...r)=>{t.apply(null,r),s.removeEventListener(e,i)};s.addEventListener(e,i)}function Zr(s,e,t,i){let r=window.XMLHttpRequest,a,n,o,u=!1,l=0,d,c,h=!1,p="arraybuffer",f=7e3,m=2e3,S=()=>{if(u)return;(0,pi.assertNonNullable)(d);let O=td(d),F;if(O<m){F=m-O,setTimeout(S,F);return}m*=2,m>f&&(m=f),n&&n.abort(),n=new r,M()},v=O=>(a=O,U),x=O=>(c=O,U),I=()=>(p="json",U),E=()=>{if(!u){if(--l>=0){S(),i&&i();return}u=!0,c&&c(),t&&t()}},L=O=>(h=O,U),M=()=>{d=Je(),n=new r,n.open("get",s);let O=0,F,$=0,H=()=>((0,pi.assertNonNullable)(d),Math.max(d,Math.max(F||0,$||0)));if(a&&n.addEventListener("progress",C=>{let j=Je();a.updateChunk&&C.loaded>O&&(a.updateChunk(H(),C.loaded-O),O=C.loaded,F=j)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>E())),n.addEventListener("load",()=>{if(u)return;(0,pi.assertNonNullable)(n);let C=n.status;if(C>=200&&C<300){let{response:j,responseType:be}=n,ge=j==null?void 0:j.byteLength;if(typeof ge=="number"&&a){let J=ge-O;J&&a.updateChunk&&a.updateChunk(H(),J)}be==="json"&&(!j||!(0,kS.default)(j).length)?E():(c&&c(),e(j))}else E()}),n.addEventListener("error",()=>{E()}),h){let C=()=>{(0,pi.assertNonNullable)(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&($=Je(),n.removeEventListener("readystatechange",C))};n.addEventListener("readystatechange",C)}return n.responseType=p,n.send(),U},U={withBitrateReporting:v,withParallel:L,withJSONResponse:I,withRetryCount:O=>(l=O,U),withRetryInterval:(O,F)=>((0,pi.isNonNullable)(O)&&(m=O),(0,pi.isNonNullable)(F)&&(f=F),U),withTimeout:O=>(o=O,U),withFinally:x,send:M,abort:()=>{n&&(n.abort(),n=void 0),u=!0,c&&c()}};return U}var La=class{constructor(){this.intervals=[];this.currentRate=0}_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),!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._doMergeIntervals(this.intervals[1],this.intervals[0]),this.intervals.splice(0,1)),this._flushIntervals()}getBitRate(){return this.currentRate}};var MS=Y(vr(),1);var Ba=class{constructor(e,t,i,r){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}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];delete this.completeRequests[t]}}_sendRequest(e,t){let i=Je(),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=Je()-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=Zr(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=Je()}_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=Je();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._sendRequest({},e)}else return}}_removeFromActive(e){delete this.completeRequests[e],delete this.activeRequests[e]}abortAll(){(0,MS.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?t(n._responseData,n._downloadTime):i(n._errorMsg),a._finallyCB&&a._finallyCB()},0));else{let o=this.pendingQueue.indexOf(e);o!==-1&&this.pendingQueue.splice(o,1),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.pendingQueue.unshift(e),this._sendPending())}optimizeForSegDuration(e){this.averageSegmentDuration=e}};var BS=require("@vkontakte/videoplayer-shared/es2015");var ou=1e4,rd=3;var HR=6e4,jR=10,GR=1,zR=500,Da=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 BS.Subject,this.chunkRateEstimator=new La,this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=id(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=id(e),this.catchUp()}_handleNetworkError(){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.playerCallback({name:"buffering",isBuffering:e}),this.buffering=e)}_initVideo(){let{videoElement:e}=this.params;e.addEventListener("error",()=>{!!e.error&&!this.destroyed&&this.params.playerCallback({name:"error",type:"media"})}),e.addEventListener("timeupdate",()=>{let t=this._getBufferSizeSec();!this.paused&&t<.3?this.buffering||(this.buffering=!0,window.setTimeout(()=>{!this.paused&&this.buffering&&this._notifyBuffering(!0)},(t+.1)*1e3)):this.buffering&&this.videoPlayStarted&&this._notifyBuffering(!1)}),e.addEventListener("stalled",()=>this._fixupStall()),e.addEventListener("waiting",()=>this._fixupStall())}_fixupStall(){let{videoElement:e}=this.params,t=e.buffered.length,i;t!==0&&!this.waitingForFirstBufferAfterSrcChange&&(i=e.buffered.start(t-1),e.currentTime<i&&(e.currentTime=i))}_selectQuality(e){let{videoElement:t}=this.params,i,r,a,n=t&&1.62*(ee.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||{};!yS({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,LS.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,Ct.isNonNullable)(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){let{videoElement:i,playerCallback:r}=this.params;this.mediaSource=new window.MediaSource,i.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener("sourceopen",()=>{this.mediaSource&&(this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t())}),this.videoPlayStarted=!1,i.addEventListener("canplay",()=>{this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let a=()=>{RS(i,"progress",()=>{i.buffered.length?(i.currentTime=i.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,r({name:"playing"})):a()})};this.waitingForFirstBufferAfterSrcChange=!0,a()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new Ba(rd,ou,this.bitrateSwitcher,this.params.config.maxParallelRequests),this._setVideoSrc(e,()=>this._switchToQuality(e))}_representation(e){let{videoElement:t,playerCallback:i}=this.params,r=!1,a=null,n=null,o=null,u=null,l=!1,d=()=>r&&(!l||l===this.rep),c=(I,E,L)=>{o&&o.abort(),o=Zr(this.urlResolver.resolve(I,!1),E,L,()=>this._retryCallback()).withTimeout(ou).withBitrateReporting(this.bitrateSwitcher).withRetryCount(rd).withFinally(()=>{o=null}).send()},h=(I,E,L)=>{(0,Ct.assertNonNullable)(this.filesFetcher),n==null||n.abort(),n=this.filesFetcher.requestData(this.urlResolver.resolve(I,!1),E,L,()=>this._retryCallback()).withFinally(()=>{n=null}).send()},p=I=>{let E=t.playbackRate;t.playbackRate!==I&&(t.playbackRate=I)},f=I=>{this.lowLatency=I,m()},m=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)p(1);else{let I=this._getBufferSizeSec();if(this.bufferStates.length<5){p(1);return}let L=Je()-1e4,M=0;for(let G=0;G<this.bufferStates.length;G++){let X=this.bufferStates[G];I=Math.min(I,X.buf),X.ts<L&&M++}this.bufferStates.splice(0,M);let _=I-GR;this.sourceJitter>=0?_-=this.sourceJitter/2:this.sourceJitter-=1,_>3?p(1.15):_>1?p(1.1):_>.3?p(1.05):p(1)}},S=I=>{let E,L=()=>E&&E.start?E.start.length:0,M=H=>E.start[H]/1e3,_=H=>E.dur[H]/1e3,G=H=>E.fragIndex+H,X=(H,C)=>({chunkIdx:G(H),startTS:M(H),dur:_(H),discontinuity:C}),D=()=>{let H=0;if(E&&E.dur){let C=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,j=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,be=C;this.sourceJitter>1&&(be+=this.sourceJitter-1);let ge=E.dur.length-1;for(;ge>=0&&(be-=E.dur[ge],!(be<=0));--ge);H=Math.min(ge,E.dur.length-1-j),H=Math.max(H,0)}return X(H,!0)},U=H=>{let C=L();if(!(C<=0)){if((0,Ct.isNonNullable)(H)){for(let j=0;j<C;j++)if(M(j)>H)return X(j)}return D()}},O=H=>{let C=L(),j=H?H.chunkIdx+1:0,be=j-E.fragIndex;if(!(C<=0)){if(!H||be<0||be-C>jR)return D();if(!(be>=C))return X(j-E.fragIndex,!1)}},F=(H,C,j)=>{u&&u.abort(),u=Zr(this.urlResolver.resolve(H,!0,this.lowLatency),C,j,()=>this._retryCallback()).withTimeout(ou).withRetryCount(rd).withFinally(()=>{u=null}).withJSONResponse().send()};return{seek:(H,C)=>{F(I,j=>{if(!d())return;E=j;let be=!!E.lowLatency;be!==this.lowLatency&&f(be);let ge=0;for(let J=0;J<E.dur.length;++J)ge+=E.dur[J];ge>0&&((0,Ct.assertNonNullable)(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(ge/E.dur.length)),i({name:"index",zeroTime:E.zeroTime,shiftDuration:E.shiftDuration}),this.sourceJitter=E.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,E.jitter/1e3)):1,H(U(C))},()=>this._handleNetworkError())},nextChunk:O}},v=()=>{r=!1,n&&n.abort(),o&&o.abort(),u&&u.abort(),(0,Ct.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return l={start:I=>{let{videoElement:E}=this.params,L=S(e.jidxUrl),M,_,G,X,D=0,U,O,F,$=()=>{U&&(clearTimeout(U),U=void 0);let pe=Math.max(zR,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Le=D+pe,Fe=Je(),ot=Math.min(1e4,Le-Fe);D=Fe;let qt=()=>{u||d()&&L.seek(()=>{d()&&(D=Je(),H(),$())})};ot>0?U=window.setTimeout(()=>{this.paused?$():qt()},ot):qt()},H=()=>{let pe;for(;pe=L.nextChunk(X);)X=pe,J(pe);let Le=L.nextChunk(G);if(Le){if(G&&Le.discontinuity){this.paused?$():(v(),this._initPlayerWith(e));return}ge(Le)}else $()},C=(pe,Le)=>{if(!d()||!this.sourceBuffer)return;let Fe,ot,qt,mi=Ht=>{window.setTimeout(()=>{d()&&C(pe,Le)},Ht)};if(this.sourceBuffer.updating)mi(100);else{let Ht=Je(),si=E.currentTime;!this.paused&&E.buffered.length>1&&O===si&&Ht-F>500&&this._fixupStall(),O!==si&&(O=si,F=Ht);let Hi=this._getBufferSizeSec();if(Hi>30)mi(2e3);else try{this.sourceBuffer.appendBuffer(pe),this.videoPlayStarted?(this.bufferStates.push({ts:Ht,buf:Hi}),m(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),Le&&Le()}catch(ji){if(ji.name==="QuotaExceededError")qt=this.sourceBuffer.buffered.length,qt!==0&&(Fe=this.sourceBuffer.buffered.start(0),ot=si,ot-Fe>4&&this.sourceBuffer.remove(Fe,ot-3)),mi(1e3);else throw ji}}},j=()=>{_&&M&&C(_,function(){_=null,H()})},be=pe=>e.fragUrlTemplate.replace("%%id%%",pe.chunkIdx),ge=pe=>{d()&&h(be(pe),(Le,Fe)=>{if(d()){if(Fe/=1e3,_=Le,G=pe,a=pe.startTS,Fe){let ot=Math.min(10,pe.dur/Fe);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*ot:ot}j()}},()=>this._handleNetworkError())},J=pe=>{d()&&((0,Ct.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(be(pe),!1)))},Ut=pe=>{d()&&(e.cachedHeader=pe,C(pe,()=>{M=!0,j()}))};r=!0,L.seek(pe=>{if(d()){if(D=Je(),!pe){$();return}X=pe,!(0,Ct.isNullable)(I)||pe.startTS>I?ge(pe):(G=pe,H())}},I),e.cachedHeader?Ut(e.cachedHeader):c(e.headerUrl,Ut,()=>this._handleNetworkError())},stop:v,getTimestampSec:()=>a},l}_switchToQuality(e){let{playerCallback:t}=this.params,i;e.bitrate!==this.bitrate&&(this.rep&&(i=this.rep.getTimestampSec(),(0,Ct.isNonNullable)(i)&&(i+=.1),this.rep.stop()),this.currentManifestEntry=e,this.rep=this._representation(e),this.bitrate=e.bitrate,(0,Ct.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(i),t({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,Ct.isNonNullable)(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{playerCallback:e}=this.params,t=d=>{if(!this.autoQuality)return;let c,h,p;this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&d<this.bitrate&&(h=this._getBufferSizeSec(),p=d/this.bitrate,h>10&&p>.8||h>15&&p>.5||h>20&&p>.3)||(c=this._selectQuality(d),c&&this._switchToQuality(c))},r={updateChunk:(c,h)=>{let p=Je();if(this.chunkRateEstimator.addInterval(c,p,h)){let m=this.chunkRateEstimator.getBitRate();return e({name:"bandwidth",size:h,duration:p-c,speed:m}),!0}},get:()=>{let c=this.chunkRateEstimator.getBitRate();return c?c*.85:0}},a=-1/0,n,o=!0,u=()=>{let d=r.get();if(d&&n&&this.autoQuality){if(o&&d>n&&td(a)<3e4)return;t(d)}o=this.autoQuality};return{updateChunk:(d,c)=>{let h=r.updateChunk(d,c);return h&&u(),h},notifySwitch:d=>{let c=Je();d<n&&(a=c),n=d}}}_fetchManifest(e,t,i){this.manifestRequest=Zr(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(ou).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;at(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{t||(this.params.liveOffset.pause(),this.params.videoState.setState("paused"))})}_handleManifestUpdate(e){let{playerCallback:t,videoElement:i}=this.params,r=a=>{let n=[];return a!=null&&a.length?(a.forEach((o,u)=>{var l,d;o.video&&i.canPlayType(o.codecs).replace(/no/,"")&&((d=(l=window.MediaSource)==null?void 0:l.isTypeSupported)!=null&&d.call(l,o.codecs))&&(o.index=u,n.push(o))}),n.sort(function(o,u){return o.video&&u.video?u.video.height-o.video.height:u.bitrate-o.bitrate}),n):(t({name:"error",type:"empty_manifest"}),[])};this.manifest=r(e),t({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))},HR))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var DS=Y(Fr(),1),Be=require("@vkontakte/videoplayer-shared/es2015"),sd=class{constructor(){this.onDroopedVideoFramesLimit$=new Be.Subject;this.subscription=new Be.Subscription;this.playing=!1;this.tracks=[];this.forceChecker$=new Be.Subject;this.isForceCheckCounter=0;this.prevTotalVideoFrames=0;this.prevDroppedVideoFrames=0;this.limitCounts={};this.handleChangeVideoQuality=()=>{let e=this.tracks.find(({size:t})=>(t==null?void 0:t.height)===this.video.videoHeight&&(t==null?void 0:t.width)===this.video.videoWidth);e&&!(0,Be.isInvariantQuality)(e.quality)&&this.onChangeQuality(e.quality)};this.checkDroppedFrames=()=>{var n;let{totalVideoFrames:e,droppedVideoFrames:t}=this.video.getVideoPlaybackQuality(),i=e-this.prevTotalVideoFrames,r=t-this.prevDroppedVideoFrames,a=1-(i-r)/i;!isNaN(a)&&a>=this.droppedFramesChecker.percentLimit&&(0,Be.isHigher)(this.currentQuality,this.droppedFramesChecker.minQualityBanLimit)&&(this.limitCounts[this.currentQuality]=((n=this.limitCounts[this.currentQuality])!=null?n: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.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,Be.fromEvent)(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=(0,Be.interval)(this.droppedFramesChecker.checkTime).pipe((0,Be.filter)(()=>this.playing),(0,Be.filter)(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe((0,Be.debounce)(this.droppedFramesChecker.checkTime)),i=(0,Be.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.onDroopedVideoFramesLimit$.next()}getMaxQualityLimit(e){var i,r;let t=(r=(i=(0,DS.default)(this.limitCounts).filter(([,a])=>a>=this.droppedFramesChecker.countLimit).sort(([a],[n])=>(0,Be.isLower)(a,n)?-1:1))==null?void 0:i[0])==null?void 0:r[0];return e!=null?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}},es=sd;var uu=require("@vkontakte/videoplayer-shared/es2015"),$S=require("@vkontakte/videoplayer-shared/es2015");var $a=()=>{var s;return!!((s=window.documentPictureInPicture)!=null&&s.window)||!!document.pictureInPictureElement};var WR=(s,e)=>new uu.Observable(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||$a()))},R(R({},i),e));r.observe(s);let a=(0,$S.fromEvent)(document,"visibilitychange").pipe((0,uu.map)(n=>!document.hidden||$a())).subscribe(n=>t.next(n));return()=>{r.unobserve(s),a.unsubscribe()}}),Tt=WR;var QR=["paused","playing","ready"],YR=["paused","playing","ready"],Ca=class{constructor(e){this.subscription=new re.Subscription;this.videoState=new ie("stopped");this.representations$=new re.ValueSubject([]);this.droppedFramesManager=new es;this.maxSeekBackTime$=new re.ValueSubject(1/0);this.zeroTime$=new re.ValueSubject(void 0);this.liveOffset=new yr;this._dashCb=e=>{var t,i,r,a;switch(e.name){case"buffering":{let n=e.isBuffering;this.params.output.isBuffering$.next(n);break}case"error":{this.params.output.error$.next({id:`DashLiveProviderInternal:${e.type}`,category:re.ErrorCategory.WTF,message:"LiveDashPlayer reported error"});break}case"manifest":{let n=e.manifest,o=[];for(let u of n){let l=(t=u.name)!=null?t:u.index.toString(10),d=(i=ci(u.name))!=null?i:(0,re.videoSizeToQuality)(u.video),c=u.bitrate/1e3,h=R({},u.video);if(!d)continue;let p={id:l,quality:d,bitrate:c,size:h};o.push({track:p,representation:u})}this.representations$.next(o),this.params.output.availableVideoTracks$.next(o.map(({track:u})=>u)),((r=this.videoState.getTransition())==null?void 0:r.to)==="manifest_ready"&&this.videoState.setState("manifest_ready");break}case"qualitySwitch":{let n=e.quality,o=(a=this.representations$.getValue().find(({representation:u})=>u===n))==null?void 0:a.track;this.params.output.hostname$.next(new URL(n.headerUrl,this.params.source.url).hostname),(0,re.isNonNullable)(o)&&this.params.output.currentVideoTrack$.next(o);break}case"bandwidth":{let{size:n,duration:o}=e;this.params.dependencies.throughputEstimator.addRawSpeed(n,o);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(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,ad.default)(YR,e)&&(n||o)){this.prepare();return}if((r==null?void 0:r.to)!=="paused"&&a.state==="requested"&&(0,ad.default)(QR,e)){this.seek(a.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(Oe(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==null?void 0: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(Oe(this.params.source.url,u))}return;default:return(0,re.assertNever)(e)}};this.textTracksManager=new yt(e.source.url),this.params=e;let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:re.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.video=tt(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(He(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=st(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,re.map)(r=>r.map(({track:a})=>a)),(0,re.filter)(r=>!!r.length),(0,re.once)()).subscribe(r=>this.droppedFramesManager.connect({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(()=>{var r;((r=this.videoState.getTransition())==null?void 0:r.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,re.filterChanged)(),(0,re.map)(r=>-r/1e3)).subscribe(this.params.output.duration$)).add((0,re.combine)({zeroTime:this.zeroTime$.pipe((0,re.filter)(re.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(rt(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(vt(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(Tt(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,re.videoQualityToHeight)(r),min:a&&(0,re.videoQualityToHeight)(a)}),this.params.output.autoVideoTrackLimits$.next({max:r,min:a})})).add(this.videoState.stateChangeEnded$.subscribe(r=>{var a;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":((a=this.params.desiredState.playbackState.getTransition())==null?void 0:a.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,re.assertNever)(r.to)}},t)).add((0,re.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,re.observableFrom)(["init"])).pipe((0,re.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),it(this.video)}createLiveDashPlayer(){let e=new Da({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});return e.pause(),e}prepare(){var l,d,c,h,p,f;let e=this.representations$.getValue(),t=(d=(l=this.params.desiredState.videoTrack.getTransition())==null?void 0:l.to)!=null?d:this.params.desiredState.videoTrack.getState(),i=(h=(c=this.params.desiredState.autoVideoTrackSwitching.getTransition())==null?void 0:c.to)!=null?h:this.params.desiredState.autoVideoTrackSwitching.getState(),r=!i&&(0,re.isNonNullable)(t)?t:di(e.map(({track:m})=>m),{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}),a=r==null?void 0:r.id,n=this.params.desiredState.videoTrack.getTransition(),o=(p=this.params.desiredState.videoTrack.getState())==null?void 0:p.id,u=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(r&&(n||a!==o)&&this.setVideoTrack(r),u&&this.setAutoQuality(i),n||u||a!==o){let m=(f=e.find(({track:S})=>S.id===a))==null?void 0:f.representation;(0,re.assertNonNullable)(m,"Representations missing"),this.dash.startPlay(m,i)}}setVideoTrack(e){var i;let t=(i=this.representations$.getValue().find(({track:r})=>r.id===e.id))==null?void 0:i.representation;(0,re.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.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(Oe(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var CS=Ca;var De=(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 ne=require("@vkontakte/videoplayer-shared/es2015");var lu=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}},ts=class extends lu{constructor(){super(),this.listeners||lu.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)}},Va=class{constructor(){Object.defineProperty(this,"signal",{value:new ts,writable:!0,configurable:!0})}abort(e){let t;try{t=new Event("abort")}catch(r){typeof document!="undefined"?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=="undefined")i=new Error("This operation was aborted"),i.name="AbortError";else try{i=new DOMException("signal is aborted without reason")}catch(r){i=new Error("This operation was aborted"),i.name="AbortError"}this.signal.reason=i,this.signal.dispatchEvent(t)}toString(){return"[object AbortController]"}};typeof Symbol!="undefined"&&Symbol.toStringTag&&(Va.prototype[Symbol.toStringTag]="AbortController",ts.prototype[Symbol.toStringTag]="AbortSignal");function cu(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 nd(s){typeof s=="function"&&(s={fetch:s});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=s;if(!cu({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,d){let c;d&&d.signal&&(c=d.signal,delete d.signal);let h=new t(l,d);return c&&Object.defineProperty(h,"signal",{writable:!1,enumerable:!1,configurable:!0,value:c}),h},a.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let d=a&&a.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(d){let c;try{c=new DOMException("Aborted","AbortError")}catch(p){c=new Error("Aborted"),c.name="AbortError"}if(d.aborted)return Promise.reject(c);let h=new Promise((p,f)=>{d.addEventListener("abort",()=>f(c),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([h,n(u,l)])}return n(u,l)},Request:a}}var KR=()=>"fetch"in window,Oa=KR()&&cu({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),VS=Oa?nd({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,Ft=Oa?VS.fetch:window.fetch,e_=Oa?VS.Request:window.Request,ye=Oa?Va:window.AbortController,t_=Oa?ts:window.AbortSignal;var Dd=Y(_a(),1);var Iv=Y(Tv(),1),is=require("@vkontakte/videoplayer-shared/es2015"),du=s=>{if(!s)return{id:"EmptyResponse",category:is.ErrorCategory.PARSER,message:"Empty response"};if(s.length<=2&&s.match(/^\d+$/))return{id:`UVError#${s}`,category:is.ErrorCategory.NETWORK,message:`UV Error ${s}`};let e=(0,Iv.default)(s).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:is.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:is.ErrorCategory.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:is.ErrorCategory.PARSER,message:"Response is valid XML, but parser failed"}};var nt=(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 T=require("@vkontakte/videoplayer-shared/es2015");var bu=Y(Ot(),1),us=Y(ei(),1),gu=Y(_a(),1);var CM=(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)},VM=s=>window.clearTimeout(s),xv=s=>typeof s=="function"&&(s==null?void 0:s.toString().endsWith("{ [native code] }")),Ev=!xv(window.requestIdleCallback)||!xv(window.cancelIdleCallback),rs=Ev?CM:window.requestIdleCallback,hi=Ev?VM:window.cancelIdleCallback;var ky=Y(Aa(),1);var Ji=require("@vkontakte/videoplayer-shared/es2015");var OM=18,wv=!1;try{wv=ee.browser.isSafari&&!!ee.browser.safariVersion&&ee.browser.safariVersion<=OM}catch(s){console.error(s)}var pd=class{constructor(e){this.bufferFull$=new Ji.Subject;this.error$=new Ji.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.completeTask=()=>{var e;try{if(this.currentTask){let t=(e=this.currentTask.signal)==null?void 0:e.aborted;this.currentTask.callback(!t),this.currentTask=null}this.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:Ji.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,this.buffer.addEventListener("updateend",this.completeTask)}append(e,t){return P(this,null,function*(){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})})}remove(e,t,i){return P(this,null,function*(){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()})})}abort(e){return P(this,null,function*(){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};wv&&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(){var r;if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.queue.shift();if(!e)return;if((r=e.signal)!=null&&r.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:Ji.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,Ji.assertNever)(t)}}},Pv=pd;var ss=s=>{let e=0;for(let t=0;t<s.length;t++)e+=s.end(t)-s.start(t);return e*1e3};var k=require("@vkontakte/videoplayer-shared/es2015");var he=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 as=class extends he{};var Na=class extends he{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 Ua=class extends he{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 qa=class extends he{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ee=class extends he{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var Ha=class extends Ee{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 ja=class extends he{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ga=class extends he{constructor(e,t){super(e,t),this.data=this.content}};var Tr=class extends Ee{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 za=class extends he{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Wa=class extends he{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Qa=class extends Ee{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 Ee{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Ka=class extends Ee{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var Xa=class extends he{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ja=class extends Ee{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 Za=class extends he{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var en=class extends he{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var tn=class extends Ee{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var rn=class extends he{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var sn=class extends Ee{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 an=class extends Ee{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 nn=class extends Ee{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 on=class extends he{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var un=class extends Ee{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 ln=class extends he{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var FM={ftyp:Ua,moov:qa,mvhd:Ha,moof:ja,mdat:Ga,sidx:Tr,trak:za,mdia:Xa,mfhd:tn,tkhd:Ja,traf:rn,tfhd:sn,tfdt:an,trun:nn,minf:Za,sv3d:Wa,st3d:Qa,prhd:Ya,proj:en,equi:Ka,uuid:Na,stbl:on,stsd:un,avc1:ln,unknown:as},Bi=class s{constructor(e={}){this.options=R({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(r){break}return t}createBox(e,t){let i=FM[e];return i?new i(t,new s):new as(t,new s)}};var Zi=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{var i,r,a;(a=(i=this.index)[r=t.type])!=null||(i[r]=[]),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 UM=new TextDecoder("ascii"),qM=s=>UM.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",HM=s=>{let e=new Tr(s,new Bi),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})},jM=(s,e)=>{let i=new Bi().parse(s),r=new Zi(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,c=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,c)},GM=s=>{let t=new Bi().parse(s),i=new Zi(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},zM=s=>{var r;let t=new Bi().parse(s);return(r=new Zi(t).find("sidx"))==null?void 0:r.timescale},WM=(s,e)=>{let i=new Bi().parse(s),a=new Zi(i).findAll("traf"),n=a[a.length-1].children.find(c=>c.type==="tfhd"),o=a[a.length-1].children.find(c=>c.type==="tfdt"),u=a[a.length-1].children.find(c=>c.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((c,h)=>c+h,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},QM=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 Bi().parse(s),r=new Zi(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},Av={validateData:qM,parseInit:QM,getIndexRange:()=>{},parseSegments:HM,parseFeedableSegmentChunk:jM,getChunkEndTime:WM,getServerLatencyTimestamps:GM,getTimescaleFromIndex:zM};var dn=Y(Ot(),1),Di=require("@vkontakte/videoplayer-shared/es2015");var Rv=require("@vkontakte/videoplayer-shared/es2015");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"}},Mv=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=cn(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,d=cn(u),c=l*ft(2,(o-1)*8)+d,h=t+o,p;return h+c>s.byteLength?p=new DataView(s.buffer,s.byteOffset+h):p=new DataView(s.buffer,s.byteOffset+h,c),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:h,tagSize:h+c,value:p,valueSize:c}},cn=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*ft(2,16)+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*ft(2,32)+s.getUint32(1);case 6:return s.getUint16(0)*ft(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},ti=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return cn(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,Rv.assertNever)(e)}},Ir=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=Mv(i);if(!e(r))return;r.type==="master"&&Ir(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},Lv=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=Mv(s);return Ir(r.value,({tag:a,type:n,value:o})=>(a===17143?e=ti(o,n):a===17026?t=ti(o,n):a===17029&&(i=ti(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var Bv=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],YM=[231,22612,22743,167,171,163,160,175],KM=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,d=!1,c=0;return Ir(s,({tag:h,type:p,value:f,valueSize:m})=>{if(h===21419){let S=ti(f,p);l=cn(S)}else h!==21420&&(l=void 0);return h===408125543?(e=f.byteOffset,t=f.byteOffset+m):h===357149030?a=!0:h===290298740?n=!0:h===2807729?i=ti(f,p):h===17545?r=ti(f,p):h===21420&&l===475249515?u=ti(f,p):h===374648427?Ir(f,({tag:S,type:v,value:x})=>S===30321?(d=ti(x,v)===1,!1):!0):a&&n&&(0,dn.default)(Bv,h)&&(o=!0),!o}),(0,Di.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,Di.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,Di.assertNonNullable)(r,"Failed to parse webm Segment duration"),i=i!=null?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:d,stereoMode:c,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},XM=s=>{if((0,Di.isNullable)(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},JM=(s,e)=>{let t=!1,i=!1,r=o=>(0,Di.isNonNullable)(o.time)&&(0,Di.isNonNullable)(o.position),a=[],n;return Ir(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=ti(l,u));break;case 183:break;case 241:n&&(n.position=ti(l,u));break;default:t&&(0,dn.default)(Bv,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:d}=o,c=a[u+1];return{status:"none",time:{from:l,to:c?c.time:e.segmentDuration},byte:{from:e.segmentStart+d,to:c?e.segmentStart+c.position-1:e.segmentEnd-1}}})},ZM=s=>{let e=0,t=!1;try{Ir(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,dn.default)(YM,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||(t=(0,dn.default)([163,160,175],i.tag))),!0):!1)}catch(i){}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},Dv={validateData:Lv,parseInit:KM,getIndexRange:XM,parseSegments:JM,parseFeedableSegmentChunk:ZM};var pn=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return Dv;case"mp4":return Av}}throw new ReferenceError(`Unsupported mime type ${s}`)};var Pd=Y(vd(),1),Ey=Y(Fr(),1),wy=Y(yd(),1),Py=Y(ei(),1),Ad=Y(vr(),1);var fy=Y(Ot(),1),os=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,fy.default)(["6E","7A","F4"],o)}}return!1};var fn=require("@vkontakte/videoplayer-shared/es2015");var pu=s=>{if(s.includes("/")){let e=s.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(s)};var my=s=>{var e;try{let t=QL(),i=s.match(t),{groups:r}=i!=null?i:{};if(r){let a={};if(r.extensions){let u=r.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(u||[]).forEach(l=>{a[l[0]]=l.slice(2)})}let n=(e=r.variants)==null?void 0:e.split(/-/).filter(u=>u!==""),o={extlang:r.extlang,langtag:r.langtag,language:r.language,privateuse:r.privateuse||r.privateuse2,region:r.region,script:r.script,extensions:a,variants:n};return Object.keys(o).forEach(u=>{let l=o[u];(typeof l=="undefined"||l==="")&&delete o[u]}),o}return null}catch(t){return null}};function QL(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",d=`^(?:(?<langtag>${`
|
|
8
|
+
(?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
|
|
65
9
|
(-(?<script>[a-z]{4}))?
|
|
66
10
|
(-(?<region>(?:[a-z]{2}|[0-9]{3})))?
|
|
67
11
|
(?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
|
|
68
12
|
(?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
|
|
69
13
|
(?:-(?<privateuse>(?:${e})))?
|
|
70
|
-
`})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(c,"i")}var nl=W(Jt(),1);var Ov=require("@vkontakte/videoplayer-shared/es2015"),Bv=({id:a,width:e,height:t,bitrate:i,fps:r,quality:s,streamId:n})=>{var u;let o=(u=s?Xt(s):void 0)!=null?u:(0,Ov.videoSizeToQuality)({width:e,height:t});return o&&{id:a,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},_v=({id:a,bitrate:e})=>({id:a,bitrate:e}),Nv=({language:a,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),Fv=({language:a,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),ol=({id:a,language:e,label:t,codecs:i,isDefault:r})=>({id:a,language:e,label:t,codec:(0,nl.default)(i.split("."),0),isDefault:r}),ul=({id:a,language:e,label:t,hdr:i,codecs:r})=>({id:a,language:e,hdr:i,label:t,codec:(0,nl.default)(r.split("."),0)}),ll=a=>"url"in a,Ve=a=>a.type==="template",$a=a=>a instanceof DOMException&&(a.name==="AbortError"||a.code===20);var qv=a=>{if(!(a!=null&&a.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(a),r=(i==null?void 0:i[1])==="-"?-1:1,s={days:e(i==null?void 0:i[5],r),hours:e(i==null?void 0:i[6],r),minutes:e(i==null?void 0:i[7],r),seconds:e(i==null?void 0:i[8],r)};return s.days*24*60*60*1e3+s.hours*60*60*1e3+s.minutes*60*1e3+s.seconds*1e3},Vt=(a,e)=>{let t=a;t=(0,cl.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,s]of(0,Uv.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,cl.default)(t,n,(o,u)=>(0,La.isNullable)(s)?o:(0,La.isNullable)(u)?s:(0,Hv.default)(s,parseInt(u,10),"0"))}return t},Qv=(a,e)=>{var ne,k,te,_,ie,K,ue,C,Q,oe,$,N,Ae,ki,Pt,se,Me,Oe,Be,ht,wt,Nt,si,Ri,pr,kl,Rl,$l,Ll,Ml,Cl,Dl,Vl,Ol,Bl,_l,Nl,Fl,ql,Ul,Hl,jl,Ql,Gl,Wl,Yl,zl,Kl,Xl,Jl,Zl,ec,tc,ic,rc,ac,sc,nc,oc,uc,lc;let i=new DOMParser().parseFromString(a,"application/xml"),r={video:[],audio:[],text:[]},s=i.children[0],n=Array.from(s.querySelectorAll("MPD > BaseURL").values()).map(rt=>{var ce,ni;return(ni=(ce=rt.textContent)==null?void 0:ce.trim())!=null?ni:""}),o=(ne=(0,jv.default)(n,0))!=null?ne:"",u=s.getAttribute("type")==="dynamic",l=s.getAttribute("availabilityStartTime"),c=s.getAttribute("publishTime"),d=s.getElementsByTagName("vk:Attrs")[0],m=d==null?void 0:d.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=d==null?void 0:d.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=d==null?void 0:d.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,g=d==null?void 0:d.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,S;u&&(S={availabilityStartTime:l?new Date(l).getTime():0,publishTime:c?new Date(c).getTime():0,latestSegmentPublishTime:m?new Date(m).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:f==="yes"});let y,I=s.getAttribute("mediaPresentationDuration"),x=[...s.getElementsByTagName("Period")],w=x.reduce((rt,ce)=>U(L({},rt),{[ce.id]:ce.children}),{}),P=x.reduce((rt,ce)=>U(L({},rt),{[ce.id]:ce.getAttribute("duration")}),{});I?y=qv(I):(0,dl.default)(P).filter(rt=>rt).length&&!u?y=(0,dl.default)(P).reduce((rt,ce)=>{var ni;return rt+((ni=qv(ce))!=null?ni:0)},0):g&&(y=parseInt(g,10));let O=0,J=(te=(k=s.getAttribute("profiles"))==null?void 0:k.split(","))!=null?te:[];for(let rt of x.map(ce=>ce.id))for(let ce of w[rt]){let ni=(_=ce.getAttribute("id"))!=null?_:"id"+(O++).toString(10),hr=(ie=ce.getAttribute("mimeType"))!=null?ie:"",An=(K=ce.getAttribute("codecs"))!=null?K:"",kn=(ue=ce.getAttribute("contentType"))!=null?ue:hr==null?void 0:hr.split("/")[0],RS=(Q=(C=ce.getAttribute("profiles"))==null?void 0:C.split(","))!=null?Q:[],cc=($=Vv((oe=ce.getAttribute("lang"))!=null?oe:""))!=null?$:{},Ya=(ki=(Ae=(N=ce.querySelector("Label"))==null?void 0:N.textContent)==null?void 0:Ae.trim())!=null?ki:void 0,$S=ce.querySelectorAll("Representation"),LS=ce.querySelector("SegmentTemplate"),MS=(se=(Pt=ce.querySelector("Role"))==null?void 0:Pt.getAttribute("value"))!=null?se:void 0,$i=kn,ge={id:ni,language:cc.language,isDefault:MS==="main",label:Ya,codecs:An,hdr:$i==="video"&&al(An),mime:hr,representations:[]};for(let le of $S){let Ft=(Me=le.getAttribute("lang"))!=null?Me:void 0,mr=(Be=(Oe=Ya!=null?Ya:ce.getAttribute("label"))!=null?Oe:le.getAttribute("label"))!=null?Be:void 0,za=(Nt=(wt=(ht=le.querySelector("BaseURL"))==null?void 0:ht.textContent)==null?void 0:wt.trim())!=null?Nt:"",oi=new URL(za||o,e).toString(),qt=(si=le.getAttribute("mimeType"))!=null?si:hr,Ka=(pr=(Ri=le.getAttribute("codecs"))!=null?Ri:An)!=null?pr:"",Xa;if(kn==="text"){let Ut=le.getAttribute("id")||"",Ja=((kl=cc.privateuse)==null?void 0:kl.includes("x-auto"))||Ut.includes("_auto"),ui=le.querySelector("SegmentTemplate");if(ui){let fr={representationId:(Rl=le.getAttribute("id"))!=null?Rl:void 0,bandwidth:($l=le.getAttribute("bandwidth"))!=null?$l:void 0},Za=parseInt((Ll=le.getAttribute("bandwidth"))!=null?Ll:"",10)/1e3,es=(Cl=parseInt((Ml=ui.getAttribute("startNumber"))!=null?Ml:"",10))!=null?Cl:1,Li=parseInt((Dl=ui.getAttribute("timescale"))!=null?Dl:"",10),Rn=(Vl=ui.querySelectorAll("SegmentTimeline S"))!=null?Vl:[],Mi=ui.getAttribute("media");if(!Mi)continue;let ts=[],is=0,rs="",Ci=0,br=es,Ce=0;for(let at of Rn){let li=parseInt((Ol=at.getAttribute("d"))!=null?Ol:"",10),Xe=parseInt((Bl=at.getAttribute("r"))!=null?Bl:"",10)||0,Ht=parseInt((_l=at.getAttribute("t"))!=null?_l:"",10);Ce=Number.isFinite(Ht)?Ht:Ce;let ci=li/Li*1e3,jt=Ce/Li*1e3;for(let mt=0;mt<Xe+1;mt++){let Qt=Vt(Mi,U(L({},fr),{segmentNumber:br.toString(10),segmentTime:(Ce+mt*li).toString(10)})),Di=(jt!=null?jt:0)+mt*ci,vr=Di+ci;br++,ts.push({time:{from:Di,to:vr},url:Qt})}Ce+=(Xe+1)*li,is+=(Xe+1)*ci}Ci=Ce/Li*1e3,rs=Vt(Mi,U(L({},fr),{segmentNumber:br.toString(10),segmentTime:Ce.toString(10)}));let gr={time:{from:Ci,to:1/0},url:rs},At={type:"template",baseUrl:oi,segmentTemplateUrl:Mi,initUrl:"",totalSegmentsDurationMs:is,segments:ts,nextSegmentBeyondManifest:gr,timescale:Li};Xa={id:Ut,kind:"text",segmentReference:At,profiles:[],duration:y,bitrate:Za,mime:"",codecs:"",width:0,height:0,isAuto:Ja}}else Xa={id:Ut,isAuto:Ja,kind:"text",url:oi}}else{let Ut=(Fl=(Nl=le.getAttribute("contentType"))!=null?Nl:qt==null?void 0:qt.split("/")[0])!=null?Fl:kn,Ja=(Ul=(ql=ce.getAttribute("profiles"))==null?void 0:ql.split(","))!=null?Ul:[],ui=parseInt((Hl=le.getAttribute("width"))!=null?Hl:"",10),fr=parseInt((jl=le.getAttribute("height"))!=null?jl:"",10),Za=parseInt((Ql=le.getAttribute("bandwidth"))!=null?Ql:"",10)/1e3,es=(Gl=le.getAttribute("frameRate"))!=null?Gl:"",Li=(Wl=le.getAttribute("quality"))!=null?Wl:void 0,Rn=es?Dv(es):void 0,Mi=(Yl=le.getAttribute("id"))!=null?Yl:"id"+(O++).toString(10),ts=Ut==="video"?`${fr}p`:Ut==="audio"?`${Za}Kbps`:Ka,is=`${Mi}@${ts}`,rs=[...J,...RS,...Ja],Ci,br=le.querySelector("SegmentBase"),Ce=(zl=le.querySelector("SegmentTemplate"))!=null?zl:LS;if(br){let At=(Xl=(Kl=le.querySelector("SegmentBase Initialization"))==null?void 0:Kl.getAttribute("range"))!=null?Xl:"",[at,li]=At.split("-").map(Qt=>parseInt(Qt,10)),Xe={from:at,to:li},Ht=(Jl=le.querySelector("SegmentBase"))==null?void 0:Jl.getAttribute("indexRange"),[ci,jt]=Ht?Ht.split("-").map(Qt=>parseInt(Qt,10)):[],mt=Ht?{from:ci,to:jt}:void 0;Ci={type:"byteRange",url:oi,initRange:Xe,indexRange:mt}}else if(Ce){let At={representationId:(Zl=le.getAttribute("id"))!=null?Zl:void 0,bandwidth:(ec=le.getAttribute("bandwidth"))!=null?ec:void 0},at=parseInt((tc=Ce.getAttribute("timescale"))!=null?tc:"",10),li=(ic=Ce.getAttribute("initialization"))!=null?ic:"",Xe=Ce.getAttribute("media"),Ht=(ac=parseInt((rc=Ce.getAttribute("startNumber"))!=null?rc:"",10))!=null?ac:1,ci=Vt(li,At);if(!Xe)throw new ReferenceError("No media attribute in SegmentTemplate");let jt=(sc=Ce.querySelectorAll("SegmentTimeline S"))!=null?sc:[],mt=[],Qt=0,Di="",vr=0;if(jt.length){let as=Ht,st=0;for(let Vi of jt){let ft=parseInt((nc=Vi.getAttribute("d"))!=null?nc:"",10),di=parseInt((oc=Vi.getAttribute("r"))!=null?oc:"",10)||0,ss=parseInt((uc=Vi.getAttribute("t"))!=null?uc:"",10);st=Number.isFinite(ss)?ss:st;let $n=ft/at*1e3,Ln=st/at*1e3;for(let ns=0;ns<di+1;ns++){let DS=Vt(Xe,U(L({},At),{segmentNumber:as.toString(10),segmentTime:(st+ns*ft).toString(10)})),dc=(Ln!=null?Ln:0)+ns*$n,VS=dc+$n;as++,mt.push({time:{from:dc,to:VS},url:DS})}st+=(di+1)*ft,Qt+=(di+1)*$n}vr=st/at*1e3,Di=Vt(Xe,U(L({},At),{segmentNumber:as.toString(10),segmentTime:st.toString(10)}))}else if((0,La.isNonNullable)(y)){let st=parseInt((lc=Ce.getAttribute("duration"))!=null?lc:"",10)/at*1e3,Vi=Math.ceil(y/st),ft=0;for(let di=1;di<Vi;di++){let ss=Vt(Xe,U(L({},At),{segmentNumber:di.toString(10),segmentTime:ft.toString(10)}));mt.push({time:{from:ft,to:ft+st},url:ss}),ft+=st}vr=ft,Di=Vt(Xe,U(L({},At),{segmentNumber:Vi.toString(10),segmentTime:ft.toString(10)}))}let CS={time:{from:vr,to:1/0},url:Di};Ci={type:"template",baseUrl:oi,segmentTemplateUrl:Xe,initUrl:ci,totalSegmentsDurationMs:Qt,segments:mt,nextSegmentBeyondManifest:CS,timescale:at}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Ut||!qt)continue;let gr={video:"video",audio:"audio",text:"text"}[Ut];if(!gr)continue;$i||($i=gr),Xa={id:is,kind:gr,segmentReference:Ci,profiles:rs,duration:y,bitrate:Za,mime:qt,codecs:Ka,width:ui,height:fr,fps:Rn,quality:Li}}ge.language||(ge.language=Ft),ge.label||(ge.label=mr),ge.mime||(ge.mime=qt),ge.codecs||(ge.codecs=Ka),ge.hdr||(ge.hdr=$i==="video"&&al(Ka)),ge.representations.push(Xa)}if($i){let le=r[$i].find(Ft=>Ft.id===ge.id);if(le&&ge.representations.every(Ft=>Ve(Ft.segmentReference)))for(let Ft of le.representations){let mr=ge.representations.find(qt=>qt.id===Ft.id),za=mr==null?void 0:mr.segmentReference,oi=Ft.segmentReference;oi.segments.push(...za.segments),oi.nextSegmentBeyondManifest=za.nextSegmentBeyondManifest}else r[$i].push(ge)}}return{duration:y,streams:r,baseUrls:n,live:S}};var Gv=W(Je(),1),hl=require("@vkontakte/videoplayer-shared/es2015"),Se=(a,e)=>(0,hl.isNonNullable)(a)&&(0,hl.isNonNullable)(e)&&a.readyState==="open"&&(0,Gv.default)([...a.activeSourceBuffers],e);var Ma=class{constructor(e,t,i,{fetcher:r,tuning:s,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new E.ValueSubject(0);this.currentLowLatencySegmentLength$=new E.ValueSubject(0);this.currentSegmentLength$=new E.ValueSubject(0);this.onLastSegment$=new E.ValueSubject(!1);this.fullyBuffered$=new E.ValueSubject(!1);this.playingRepresentation$=new E.ValueSubject(void 0);this.playingRepresentationInit$=new E.ValueSubject(void 0);this.error$=new E.Subject;this.gaps=[];this.subscription=new E.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new Le;this.switchAbortController=new Le;this.destroyAbortController=new Le;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,E.abortable)(this.destroyAbortController.signal,function(e){return Te(this,null,function*(){let t=this.representations.get(e);(0,E.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 Hg(this.sourceBuffer),this.subscription.add((0,E.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:E.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o!=null||(o={id:"SegmentEjection",category:E.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),this.error$.next(o)})),this.subscription.add((0,E.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:E.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!Se(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Xu(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(d=>{this.handleAsyncError(d,"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),s=this.parsedInitData.get(t.id);(0,E.assertNonNullable)(i,"No init buffer for starting representation"),(0,E.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(s))})}.bind(this));this.switchTo=(0,E.abortable)(this.destroyAbortController.signal,function(e,t=!1){return Te(this,null,function*(){if(!Se(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,E.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),s=this.initData.get(e);if((0,E.isNullable)(s)||(0,E.isNullable)(r)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),r=this.segments.get(e),(0,E.assertNonNullable)(r,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!Se(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,E.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,yield new us(this.pruneBuffer(n,1/0,!0))),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}})}.bind(this));this.switchToOld=(0,E.abortable)(this.destroyAbortController.signal,function(e,t=!1){return Te(this,null,function*(){if(!Se(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,E.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),s=this.initData.get(e);if((0,E.isNullable)(s)||(0,E.isNullable)(r)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),r=this.segments.get(e),(0,E.assertNonNullable)(r,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!Se(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,E.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,yield new us(this.pruneBuffer(n,1/0,!0))),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}})}.bind(this));this.seekLive=(0,E.abortable)(this.destroyAbortController.signal,function(e){return Te(this,null,function*(){var u,l;let t=(u=(0,un.default)(e,c=>c.representations))!=null?u:[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let c of this.representations.keys()){let d=t.find(f=>f.id===c);d&&this.representations.set(c,d);let m=this.representations.get(c);if(!m||!Ve(m.segmentReference))return;let h=this.getActualLiveStartingSegments(m.segmentReference);this.segments.set(m.id,h)}let i=(l=this.switchingToRepresentationId)!=null?l:this.downloadingRepresentationId,r=this.representations.get(i);(0,E.assertNonNullable)(r);let s=this.segments.get(i);(0,E.assertNonNullable)(s,"No segments for starting representation");let n=this.initData.get(i);if((0,E.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,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1})}.bind(this));var c;this.fetcher=r,this.tuning=s,this.compatibilityMode=u,this.forwardBufferTarget=s.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!(l!=null&&l.live),this.baseUrls=(c=l==null?void 0:l.baseUrls)!=null?c:[],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){!Se(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new Le,(0,E.abortable)(this.switchAbortController.signal,function(i,r=!1){return Te(this,null,function*(){this.switchingToRepresentationId=i;let s=this.representations.get(i);(0,E.assertNonNullable)(s,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,E.isNullable)(o)||(0,E.isNullable)(n)?yield this.loadInit(s,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,E.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!Se(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,E.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,E.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}abort(){return A(this,null,function*(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new Le,this.abortBuffer()})}maintain(e=this.getCurrentPosition()){if((0,E.isNullable)(e)||(0,E.isNullable)(this.downloadingRepresentationId)||(0,E.isNullable)(this.playingRepresentationId)||(0,E.isNullable)(this.sourceBuffer)||!Se(this.mediaSource,this.sourceBuffer)||(0,E.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,E.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(c=>e>=c.time.from&&e<c.time.to);(0,E.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next((r==null?void 0:r.time.to)-r.time.from);let s=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let c=this.getForwardBufferDuration(e),d=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&c>=r.time.to-e+n&&(s=d)}if(isFinite(this.bufferLimit)&&Xu(this.sourceBuffer.buffered)>=this.bufferLimit){let c=this.getForwardBufferDuration(e),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,c<d).catch(m=>{this.handleAsyncError(m,"pruneBuffer")});return}let u=[];if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,s),u.length)){let c="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,on.default)(u,r))c="high";else{let d=(0,lr.default)(u,0);d&&d.time.from-r.time.to>=this.forwardBufferTarget/2&&(c="low")}this.loadSegments(u,t,c).catch(d=>{this.handleAsyncError(d,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,lr.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 s of e)Math.trunc(s.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:s.time.from+r}),i=s.time.to;(0,E.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=[],s=0,n=t.length-1;do r.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()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=(0,un.default)(e==null?void 0: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!=null&&i.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){var i,r,s,n;let t=(i=(0,un.default)(e==null?void 0:e.streams[this.kind],o=>o.representations))!=null?i:[];if(![...this.segments.values()].every(o=>!o.length))for(let o of t){if(!o||!Ve(o.segmentReference))return;let u=o.segmentReference.segments.map(h=>U(L({},h),{status:"none",size:void 0})),l=100,c=(r=this.segments.get(o.id))!=null?r:[],d=(n=(s=(0,lr.default)(c,-1))==null?void 0:s.time.to)!=null?n:0,m=u==null?void 0:u.findIndex(h=>d>=h.time.from+l&&d<=h.time.to+l);if(m===-1){this.liveUpdateSegmentIndex=0;let h=this.getActualLiveStartingSegments(o.segmentReference);this.segments.set(o.id,h)}else{let h=u.slice(m+1);this.segments.set(o.id,[...c,...h])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,E.assertNonNullable)(e);let t=this.segments.get(e);if(t!=null&&t.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}updateLowLatencyLiveIfNeeded(e){var i;let t=0;for(let r of this.representations.values()){let s=r.segmentReference;if(!Ve(s))return;let n=(i=this.segments.get(r.id))!=null?i:[],o=n.find(l=>Math.floor(l.time.from)===Math.floor(e.time.from));if(o&&!isFinite(o.time.to)&&(o.time.to=e.time.to,t=o.time.to-o.time.from),!!!n.find(l=>Math.floor(l.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let l=Math.round(e.time.to*s.timescale/1e3).toString(10),c=Vt(s.segmentTemplateUrl,{segmentTime:l});n.push({status:"none",time:{from:e.time.to,to:1/0},url:c})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){var s,n,o;let t=(n=(s=this.switchingToRepresentationId)!=null?s:this.downloadingRepresentationId)!=null?n:this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);if(!i)return;let r=i.find(u=>u.time.from<=e&&u.time.to>=e);return(o=r==null?void 0:r.time.from)!=null?o:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){var e;if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),(e=this.sourceBufferTaskQueue)==null||e.destroy(),this.gapDetectionIdleCallback&&ra&&ra(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&ra&&ra(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(t){if(!(t instanceof DOMException&&t.name==="NotFoundError"))throw t}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:d,time:{from:m,to:h}},f)=>{let g=m<=i&&h>=i,S=m>i||g||f===0&&i===0,y=Math.min(this.forwardBufferTarget,this.bufferLimit),I=this.preloadOnly&&m<=i+y||h<=i+y;return(d==="none"||d==="partially_ejected"&&S&&I&&this.sourceBuffer&&Se(this.mediaSource,this.sourceBuffer)&&!(ti(this.sourceBuffer.buffered,m)&&ti(this.sourceBuffer.buffered,h)))&&S&&I});if(r===-1)return[];if(t!=="byteRange")return e.slice(r,r+1);let s=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,c=this.preloadOnly?this.forwardBufferTarget:0;for(let d=r;d<s.length&&(n<=l||o<=c);d++){let m=s[d];if(n+=m.byte.to+1-m.byte.from,o+=m.time.to+1-m.time.from,m.status==="none"||m.status==="partially_ejected")u.push(m);else break}return u}loadSegments(e,t,i="auto"){return A(this,null,function*(){Ve(t.segmentReference)?yield this.loadTemplateSegment(e[0],t,i):yield this.loadByteRangeSegments(e,t,i)})}loadTemplateSegment(e,t,i="auto"){return A(this,null,function*(){e.status="downloading";let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:s,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(yield(0,E.abortable)(o,function(){return Te(this,null,function*(){let c=(0,E.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(d=>setTimeout(d,c))})}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let c=yield this.fetcher.fetch(n,{range:s,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,E.now)(),!c)return;let d=new DataView(c),m=Ra(t.mime);if(!isFinite(r.segment.time.to)){let g=t.segmentReference.timescale;r.segment.time.to=m.getChunkEndTime(d,g)}u&&r.feedingBytes&&l?yield Promise.all(l):yield this.sourceBufferTaskQueue.append(d,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:f}=m.getServerLatencyTimestamps(d);h&&f&&this.currentLiveSegmentServerLatency$.next(f-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(c){this.abortActiveSegments([e]),$a(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())Ve(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}loadByteRangeSegments(e,t,i="auto"){return A(this,null,function*(){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:s,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(yield(0,E.abortable)(n,function(){return Te(this,null,function*(){let u=(0,E.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,E.fromEvent)(window,"online").pipe((0,E.once)()).subscribe(()=>{l(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{yield this.fetcher.fetch(s,{range:r,onProgress:o,signal:n,priority:i}),this.lastDataObtainedTimestampMs=(0,E.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),$a(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}prepareByteRangeFetchSegmentParams(e,t){if(Ve(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,lr.default)(e,0).byte.from,to:(0,lr.default)(e,-1).byte.to},{signal:s}=this.downloadAbortController;return{url:i,range:r,signal:s,onProgress:(o,u)=>A(this,null,function*(){if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,E.now)(),yield this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:s,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:E.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}})}}prepareTemplateFetchSegmentParams(e,t){if(!Ve(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:s}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,c)=>{if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,E.now)();let d=this.onSomeTemplateDataLoaded({dataView:l,loaded:c,signal:s,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(d)}catch(d){this.error$.next({id:"SegmentFeeding",category:E.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:d})}}:void 0;return{url:r,signal:s,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,on.default)(e,t.segment)&&this.abortSegment(t.segment)}onSomeTemplateDataLoaded(n){return A(this,arguments,function*({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:s}){if(!this.activeSegments.size||!Se(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){if(s.aborted){r();continue}if(u.loadedBytes=i,u.loadedBytes>u.feedingBytes){let c=new DataView(e.buffer,e.byteOffset+u.feedingBytes,u.loadedBytes-u.feedingBytes),d=Ra(o.mime).parseFeedableSegmentChunk(c,this.isLive);d!=null&&d.byteLength&&(l.status="partially_fed",u.feedingBytes+=d.byteLength,yield this.sourceBufferTaskQueue.append(d),u.fedBytes+=d.byteLength)}}}})}onSomeByteRangesDataLoaded(o){return A(this,arguments,function*({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:s,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!Se(this.mediaSource,this.sourceBuffer))return;let u=this.representations.get(t);if(u)for(let l of this.activeSegments){let{segment:c}=l;if(l.representationId!==t)continue;if(s.aborted){yield n();continue}let d=c.byte.from-i,m=c.byte.to-i,h=m-d+1,f=d<r,g=m<=r;if(!f)continue;let S=Ra(u.mime);if(c.status==="downloading"&&g){c.status="downloaded";let y=new DataView(e.buffer,e.byteOffset+d,h);(yield this.sourceBufferTaskQueue.append(y,s))&&!s.aborted?this.onSegmentFullyAppended(l,t):yield n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(c.status==="downloading"||c.status==="partially_fed")&&(l.loadedBytes=Math.min(h,r-d),l.loadedBytes>l.feedingBytes)){let y=new DataView(e.buffer,e.byteOffset+d+l.feedingBytes,l.loadedBytes-l.feedingBytes),I=l.loadedBytes===h?y:S.parseFeedableSegmentChunk(y);I!=null&&I.byteLength&&(c.status="partially_fed",l.feedingBytes+=I.byteLength,(yield this.sourceBufferTaskQueue.append(I,s))&&!s.aborted?(l.fedBytes+=I.byteLength,l.fedBytes===h&&this.onSegmentFullyAppended(l,t)):yield n())}}})}onSegmentFullyAppended(e,t){var i;if(!((0,E.isNullable)(this.sourceBuffer)||!Se(this.mediaSource,this.sourceBuffer))){!this.isLive&&ee.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(ti(this.sourceBuffer.buffered,e.segment.time.from,100)&&ti(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:E.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",ll(e.segment)&&(e.segment.size=e.fedBytes);for(let r of this.representations.values())if(r.id!==t)for(let s of(i=this.segments.get(r.id))!=null?i:[])s.status==="fed"&&Math.round(s.time.from)===Math.round(e.segment.time.from)&&Math.round(s.time.to)===Math.round(e.segment.time.to)&&(s.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,s]of this.initData.entries()){let n=s instanceof Promise;t||(t=n),s===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=zu(()=>(0,Wv.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}loadInit(e,t="auto",i=!1){return A(this,null,function*(){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,E.abortable)(this.destroyAbortController.signal,function(){return Te(this,null,function*(){let o=(0,E.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))})}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Ra(e.mime),r)).then(o=>A(this,null,function*(){if(!o)return;let{init:u,dataView:l,segments:c}=o,d=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,d);let m=c;this.isLive&&Ve(e.segmentReference)&&(m=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,m),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:E.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n})}dropBuffer(){return A(this,null,function*(){for(let e of this.segments.values())for(let t of e)t.status="none";yield this.pruneBuffer(0,1/0,!0)})}pruneBuffer(e,t,i=!1){return A(this,null,function*(){if(!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,E.isNullable)(e))return!1;let r=[],s=0,n=u=>{u.sort((c,d)=>c.from-d.from);let l=[u[0]];for(let c=1;c<u.length;c++){let{from:d,to:m}=u[c],h=l[l.length-1];h.to>=d?h.to=Math.max(h.to,m):l.push(u[c])}return l},o=u=>{var c;if(s>=t)return r;r.push(L({},u.time)),r=n(r);let l=ll(u)?(c=u.size)!=null?c:0:u.byte.to-u.byte.from;s+=l};for(let u of this.segments.values())for(let l of u){let c=l.time.to<=e-this.tuning.dash.bufferPruningSafeZone,d=l.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(c||d)&&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,d=0;for(let m of this.segments.values())for(let h of m)(0,on.default)(["none","partially_ejected"],h.status)&&Math.round(h.time.from)<=Math.round(l)&&Math.round(h.time.to)>=Math.round(c)&&d++;if(d===this.segments.size){let m={time:{from:l,to:c},url:"",status:"none"};o(m)}}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?(yield Promise.all(r.map(l=>this.sourceBufferTaskQueue.remove(l.from,l.to)))).reduce((l,c)=>l||c,!1):!1})}abortBuffer(){return A(this,null,function*(){if(!this.sourceBuffer||!Se(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||!Se(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||!Se(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,E.isNullable)(e)?0:ar(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!Se(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 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){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(s=>r&&s.from===r.from&&s.to===r.to)&&this.gaps.push(r)}}}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!Se(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=zu(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:E.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,E.isNullable)(this.sourceBuffer)||!Se(this.mediaSource,this.sourceBuffer)||(0,E.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),s=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:r,to:s})}let t=100;for(let i of this.segments.values())for(let r of i){let{status:s}=r;if(s!=="fed"&&s!=="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:E.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var Ca=a=>{let e=new URL(a);return e.searchParams.set("quic","1"),e.toString()};var Yv=a=>{var s;let e=a.get("X-Delivery-Type"),t=a.get("X-Reused"),i=e===null?"http1":e!=null?e:void 0,r=t===null?void 0:(s={1:!0,0:!1}[t])!=null?s:void 0;return{type:i,reused:r}};var H=require("@vkontakte/videoplayer-shared/es2015");var zv=a=>{let e=new URL(a);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var cn=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:s=!1}){this.lastConnectionType$=new H.ValueSubject(void 0);this.lastConnectionReused$=new H.ValueSubject(void 0);this.lastRequestFirstBytes$=new H.ValueSubject(void 0);this.recoverableError$=new H.Subject;this.error$=new H.Subject;this.abortAllController=new Le;this.subscription=new H.Subscription;this.fetchManifest=(0,H.abortable)(this.abortAllController.signal,function(e){return Te(this,null,function*(){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=Ca(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=zv(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(ln);return r?(t.log("success",(0,H.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,H.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)})}.bind(this));this.fetch=(0,H.abortable)(this.abortAllController.signal,function(l){return Te(this,arguments,function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:s="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){var _,ie;let c=e,d=new Headers,m=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{d.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let K=new URL(c,location.href);K.searchParams.append("bytes",`${i.from}-${i.to}`),c=K.toString();break}default:(0,H.assertNever)(t)}this.requestQuic&&(c=Ca(c));let h=this.abortAllController.signal,f;if(n){let K=new Le;if(f=(0,H.merge)((0,H.fromEvent)(this.abortAllController.signal,"abort"),(0,H.fromEvent)(n,"abort")).subscribe(()=>{try{K.abort()}catch(ue){ln(ue)}}),this.subscription.add(f),this.abortAllController.signal.aborted||n.aborted)try{K.abort()}catch(ue){ln(ue)}h=K.signal}let g=(0,H.now)();m.log("startRequest",(0,H.flattenObject)({url:c,priority:s,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:g}));let S=yield this.doFetch(c,{priority:s,headers:d,signal:h}),y=(0,H.now)();if(!S)return m.error("error",{message:"No response in request"}),m.end(),f==null||f.unsubscribe(),null;if((_=this.throughputEstimator)==null||_.addRawRtt(y-g),!S.ok||!S.body){f==null||f.unsubscribe();let K=`Fetch error ${S.status}: ${S.statusText}`;return m.error("error",{message:K}),m.end(),Promise.reject(new Error(`Fetch error ${S.status}: ${S.statusText}`))}if(this.onHeadersReceived(S.headers),!r&&!o){f==null||f.unsubscribe();let K=(0,H.now)(),ue={requestStartedAt:g,requestEndedAt:K,duration:K-g};return m.log("endRequest",(0,H.flattenObject)(ue)),m.end(),S.arrayBuffer()}let[I,x]=S.body.tee(),w=I.getReader();o&&((ie=this.throughputEstimator)==null||ie.trackStream(x,u));let P=0,O=new Uint8Array(0),J=!1,Z=K=>{f==null||f.unsubscribe(),J=!0,ln(K)},ne=(0,H.abortable)(h,function(C){return Te(this,arguments,function*({done:K,value:ue}){if(P===0&&this.lastRequestFirstBytes$.next((0,H.now)()-g),h.aborted){f==null||f.unsubscribe();return}if(!K&&ue){let Q=new Uint8Array(O.length+ue.length);Q.set(O),Q.set(ue,O.length),O=Q,P+=ue.byteLength,r==null||r(new DataView(O.buffer),P),yield w==null?void 0:w.read().then(ne,Z)}})}.bind(this));yield w==null?void 0:w.read().then(ne,Z),f==null||f.unsubscribe();let k=(0,H.now)(),te={failed:J,requestStartedAt:g,requestEndedAt:k,duration:k-g};return J?(m.error("endRequest",(0,H.flattenObject)(te)),m.end(),null):(m.log("endRequest",(0,H.flattenObject)(te)),m.end(),O.buffer)})}.bind(this));this.fetchByteRangeRepresentation=(0,H.abortable)(this.abortAllController.signal,function(e,t,i){return Te(this,null,function*(){var y;if(e.type!=="byteRange")return null;let{from:r,to:s}=e.initRange,n=r,o=s,u=!1,l,c;e.indexRange&&(l=e.indexRange.from,c=e.indexRange.to,u=s+1===l,u&&(n=Math.min(l,r),o=Math.max(c,s))),n=Math.min(n,0);let d=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!d)return null;let m=new DataView(d,r-n,s-n+1);if(!t.validateData(m))throw new Error("Invalid media file");let h=t.parseInit(m),f=(y=e.indexRange)!=null?y:t.getIndexRange(h);if(!f)throw new ReferenceError("No way to load representation index");let g;if(u)g=new DataView(d,f.from-n,f.to-f.from+1);else{let I=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!I)return null;g=new DataView(I)}let S=t.parseSegments(g,h,f);return{init:h,dataView:new DataView(d),segments:S}})}.bind(this));this.fetchTemplateRepresentation=(0,H.abortable)(this.abortAllController.signal,function(e,t){return Te(this,null,function*(){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=>U(L({},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=s}onHeadersReceived(e){let{type:t,reused:i}=Yv(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}fetchRepresentation(e,t,i="auto"){return A(this,null,function*(){var s,n;let{type:r}=e;switch(r){case"byteRange":return(s=yield this.fetchByteRangeRepresentation(e,t,i))!=null?s:null;case"template":return(n=yield this.fetchTemplateRepresentation(e,i))!=null?n:null;default:(0,H.assertNever)(r)}})}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.tracer.end()}doFetch(e,t){return A(this,null,function*(){let i=yield Et(e,t);if(i.ok)return i;let r=yield i.text(),s=parseInt(r);if(!isNaN(s))switch(s){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:H.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:H.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:H.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:H.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${s})`,category:H.ErrorCategory.FATAL})}})}},ln=a=>{if(!$a(a))throw a};var xi=(a,e,t)=>t*e+(1-t)*a,ml=(a,e)=>a.reduce((t,i)=>t+i,0)/e,Kv=(a,e,t,i)=>{let r=0,s=t,n=ml(a,e),o=e<i?e:i;for(let u=0;u<o;u++)a[s]>n?r++:r--,s=(a.length+s-1)%a.length;return Math.abs(r)===o};var Da=require("@vkontakte/videoplayer-shared/es2015");var ai=class{constructor(e){this.prevReported=void 0;this.pastMeasures=[];this.takenMeasures=0;this.measuresCursor=0;var i;this.params=e,this.pastMeasures=Array(e.deviationDepth),this.smoothed=this.prevReported=e.initial,this.smoothed$=new Da.ValueSubject(e.initial),this.debounced$=new Da.ValueSubject(e.initial);let t=(i=e.label)!=null?i:"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new De(`raw_${t}`),this.smoothedSeries$=new De(`smoothed_${t}`),this.reportedSeries$=new De(`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+=bt(this.pastMeasures[o]-this.smoothed,2),i++);this.takenMeasures=i,t/=i;let r=Math.sqrt(t),s=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>s||this.smoothed<n)&&((0,Da.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 dn=class extends ai{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=xi(this.slow,e,this.params.emaAlphaSlow),this.fast=xi(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var pn=class extends ai{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=ml(this.pastMeasures,this.takenMeasures);this.emaSmoothed=xi(this.emaSmoothed,e,this.params.emaAlpha);let i=Kv(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var hn=class extends ai{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?xi(this.smoothed,t,this.params.emaAlpha):t}};var Pi=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new dn({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new pn({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 hn(L({initial:e,label:"liveEdgeDelay"},t))}};var fl=(a,e)=>{a&&a.playbackRate!==e&&(a.playbackRate=e)};var mn=require("@vkontakte/videoplayer-shared/es2015");var Va=class a{constructor(e,t){this.currentRepresentation$=new mn.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==null?void 0:e.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){var t;if(!(0,mn.isNullable)(e))for(let i of this.representations)for(let r of i){let s=r.segmentReference,n=s.segments.length,o=s.segments[0].time.from,u=s.segments[n-1].time.to;if(e<o||e>u)continue;let l=s.segments.find(c=>c.time.from<=e&&c.time.to>=e);!l||((t=this.currentSegment)==null?void 0:t.time.from)===l.time.from&&this.currentSegment.time.to===l.time.to||(this.currentSegment=l,this.currentRepresentation$.next(U(L({},r),{label:"Live Text",language:"ru",isAuto:!0,url:new URL(l.url,s.baseUrl).toString()})))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e!=null?e:[]){let i=a.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!(e!=null&&e.some(t=>a.filterRepresentations(t.representations)))}static filterRepresentations(e){return e==null?void 0:e.filter(t=>t.kind==="text"&&"segmentReference"in t&&Ve(t.segmentReference))}};var bn=W(Jt(),1);var Oa=require("@vkontakte/videoplayer-shared/es2015");var Xv=(a,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:r,protocols:s,codecs:n,nativeHlsSupported:o}=ee.video,u=(n.h264||n.h265)&&n.aac,l=s.mse&&(!i||!!window.MediaStreamTrack)||s.mms&&t;return a.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 s.webrtc&&s.ws&&n.h264&&(r.mp4||r.webm);default:return(0,Oa.assertNever)(c)}})},fn=a=>{let{webmDecodingInfo:e}=ee.video,t="DASH_WEBM",i="DASH_WEBM_AV1";switch(a){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,Oa.assertNever)(a)}return[t,i]},Jv=({webmCodec:a,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...fn(a),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],r=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(ee.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",...fn(a),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...fn(a),"MPEG",...r,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...fn(a),...r,"HLS","HLS_ONDEMAND"];default:(0,Oa.assertNever)(e)}return ee.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},Zv=({androidPreferredFormat:a,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"],s=[...i,...r],n=[...r,...i],o,u=ee.device.isMac&&ee.browser.isSafari;if(ee.device.isAndroid)switch(a){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,Oa.assertNever)(a)}else ee.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"]},bl=a=>a?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],eS=a=>{if(a.size===0)return;if(a.size===1){let t=a.values().next();return(0,bn.default)(t.value.split("."),0)}for(let t of a){let i=(0,bn.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=a.values().next();return(0,bn.default)(e.value.split("."),0)};var n$=["timeupdate","progress","play","seeked","stalled","waiting"],o$=["timeupdate","progress","loadeddata","playing","seeked"];var gn=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 Y("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 Le;this.initManifest=(0,v.abortable)(this.destroyController.signal,function(e,t,i){return Te(this,null,function*(){var r;this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=$e(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),(r=this.manifest)!=null&&r.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,function(){return Te(this,null,function*(){var n,o;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:v.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=Qv(e!=null?e:"",this.manifestUrlString)}catch(u){let l=(n=Ng(e))!=null?n:{id:"ManifestParsing",category:v.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:u};this.error$.next(l)}if(!t)return null;let i=(u,l,c)=>{var d,m,h,f;return!!((m=(d=this.element)==null?void 0:d.canPlayType)!=null&&m.call(d,l)&&((f=(h=ct())==null?void 0:h.isTypeSupported)!=null&&f.call(h,`${l}; codecs="${c}"`))||u==="text")};if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:u,latestSegmentPublishTime:l,streamIsUnpublished:c,streamIsAlive:d}=t.live,m=((o=t.duration)!=null?o:0)/1e3;this.liveSeekableDuration$.next(-1*m),this.liveDuration$.next((l-u)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let h="active";d||(h=c?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(h)}let r={text:t.streams.text,video:[],audio:[]};for(let u of["video","audio"]){let c=t.streams[u].filter(({mime:h,codecs:f})=>i(u,h,f)),d=new Set(c.map(({codecs:h})=>h)),m=eS(d);if(m&&(r[u]=c.filter(({codecs:h})=>h.startsWith(m))),u==="video"){let h=this.tuning.preferHDR,f=r.video.some(S=>S.hdr),g=r.video.some(S=>!S.hdr);ee.display.isHDR&&h&&f?r.video=r.video.filter(S=>S.hdr):g&&(r.video=r.video.filter(S=>!S.hdr))}}let s=U(L({},t),{streams:r});return this.tracer.log("updateManifestEnd",(0,v.flattenObject)(s)),s})}.bind(this));this.initRepresentations=(0,v.abortable)(this.destroyController.signal,function(e,t,i){return Te(this,null,function*(){var m;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=h=>{this.representationSubscription.add((0,v.fromEvent)(h,"error").pipe((0,v.filter)(f=>{var g;return!!((g=this.element)!=null&&g.played.length)})).subscribe(f=>{this.error$.next({id:"VideoSource",category:v.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:f})}))};this.source=this.tuning.useManagedMediaSource?yb():new MediaSource;let s=document.createElement("source");if(r(s),s.src=URL.createObjectURL(this.source),this.element.appendChild(s),this.tuning.useManagedMediaSource&&Ks())if(i){let h=document.createElement("source");r(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,f)=>[...h,...f.representations],[]);if(this.videoBufferManager=new Ma("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,v.isNonNullable)(t)){let h=this.manifest.streams.audio.reduce((f,g)=>[...f,...g.representations],[]);this.audioBufferManager=new Ma("audio",this.source,h,n),this.bufferManagers.push(this.audioBufferManager)}Va.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Va(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=()=>{var h;(h=this.stallWatchdogSubscription)==null||h.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,v.merge)(...o$.map(h=>(0,v.fromEvent)(this.element,h))).pipe((0,v.map)(h=>this.element?ar(this.element.buffered,this.element.currentTime*1e3):0),(0,v.filterChanged)(),(0,v.tap)(h=>{h>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(f=>this.liveStreamEndTimestamp=(0,v.now)())),this.subscription.add((0,v.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,v.interval)(1e3).subscribe(f=>{let g=js(this.manifestUrlString,2);this.manifestUrlString=$e(this.manifestUrlString,g+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,v.fromEvent)(this.element,"play").subscribe(f=>{var g;return(g=this.livePauseWatchdogSubscription)==null?void 0:g.unsubscribe()})),this.representationSubscription.add((0,v.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,v.map)(({isActiveLive:f,isLowLatency:g})=>f&&g),(0,v.filterChanged)()).subscribe(f=>{this.isManualDecreasePlaybackInLive()||fl(this.element,1)})),this.representationSubscription.add((0,v.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,v.filter)(({bufferLength:f,isActiveLive:g,isLowLatency:S})=>g&&S&&!!f)).subscribe(({bufferLength:f})=>this.liveBuffer.next(f))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(f=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!f)return;let g=this.liveSeekableDuration$.getValue()-f/1e3;this.liveSeekableDuration$.next(Math.max(g,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+f/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:f})=>f),(0,v.filterChanged)((f,g)=>g.bufferLength<f.bufferLength),(0,v.map)(({rtt:f,bufferLength:g,segmentServerLatency:S})=>{let y=js(this.manifestUrlString,2);return(f/2+g+S+y)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,v.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:f,isActiveLive:g,isLowLatency:S})=>{if(!S||!g)return;let y=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,I=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,x=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,w=f-y;if(this.isManualDecreasePlaybackInLive())return;let P=1;Math.abs(w)>I&&(P=1+Math.sign(w)*x),fl(this.element,P)})),this.representationSubscription.add(this.bufferLength$.subscribe(f=>{var S,y;let g=0;if(f){let I=((y=(S=this.element)==null?void 0:S.currentTime)!=null?y:0)*1e3;g=Math.min(...this.bufferManagers.map(w=>{var P,O;return(O=(P=w.getLiveSegmentsToLoadState(this.manifest))==null?void 0:P.to)!=null?O:I}))-I}this.liveLoadBufferLength$.getValue()!==g&&this.liveLoadBufferLength$.next(g)}));let h=0;this.representationSubscription.add((0,v.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,v.throttle)(1e3)).subscribe(S=>A(this,[S],function*({liveLoadBufferLength:f,bufferLength:g}){if(!this.element||this.isUpdatingLive)return;let y=this.element.playbackRate,I=js(this.manifestUrlString,2),x=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,w=Math.min(x,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*y),P=this.tuning.dashCmafLive.normalizedActualBufferOffset*y,O=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*y,J=isFinite(f)?f:g,Z=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),ne=x<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(ne);let k="none";if(Z?k="active_low_latency":this.isLowLatency$.getValue()&&ne?(this.bufferManagers.forEach(te=>te.proceedLowLatencyLive()),k="active_low_latency"):I!==0&&J<w?k="live_forward_buffering":J<w+O&&(k="live_with_target_offset"),isFinite(f)&&(h=f>h?f:h),k==="live_forward_buffering"||k==="live_with_target_offset"){let te=h-(w+P),_=this.normolizeLiveOffset(Math.trunc(I+te/y)),ie=Math.abs(_-I),K=0;!f||ie<=this.tuning.dashCmafLive.offsetCalculationError?K=I:_>0&&ie>this.tuning.dashCmafLive.offsetCalculationError&&(K=_),this.manifestUrlString=$e(this.manifestUrlString,K,2)}(k==="live_with_target_offset"||k==="live_forward_buffering")&&(h=0,yield this.updateLive())}),f=>{this.error$.next({id:"updateLive",category:v.ErrorCategory.VIDEO_PIPELINE,thrown:f,message:"Failed to update live with subscription"})}))}let l=(0,v.merge)(...this.bufferManagers.map(h=>h.fullyBuffered$)).pipe((0,v.map)(()=>this.bufferManagers.every(h=>h.fullyBuffered$.getValue()))),c=(0,v.merge)(...this.bufferManagers.map(h=>h.onLastSegment$)).pipe((0,v.map)(()=>this.bufferManagers.some(h=>h.onLastSegment$.getValue()))),d=(0,v.combine)({allBuffersFull:l,someBufferEnded:c}).pipe((0,v.filterChanged)(),(0,v.map)(({allBuffersFull:h,someBufferEnded:f})=>h&&f),(0,v.filter)(h=>h));if(this.representationSubscription.add((0,v.merge)(this.forceEnded$,d).subscribe(()=>{var h;if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(f=>!f.updating))try{(h=this.source)==null||h.endOfStream()}catch(f){this.error$.next({id:"EndOfStream",category:v.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:f})}})),this.representationSubscription.add((0,v.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((f,g)=>{var S;h&&(this.timeoutSourceOpenId=setTimeout(()=>{var y;if(((y=this.source)==null?void 0:y.readyState)==="open"){f();return}this.tuning.dash.rejectOnSourceOpenTimeout?g(new Error("Timeout reject when wait sourceopen event")):f()},this.tuning.dash.sourceOpenTimeout)),(S=this.source)==null||S.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),f()},{once:!0})})}if(!this.isLive$.getValue()){let h=[(m=this.manifest.duration)!=null?m:0,...(0,vl.default)((0,vl.default)([...this.manifest.streams.audio,...this.manifest.streams.video],f=>f.representations),f=>{let g=[];return f.duration&&g.push(f.duration),Ve(f.segmentReference)&&f.segmentReference.totalSegmentsDurationMs&&g.push(f.segmentReference.totalSegmentsDurationMs),g})];this.source.duration=Math.max(...h)/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=()=>{var t,i,r,s;if(!this.element||!this.videoBufferManager||((t=this.source)==null?void 0:t.readyState)!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),(i=this.audioBufferManager)==null||i.maintain(e),(r=this.liveTextManager)==null||r.maintain(e),(this.videoBufferManager.gaps.length||(s=this.audioBufferManager)!=null&&s.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,v.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),n=>{this.error$.next({id:"GapWatchdog",category:v.ErrorCategory.WTF,message:"Error handling gaps",thrown:n})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.fetcher=new cn({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=Pi.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,L({},e.tuning.dashCmafLive.lowLatency.bufferEstimator)),this.initTracerSubscription()}seekLive(e){return A(this,null,function*(){var r,s,n;(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=yield this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,yield(r=this.videoBufferManager)==null?void 0:r.seekLive(this.manifest.streams.video),yield(s=this.audioBufferManager)==null?void 0:s.seekLive(this.manifest.streams.audio),(n=this.liveTextManager)==null||n.seekLive(this.manifest.streams.text))})}initBuffer(){(0,v.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,v.merge)(...n$.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(()=>{var t;this.element&&this.element.readyState===2&&!this.element.seeking&&ti(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{var h,f,g,S,y,I,x,w,P,O,J;if(!this.element||((h=this.source)==null?void 0:h.readyState)!=="open")return;let i=this.currentStallDuration$.getValue();i+=50,this.currentStallDuration$.next(i);let r={timeInWaiting:i},s=(0,v.now)(),n=100,o=(g=(f=this.videoBufferManager)==null?void 0:f.lastDataObtainedTimestamp)!=null?g:0;this.videoLastDataObtainedTimestamp$.next(o);let u=(y=(S=this.audioBufferManager)==null?void 0:S.lastDataObtainedTimestamp)!=null?y:0,l=(x=(I=this.videoBufferManager)==null?void 0:I.getForwardBufferDuration())!=null?x:0,c=(P=(w=this.audioBufferManager)==null?void 0:w.getForwardBufferDuration())!=null?P:0,d=l<n&&s-o>this.tuning.dash.crashOnStallTWithoutDataTimeout,m=this.audioBufferManager&&c<n&&s-u>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((d||m)&&i>this.tuning.dash.crashOnStallTWithoutDataTimeout||i>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${i} ms`);if(this.isLive$.getValue()&&i%2e3===0){let Z=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(Z).catch(ne=>{this.error$.next({id:"stallIntervalCallback",category:v.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:ne})}),r.liveLastOffset=Z}else{let Z=this.element.currentTime*1e3;(O=this.videoBufferManager)==null||O.maintain(Z),(J=this.audioBufferManager)==null||J.maintain(Z),r.position=Z}this.tracer.log("stallIntervalCallback",(0,v.flattenObject)(r))};(t=this.stallWatchdogSubscription)==null||t.unsubscribe(),this.stallWatchdogSubscription=(0,v.interval)(50).subscribe(e,i=>{this.error$.next({id:"StallWatchdogCallback",category:v.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:i})}),this.subscription.add(this.stallWatchdogSubscription)})),this.tick()}switchRepresentation(e,t,i=!1){return A(this,null,function*(){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r==null?void 0:r.switchToWithPreviousAbort(t,i):r==null?void 0:r.switchTo(t,i):r==null?void 0:r.switchToOld(t,i)})}seek(e,t){return A(this,null,function*(){var r,s,n,o,u;(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((r=this.videoBufferManager.findSegmentStartTime(e))!=null?r:e,(n=(s=this.audioBufferManager)==null?void 0:s.findSegmentStartTime(e))!=null?n:e),this.warmUpMediaSourceIfNeeded(i),ti(this.element.buffered,i)||(yield Promise.all([this.videoBufferManager.abort(),(o=this.audioBufferManager)==null?void 0:o.abort()])),!((0,v.isNullable)(this.element)||(0,v.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),(u=this.audioBufferManager)==null||u.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,v.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))})}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){var i;(0,v.isNonNullable)(this.element)&&(0,v.isNonNullable)(this.source)&&(0,v.isNonNullable)(e)&&((i=this.source)==null?void 0:i.readyState)==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(r=>r.warmUpMediaSource())}get isStreamEnded(){var e;return((e=this.source)==null?void 0:e.readyState)==="ended"}stop(){var e,t,i;this.tracer.log("stop"),(e=this.element)==null||e.querySelectorAll("source").forEach(r=>{URL.revokeObjectURL(r.src),r.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),(t=this.videoBufferManager)==null||t.destroy(),this.videoBufferManager=null,(i=this.audioBufferManager)==null||i.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){var e;return(e=this.manifest)==null?void 0:e.streams}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){var e;this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),((e=this.source)==null?void 0:e.readyState)==="open"&&Array.from(this.source.sourceBuffers).every(t=>!t.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}updateLive(){return A(this,null,function*(){var e,t;this.isUpdatingLive=!0,this.manifest=yield this.updateManifest(),this.manifest&&((e=this.bufferManagers)==null||e.forEach(i=>i.updateLive(this.manifest)),(t=this.liveTextManager)==null||t.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,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<=r&&u.to+n>r&&(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=U(L({},i),{gapEnds:s,jumpTo:o,resultCurrentTime:this.element.currentTime}),this.tracer.log("jumpGap",(0,v.flattenObject)(i)))}}};var vn=class{constructor(e,t){this.fov=e,this.orientation=t}};var Sn=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/bt(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,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:r,y:s,z:n},this.lastCameraTurnTS=Date.now()}setRotationSpeed(e,t,i){this.rotationSpeed.x=e!=null?e:this.rotationSpeed.x,this.rotationSpeed.y=t!=null?t:this.rotationSpeed.y,this.rotationSpeed.z=i!=null?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=L({},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*bt(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 iS=`attribute vec2 a_vertex;
|
|
14
|
+
`})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(d,"i")}var Id=Y(ei(),1);var by=require("@vkontakte/videoplayer-shared/es2015"),gy=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{var u;let o=(u=a?ci(a):void 0)!=null?u:(0,by.videoSizeToQuality)({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},Sy=({id:s,bitrate:e})=>({id:s,bitrate:e}),vy=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),yy=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),xd=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,Id.default)(i.split("."),0),isDefault:r}),Ed=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,Id.default)(r.split("."),0)}),wd=s=>"url"in s,gt=s=>s.type==="template",hn=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var Ty=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},xr=(s,e)=>{for(let t of s)if(e(t))return t;return null},YL=(s,e)=>{let t=0;return()=>{let i=Date.now();i-t>=e&&(s(),t=i)}},Iy=s=>{let e=!1,t=YL(()=>{e=!0},s);return()=>{try{return t(),e}finally{e=!1}}},hu=s=>{let e=[];for(let t=0;t<s.length;t++){let i=Math.floor(s.start(t)*1e3),r=Math.ceil(s.end(t)*1e3);e.push(i,r)}return e};var xy=s=>{if(!(s!=null&&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==null?void 0:i[1])==="-"?-1:1,a={days:e(i==null?void 0:i[5],r),hours:e(i==null?void 0:i[6],r),minutes:e(i==null?void 0:i[7],r),seconds:e(i==null?void 0:i[8],r)};return a.days*24*60*60*1e3+a.hours*60*60*1e3+a.minutes*60*1e3+a.seconds*1e3},$i=(s,e)=>{let t=s;t=(0,Pd.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,Ey.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,Pd.default)(t,n,(o,u)=>(0,fn.isNullable)(a)?o:(0,fn.isNullable)(u)?a:(0,wy.default)(a,parseInt(u,10),"0"))}return t},Ay=(s,e)=>{var X,D,U,O,F,$,H,C,j,be,ge,J,Ut,pe,Le,Fe,ot,qt,mi,Ht,si,Hi,ji,ms,bs,gs,Ss,vs,ys,Ts,Is,xs,Es,ws,Ps,As,ks,Rs,Ms,Ls,Bs,Ds,$s,Cs,Vs,Os,_s,Fs,Ns,Us,qs,Hs,js,Gs,zs,Ws,Qs,Ys,Ks,Xs,Js;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(Ae=>{var W,ut;return(ut=(W=Ae.textContent)==null?void 0:W.trim())!=null?ut:""}),o=(X=(0,Py.default)(n,0))!=null?X:"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),d=a.getAttribute("publishTime"),c=a.getElementsByTagName("vk:Attrs")[0],h=c==null?void 0:c.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,p=c==null?void 0:c.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=c==null?void 0:c.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,m=c==null?void 0:c.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,S;u&&(S={availabilityStartTime:l?new Date(l).getTime():0,publishTime:d?new Date(d).getTime():0,latestSegmentPublishTime:h?new Date(h).getTime():0,streamIsAlive:p==="yes",streamIsUnpublished:f==="yes"});let v,x=a.getAttribute("mediaPresentationDuration"),I=[...a.getElementsByTagName("Period")],E=I.reduce((Ae,W)=>N(R({},Ae),{[W.id]:W.children}),{}),L=I.reduce((Ae,W)=>N(R({},Ae),{[W.id]:W.getAttribute("duration")}),{});x?v=xy(x):(0,Ad.default)(L).filter(Ae=>Ae).length&&!u?v=(0,Ad.default)(L).reduce((Ae,W)=>{var ut;return Ae+((ut=xy(W))!=null?ut:0)},0):m&&(v=parseInt(m,10));let M=0,_=(U=(D=a.getAttribute("profiles"))==null?void 0:D.split(","))!=null?U:[];for(let Ae of I.map(W=>W.id))for(let W of E[Ae]){let ut=(O=W.getAttribute("id"))!=null?O:"id"+(M++).toString(10),jt=(F=W.getAttribute("mimeType"))!=null?F:"",sr=($=W.getAttribute("codecs"))!=null?$:"",ar=(H=W.getAttribute("contentType"))!=null?H:jt==null?void 0:jt.split("/")[0],Wu=(j=(C=W.getAttribute("profiles"))==null?void 0:C.split(","))!=null?j:[],Zs=(ge=my((be=W.getAttribute("lang"))!=null?be:""))!=null?ge:{},bi=(pe=(Ut=(J=W.querySelector("Label"))==null?void 0:J.textContent)==null?void 0:Ut.trim())!=null?pe:void 0,Qu=W.querySelectorAll("Representation"),Yu=W.querySelector("SegmentTemplate"),Ku=(Fe=(Le=W.querySelector("Role"))==null?void 0:Le.getAttribute("value"))!=null?Fe:void 0,Et=ar,ae={id:ut,language:Zs.language,isDefault:Ku==="main",label:bi,codecs:sr,hdr:Et==="video"&&os(sr),mime:jt,representations:[]};for(let z of Qu){let Ge=(ot=z.getAttribute("lang"))!=null?ot:void 0,Gt=(mi=(qt=bi!=null?bi:W.getAttribute("label"))!=null?qt:z.getAttribute("label"))!=null?mi:void 0,gi=(Hi=(si=(Ht=z.querySelector("BaseURL"))==null?void 0:Ht.textContent)==null?void 0:si.trim())!=null?Hi:"",lt=new URL(gi||o,e).toString(),ze=(ji=z.getAttribute("mimeType"))!=null?ji:jt,Si=(bs=(ms=z.getAttribute("codecs"))!=null?ms:sr)!=null?bs:"",vi;if(ar==="text"){let We=z.getAttribute("id")||"",yi=((gs=Zs.privateuse)==null?void 0:gs.includes("x-auto"))||We.includes("_auto"),ct=z.querySelector("SegmentTemplate");if(ct){let zt={representationId:(Ss=z.getAttribute("id"))!=null?Ss:void 0,bandwidth:(vs=z.getAttribute("bandwidth"))!=null?vs:void 0},Ti=parseInt((ys=z.getAttribute("bandwidth"))!=null?ys:"",10)/1e3,Ii=(Is=parseInt((Ts=ct.getAttribute("startNumber"))!=null?Ts:"",10))!=null?Is:1,wt=parseInt((xs=ct.getAttribute("timescale"))!=null?xs:"",10),nr=(Es=ct.querySelectorAll("SegmentTimeline S"))!=null?Es:[],Pt=ct.getAttribute("media");if(!Pt)continue;let xi=[],Ei=0,wi="",At=0,Wt=Ii,Se=0;for(let ke of nr){let dt=parseInt((ws=ke.getAttribute("d"))!=null?ws:"",10),Te=parseInt((Ps=ke.getAttribute("r"))!=null?Ps:"",10)||0,Qe=parseInt((As=ke.getAttribute("t"))!=null?As:"",10);Se=Number.isFinite(Qe)?Qe:Se;let pt=dt/wt*1e3,Ye=Se/wt*1e3;for(let $e=0;$e<Te+1;$e++){let Ke=$i(Pt,N(R({},zt),{segmentNumber:Wt.toString(10),segmentTime:(Se+$e*dt).toString(10)})),kt=(Ye!=null?Ye:0)+$e*pt,Yt=kt+pt;Wt++,xi.push({time:{from:kt,to:Yt},url:Ke})}Se+=(Te+1)*dt,Ei+=(Te+1)*pt}At=Se/wt*1e3,wi=$i(Pt,N(R({},zt),{segmentNumber:Wt.toString(10),segmentTime:Se.toString(10)}));let Qt={time:{from:At,to:1/0},url:wi},Ne={type:"template",baseUrl:lt,segmentTemplateUrl:Pt,initUrl:"",totalSegmentsDurationMs:Ei,segments:xi,nextSegmentBeyondManifest:Qt,timescale:wt};vi={id:We,kind:"text",segmentReference:Ne,profiles:[],duration:v,bitrate:Ti,mime:"",codecs:"",width:0,height:0,isAuto:yi}}else vi={id:We,isAuto:yi,kind:"text",url:lt}}else{let We=(Rs=(ks=z.getAttribute("contentType"))!=null?ks:ze==null?void 0:ze.split("/")[0])!=null?Rs:ar,yi=(Ls=(Ms=W.getAttribute("profiles"))==null?void 0:Ms.split(","))!=null?Ls:[],ct=parseInt((Bs=z.getAttribute("width"))!=null?Bs:"",10),zt=parseInt((Ds=z.getAttribute("height"))!=null?Ds:"",10),Ti=parseInt(($s=z.getAttribute("bandwidth"))!=null?$s:"",10)/1e3,Ii=(Cs=z.getAttribute("frameRate"))!=null?Cs:"",wt=(Vs=z.getAttribute("quality"))!=null?Vs:void 0,nr=Ii?pu(Ii):void 0,Pt=(Os=z.getAttribute("id"))!=null?Os:"id"+(M++).toString(10),xi=We==="video"?`${zt}p`:We==="audio"?`${Ti}Kbps`:Si,Ei=`${Pt}@${xi}`,wi=[..._,...Wu,...yi],At,Wt=z.querySelector("SegmentBase"),Se=(_s=z.querySelector("SegmentTemplate"))!=null?_s:Yu;if(Wt){let Ne=(Ns=(Fs=z.querySelector("SegmentBase Initialization"))==null?void 0:Fs.getAttribute("range"))!=null?Ns:"",[ke,dt]=Ne.split("-").map(Ke=>parseInt(Ke,10)),Te={from:ke,to:dt},Qe=(Us=z.querySelector("SegmentBase"))==null?void 0:Us.getAttribute("indexRange"),[pt,Ye]=Qe?Qe.split("-").map(Ke=>parseInt(Ke,10)):[],$e=Qe?{from:pt,to:Ye}:void 0;At={type:"byteRange",url:lt,initRange:Te,indexRange:$e}}else if(Se){let Ne={representationId:(qs=z.getAttribute("id"))!=null?qs:void 0,bandwidth:(Hs=z.getAttribute("bandwidth"))!=null?Hs:void 0},ke=parseInt((js=Se.getAttribute("timescale"))!=null?js:"",10),dt=(Gs=Se.getAttribute("initialization"))!=null?Gs:"",Te=Se.getAttribute("media"),Qe=(Ws=parseInt((zs=Se.getAttribute("startNumber"))!=null?zs:"",10))!=null?Ws:1,pt=$i(dt,Ne);if(!Te)throw new ReferenceError("No media attribute in SegmentTemplate");let Ye=(Qs=Se.querySelectorAll("SegmentTimeline S"))!=null?Qs:[],$e=[],Ke=0,kt="",Yt=0;if(Ye.length){let Pi=Qe,Re=0;for(let Rt of Ye){let Ce=parseInt((Ys=Rt.getAttribute("d"))!=null?Ys:"",10),ht=parseInt((Ks=Rt.getAttribute("r"))!=null?Ks:"",10)||0,Ai=parseInt((Xs=Rt.getAttribute("t"))!=null?Xs:"",10);Re=Number.isFinite(Ai)?Ai:Re;let or=Ce/ke*1e3,ur=Re/ke*1e3;for(let ki=0;ki<ht+1;ki++){let Ju=$i(Te,N(R({},Ne),{segmentNumber:Pi.toString(10),segmentTime:(Re+ki*Ce).toString(10)})),ea=(ur!=null?ur:0)+ki*or,Zu=ea+or;Pi++,$e.push({time:{from:ea,to:Zu},url:Ju})}Re+=(ht+1)*Ce,Ke+=(ht+1)*or}Yt=Re/ke*1e3,kt=$i(Te,N(R({},Ne),{segmentNumber:Pi.toString(10),segmentTime:Re.toString(10)}))}else if((0,fn.isNonNullable)(v)){let Re=parseInt((Js=Se.getAttribute("duration"))!=null?Js:"",10)/ke*1e3,Rt=Math.ceil(v/Re),Ce=0;for(let ht=1;ht<Rt;ht++){let Ai=$i(Te,N(R({},Ne),{segmentNumber:ht.toString(10),segmentTime:Ce.toString(10)}));$e.push({time:{from:Ce,to:Ce+Re},url:Ai}),Ce+=Re}Yt=Ce,kt=$i(Te,N(R({},Ne),{segmentNumber:Rt.toString(10),segmentTime:Ce.toString(10)}))}let Xu={time:{from:Yt,to:1/0},url:kt};At={type:"template",baseUrl:lt,segmentTemplateUrl:Te,initUrl:pt,totalSegmentsDurationMs:Ke,segments:$e,nextSegmentBeyondManifest:Xu,timescale:ke}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!We||!ze)continue;let Qt={video:"video",audio:"audio",text:"text"}[We];if(!Qt)continue;Et||(Et=Qt),vi={id:Ei,kind:Qt,segmentReference:At,profiles:wi,duration:v,bitrate:Ti,mime:ze,codecs:Si,width:ct,height:zt,fps:nr,quality:wt}}ae.language||(ae.language=Ge),ae.label||(ae.label=Gt),ae.mime||(ae.mime=ze),ae.codecs||(ae.codecs=Si),ae.hdr||(ae.hdr=Et==="video"&&os(Si)),ae.representations.push(vi)}if(Et){let z=r[Et].find(Ge=>Ge.id===ae.id);if(z&&ae.representations.every(Ge=>gt(Ge.segmentReference)))for(let Ge of z.representations){let Gt=ae.representations.find(ze=>ze.id===Ge.id),gi=Gt==null?void 0:Gt.segmentReference,lt=Ge.segmentReference;lt.segments.push(...gi.segments),lt.nextSegmentBeyondManifest=gi.nextSegmentBeyondManifest}else r[Et].push(ae)}}return{duration:v,streams:r,baseUrls:n,live:S}};var Rd=require("@vkontakte/videoplayer-shared/es2015"),Z=(s,e)=>(0,Rd.isNonNullable)(s)&&(0,Rd.isNonNullable)(e)&&s.readyState==="open"&&KL(s,e);function KL(s,e){for(let t=0;t<s.activeSourceBuffers.length;++t)if(s.activeSourceBuffers[t]===e)return!0;return!1}var mu=require("@vkontakte/videoplayer-shared/es2015");var fu=class{constructor(e,t){this.lastUpdateTs=0;this.lastCallTs=0;this.prevRanges=[];this.subscription=new mu.Subscription;this.mediaSource=e,this.sourceBuffer=t,this.subscription.add((0,mu.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>this.updateend()))}updateend(){if(!Z(this.mediaSource,this.sourceBuffer))return;let{prevRanges:e}=this,t=hu(this.sourceBuffer.buffered);this.prevRanges=t,this.isRangesRemoved(e,t)&&(this.lastUpdateTs=Date.now())}isRangesRemoved(e,t){if(e.length!==t.length)return!0;for(let i=0;i<e.length;i+=2){let r=e[i],a=e[i+1],n=t[i],o=t[i+1];if(n>r||o<a)return!0}return!1}wasUpdated(){let{lastCallTs:e,lastUpdateTs:t}=this;return this.lastCallTs=Date.now(),e<=t}destroy(){this.subscription.unsubscribe()}};var mn=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 ye;this.switchAbortController=new ye;this.destroyAbortController=new ye;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.sourceBufferBufferedDiff=null;this.startWith=(0,k.abortable)(this.destroyAbortController.signal,function(e){return ue(this,null,function*(){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 Pv(this.sourceBuffer),this.sourceBufferBufferedDiff=new fu(this.mediaSource,this.sourceBuffer),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,ss(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=De(this.sourceBuffer.buffered,o),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<d).catch(c=>{this.handleAsyncError(c,"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,function(e,t=!1){return ue(this,null,function*(){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,yield new lr(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,function(e,t=!1){return ue(this,null,function*(){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,yield new lr(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,function(e){return ue(this,null,function*(){var u,l;let t=(u=(0,gu.default)(e,d=>d.representations))!=null?u:[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let d of this.representations.keys()){let c=t.find(f=>f.id===d);c&&this.representations.set(d,c);let h=this.representations.get(d);if(!h||!gt(h.segmentReference))return;let p=this.getActualLiveStartingSegments(h.segmentReference);this.segments.set(h.id,p)}let i=(l=this.switchingToRepresentationId)!=null?l: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));var d;this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!(l!=null&&l.live),this.baseUrls=(d=l==null?void 0:l.baseUrls)!=null?d:[],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 ye,(0,k.abortable)(this.switchAbortController.signal,function(i,r=!1){return ue(this,null,function*(){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")}abort(){return P(this,null,function*(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new ye,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(d=>e>=d.time.from&&e<d.time.to);(0,k.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next((r==null?void 0:r.time.to)-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let d=De(this.sourceBuffer.buffered,e),c=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&d>=r.time.to-e+n&&(a=c)}if(isFinite(this.bufferLimit)&&ss(this.sourceBuffer.buffered)>=this.bufferLimit){let d=De(this.sourceBuffer.buffered,e),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,d<c).catch(h=>{this.handleAsyncError(h,"pruneBuffer")});return}let u=null;if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u!=null&&u.length)){let d="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,bu.default)(u,r))d="high";else{let c=(0,us.default)(u,0);c&&c.time.from-r.time.to>=this.forwardBufferTarget/2&&(d="low")}this.loadSegments(u,t,d).catch(c=>{this.handleAsyncError(c,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!(u!=null&&u.length)&&De(this.sourceBuffer.buffered,e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,us.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-De(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,persistent:!0}),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,persistent:!0})}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,gu.default)(e==null?void 0: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!=null&&i.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){var i,r,a,n;let t=(i=(0,gu.default)(e==null?void 0:e.streams[this.kind],o=>o.representations))!=null?i:[];if(![...this.segments.values()].every(o=>!o.length))for(let o of t){if(!o||!gt(o.segmentReference))return;let u=o.segmentReference.segments.map(p=>N(R({},p),{status:"none",size:void 0})),l=100,d=(r=this.segments.get(o.id))!=null?r:[],c=(n=(a=(0,us.default)(d,-1))==null?void 0:a.time.to)!=null?n:0,h=u==null?void 0:u.findIndex(p=>c>=p.time.from+l&&c<=p.time.to+l);if(h===-1){this.liveUpdateSegmentIndex=0;let p=this.getActualLiveStartingSegments(o.segmentReference);this.segments.set(o.id,p)}else{let p=u.slice(h+1);this.segments.set(o.id,[...d,...p])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,k.assertNonNullable)(e);let t=this.segments.get(e);if(t!=null&&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(!gt(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=$i(r.segmentTemplateUrl,{segmentTime:u});a.push({status:"none",time:{from:e.time.to,to:1/0},url:l})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){var a,n,o;let t=(n=(a=this.switchingToRepresentationId)!=null?a:this.downloadingRepresentationId)!=null?n:this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);if(!i)return;let r=i.find(u=>u.time.from<=e&&u.time.to>=e);return(o=r==null?void 0:r.time.from)!=null?o:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){var e,t;if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),(e=this.sourceBufferTaskQueue)==null||e.destroy(),(t=this.sourceBufferBufferedDiff)==null||t.destroy(),this.gapDetectionIdleCallback&&hi&&hi(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&hi&&hi(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(i){if(!(i instanceof DOMException&&i.name==="NotFoundError"))throw i}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.checkEjectedSegments(),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:c,time:{from:h,to:p}},f)=>{let m=h<=i&&p>=i,S=h>i||m||f===0&&i===0,v=Math.min(this.forwardBufferTarget,this.bufferLimit),x=this.preloadOnly&&h<=i+v||p<=i+v;return(c==="none"||c==="partially_ejected"&&S&&x&&this.sourceBuffer&&Z(this.mediaSource,this.sourceBuffer)&&!(nt(this.sourceBuffer.buffered,h)&&nt(this.sourceBuffer.buffered,p)))&&S&&x});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,d=this.preloadOnly?this.forwardBufferTarget:0;for(let c=r;c<a.length&&(n<=l||o<=d);c++){let h=a[c];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}loadSegments(e,t,i="auto"){return P(this,null,function*(){gt(t.segmentReference)?yield this.loadTemplateSegment(e[0],t,i):yield this.loadByteRangeSegments(e,t,i)})}loadTemplateSegment(e,t,i="auto"){return P(this,null,function*(){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&&(yield(0,k.abortable)(o,function(){return ue(this,null,function*(){let d=(0,k.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,d))})}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let d=yield this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,k.now)(),!d)return;let c=new DataView(d),h=pn(t.mime);if(!isFinite(r.segment.time.to)){let m=t.segmentReference.timescale;r.segment.time.to=h.getChunkEndTime(c,m)}u&&r.feedingBytes&&l?yield Promise.all(l):yield this.sourceBufferTaskQueue.append(c,o);let{serverDataReceivedTimestamp:p,serverDataPreparedTime:f}=h.getServerLatencyTimestamps(c);p&&f&&this.currentLiveSegmentServerLatency$.next(f-p),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(d){this.abortActiveSegments([e]),hn(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())gt(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}loadByteRangeSegments(e,t,i="auto"){return P(this,null,function*(){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&&(yield(0,k.abortable)(n,function(){return ue(this,null,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{yield 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),hn(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}prepareByteRangeFetchSegmentParams(e,t){if(gt(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,us.default)(e,0).byte.from,to:(0,us.default)(e,-1).byte.to},{signal:a}=this.downloadAbortController;return{url:i,range:r,signal:a,onProgress:(o,u)=>P(this,null,function*(){if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,k.now)(),yield 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(!gt(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,d)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,k.now)();let c=this.onSomeTemplateDataLoaded({dataView:l,loaded:d,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(c)}catch(c){this.error$.next({id:"SegmentFeeding",category:k.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,bu.default)(e,t.segment)&&this.abortSegment(t.segment)}onSomeTemplateDataLoaded(n){return P(this,arguments,function*({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){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){if(a.aborted){r();continue}if(u.loadedBytes=i,u.loadedBytes>u.feedingBytes){let d=new DataView(e.buffer,e.byteOffset+u.feedingBytes,u.loadedBytes-u.feedingBytes),c=pn(o.mime).parseFeedableSegmentChunk(d,this.isLive);c!=null&&c.byteLength&&(l.status="partially_fed",u.feedingBytes+=c.byteLength,yield this.sourceBufferTaskQueue.append(c),u.fedBytes+=c.byteLength)}}}})}onSomeByteRangesDataLoaded(o){return P(this,arguments,function*({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!Z(this.mediaSource,this.sourceBuffer))return;let u=this.representations.get(t);if(u)for(let l of this.activeSegments){if(l.representationId!==t)continue;if(a.aborted){yield n();continue}let{segment:d}=l,c=d.byte.from-i,h=d.byte.to-i,p=h-c+1,f=c<r,m=h<=r;if(f){if(d.status==="downloading"&&m){d.status="downloaded";let S=new DataView(e.buffer,e.byteOffset+c,p);(yield this.sourceBufferTaskQueue.append(S,a))&&!a.aborted?this.onSegmentFullyAppended(l,t):yield n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(d.status==="downloading"||d.status==="partially_fed")&&(l.loadedBytes=Math.min(p,r-c),l.loadedBytes>l.feedingBytes)){let S=new DataView(e.buffer,e.byteOffset+c+l.feedingBytes,l.loadedBytes-l.feedingBytes),v=l.loadedBytes===p?S:pn(u.mime).parseFeedableSegmentChunk(S);v!=null&&v.byteLength&&(d.status="partially_fed",l.feedingBytes+=v.byteLength,(yield this.sourceBufferTaskQueue.append(v,a))&&!a.aborted?(l.fedBytes+=v.byteLength,l.fedBytes===p&&this.onSegmentFullyAppended(l,t)):yield n())}}}})}onSegmentFullyAppended(e,t){if(!((0,k.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer))){!this.isLive&&ee.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(nt(this.sourceBuffer.buffered,e.segment.time.from,100)&&nt(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",wd(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||(t=n),a===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=rs(()=>(0,ky.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}loadInit(e,t="auto",i=!1){return P(this,null,function*(){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,k.abortable)(this.destroyAbortController.signal,function(){return ue(this,null,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,pn(e.mime),r)).then(o=>{if(!o)return;let{init:u,dataView:l,segments:d}=o,c=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,c);let h=d;this.isLive&>(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:k.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n})}dropBuffer(){return P(this,null,function*(){for(let e of this.segments.values())for(let t of e)t.status="none";yield this.pruneBuffer(0,1/0,!0)})}pruneBuffer(e,t,i=!1){return P(this,null,function*(){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,k.isNullable)(e))return!1;this.checkEjectedSegments();let r=[],a=0,n=o=>{var l;if(a>=t)return;r.push(R({},o.time));let u=wd(o)?(l=o.size)!=null?l: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,d=u.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(l||d)&&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,d=0;for(let c of this.segments.values())for(let h of c)(0,bu.default)(["none","partially_ejected"],h.status)&&Math.round(h.time.from)<=Math.round(u)&&Math.round(h.time.to)>=Math.round(l)&&d++;if(d===this.segments.size){let c={time:{from:u,to:l},url:"",status:"none"};n(c)}}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=Ty(r),(yield Promise.all(r.map(u=>this.sourceBufferTaskQueue.remove(u.from,u.to)))).reduce((u,l)=>u||l,!1)):!1})}abortBuffer(){return P(this,null,function*(){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:De(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))return;let{buffered:i}=this.sourceBuffer;this.tuning.useRefactoredSearchGap&&(this.gaps=this.gaps.filter(a=>{if(a.persistent)return!0;let n=Math.round(a.from),o=Math.round(a.to);for(let u=0;u<i.length;u++)if(n>=Math.round(i.start(u)*1e3)&&o<=Math.round(i.end(u)*1e3))return!1;return!0}));let r={representation:e,from:t.time.from,to:t.time.to,persistent:!1};for(let a=0;a<i.length;a++){let n=i.start(a)*1e3,o=i.end(a)*1e3;if(!(o<=t.time.from||n>=t.time.to)){if(n<=t.time.from&&o>=t.time.to){r=void 0;break}o>t.time.from&&o<t.time.to&&(r.from=o),n<t.time.to&&n>t.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=>r.persistent||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=rs(()=>{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)||this.sourceBufferBufferedDiff&&!this.sourceBufferBufferedDiff.wasUpdated())return;let e=hu(this.sourceBuffer.buffered),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=!1,l=0;for(let d=0;d<e.length;d+=2){let c=e[d],h=e[d+1];u||(u=c-t<=n&&h+t>=o),(n>=c&&n<h-t||o>c+t&&o<=h)&&(l+=1)}u||(l===1?r.status="partially_ejected":this.gaps.some(d=>d.from===r.time.from||d.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 er=s=>{let e=new URL(s);return e.searchParams.set("quic","1"),e.toString()};var Su=s=>{var a;let e=s.get("X-Delivery-Type"),t=s.get("X-Reused"),i=e===null?"http1":e!=null?e:void 0,r=t===null?void 0:(a={1:!0,0:!1}[t])!=null?a:void 0;return{type:i,reused:r}};var fe=require("@vkontakte/videoplayer-shared/es2015");var vu=s=>{let e=new URL(s);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var Tu=class{constructor({throughputEstimator:e,requestQuic:t,compatibilityMode:i=!1,useEnableSubtitlesParam:r=!1}){this.lastConnectionType$=new fe.ValueSubject(void 0);this.lastConnectionReused$=new fe.ValueSubject(void 0);this.lastRequestFirstBytes$=new fe.ValueSubject(void 0);this.recoverableError$=new fe.Subject;this.error$=new fe.Subject;this.abortAllController=new ye;this.subscription=new fe.SubscriptionRemovable;this.fetchManifest=(0,fe.abortable)(this.abortAllController.signal,function(e){return ue(this,null,function*(){let t=e;this.requestQuic&&(t=er(t)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(t=vu(t));let i=yield this.doFetch(t,{signal:this.abortAllController.signal}).catch(yu);return i?(this.onHeadersReceived(i.headers),i.text()):null})}.bind(this));this.fetch=(0,fe.abortable)(this.abortAllController.signal,function(l){return ue(this,arguments,function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){var X,D;let d=e,c=new Headers;if(i)switch(t){case 0:{c.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let U=new URL(d,location.href);U.searchParams.append("bytes",`${i.from}-${i.to}`),d=U.toString();break}default:(0,fe.assertNever)(t)}this.requestQuic&&(d=er(d));let h=this.abortAllController.signal,p;if(n){let U=new ye;if(p=(0,fe.merge)((0,fe.fromEvent)(this.abortAllController.signal,"abort"),(0,fe.fromEvent)(n,"abort")).subscribe(()=>{try{U.abort()}catch(O){yu(O)}}),this.abortAllController.signal.aborted||n.aborted)try{U.abort()}catch(O){yu(O)}h=U.signal}let f=(0,fe.now)(),m=yield this.doFetch(d,{priority:a,headers:c,signal:h}),S=(0,fe.now)();if(!m)return this.unsubscribeAbortSubscription(p),null;if((X=this.throughputEstimator)==null||X.addRawRtt(S-f),!m.ok||!m.body)return this.unsubscribeAbortSubscription(p),Promise.reject(new Error(`Fetch error ${m.status}: ${m.statusText}`));if(this.onHeadersReceived(m.headers),!r&&!o)return this.unsubscribeAbortSubscription(p),m.arrayBuffer();let[v,x]=m.body.tee(),I=v.getReader();o&&((D=this.throughputEstimator)==null||D.trackStream(x,u));let E=0,L=new Uint8Array(0),M=!1,_=U=>{this.unsubscribeAbortSubscription(p),M=!0,yu(U)},G=(0,fe.abortable)(h,function(F){return ue(this,arguments,function*({done:U,value:O}){if(E===0&&this.lastRequestFirstBytes$.next((0,fe.now)()-f),h.aborted){this.unsubscribeAbortSubscription(p);return}if(!U&&O){let $=new Uint8Array(L.length+O.length);$.set(L),$.set(O,L.length),L=$,E+=O.byteLength,r==null||r(new DataView(L.buffer),E),yield I==null?void 0:I.read().then(G,_)}})}.bind(this));return yield I==null?void 0:I.read().then(G,_),this.unsubscribeAbortSubscription(p),M?null:L.buffer})}.bind(this));this.fetchByteRangeRepresentation=(0,fe.abortable)(this.abortAllController.signal,function(e,t,i){return ue(this,null,function*(){var v;if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,l,d;e.indexRange&&(l=e.indexRange.from,d=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(d,a))),n=Math.min(n,0);let c=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!c)return null;let h=new DataView(c,r-n,a-n+1);if(!t.validateData(h))throw new Error("Invalid media file");let p=t.parseInit(h),f=(v=e.indexRange)!=null?v:t.getIndexRange(p);if(!f)throw new ReferenceError("No way to load representation index");let m;if(u)m=new DataView(c,f.from-n,f.to-f.from+1);else{let x=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!x)return null;m=new DataView(x)}let S=t.parseSegments(m,p,f);return{init:p,dataView:new DataView(c),segments:S}})}.bind(this));this.fetchTemplateRepresentation=(0,fe.abortable)(this.abortAllController.signal,function(e,t){return ue(this,null,function*(){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(R({},n),{status:"none",size:void 0})),dataView:new DataView(r)}:null})}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=i,this.useEnableSubtitlesParam=r}onHeadersReceived(e){let{type:t,reused:i}=Su(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}fetchRepresentation(e,t,i="auto"){return P(this,null,function*(){var a,n;let{type:r}=e;switch(r){case"byteRange":return(a=yield this.fetchByteRangeRepresentation(e,t,i))!=null?a:null;case"template":return(n=yield this.fetchTemplateRepresentation(e,i))!=null?n:null;default:(0,fe.assertNever)(r)}})}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe()}doFetch(e,t){return P(this,null,function*(){let i=yield Ft(e,t);if(i.ok)return i;let r=yield i.text(),a=parseInt(r);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:fe.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:fe.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:fe.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:fe.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:fe.ErrorCategory.FATAL})}})}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}},yu=s=>{if(!hn(s))throw s};var Ci=(s,e,t)=>t*e+(1-t)*s,Md=(s,e)=>s.reduce((t,i)=>t+i,0)/e,Ry=(s,e,t,i)=>{let r=0,a=t,n=Md(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 bn=require("@vkontakte/videoplayer-shared/es2015");var tr=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 bn.ValueSubject(e.initial),this.debounced$=new bn.ValueSubject(e.initial)}next(e){let t=0,i=0;for(let o=0;o<this.pastMeasures.length;o++)this.pastMeasures[o]!==void 0&&(t+=ft(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.updateSmoothedValue(e),this.smoothed$.next(this.smoothed),!(this.smoothed>a||this.smoothed<n)&&((0,bn.isNullable)(this.prevReported)||Math.abs(this.smoothed-this.prevReported)/this.prevReported>=this.params.changeThreshold)&&(this.prevReported=this.smoothed,this.debounced$.next(this.smoothed))}};var Iu=class extends tr{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 xu=class extends tr{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=Md(this.pastMeasures,this.takenMeasures);this.emaSmoothed=Ci(this.emaSmoothed,e,this.params.emaAlpha);let i=Ry(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var Eu=class extends tr{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 Vi=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new Iu({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new xu({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 Eu(R({initial:e,label:"liveEdgeDelay"},t))}};var ls=(s,e)=>{s&&s.playbackRate!==e&&(s.playbackRate=e)};var wu=require("@vkontakte/videoplayer-shared/es2015");var gn=class s{constructor(e,t){this.currentRepresentation$=new wu.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==null?void 0:e.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){var t;if(!(0,wu.isNullable)(e))for(let i of this.representations)for(let r of i){let a=r.segmentReference,n=a.segments.length,o=a.segments[0].time.from,u=a.segments[n-1].time.to;if(e<o||e>u)continue;let l=a.segments.find(d=>d.time.from<=e&&d.time.to>=e);!l||((t=this.currentSegment)==null?void 0:t.time.from)===l.time.from&&this.currentSegment.time.to===l.time.to||(this.currentSegment=l,this.currentRepresentation$.next(N(R({},r),{label:"Live Text",language:"ru",isAuto:!0,url:new URL(l.url,a.baseUrl).toString()})))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e!=null?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!=null&&e.some(t=>s.filterRepresentations(t.representations)))}static filterRepresentations(e){return e==null?void 0:e.filter(t=>t.kind==="text"&&"segmentReference"in t&>(t.segmentReference))}};var Au=Y(ei(),1);var Sn=require("@vkontakte/videoplayer-shared/es2015");var My=(s,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:r,protocols:a,codecs:n,nativeHlsSupported:o}=ee.video,u=(n.h264||n.h265)&&n.aac,l=a.mse&&(!i||!!window.MediaStreamTrack)||a.mms&&t;return s.filter(d=>{switch(d){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,Sn.assertNever)(d)}})},Pu=s=>{let{webmDecodingInfo:e}=ee.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,Sn.assertNever)(s)}return[t,i]},Ly=({webmCodec:s,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...Pu(s),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],r=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(ee.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",...Pu(s),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...Pu(s),"MPEG",...r,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...Pu(s),...r,"HLS","HLS_ONDEMAND"];default:(0,Sn.assertNever)(e)}return ee.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},By=({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=ee.device.isMac&&ee.browser.isSafari;if(ee.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,Sn.assertNever)(s)}else ee.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"]},Ld=s=>s?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],ku=s=>{if(s.size===0)return;if(s.size===1){let t=s.values().next();return(0,Au.default)(t.value.split("."),0)}for(let t of s){let i=(0,Au.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=s.values().next();return(0,Au.default)(e.value.split("."),0)};var tB=["timeupdate","progress","play","seeked","stalled","waiting"],iB=["timeupdate","progress","loadeddata","playing","seeked"];var Ru=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new T.Subscription;this.representationSubscription=new T.Subscription;this.state$=new ie("none");this.currentVideoRepresentation$=new T.ValueSubject(void 0);this.currentVideoRepresentationInit$=new T.ValueSubject(void 0);this.currentAudioRepresentation$=new T.ValueSubject(void 0);this.currentVideoSegmentLength$=new T.ValueSubject(0);this.currentAudioSegmentLength$=new T.ValueSubject(0);this.error$=new T.Subject;this.lastConnectionType$=new T.ValueSubject(void 0);this.lastConnectionReused$=new T.ValueSubject(void 0);this.lastRequestFirstBytes$=new T.ValueSubject(void 0);this.currentLiveTextRepresentation$=new T.ValueSubject(null);this.isLive$=new T.ValueSubject(!1);this.isActiveLive$=new T.ValueSubject(!1);this.isLowLatency$=new T.ValueSubject(!1);this.liveDuration$=new T.ValueSubject(0);this.liveSeekableDuration$=new T.ValueSubject(0);this.liveAvailabilityStartTime$=new T.ValueSubject(0);this.liveStreamStatus$=new T.ValueSubject(void 0);this.bufferLength$=new T.ValueSubject(0);this.liveLatency$=new T.ValueSubject(void 0);this.liveLoadBufferLength$=new T.ValueSubject(0);this.livePositionFromPlayer$=new T.ValueSubject(0);this.currentStallDuration$=new T.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new T.ValueSubject(0);this.fetcherRecoverableError$=new T.Subject;this.fetcherError$=new T.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new T.Subject;this.gapWatchdogActive=!1;this.destroyController=new ye;this.initedPruneBufferCallback=!1;this.initManifest=(0,T.abortable)(this.destroyController.signal,function(e,t,i){return ue(this,null,function*(){var r;this.element=e,this.manifestUrlString=Oe(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),(r=this.manifest)!=null&&r.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:T.ErrorCategory.PARSER,message:"No playable video representations"})})}.bind(this));this.updateManifest=(0,T.abortable)(this.destroyController.signal,function(){return ue(this,null,function*(){var n,o;let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(u=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:T.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=Ay(e!=null?e:"",this.manifestUrlString)}catch(u){let l=(n=du(e))!=null?n:{id:"ManifestParsing",category:T.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:u};this.error$.next(l)}if(!t)return null;let i=(u,l,d)=>{var c,h,p,f;return!!((h=(c=this.element)==null?void 0:c.canPlayType)!=null&&h.call(c,l)&&((f=(p=$t())==null?void 0:p.isTypeSupported)!=null&&f.call(p,`${l}; codecs="${d}"`))||u==="text")};if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:u,latestSegmentPublishTime:l,streamIsUnpublished:d,streamIsAlive:c}=t.live,h=((o=t.duration)!=null?o:0)/1e3;this.liveSeekableDuration$.next(-1*h),this.liveDuration$.next((l-u)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";c||(p=d?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let u of["video","audio"]){let d=t.streams[u].filter(({mime:p,codecs:f})=>i(u,p,f)),c=new Set(d.map(({codecs:p})=>p)),h=ku(c);if(h&&(r[u]=d.filter(({codecs:p})=>p.startsWith(h))),u==="video"){let p=this.tuning.preferHDR,f=r.video.some(S=>S.hdr),m=r.video.some(S=>!S.hdr);ee.display.isHDR&&p&&f?r.video=r.video.filter(S=>S.hdr):m&&(r.video=r.video.filter(S=>!S.hdr))}}return N(R({},t),{streams:r})})}.bind(this));this.initRepresentations=(0,T.abortable)(this.destroyController.signal,function(e,t,i){return ue(this,null,function*(){var h;(0,T.assertNonNullable)(this.manifest),(0,T.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.representationSubscription=new T.Subscription,this.state$.startTransitionTo("representations_ready");let r=p=>{this.representationSubscription.add((0,T.fromEvent)(p,"error").pipe((0,T.filter)(f=>{var m;return!!((m=this.element)!=null&&m.played.length)})).subscribe(f=>{this.error$.next({id:"VideoSource",category:T.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:f})}))};this.source=this.tuning.useManagedMediaSource?Qo():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 p=document.createElement("source");r(p),p.type="application/x-mpegurl",p.src=i.url,this.element.appendChild(p)}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((p,f)=>[...p,...f.representations],[]);if(this.videoBufferManager=new mn("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,T.isNonNullable)(t)){let p=this.manifest.streams.audio.reduce((f,m)=>[...f,...m.representations],[]);this.audioBufferManager=new mn("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}gn.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new gn(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=()=>{var p;(p=this.stallWatchdogSubscription)==null||p.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,T.merge)(...iB.map(p=>(0,T.fromEvent)(this.element,p))).pipe((0,T.map)(p=>this.element?De(this.element.buffered,this.element.currentTime*1e3):0),(0,T.filterChanged)(),(0,T.tap)(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,T.merge)((0,T.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,T.filterChanged)()).subscribe(f=>this.liveStreamEndTimestamp=(0,T.now)())),this.subscription.add((0,T.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,T.interval)(1e3).subscribe(f=>{let m=Qi(this.manifestUrlString,2);this.manifestUrlString=Oe(this.manifestUrlString,m+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,T.fromEvent)(this.element,"play").subscribe(f=>{var m;return(m=this.livePauseWatchdogSubscription)==null?void 0:m.unsubscribe()})),this.representationSubscription.add((0,T.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,T.map)(({isActiveLive:f,isLowLatency:m})=>f&&m),(0,T.filterChanged)()).subscribe(f=>{this.isManualDecreasePlaybackInLive()||ls(this.element,1)})),this.representationSubscription.add((0,T.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,T.filter)(({bufferLength:f,isActiveLive:m,isLowLatency:S})=>m&&S&&!!f)).subscribe(({bufferLength:f})=>this.liveBuffer.next(f))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(f=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!f)return;let m=this.liveSeekableDuration$.getValue()-f/1e3;this.liveSeekableDuration$.next(Math.max(m,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+f/1e3)})),this.representationSubscription.add((0,T.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,T.filter)(({isLive:f})=>f),(0,T.filterChanged)((f,m)=>m.bufferLength<f.bufferLength),(0,T.map)(({rtt:f,bufferLength:m,segmentServerLatency:S})=>{let v=Qi(this.manifestUrlString,2);return(f/2+m+S+v)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,T.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:f,isActiveLive:m,isLowLatency:S})=>{if(!S||!m)return;let v=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,x=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,I=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,E=f-v;if(this.isManualDecreasePlaybackInLive())return;let L=1;Math.abs(E)>x&&(L=1+Math.sign(E)*I),ls(this.element,L)})),this.representationSubscription.add(this.bufferLength$.subscribe(f=>{var S,v;let m=0;if(f){let x=((v=(S=this.element)==null?void 0:S.currentTime)!=null?v:0)*1e3;m=Math.min(...this.bufferManagers.map(E=>{var L,M;return(M=(L=E.getLiveSegmentsToLoadState(this.manifest))==null?void 0:L.to)!=null?M:x}))-x}this.liveLoadBufferLength$.getValue()!==m&&this.liveLoadBufferLength$.next(m)}));let p=0;this.representationSubscription.add((0,T.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,T.throttle)(1e3)).subscribe(S=>P(this,[S],function*({liveLoadBufferLength:f,bufferLength:m}){if(!this.element||this.isUpdatingLive)return;let v=this.element.playbackRate,x=Qi(this.manifestUrlString,2),I=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,E=Math.min(I,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*v),L=this.tuning.dashCmafLive.normalizedActualBufferOffset*v,M=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*v,_=isFinite(f)?f:m,G=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),X=I<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(X);let D="none";if(G?D="active_low_latency":this.isLowLatency$.getValue()&&X?(this.bufferManagers.forEach(U=>U.proceedLowLatencyLive()),D="active_low_latency"):x!==0&&_<E?D="live_forward_buffering":_<E+M&&(D="live_with_target_offset"),isFinite(f)&&(p=f>p?f:p),D==="live_forward_buffering"||D==="live_with_target_offset"){let U=p-(E+L),O=this.normolizeLiveOffset(Math.trunc(x+U/v)),F=Math.abs(O-x),$=0;!f||F<=this.tuning.dashCmafLive.offsetCalculationError?$=x:O>0&&F>this.tuning.dashCmafLive.offsetCalculationError&&($=O),this.manifestUrlString=Oe(this.manifestUrlString,$,2)}(D==="live_with_target_offset"||D==="live_forward_buffering")&&(p=0,yield this.updateLive())}),f=>{this.error$.next({id:"updateLive",category:T.ErrorCategory.VIDEO_PIPELINE,thrown:f,message:"Failed to update live with subscription"})}))}let l=(0,T.merge)(...this.bufferManagers.map(p=>p.fullyBuffered$)).pipe((0,T.map)(()=>this.bufferManagers.every(p=>p.fullyBuffered$.getValue()))),d=(0,T.merge)(...this.bufferManagers.map(p=>p.onLastSegment$)).pipe((0,T.map)(()=>this.bufferManagers.some(p=>p.onLastSegment$.getValue()))),c=(0,T.combine)({allBuffersFull:l,someBufferEnded:d}).pipe((0,T.filterChanged)(),(0,T.map)(({allBuffersFull:p,someBufferEnded:f})=>p&&f),(0,T.filter)(p=>p));if(this.representationSubscription.add((0,T.merge)(this.forceEnded$,c).subscribe(()=>{var p;if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(f=>!f.updating))try{(p=this.source)==null||p.endOfStream()}catch(f){this.error$.next({id:"EndOfStream",category:T.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:f})}})),this.representationSubscription.add((0,T.merge)(...this.bufferManagers.map(p=>p.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 p=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((f,m)=>{var S;p&&(this.timeoutSourceOpenId=setTimeout(()=>{var v;if(((v=this.source)==null?void 0:v.readyState)==="open"){f();return}this.tuning.dash.rejectOnSourceOpenTimeout?m(new Error("Timeout reject when wait sourceopen event")):f()},this.tuning.dash.sourceOpenTimeout)),(S=this.source)==null||S.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),f()},{once:!0})})}if(!this.isLive$.getValue()){let p=[(h=this.manifest.duration)!=null?h:0,...(0,Dd.default)((0,Dd.default)([...this.manifest.streams.audio,...this.manifest.streams.video],f=>f.representations),f=>{let m=[];return f.duration&&m.push(f.duration),gt(f.segmentReference)&&f.segmentReference.totalSegmentsDurationMs&&m.push(f.segmentReference.totalSegmentsDurationMs),m})];this.source.duration=Math.max(...p)/1e3}this.audioBufferManager&&(0,T.isNonNullable)(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready")})}.bind(this));this.tick=()=>{var t,i,r,a;if(!this.element||!this.videoBufferManager||((t=this.source)==null?void 0:t.readyState)!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),(i=this.audioBufferManager)==null||i.maintain(e),(r=this.liveTextManager)==null||r.maintain(e),(this.videoBufferManager.gaps.length||(a=this.audioBufferManager)!=null&&a.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,T.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),n=>{this.error$.next({id:"GapWatchdog",category:T.ErrorCategory.WTF,message:"Error handling gaps",thrown:n})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.fetcher=new Tu({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:e.compatibilityMode,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,R({},e.tuning.dashCmafLive.lowLatency.bufferEstimator))}seekLive(e){return P(this,null,function*(){var r,a,n;(0,T.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,T.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=Oe(this.manifestUrlString,i,2),this.manifest=yield this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,yield(r=this.videoBufferManager)==null?void 0:r.seekLive(this.manifest.streams.video),yield(a=this.audioBufferManager)==null?void 0:a.seekLive(this.manifest.streams.audio),(n=this.liveTextManager)==null||n.seekLive(this.manifest.streams.text))})}initBuffer(){(0,T.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,T.merge)(...tB.filter(e=>e!=="timeupdate").map(e=>(0,T.fromEvent)(this.element,e)),(0,T.fromEvent)(window,"online"),(0,T.fromEvent)(this.element,"timeupdate").pipe((0,T.throttle)(300))).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:T.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,T.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,T.fromEvent)(this.element,"waiting").subscribe(()=>{var t;this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&nt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{var p,f,m,S,v,x,I,E,L,M,_;if(!this.element||((p=this.source)==null?void 0:p.readyState)!=="open")return;let i=this.currentStallDuration$.getValue();i+=50,this.currentStallDuration$.next(i);let r={timeInWaiting:i},a=(0,T.now)(),n=100,o=(m=(f=this.videoBufferManager)==null?void 0:f.lastDataObtainedTimestamp)!=null?m:0;this.videoLastDataObtainedTimestamp$.next(o);let u=(v=(S=this.audioBufferManager)==null?void 0:S.lastDataObtainedTimestamp)!=null?v:0,l=(I=(x=this.videoBufferManager)==null?void 0:x.getForwardBufferDuration())!=null?I:0,d=(L=(E=this.audioBufferManager)==null?void 0:E.getForwardBufferDuration())!=null?L:0,c=l<n&&a-o>this.tuning.dash.crashOnStallTWithoutDataTimeout,h=this.audioBufferManager&&d<n&&a-u>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((c||h)&&i>this.tuning.dash.crashOnStallTWithoutDataTimeout||i>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${i} ms`);if(this.isLive$.getValue()&&i%2e3===0){let G=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(G).catch(X=>{this.error$.next({id:"stallIntervalCallback",category:T.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:X})}),r.liveLastOffset=G}else{let G=this.element.currentTime*1e3;(M=this.videoBufferManager)==null||M.maintain(G),(_=this.audioBufferManager)==null||_.maintain(G),r.position=G}};(t=this.stallWatchdogSubscription)==null||t.unsubscribe(),this.stallWatchdogSubscription=(0,T.interval)(50).subscribe(e,i=>{this.error$.next({id:"StallWatchdogCallback",category:T.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:i})}),this.subscription.add(this.stallWatchdogSubscription)})),this.tick()}switchRepresentation(e,t,i=!1){return P(this,null,function*(){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r==null?void 0:r.switchToWithPreviousAbort(t,i):r==null?void 0:r.switchTo(t,i):r==null?void 0:r.switchToOld(t,i)})}seek(e,t){return P(this,null,function*(){var r,a,n,o,u;(0,T.assertNonNullable)(this.element),(0,T.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((r=this.videoBufferManager.findSegmentStartTime(e))!=null?r:e,(n=(a=this.audioBufferManager)==null?void 0:a.findSegmentStartTime(e))!=null?n:e),this.warmUpMediaSourceIfNeeded(i),nt(this.element.buffered,i)||(yield Promise.all([this.videoBufferManager.abort(),(o=this.audioBufferManager)==null?void 0:o.abort()])),!((0,T.isNullable)(this.element)||(0,T.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),(u=this.audioBufferManager)==null||u.maintain(i),this.element.currentTime=i/1e3)})}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){var i;(0,T.isNonNullable)(this.element)&&(0,T.isNonNullable)(this.source)&&(0,T.isNonNullable)(e)&&((i=this.source)==null?void 0:i.readyState)==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(r=>r.warmUpMediaSource())}get isStreamEnded(){var e;return((e=this.source)==null?void 0:e.readyState)==="ended"}stop(){var e,t,i;(e=this.element)==null||e.querySelectorAll("source").forEach(r=>{URL.revokeObjectURL(r.src),r.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),(t=this.videoBufferManager)==null||t.destroy(),this.videoBufferManager=null,(i=this.audioBufferManager)==null||i.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){var e;return(e=this.manifest)==null?void 0:e.streams}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){var e;this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),((e=this.source)==null?void 0:e.readyState)==="open"&&Array.from(this.source.sourceBuffers).every(t=>!t.updating)&&this.source.endOfStream(),this.source=null}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}updateLive(){return P(this,null,function*(){var e,t;this.isUpdatingLive=!0,this.manifest=yield this.updateManifest(),this.manifest&&((e=this.bufferManagers)==null||e.forEach(i=>i.updateLive(this.manifest)),(t=this.liveTextManager)==null||t.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)(o.persistent||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}}};var Mu=class{constructor(e,t){this.fov=e,this.orientation=t}};var Lu=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/ft(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!=null?e:this.rotationSpeed.x,this.rotationSpeed.y=t!=null?t:this.rotationSpeed.y,this.rotationSpeed.z=i!=null?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=R({},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*ft(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 Cy=`attribute vec2 a_vertex;
|
|
71
15
|
attribute vec2 a_texel;
|
|
72
16
|
|
|
73
17
|
varying vec2 v_texel;
|
|
@@ -78,7 +22,7 @@ void main(void) {
|
|
|
78
22
|
// save texel vector to pass to fragment shader
|
|
79
23
|
v_texel = a_texel;
|
|
80
24
|
}
|
|
81
|
-
`;var
|
|
25
|
+
`;var Vy=`#ifdef GL_ES
|
|
82
26
|
precision highp float;
|
|
83
27
|
precision highp int;
|
|
84
28
|
#else
|
|
@@ -121,6 +65,13 @@ void main(void) {
|
|
|
121
65
|
// sample using new coordinates
|
|
122
66
|
gl_FragColor = texture2D(u_texture, tc);
|
|
123
67
|
}
|
|
124
|
-
`;var yn=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 vn(this.params.fov,this.params.orientation),this.cameraRotationManager=new Sn(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"),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(r,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(iS,this.gl.VERTEX_SHADER),i=this.createShader(rS,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,s=e-i,n=t-r,o=e+i,u=t-r,l=e+i,c=t+r,d=e-i,m=t+r;return[s,n,o,u,l,c,d,m]}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 ye=require("@vkontakte/videoplayer-shared/es2015"),Sl=class{constructor(){this.isSeeked$=new ye.ValueSubject(!1);this.isBuffering$=new ye.ValueSubject(!1);this.currentStallsCount=0;this.maxQualityLimit=void 0;this.lastUniqueVideoTrackSelectedTimestamp=0;this.predictedThroughputWithoutData=0;this.subscription=new ye.Subscription;this.severeStallOccurred$=new ye.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,ye.combine)({isBuffering:this.isBuffering$,isSeeked:this.isSeeked$}).pipe((0,ye.debounce)(this.qualityLimitsOnStall.stallDurationToBeCount),(0,ye.filter)(({isBuffering:t,isSeeked:i})=>t&&!i)).subscribe(t=>{this.currentStallsCount++})),this.subscription.add((0,ye.combine)({currentStallDuration:this.currentStallDuration$}).subscribe(({currentStallDuration:t})=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:s,ignoreStallsOnSeek:n}=this.qualityLimitsOnStall;if((0,ye.isNullable)(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),c=(0,ye.now)(),d=r&&this.currentStallsCount>=r,m=i&&c-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&c-l>=i+o&&t>=i;(d||m)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,(0,ye.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){var t;((t=this.lastUniqueVideoTrackSelected)==null?void 0:t.id)!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=(0,ye.now)(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe()}},aS=Sl;var je=require("@vkontakte/videoplayer-shared/es2015"),Tn=class{constructor(){this.subscription=new je.Subscription;this.pipSize$=new je.ValueSubject(void 0);this.videoSize$=new je.ValueSubject(void 0);this.elementSize$=new je.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=je.noop}connect({observableVideo:e,video:t}){let i=r=>{let s=r.target;this.pipSize$.next({width:s.width,height:s.height})};this.subscription.add((0,je.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,je.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,je.map)(({videoSize:r,inPip:s,pipSize:n})=>s?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 wi=class{constructor(e){this.subscription=new j.Subscription;this.videoState=new Y("stopped");this.droppedFramesManager=new rn;this.stallsManager=new aS;this.elementSizeManager=new Tn;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Yr;this.audioTrackSwitchHistory=new Yr;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==null?void 0: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"),M(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"),M(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&M(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==null?void 0:i.to)==="playing"&&M(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&M(this.params.desiredState.playbackState,"paused");return;default:return(0,j.assertNever)(e)}}};this.init3DScene=e=>{var i,r,s;if(this.scene3D)return;this.scene3D=new yn(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:((i=e.projectionData)==null?void 0:i.pose.yaw)||0,y:((r=e.projectionData)==null?void 0:r.pose.pitch)||0,z:((s=e.projectionData)==null?void 0:s.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 et(e.source.url),this.params=e,this.video=Ne(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(Pe(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 gn({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=Ue(this.video);this.subscription.add(()=>i.destroy());let r=this.constructor.name,s=o=>{e.error$.next({id:r,category:j.ErrorCategory.WTF,message:`${r} 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:r,connect:s}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,j.filter)(l=>!!l.length),(0,j.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,j.map)(l=>l.to.state!=="none"),(0,j.filterChanged)());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$.pipe((0,j.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,j.filter)(j.isNonNullable),(0,j.once)()),e.firstBytesEvent$),s(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),s(this.videoState.stateChangeEnded$.pipe((0,j.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(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(Tt(this.video,t.isLooped,r)),this.subscription.add(qe(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(Ze(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),s(tt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),M(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),M(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,j.assertNonNullable)(c,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let m=[];for(let h of c.audio){m.push(ol(h));let f=[];for(let g of h.representations){let S=_v(g);f.push(S),this.audioTracksMap.set(S,{stream:h,representation:g})}this.audioStreamsMap.set(h,f)}this.params.output.availableAudioStreams$.next(m)}let d=[];for(let m of c.video){d.push(ul(m));let h=[];for(let f of m.representations){let g=Bv(U(L({},f),{streamId:m.id}));g&&(h.push(g),this.videoTracksMap.set(g,{stream:m,representation:f}))}this.videoStreamsMap.set(m,h)}this.params.output.availableVideoStreams$.next(d);for(let m of c.text)for(let h of m.representations){let f=Nv(m,h);this.textTracksMap.set(f,{stream:m,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,j.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,j.fromEvent)(this.video,"progress")).pipe((0,j.filter)(()=>this.videoTracksMap.size>0)).subscribe(()=>A(this,null,function*(){let l=this.player.state$.getState(),c=this.player.state$.getTransition();if(!(0,sS.default)(["manifest_ready","running"],l)||c)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let d=this.selectVideoAudioRepresentations();if(!d)return;let[m,h]=d,f=[...this.videoTracksMap.keys()].find(S=>{var y;return((y=this.videoTracksMap.get(S))==null?void 0:y.representation.id)===m.id});(0,j.isNonNullable)(f)&&(this.stallsManager.lastVideoTrackSelected=f);let g=this.params.desiredState.autoVideoTrackLimits.getTransition();if(g&&this.params.output.autoVideoTrackLimits$.next(g.to),l==="manifest_ready")yield this.player.initRepresentations(m.id,h==null?void 0:h.id,this.params.sourceHls);else if(yield this.player.switchRepresentation("video",m.id),h){let S=!!t.audioStream.getTransition();yield this.player.switchRepresentation("audio",h.id,S)}}),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,j.filterChanged)()).subscribe(l=>{let c=[...this.videoTracksMap.entries()].find(([,{representation:f}])=>f.id===l);if(!c){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[d,{stream:m}]=c,h=this.params.desiredState.videoStream.getTransition();h&&h.to&&h.to.id===m.id&&this.params.desiredState.videoStream.setState(h.to),e.currentVideoTrack$.next(d),e.currentVideoStream$.next(ul(m))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,j.filterChanged)()).subscribe(l=>{let c=[...this.audioTracksMap.entries()].find(([,{representation:f}])=>f.id===l);if(!c){e.currentAudioStream$.next(void 0);return}let[d,{stream:m}]=c,h=this.params.desiredState.audioStream.getTransition();h&&h.to&&h.to.id===m.id&&this.params.desiredState.audioStream.setState(h.to),e.currentAudioStream$.next(ol(m))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{var c,d;if(l!=null&&l.is3dVideo&&((c=this.params.tuning.spherical)!=null&&c.enabled))try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(m){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${m}`})}else this.destroy3DScene(),(d=this.params.tuning.spherical)!=null&&d.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,j.map)(({to:l})=>l==="ready"),(0,j.filterChanged)());this.subscription.add((0,j.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,j.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),d=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(d)})),this.subscription.add((0,j.merge)(o,this.player.state$.stateChangeEnded$,(0,j.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,j.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,j.observableFrom)(["init"])).pipe((0,j.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var J,Z,ne,k,te,_,ie,K,ue,C,Q,oe,$;if(this.player.isStreamEnded)return;let{desiredState:e,output:t}=this.params,i=e.autoVideoTrackSwitching.getState(),r=(J=e.videoTrack.getState())==null?void 0:J.id,n=[...this.videoTracksMap.keys()].find(({id:N})=>N===r),o=t.currentVideoTrack$.getValue(),u=((k=(ne=e.videoStream.getState())!=null?ne:n&&((Z=this.videoTracksMap.get(n))==null?void 0:Z.stream))!=null?k:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!u)return;let l=[...this.videoStreamsMap.keys()].find(({id:N})=>N===u.id),c=l&&this.videoStreamsMap.get(l);if(!c)return;let d=ar(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=i?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let h=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,f=Math.min(d/Math.min(m,h||1/0),1),g=(te=e.audioStream.getState())!=null?te:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,S=(_=[...this.audioStreamsMap.keys()].find(({id:N})=>N===(g==null?void 0:g.id)))!=null?_:this.audioStreamsMap.keys().next().value,y=0;if(S){if(n&&!i){let N=en(n,c,(ie=this.audioStreamsMap.get(S))!=null?ie:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);y=Math.max(y,(K=N==null?void 0:N.bitrate)!=null?K:-1/0)}if(o){let N=en(o,c,(ue=this.audioStreamsMap.get(S))!=null?ue:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);y=Math.max(y,(C=N==null?void 0:N.bitrate)!=null?C:-1/0)}}let I=ei(c,{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:y,forwardBufferHealth:f,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}),x=i?I!=null?I:n:n!=null?n:I,w=S&&qb(x,c,(Q=this.audioStreamsMap.get(S))!=null?Q:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:f,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),P=(oe=this.videoTracksMap.get(x))==null?void 0:oe.representation,O=w&&(($=this.audioTracksMap.get(w))==null?void 0:$.representation);if(P&&O)return[P,O];if(P&&!O&&this.audioTracksMap.size===0)return[P,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:j.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),Fe(this.video),this.tracer.end()}};var Ba=class extends wi{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 de=require("@vkontakte/videoplayer-shared/es2015");var _a=class extends wi{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:r,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 de.ValueSubject(1);s(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe((0,de.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,de.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,de.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,de.filter)(o=>(0,de.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,de.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,de.merge)(i.playbackRateState$,new de.ValueSubject(1))}).pipe((0,de.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),c=t.position$.getValue(),{playbackCatchupSpeedup:d}=this.params.tuning.dashCmafLive.lowLatency;c||u<1-d||this.video.paused||(0,de.isNullable)(l)||(e=o-l)})).add((0,de.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,de.merge)(i.playbackRateState$,new de.ValueSubject(1))}).pipe((0,de.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:d}=this.params.tuning.dashCmafLive.lowLatency;if(!c&&!this.video.paused&&l>=1-d||(0,de.isNullable)(o)||(0,de.isNullable)(u))return;let m=-1*(u-o-e);t.position$.next(Math.min(m,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(o=>{if(o){let u=Fv(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 nS=W(Hs(),1);var X=require("@vkontakte/videoplayer-shared/es2015");var pt={};var cr=(a,e)=>new X.Observable(t=>{let i=(r,s)=>t.next(s);return a.on(e,i),()=>a.off(e,i)}),Na=class{constructor(e){this.subscription=new X.Subscription;this.videoState=new Y("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==null?void 0: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,X.assertNever)(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:(0,X.assertNever)(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:(0,X.assertNever)(e)}break;case"paused":switch(e){case"paused":break;case"stopped":this.prepare();break;case"ready":this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused");break;case"playing":this.pause();break;default:(0,X.assertNever)(e)}break;default:(0,X.assertNever)(t)}};this.textTracksManager=new et(e.source.url),this.video=Ne(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(Pe(this.params.source.url)),this.loadHlsJs()}destroy(){var e,t;this.subscription.unsubscribe(),this.trackLevels.clear(),this.textTracksManager.destroy(),(e=this.hls)==null||e.detachMedia(),(t=this.hls)==null||t.destroy(),this.params.output.element$.next(void 0),Fe(this.video)}loadHlsJs(){let e=!1,t=r=>{e||this.params.output.error$.next({id:r==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:X.ErrorCategory.NETWORK,message:"Failed to load Hls.js",thrown:r}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,nS.default)(import("hls.js").then(r=>{e||(pt.Hls=r.default,pt.Events=r.default.Events,this.init())},t),()=>{window.clearTimeout(i),e=!0})}init(){(0,X.assertNonNullable)(pt.Hls,"hls.js not loaded"),this.hls=new pt.Hls({fragLoadingMaxRetry:5,levelLoadingMaxRetry:2,manifestLoadingMaxRetry:2,fragLoadingMaxRetryTimeout:16e3,manifestLoadingMaxRetryTimeout:2e3,levelLoadingMaxRetryTimeout:2e3}),this.subscribe(),this.videoState.setState("stopped")}subscribe(){(0,X.assertNonNullable)(pt.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:X.ErrorCategory.WTF,message:"HlsJsProvider internal logic error",thrown:l})},r=Ue(this.video);this.subscription.add(()=>r.destroy());let s=(l,c)=>this.subscription.add(l.subscribe(c,i));s(r.timeUpdate$,t.position$),s(r.durationChange$,t.duration$),s(r.ended$,t.endedEvent$),s(r.looped$,t.loopedEvent$),s(r.error$,t.error$),s(r.isBuffering$,t.isBuffering$),s(r.currentBuffer$,t.currentBuffer$),s(r.loadStart$,t.firstBytesEvent$),s(r.loadedMetadata$,t.loadedMetadataEvent$),s(r.playing$,t.firstFrameEvent$),s(r.canplay$,t.canplay$),s(r.seeked$,t.seekedEvent$),s(r.inPiP$,t.inPiP$),s(r.inFullscreen$,t.inFullscreen$),this.subscription.add(Tt(this.video,e.isLooped,i)),this.subscription.add(qe(this.video,e.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$)),this.subscription.add(Ze(this.video,e.playbackRate,r.playbackRateState$,i)),s(tt(this.video),t.elementVisible$),s(this.videoState.stateChangeEnded$.pipe((0,X.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(cr(this.hls,pt.Events.ERROR).subscribe(l=>{var c;l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:X.ErrorCategory.WTF,message:`HlsJs fatal ${l.type} ${l.details}, ${(c=l.err)==null?void 0:c.message} ${l.reason}`,thrown:l.error})})),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),M(e.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),M(e.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var l;((l=this.videoState.getTransition())==null?void 0:l.to)==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),s(cr(this.hls,pt.Events.MANIFEST_PARSED).pipe((0,X.map)(({levels:l})=>l.reduce((c,d)=>{var I,x;let m=d.name||d.height.toString(10),{width:h,height:f}=d,g=(x=Xt((I=d.attrs.QUALITY)!=null?I:""))!=null?x:(0,X.videoSizeToQuality)({width:h,height:f});if(!g)return c;let S=d.attrs["FRAME-RATE"]?parseFloat(d.attrs["FRAME-RATE"]):void 0,y={id:m.toString(),quality:g,bitrate:d.bitrate/1e3,size:{width:h,height:f},fps:S};return this.trackLevels.set(m,{track:y,level:d}),c.push(y),c},[]))),t.availableVideoTracks$),s(cr(this.hls,pt.Events.MANIFEST_PARSED),l=>{if(l.subtitleTracks.length>0){let c=[];for(let d of l.subtitleTracks){let m=d.name,h=d.attrs.URI||"",f=d.lang;c.push({id:m,url:h,language:f,type:"internal"})}e.internalTextTracks.startTransitionTo(c)}}),s(cr(this.hls,pt.Events.LEVEL_LOADING).pipe((0,X.map)(({url:l})=>Pe(l))),t.hostname$),s(cr(this.hls,pt.Events.FRAG_CHANGED),l=>{var m,h,f,g;let{video:c,audio:d}=l.frag.elementaryStreams;t.currentVideoSegmentLength$.next((((m=c==null?void 0:c.endPTS)!=null?m:0)-((h=c==null?void 0:c.startPTS)!=null?h:0))*1e3),t.currentAudioSegmentLength$.next((((f=d==null?void 0:d.endPTS)!=null?f:0)-((g=d==null?void 0:d.startPTS)!=null?g:0))*1e3)}),this.subscription.add(Kt(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=>{var c;return(c=Array.from(this.trackLevels.values()).find(({level:d})=>d===l))==null?void 0:c.track},o=cr(this.hls,pt.Events.LEVEL_SWITCHED).pipe((0,X.map)(({level:l})=>n(this.hls.levels[l])));o.pipe((0,X.filter)(X.isNonNullable)).subscribe(t.currentVideoTrack$,i),this.subscription.add(Kt(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{var f;if((0,X.isNullable)(l))return;let c=(f=this.trackLevels.get(l.id))==null?void 0:f.level;if(!c)return;let d=this.hls.levels.indexOf(c),m=this.hls.currentLevel,h=this.hls.levels[m];!h||c.bitrate>h.bitrate?this.hls.nextLevel=d:(this.hls.loadLevel=d,this.hls.loadLevel=d)},{changed$:o,onError:i})),s(r.progress$,()=>{this.params.dependencies.throughputEstimator.addRawThroughput(this.hls.bandwidthEstimate/1e3)}),this.textTracksManager.connect(this.video,e,t);let u=(0,X.merge)(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,X.observableFrom)(["init"])).pipe((0,X.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)}playIfAllowed(){return A(this,null,function*(){this.videoState.startTransitionTo("playing"),(yield He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).catch(t=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:X.ErrorCategory.DOM,thrown:t})))||(this.videoState.setState("paused"),M(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"),M(this.params.desiredState.playbackState,"stopped",!0)}};var oS="X-Playback-Duration",yl=a=>A(void 0,null,function*(){var r;let e=yield Et(a),t=yield e.text(),i=(r=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t))==null?void 0:r[1];return i?parseInt(i,10):e.headers.has(oS)?parseInt(e.headers.get(oS),10):void 0});var z=require("@vkontakte/videoplayer-shared/es2015");var Il=W(_o(),1);var In=require("@vkontakte/videoplayer-shared/es2015");var d$=a=>{let e=null;if(a.QUALITY&&(e=Xt(a.QUALITY)),!e&&a.RESOLUTION){let[t,i]=a.RESOLUTION.split("x").map(r=>parseInt(r,10));e=(0,In.videoSizeToQuality)({width:t,height:i})}return e!=null?e:null},p$=(a,e)=>{var s,n;let t=a.split(`
|
|
125
|
-
|
|
126
|
-
`),s=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:s,to:s+c},url:l}),s=s+c,!i.segmentStartTime){let d=new Date(i.vkStartTime).valueOf(),m=new Date(i.programDateTime).valueOf();i.segmentStartTime=m-d}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,Ke.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([U(L({},this.currentTextTrackData.textTrack),{url:n.url,isAuto:!0})]);break}}}fetchNextManifestData(){return A(this,null,function*(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new Le;let{textTracks:e}=yield this.fetchManifestData(),t=yield 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}})}fetchManifestData(){return A(this,null,function*(){var t;let e=(t=this.prepareUrl)!=null?t:this.params.sourceUrl;return yield this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})})}error(e,t){this.error$.next({id:"[LiveTextManager][HLS_LIVE_CMAF]",category:Ke.ErrorCategory.WTF,thrown:t,message:e})}};var Fa=class{constructor(e){this.subscription=new z.Subscription;this.videoState=new Y("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new z.ValueSubject([]);this.liveOffset=new Ti;this.manifestStartTime$=new z.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(),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"),M(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 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==null?void 0: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"?M(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),M(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==null?void 0:r.to)==="playing"&&M(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==null?void 0:r.to)==="paused"&&(M(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return(0,z.assertNever)(t)}};var i;this.params=e,this.video=Ne(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:z.VideoQuality.INVARIANT,url:this.params.source.url};let t=(r,s)=>En(r,this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},s);this.params.tuning.useHlsLiveNewTextManager?this.liveTextManager=new xn(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new et(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:r,textTracks:s})=>{var n;r.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:z.ErrorCategory.WTF,message:"HlsLiveProvider: there are no qualities in manifest"}),(n=this.liveTextManager)==null||n.processTextTracks(s,this.params.source.url),this.manifests$.next([this.masterManifest,...r])}).catch(r=>{this.params.output.error$.next({id:"ExtractHlsQualities",category:z.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:r})}),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(Pe(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new z.ValueSubject((i=e.source.maxSeekBackTime)!=null?i:1/0),this.subscribe()}selectManifest(){var u,l,c,d;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),s=(d=(c=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?c:(l=t.getState())==null?void 0:l.id)!=null?d:"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":s;return i&&!r&&t.startTransitionTo(this.masterManifest),n.find(m=>m.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsLiveProvider",category:z.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=Ue(this.video);this.subscription.add(()=>r.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u,i));s(r.ended$,e.endedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(r.loadedMetadata$,e.firstBytesEvent$),s(r.loadedMetadata$,e.loadedMetadataEvent$),s(r.playing$,e.firstFrameEvent$),s(r.canplay$,e.canplay$),s(r.inPiP$,e.inPiP$),s(r.inFullscreen$,e.inFullscreen$),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(qe(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ze(this.video,t.playbackRate,r.playbackRateState$,i)),s(tt(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(r.playing$.subscribe(()=>{this.videoState.setState("playing"),M(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),M(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var o;((o=this.videoState.getTransition())==null?void 0:o.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,z.filterChanged)(),(0,z.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,z.isNonNullable)(l.to)){let d=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let m=this.manifests$.getValue().find(h=>h.id===d);m&&(this.params.output.currentVideoTrack$.next(m),this.params.output.hostname$.next(Pe(m.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(()=>{var u,l,c;let o=(c=(l=(u=this.video)==null?void 0:u.getStartDate)==null?void 0:l.call(u))==null?void 0:c.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add((0,z.combine)({startTime:this.manifestStartTime$.pipe((0,z.filter)(z.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,z.map)(o=>o.map(({id:u,quality:l,size:c,bandwidth:d,fps:m})=>({id:u,quality:l,size:c,fps:m,bitrate:d})))).subscribe(this.params.output.availableVideoTracks$,i));let n=(0,z.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,z.observableFrom)(["init"])).pipe((0,z.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){var e,t;this.subscription.unsubscribe(),(e=this.textTracksManager)==null||e.destroy(),(t=this.liveTextManager)==null||t.destroy(),this.params.output.element$.next(void 0),Fe(this.video)}prepare(){var o,u,l;let e=this.selectManifest();if((0,z.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:c,min:d}=(u=(o=t==null?void 0:t.to)!=null?o:i)!=null?u:{};for(let[m,h]of[[c,"mq"],[d,"lq"]]){let f=String(parseFloat(m||""));h&&m&&r.searchParams.set(h,f)}}let s=this.params.format==="HLS_LIVE_CMAF"?2:0,n=$e(r.toString(),this.liveOffset.getTotalOffset(),s);(l=this.liveTextManager)==null||l.prepare(n),this.video.setAttribute("src",n),this.video.load(),yl(n).then(c=>{var d;if(!(0,z.isNullable)(c))this.maxSeekBackTime$.next(c);else{let m=(d=this.params.source.maxSeekBackTime)!=null?d:this.maxSeekBackTime$.getValue();((0,z.isNullable)(m)||!isFinite(m))&&Et(n).then(h=>h.text()).then(h=>{var g;let f=(g=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(h))==null?void 0:g[1];if(f){let S=new URL(f,n).toString();yl(S).then(y=>{(0,z.isNullable)(y)||this.maxSeekBackTime$.next(y)})}}).catch(()=>{})}})}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),M(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:z.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 ae=require("@vkontakte/videoplayer-shared/es2015");var qa=class{constructor(e){this.subscription=new ae.Subscription;this.videoState=new Y("stopped");this.manifests$=new ae.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(),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"),M(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 c=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(c);let{currentTime:d}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:d*1e3,forcePrecise:!0});return}switch((r==null?void 0:r.to)!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?M(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),M(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==null?void 0:r.to)==="playing"&&M(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(r==null?void 0:r.to)==="paused"&&M(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return(0,ae.assertNever)(t)}};this.textTracksManager=new et(e.source.url),this.params=e,this.video=Ne(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:ae.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(Pe(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),En($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:ae.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:t})),this.subscribe()}selectManifest(){var u,l,c,d;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),s=(d=(c=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?c:(l=t.getState())==null?void 0:l.id)!=null?d:"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":s;return i&&(!r||!r.from)&&t.startTransitionTo(this.masterManifest),n.find(m=>m.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsProvider",category:ae.ErrorCategory.WTF,message:"HlsProvider internal logic error",thrown:o})},r=Ue(this.video);this.subscription.add(()=>r.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u));if(s(r.timeUpdate$,e.position$),s(r.durationChange$,e.duration$),s(r.ended$,e.endedEvent$),s(r.looped$,e.loopedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(r.loadedMetadata$,e.firstBytesEvent$),s(r.loadedMetadata$,e.loadedMetadataEvent$),s(r.playing$,e.firstFrameEvent$),s(r.canplay$,e.canplay$),s(r.seeked$,e.seekedEvent$),s(r.inPiP$,e.inPiP$),s(r.inFullscreen$,e.inFullscreen$),s(this.videoState.stateChangeEnded$.pipe((0,ae.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(Tt(this.video,t.isLooped,i)),this.subscription.add(qe(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ze(this.video,t.playbackRate,r.playbackRateState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),M(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),M(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var o;((o=this.videoState.getTransition())==null?void 0:o.to)==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i).add(r.loadedMetadata$.subscribe(()=>{var h;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,ae.isNonNullable)(l.to)){let f=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let g=this.manifests$.getValue().find(S=>S.id===f);g&&(this.params.output.currentVideoTrack$.next(g),this.params.output.hostname$.next(Pe(g.url)))}let d=this.params.desiredState.playbackRate.getState(),m=(h=this.params.output.element$.getValue())==null?void 0:h.playbackRate;if(d!==m){let f=this.params.output.element$.getValue();f&&(this.params.desiredState.playbackRate.setState(d),f.playbackRate=d)}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,ae.map)(o=>o.map(({id:u,quality:l,size:c,bandwidth:d,fps:m})=>({id:u,quality:l,size:c,fps:m,bitrate:d})))).subscribe(this.params.output.availableVideoTracks$,i)),!ee.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add((0,ae.merge)((0,ae.fromEvent)(o,"addtrack"),(0,ae.fromEvent)(o,"removetrack"),(0,ae.fromEvent)(o,"change"),(0,ae.observableFrom)(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=(0,ae.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,ae.observableFrom)(["init"])).pipe((0,ae.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Fe(this.video)}prepare(){var s,n;let e=this.selectManifest();if((0,ae.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}=(n=(s=t==null?void 0:t.to)!=null?s:i)!=null?n:{};for(let[l,c]of[[o,"mq"],[u,"lq"]]){let d=String(parseFloat(l||""));c&&l&&r.searchParams.set(c,d)}}this.video.setAttribute("src",r.toString()),this.video.load()}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ae.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var lS=W(Qi(),1),El=W(tr(),1),cS=W(Jt(),1);var he=require("@vkontakte/videoplayer-shared/es2015");var Ua=class{constructor(e){this.subscription=new he.Subscription;this.videoState=new Y("stopped");this.trackUrls={};this.textTracksManager=new et;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"),M(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==null?void 0:i.to)!=="paused"&&o.state==="requested"&&this.seek(o.position),e){case"ready":t==="ready"?M(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),M(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==null?void 0:i.to)==="playing"&&M(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&M(this.params.desiredState.playbackState,"paused");return;default:return(0,he.assertNever)(e)}};this.params=e,this.video=Ne(e.container,e.tuning),this.params.output.element$.next(this.video),(0,lS.default)(this.params.source).reverse().forEach(([t,i],r)=>{let s=r.toString(10);this.trackUrls[s]={track:{quality:t,id:s},url:i}}),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next((0,El.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:he.ErrorCategory.WTF,message:"MpegProvider internal logic error",thrown:o})},r=Ue(this.video);this.subscription.add(()=>r.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u,i));s(r.timeUpdate$,e.position$),s(r.durationChange$,e.duration$),s(r.ended$,e.endedEvent$),s(r.looped$,e.loopedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(r.loadedMetadata$,e.firstBytesEvent$),s(r.loadedMetadata$,e.loadedMetadataEvent$),s(r.playing$,e.firstFrameEvent$),s(r.canplay$,e.canplay$),s(r.seeked$,e.seekedEvent$),s(r.inPiP$,e.inPiP$),s(r.inFullscreen$,e.inFullscreen$),s(this.videoState.stateChangeEnded$.pipe((0,he.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(Tt(this.video,t.isLooped,i)),this.subscription.add(qe(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ze(this.video,t.playbackRate,r.playbackRateState$,i)),s(tt(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),M(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),M(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var u,l;((u=this.videoState.getTransition())==null?void 0:u.to)==="ready"&&this.videoState.setState("ready");let o=this.params.desiredState.videoTrack.getTransition();if(o&&(0,he.isNonNullable)(o.to)){this.params.desiredState.videoTrack.setState(o.to),this.params.output.currentVideoTrack$.next(this.trackUrls[o.to.id].track);let c=this.params.desiredState.playbackRate.getState(),d=(l=this.params.output.element$.getValue())==null?void 0:l.playbackRate;if(c!==d){let m=this.params.output.element$.getValue();m&&(this.params.desiredState.playbackRate.setState(c),m.playbackRate=c)}}this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.textTracksManager.connect(this.video,t,e);let n=(0,he.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,he.observableFrom)(["init"])).pipe((0,he.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),Fe(this.video)}prepare(){var i;let e=(i=this.params.desiredState.videoTrack.getState())==null?void 0:i.id;(0,he.assertNonNullable)(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];(0,he.assertNonNullable)(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=Ca(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(Pe(t))}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:he.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}handleQualityLimitTransition(e){var l,c;this.params.output.autoVideoTrackLimits$.next(e);let t=d=>{this.params.output.currentVideoTrack$.next(d),this.params.desiredState.videoTrack.startTransitionTo(d)},i=d=>{let m=ei(n,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:d,abrLogger:this.params.dependencies.abrLogger});t(m)},r=(l=this.params.output.currentVideoTrack$.getValue())==null?void 0:l.quality,s=!!(e.max||e.min),n=(0,El.default)(this.trackUrls).map(d=>d.track);if(!r||!s||Wr({limits:e,lowestAvailableQuality:(c=(0,cS.default)(n,-1))==null?void 0:c.quality,highestAvailableQuality:n[0].quality})){i();return}let o=e.max?(0,he.isLowerOrEqual)(r,e.max):!0,u=e.min?(0,he.isHigherOrEqual)(r,e.min):!0;o&&u||i(e)}};var me=require("@vkontakte/videoplayer-shared/es2015");var pS=require("@vkontakte/videoplayer-shared/es2015");var dS=["stun:videostun.mycdn.me:80"],m$=1e3,f$=3,xl=()=>null,Pn=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=xl;this.externalStopCallback=xl;this.externalErrorCallback=xl;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}}handleUpdateMessage(e){return A(this,null,function*(){try{let t=yield this.createOffer();this.peerConnection&&(yield this.peerConnection.setLocalDescription(t)),this.handleAnswer(e.sdp)}catch(t){this.handleRTCError(t)}})}handleLogin(){return A(this,null,function*(){try{let e={iceServers:[{urls:dS}]};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=yield this.createOffer();yield this.peerConnection.setLocalDescription(t),this.send({type:this.signalingType,inviteType:"OFFER",streamKey:this.streamKey,sdp:t.sdp,callSupport:!1})}catch(e){this.handleRTCError(e)}})}handleAnswer(e){return A(this,null,function*(){try{this.peerConnection&&(yield this.peerConnection.setRemoteDescription(new RTCSessionDescription({type:"answer",sdp:e})))}catch(t){this.handleRTCError(t)}})}handleCandidate(e){return A(this,null,function*(){if(e)try{this.peerConnection&&(yield 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:pS.ErrorCategory.WTF,message:e.message})}onPeerConnectionStream(e){return A(this,null,function*(){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()))}}createOffer(){return A(this,null,function*(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw new Error("Can not create offer - no peer connection instance ");let t=yield 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(t){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),m$)}normalizeOptions(e={}){let t={stunServerList:dS,maxRetryNumber:f$,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var Ha=class{constructor(e){this.videoState=new Y("stopped");this.maxSeekBackTime$=new me.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"),M(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"),M(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==null?void 0:i.to)==="playing"&&M(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&M(this.params.desiredState.playbackState,"paused");return;default:return(0,me.assertNever)(e)}};this.subscription=new me.Subscription,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=Ne(e.container,e.tuning),this.liveStreamClient=new Pn(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),Fe(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:me.ErrorCategory.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add((0,me.merge)(this.videoState.stateChangeStarted$.pipe((0,me.map)(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,me.map)(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let r=Ue(this.video);this.subscription.add(()=>r.destroy());let s=(n,o)=>this.subscription.add(n.subscribe(o,i));s(r.timeUpdate$,e.liveTime$),s(r.ended$,e.endedEvent$),s(r.looped$,e.loopedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(tt(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(()=>{var n;((n=this.videoState.getTransition())==null?void 0:n.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(qe(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,me.assertNever)(n.to)}},i)).add((0,me.merge)(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,me.observableFrom)(["init"])).pipe((0,me.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(Pe(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:me.VideoQuality.INVARIANT}),this.video.srcObject=e,M(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:me.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),M(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:me.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var ja=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 T=require("@vkontakte/videoplayer-shared/es2015");var Ot=require("@vkontakte/videoplayer-shared/es2015"),hS=a=>new Ot.Observable(e=>{let t=new Ot.Subscription,i=a.desiredPlaybackState$.stateChangeStarted$.pipe((0,Ot.map)(({from:l,to:c})=>`${l}-${c}`)),r=a.desiredPlaybackState$.stateChangeEnded$,s=a.providerChanged$.pipe((0,Ot.map)(({type:l})=>l!==void 0)),n=new Ot.Subject,o=0,u="unknown";return t.add(i.subscribe(l=>{o&&window.clearTimeout(o),u=l,o=window.setTimeout(()=>n.next(l),a.maxTransitionInterval)})),t.add(r.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),a.maxTransitionInterval)))})),t.add(n.subscribe(e)),()=>{window.clearTimeout(o),t.unsubscribe()}});var it=require("@vkontakte/videoplayer-shared/es2015");function mS(){return new(window.AudioContext||window.webkitAudioContext)}var Qa=class Qa{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new Le;this.subscriptions=new it.Subscription;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe((0,it.filter)(s=>!!s.type),(0,it.once)()).subscribe(({type:s})=>this.subscribe(s)))}subscribe(e){ee.browser.isSafari&&e!=="MPEG"||this.subscriptions.add((0,it.combine)({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe((0,it.filter)(({playbackState:t,video:i,volume:{muted:r,volume:s}})=>t==="playing"&&!!i&&!r&&!!s),(0,it.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}initAudioContextOnce(e){return A(this,null,function*(){let{volumeMultiplier:t}=this,i=mS();this.audioContext=i;let r=i.createGain();if(this.gainNode=r,r.gain.value=t,r.connect(i.destination),i.state==="suspended"&&(yield i.resume(),this.destroyController.signal.aborted))return!1;let s=i.createMediaElementSource(e);return this.mediaElementSource=s,s.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){var t;this.volumeMultiplierError$.next({id:Qa.errorId,category:it.ErrorCategory.VIDEO_PIPELINE,message:(t=e==null?void 0:e.message)!=null?t:`${Qa.errorId} exception`,thrown:e})}};Qa.errorId="VolumeMultiplierManager";var dr=Qa;var b$={chunkDuration:5e3,maxParallelRequests:5},Ga=class{constructor(e){this.current$=new T.ValueSubject({type:void 0});this.providerError$=new T.Subject;this.noAvailableProvidersError$=new T.Subject;this.volumeMultiplierError$=new T.Subject;this.providerOutput={position$:new T.ValueSubject(0),duration$:new T.ValueSubject(1/0),volume$:new T.ValueSubject({muted:!1,volume:1}),availableVideoStreams$:new T.ValueSubject([]),currentVideoStream$:new T.ValueSubject(void 0),availableVideoTracks$:new T.ValueSubject([]),currentVideoTrack$:new T.ValueSubject(void 0),availableAudioStreams$:new T.ValueSubject([]),currentAudioStream$:new T.ValueSubject(void 0),availableAudioTracks$:new T.ValueSubject([]),currentVideoSegmentLength$:new T.ValueSubject(0),currentAudioSegmentLength$:new T.ValueSubject(0),isAudioAvailable$:new T.ValueSubject(!0),autoVideoTrackLimitingAvailable$:new T.ValueSubject(!1),autoVideoTrackLimits$:new T.ValueSubject(void 0),currentBuffer$:new T.ValueSubject(void 0),isBuffering$:new T.ValueSubject(!0),error$:new T.Subject,fetcherError$:new T.Subject,fetcherRecoverableError$:new T.Subject,warning$:new T.Subject,willSeekEvent$:new T.Subject,soundProhibitedEvent$:new T.Subject,seekedEvent$:new T.Subject,loopedEvent$:new T.Subject,endedEvent$:new T.Subject,firstBytesEvent$:new T.Subject,loadedMetadataEvent$:new T.Subject,firstFrameEvent$:new T.Subject,canplay$:new T.Subject,isLive$:new T.ValueSubject(void 0),isLiveEnded$:new T.ValueSubject(null),isLowLatency$:new T.ValueSubject(!1),canChangePlaybackSpeed$:new T.ValueSubject(!0),liveTime$:new T.ValueSubject(void 0),liveBufferTime$:new T.ValueSubject(void 0),liveLatency$:new T.ValueSubject(void 0),severeStallOccurred$:new T.Subject,availableTextTracks$:new T.ValueSubject([]),currentTextTrack$:new T.ValueSubject(void 0),hostname$:new T.ValueSubject(void 0),httpConnectionType$:new T.ValueSubject(void 0),httpConnectionReused$:new T.ValueSubject(void 0),inPiP$:new T.ValueSubject(!1),inFullscreen$:new T.ValueSubject(!1),element$:new T.ValueSubject(void 0),elementVisible$:new T.ValueSubject(!0),availableSources$:new T.ValueSubject(void 0),is3DVideo$:new T.ValueSubject(!1),playbackState$:new T.ValueSubject(""),getCurrentTime$:new T.ValueSubject(null)};this.subscription=new T.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=Xv([...Zv(this.params.tuning),...Jv(this.params.tuning)],this.params.tuning).filter(l=>(0,T.isNonNullable)(e.sources[l])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,s=[];i?s=[i]:r.length?s=[...t.filter(l=>!(0,Pl.default)(r,l)),...t.filter(l=>(0,Pl.default)(r,l))]:s=t,this.log({message:`Selected formats: ${s.join(" > ")}`}),this.tracer.log("Selected formats",(0,T.flattenObject)(s)),this.screenFormatsIterator=new ja(s);let n=[...bl(!0),...bl(!1)];this.chromecastFormatsIterator=new ja(n.filter(l=>(0,T.isNonNullable)(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&dr.isSupported()&&(this.volumeMultiplierManager=new dr(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(){var e;this.destroyProvider(),this.current$.next({type:void 0}),this.subscription.unsubscribe(),(e=this.volumeMultiplierManager)==null||e.destroy(),this.volumeMultiplierManager=null,this.tracer.end()}initProvider(){let e=this.chooseDestination(),t=this.chooseFormat(e);if((0,T.isNullable)(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:T.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");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})}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,T.assertNever)(e)}}createScreenProvider(e){let{sources:t,container:i,desiredState:r,panelSize:s}=this.params,n=this.providerOutput,o={container:i,source:null,desiredState:r,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,T.assertNonNullable)(u),new Ba(U(L({},o),{source:u,sourceHls:l}))}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(u),new _a(U(L({},o),{source:u}))}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(u),ee.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new qa(U(L({},o),{source:u})):new Na(U(L({},o),{source:u}))}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(u),new Fa(U(L({},o),{source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e}))}case"MPEG":{let u=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(u),new Ua(U(L({},o),{source:u}))}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(u),new Xb(U(L({},o),{source:u,config:U(L({},b$),{maxPausedTime:this.params.tuning.live.maxPausedTime})}))}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(u),new Ha({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,T.assertNever)(e)}}createChromecastProvider(e){let{sources:t,container:i,desiredState:r,meta:s}=this.params,n=this.providerOutput,o=this.params.dependencies.chromecastInitializer.connection$.getValue();return(0,T.assertNonNullable)(o),new Qr({connection:o,meta:s,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,T.assertNever)(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return(0,T.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,T.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 s=new URL(r);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 U(L({},e),{url:i(e.url)})}return(0,bS.default)((0,fS.default)(e).map(([r,s])=>[r,i(s)]))}initProviderErrorHandling(){let e=new T.Subscription,t=!1,i=0;return e.add((0,T.merge)(this.providerOutput.error$.pipe((0,T.filter)(r=>!this.params.tuning.ignoreAudioRendererError||!r.message||!/AUDIO_RENDERER_ERROR/ig.test(r.message))),hS({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe((0,T.map)(r=>({id:`ProviderHangup:${r}`,category:T.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,T.filter)(({to:s})=>s==="playing"),(0,T.once)()).subscribe(()=>t=!0);e.add(r)})),e.add(this.providerError$.subscribe(r=>{let s=this.current$.getValue().destination,n={error:r,currentDestination:s};if(s==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("SCREEN"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let o=r.category===T.ErrorCategory.NETWORK,u=r.category===T.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,d=l&&!u&&(o&&t||!c);n=U(L({},n),{isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:d,canReinitProvider:c}),c?(i++,this.reinitProvider()):d?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(s!=null?s:"SCREEN"))}this.tracer.error("providerError",(0,T.flattenObject)(n))})),e}};var q=require("@vkontakte/videoplayer-shared/es2015");var g$=5e3,gS="one_video_throughput",vS="one_video_rtt",Bt=window.navigator.connection,SS=()=>{let a=Bt==null?void 0:Bt.downlink;if((0,q.isNonNullable)(a)&&a!==10)return a*1e3},yS=()=>{let a=Bt==null?void 0:Bt.rtt;if((0,q.isNonNullable)(a)&&a!==3e3)return a},TS=(a,e,t)=>{let i=t*8,r=i/a;return i/(r+e)},wl=class a{constructor(e){this.subscription=new q.Subscription;this.concurrentDownloads=new Set;var r,s;this.tuningConfig=e;let t=a.load(gS)||(e.useBrowserEstimation?SS():void 0)||g$,i=(s=(r=a.load(vS))!=null?r:e.useBrowserEstimation?yS():void 0)!=null?s:0;if(this.throughput$=new q.ValueSubject(t),this.rtt$=new q.ValueSubject(i),this.rttAdjustedThroughput$=new q.ValueSubject(TS(t,i,e.rttPenaltyRequestSize)),this.throughput=Pi.getSmoothedValue(t,-1,e),this.rtt=Pi.getSmoothedValue(i,1,e),e.useBrowserEstimation){let n=()=>{let u=SS();u&&this.throughput.next(u);let l=yS();(0,q.isNonNullable)(l)&&this.rtt.next(l)};Bt&&"onchange"in Bt&&this.subscription.add((0,q.fromEvent)(Bt,"change").subscribe(n)),n()}this.subscription.add(this.throughput.smoothed$.subscribe(n=>{q.safeStorage.set(gS,n.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(n=>{q.safeStorage.set(vS,n.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add((0,q.combine)({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe((0,q.map)(({throughput:n,rtt:o})=>TS(n,o,e.rttPenaltyRequestSize)),(0,q.filter)(n=>{let o=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(n-o)/o>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,i=(0,q.now)(),r=new q.Subscription;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add((0,q.fromEvent)(e,"progress").pipe((0,q.once)()).subscribe(s=>{t=s.loaded,i=(0,q.now)()}));break;case 1:case 0:r.add((0,q.fromEvent)(e,"loadstart").subscribe(()=>{t=0,i=(0,q.now)()}));break}r.add((0,q.fromEvent)(e,"loadend").subscribe(s=>{if(e.status===200){let n=s.loaded,o=(0,q.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,s=(0,q.now)(),n=0,o=(0,q.now)(),u=c=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${c}`).catch(()=>{})},l=m=>A(this,[m],function*({done:c,value:d}){if(c)!t&&this.addRawSpeed(r,(0,q.now)()-s,1),this.concurrentDownloads.delete(e);else if(d){if(t){let h=(0,q.now)();if(h-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||h-s>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let g=o-s;g&&this.addRawSpeed(n,g,1,t),n=d.byteLength,s=(0,q.now)()}else n+=d.byteLength;o=(0,q.now)()}else r+=d.byteLength,n+=d.byteLength,n>=this.tuningConfig.streamMinSampleSize&&(0,q.now)()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,(0,q.now)()-o,this.concurrentDownloads.size),n=0,o=(0,q.now)());yield i==null?void 0:i.read().then(l,u)}});this.concurrentDownloads.add(e),i==null||i.read().then(l,u)}addRawSpeed(e,t,i=1,r=!1){if(a.sanityCheck(e,t,r)){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 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){var i;let t=q.safeStorage.get(e);if((0,q.isNonNullable)(t))return(i=parseInt(t,10))!=null?i:void 0}},IS=wl;var Ai=require("@vkontakte/videoplayer-shared/es2015");var ES={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:Ai.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Ai.VideoQuality.Q_720P,trafficSavingLimit:Ai.VideoQuality.Q_480P},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:Ai.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},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},xS=a=>{var e;return U(L({},(0,Ai.fillWithDefault)(a,ES)),{configName:[...(e=a.configName)!=null?e:[],...ES.configName]})};var p=require("@vkontakte/videoplayer-shared/es2015");var _t=require("@vkontakte/videoplayer-shared/es2015"),Al=({seekState:a,position$:e})=>(0,_t.merge)(a.stateChangeEnded$.pipe((0,_t.map)(({to:t})=>{var i;return t.state==="none"?void 0:((i=t.position)!=null?i:NaN)/1e3}),(0,_t.filter)(_t.isNonNullable)),e.pipe((0,_t.filter)(()=>a.getState().state==="none")));var PS=require("@vkontakte/videoplayer-shared/es2015"),wS=a=>{let e=typeof a.container=="string"?document.getElementById(a.container):a.container;return(0,PS.assertNonNullable)(e,`Wrong container or containerId {${a.container}}`),e};var wn=require("@vkontakte/videoplayer-shared/es2015"),AS=(a,e,t,i)=>{a!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&(t==null?void 0:t.getValue().length)===0?t.pipe((0,wn.filter)(r=>r.length>0),(0,wn.once)()).subscribe(r=>{r.find(i)&&e.startTransitionTo(a)}):(a===void 0||t!=null&&t.getValue().find(i))&&e.startTransitionTo(a)};var Wa=class{constructor(e={configName:[]},t=p.Tracer.createRootTracer(!1)){this.subscription=new p.Subscription;this.logger=new p.Logger;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new p.ValueSubject(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new p.ValueSubject(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new Y("stopped"),seekState:new Y({state:"none"}),volume:new Y({volume:1,muted:!1}),videoTrack:new Y(void 0),videoStream:new Y(void 0),audioStream:new Y(void 0),autoVideoTrackSwitching:new Y(!0),autoVideoTrackLimits:new Y({}),isLooped:new Y(!1),isLowLatency:new Y(!1),playbackRate:new Y(1),externalTextTracks:new Y([]),internalTextTracks:new Y([]),currentTextTrack:new Y(void 0),textTrackCuesSettings:new Y({}),cameraOrientation:new Y({x:0,y:0})};this.info={playbackState$:new p.ValueSubject(void 0),position$:new p.ValueSubject(0),duration$:new p.ValueSubject(1/0),muted$:new p.ValueSubject(!1),volume$:new p.ValueSubject(1),availableVideoStreams$:new p.ValueSubject([]),currentVideoStream$:new p.ValueSubject(void 0),availableQualities$:new p.ValueSubject([]),availableQualitiesFps$:new p.ValueSubject({}),currentQuality$:new p.ValueSubject(void 0),isAutoQualityEnabled$:new p.ValueSubject(!0),autoQualityLimitingAvailable$:new p.ValueSubject(!1),autoQualityLimits$:new p.ValueSubject({}),predefinedQualityLimitType$:new p.ValueSubject("unknown"),availableAudioStreams$:new p.ValueSubject([]),currentAudioStream$:new p.ValueSubject(void 0),availableAudioTracks$:new p.ValueSubject([]),isAudioAvailable$:new p.ValueSubject(!0),currentPlaybackRate$:new p.ValueSubject(1),currentBuffer$:new p.ValueSubject({start:0,end:0}),isBuffering$:new p.ValueSubject(!0),isStalled$:new p.ValueSubject(!1),isEnded$:new p.ValueSubject(!1),isLooped$:new p.ValueSubject(!1),isLive$:new p.ValueSubject(void 0),isLiveEnded$:new p.ValueSubject(null),canChangePlaybackSpeed$:new p.ValueSubject(void 0),atLiveEdge$:new p.ValueSubject(void 0),atLiveDurationEdge$:new p.ValueSubject(void 0),liveTime$:new p.ValueSubject(void 0),liveBufferTime$:new p.ValueSubject(void 0),liveLatency$:new p.ValueSubject(void 0),currentFormat$:new p.ValueSubject(void 0),availableTextTracks$:new p.ValueSubject([]),currentTextTrack$:new p.ValueSubject(void 0),throughputEstimation$:new p.ValueSubject(void 0),rttEstimation$:new p.ValueSubject(void 0),videoBitrate$:new p.ValueSubject(void 0),hostname$:new p.ValueSubject(void 0),httpConnectionType$:new p.ValueSubject(void 0),httpConnectionReused$:new p.ValueSubject(void 0),surface$:new p.ValueSubject("none"),chromecastState$:new p.ValueSubject("NOT_AVAILABLE"),chromecastDeviceName$:new p.ValueSubject(void 0),intrinsicVideoSize$:new p.ValueSubject(void 0),availableSources$:new p.ValueSubject(void 0),is3DVideo$:new p.ValueSubject(!1),currentVideoSegmentLength$:new p.ValueSubject(0),currentAudioSegmentLength$:new p.ValueSubject(0)};this.events={inited$:new p.Subject,ready$:new p.Subject,started$:new p.Subject,playing$:new p.Subject,paused$:new p.Subject,stopped$:new p.Subject,willStart$:new p.Subject,willResume$:new p.Subject,willPause$:new p.Subject,willStop$:new p.Subject,willDestruct$:new p.Subject,watchCoverageRecord$:new p.Subject,watchCoverageLive$:new p.Subject,managedError$:new p.Subject,fatalError$:new p.Subject,fetcherRecoverableError$:new p.Subject,ended$:new p.Subject,looped$:new p.Subject,seeked$:new p.Subject,willSeek$:new p.Subject,autoplaySoundProhibited$:new p.Subject,firstBytes$:new p.Subject,loadedMetadata$:new p.Subject,firstFrame$:new p.Subject,canplay$:new p.Subject,log$:new p.Subject,fetcherError$:new p.Subject,severeStallOccured$:new p.Subject};this.experimental={element$:new p.ValueSubject(void 0),tuningConfigName$:new p.ValueSubject([]),enableDebugTelemetry$:new p.ValueSubject(!1),dumpTelemetry:Db,getCurrentTime$:new p.ValueSubject(null)};if(this.initLogs(),this.tuning=xS(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new fs({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new IS(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new p.InternalsExposure("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return new Proxy(this,{get:(i,r,s)=>{let n=Reflect.get(i,r,s);return typeof n!="function"?n:(...o)=>{try{return n.apply(i,o)}catch(u){let l=o.map(m=>JSON.stringify(m,(h,f)=>{let g=typeof f;return(0,kS.default)(["number","string","boolean"],g)?f:f===null?null:`<${g}>`})),c=`Player.${String(r)}`,d=`Exception calling ${c} (${l.join(", ")})`;throw this.events.fatalError$.next({id:c,category:p.ErrorCategory.WTF,message:d,thrown:u}),u}}}})}initVideo(e){var s;this.config=e,(s=this.internalsExposure)==null||s.expose({config:e,logger:this.logger,tuning:this.tuning});let t=()=>{var l,c,d;let u=e,{container:n}=u,o=mc(u,["container"]);this.tracer.log("initVideo",(0,p.flattenObject)(o)),this.domContainer=wS(e),this.chromecastInitializer.contentId=(l=e.meta)==null?void 0:l.videoId,this.providerContainer=new Ga({sources:e.sources,meta:(c=e.meta)!=null?c:{},failoverHosts:(d=e.failoverHosts)!=null?d:[],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()},r=()=>{this.tuning.asyncResolveClientChecker?ee.isInited$.pipe((0,p.filter)(n=>!!n),(0,p.once)()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),(0,p.fromEvent)(document,"visibilitychange").pipe((0,p.once)()).subscribe(r)):r(),this}destroy(){var e,t;this.tracer.log("destroy"),window.clearTimeout(this.hasLiveOffsetByPausedTimer),this.playerInitRequest&&window.cancelAnimationFrame(this.playerInitRequest),this.events.willDestruct$.next(),this.stop(),(e=this.providerContainer)==null||e.destroy(),this.throughputEstimator.destroy(),this.chromecastInitializer.destroy(),this.subscription.unsubscribe(),this.tracer.end(),(t=this.internalsExposure)==null||t.destroy()}prepare(){return this.subscription.add(this.playerInited.pipe((0,p.filter)(e=>!!e),(0,p.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,p.filter)(e=>!!e),(0,p.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,p.filter)(e=>!!e),(0,p.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,p.filter)(e=>!!e),(0,p.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,p.filter)(i=>!!i),(0,p.once)()).subscribe(()=>{let i=this.info.duration$.getValue(),r=this.info.isLive$.getValue(),s=e;e>=i&&!r&&(s=i-this.tuning.seekNearDurationBias),this.tracer.log("seekTime",{duration:i,isLive:r,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,p.filter)(t=>!!t),(0,p.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,p.filter)(i=>!!i),(0,p.once)()).subscribe(()=>{var o;let i=this.desiredState.volume,r=i.getTransition(),s=(o=r==null?void 0:r.to.muted)!=null?o:this.info.muted$.getValue(),n=t!=null?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,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{var n;let t=this.desiredState.volume,i=this.tuning.isAudioDisabled||e,r=t.getTransition(),s=(n=r==null?void 0:r.to.volume)!=null?n: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,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{this.desiredState.videoStream.startTransitionTo(e)})),this}setAudioStream(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{this.desiredState.audioStream.startTransitionTo(e)})),this}setQuality(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{(0,p.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,p.filter)(i=>i.length>0),(0,p.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,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)})),this}setAutoQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{this.tracer.log("setAutoQualityLimits",(0,p.flattenObject)(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)})),this}setPredefinedQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.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,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{var i;(0,p.assertNonNullable)(this.providerContainer);let t=(i=this.providerContainer)==null?void 0:i.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,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{e.length&&this.tracer.log("setExternalTextTracks",(0,p.flattenObject)(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>L({type:"external"},t)))})),this}selectTextTrack(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{var t;AS(e,this.desiredState.currentTextTrack,(t=this.providerContainer)==null?void 0:t.providerOutput.availableTextTracks$,i=>i.id===e),this.tracer.log("selectTextTrack",{textTrackId:e})})),this}setTextTrackCueSettings(e){return this.subscription.add(this.playerInited.pipe((0,p.filter)(t=>!!t),(0,p.once)()).subscribe(()=>{this.tracer.log("setTextTrackCueSettings",L({},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,p.filter)(t=>!!t),(0,p.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,p.filter)(i=>!!i),(0,p.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,p.filter)(t=>!!t),(0,p.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,p.filter)(i=>!!i),(0,p.once)()).subscribe(()=>{let i=this.getScene3D();if(this.tracer.log("moveCameraFocusPX",{isScene3DAvailable:!!i,dxpx:e,dypx:t}),i){let r=i.getCameraRotation(),s=i.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:r.x+s.x,y:r.y+s.y})}})),this}holdCamera(){return this.subscription.add(this.playerInited.pipe((0,p.filter)(e=>e),(0,p.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.holdCamera()})),this}releaseCamera(){return this.subscription.add(this.playerInited.pipe((0,p.filter)(e=>!!e),(0,p.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,p.isNullable)(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return(0,p.isNonNullable)(i)?i/1e3:e.currentTime}getAllLogs(){return this.logger.getAllLogs()}getScene3D(){var t,i;let e=(t=this.providerContainer)==null?void 0:t.current$.getValue();if((i=e==null?void 0:e.provider)!=null&&i.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,p.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,p.map)(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe((0,p.map)(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe((0,p.map)(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,p.map)(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe((0,p.map)(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(Du({limits:e,highQualityLimit:t,trafficSavingLimit:i}))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe((0,p.filter)(({from:e})=>e==="stopped"),(0,p.once)()).subscribe(()=>{this.initedAt=(0,p.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,p.flattenObject)(n)),n.state==="requested"?this.desiredState.seekState.setState(U(L({},n),{state:"applying"})):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:p.ErrorCategory.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe((0,p.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,p.flattenObject)(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe((0,p.map)(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe((0,p.map)(n=>n.destination),(0,p.filterChanged)()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add((0,p.combine)({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe((0,p.map)(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>(0,p.isInvariantQuality)(u)?1:(0,p.isInvariantQuality)(l)?-1:(0,p.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,p.filterChanged)()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe((0,p.filter)(n=>(0,p.isNonNullable)(n))).subscribe(n=>{this.info.currentQuality$.next(n==null?void 0:n.quality),this.info.videoBitrate$.next(n==null?void 0:n.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe((0,p.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe((0,p.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe((0,p.filterChanged)()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe((0,p.filterChanged)()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe((0,p.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!=null?n:{})})).add(e.providerOutput.currentBuffer$.pipe((0,p.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,p.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,p.combine)({hasLiveOffsetByPaused:(0,p.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,p.map)(n=>n.to),(0,p.filterChanged)(),(0,p.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,p.combine)({atLiveEdge:(0,p.combine)({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:Al({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe((0,p.map)(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),(0,p.filterChanged)(),(0,p.tap)(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe((0,p.map)(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add((0,p.combine)({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe((0,p.map)(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),(0,p.filterChanged)(),(0,p.tap)(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe((0,p.map)(n=>n.muted),(0,p.filterChanged)()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe((0,p.map)(n=>n.volume),(0,p.filterChanged)()).subscribe(this.info.volume$)).add(Al({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add((0,p.merge)(e.providerOutput.endedEvent$.pipe((0,p.mapTo)(!0)),e.providerOutput.seekedEvent$.pipe((0,p.mapTo)(!1))).pipe((0,p.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,p.map)(n=>({id:n?`No${n}`:"NoProviders",category:p.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,p.once)(),(0,p.map)(n=>n!=null?n:(0,p.now)()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe((0,p.once)(),(0,p.map)(()=>(0,p.now)()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe((0,p.once)(),(0,p.map)(()=>(0,p.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 p.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new p.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe((0,p.filter)(({to:n})=>n==="playing"),(0,p.once)()).subscribe(()=>i.next(!1)));let r=0,s=(0,p.merge)(e.providerOutput.isBuffering$,t,i).pipe((0,p.map)(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),(0,p.filterChanged)());this.subscription.add(s.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,p.merge)(e.providerOutput.canplay$,e.providerOutput.firstFrameEvent$,e.providerOutput.firstBytesEvent$).subscribe(()=>{let n=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n==null?void 0:n.videoWidth,height:n==null?void 0:n.videoHeight})})).add(e.providerOutput.currentVideoTrack$.subscribe(n=>{var u,l;let o=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:(u=n==null?void 0:n.size)==null?void 0:u.width,height:(l=n==null?void 0:n.size)==null?void 0:l.height},{width:o==null?void 0:o.videoWidth,height:o==null?void 0:o.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add((0,p.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(),d;c==="CONNECTED"?d="second_screen":u?l?n?d="pip":o?d="fullscreen":d="inline":d="invisible":d="none",this.info.surface$.getValue()!==d&&this.info.surface$.next(d)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe((0,p.map)(e=>e==null?void 0:e.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new p.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe((0,p.filterChanged)((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe((0,p.filter)(i=>i.length>0),(0,p.once)()).subscribe(i=>{this.setStartingVideoTrack(i)}))}))}setStartingVideoTrack(e){var r;let t;this.wasSetStartedQuality=!0;let i=(r=this.explicitInitialQuality)!=null?r:this.info.currentQuality$.getValue();i&&(t=e.find(({quality:s})=>s===i),t||this.setAutoQuality(!0)),t||(t=ei(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,p.merge)(this.desiredState.videoTrack.stateChangeStarted$.pipe((0,p.map)(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe((0,p.map)(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe((0,p.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,p.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe((0,p.map)(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe((0,p.map)(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe((0,p.map)(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe((0,p.map)(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe((0,p.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(){var t;let e=(t=this.providerContainer)==null?void 0:t.providerOutput;(0,p.assertNonNullable)(this.providerContainer),(0,p.assertNonNullable)(e),Cb(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(i=>Mb(i)),this.providerContainer.current$.subscribe(({type:i})=>Gr("provider",i)),e.duration$.subscribe(i=>Gr("duration",i)),e.availableVideoTracks$.pipe((0,p.filter)(i=>!!i.length),(0,p.once)()).subscribe(i=>Gr("tracks",i)),this.events.fatalError$.subscribe(new De("fatalError")),this.events.managedError$.subscribe(new De("managedError")),e.position$.subscribe(new De("position")),e.currentVideoTrack$.pipe((0,p.map)(i=>i==null?void 0:i.quality)).subscribe(new De("quality")),this.info.currentBuffer$.subscribe(new De("buffer")),e.isBuffering$.subscribe(new De("isBuffering"))].forEach(i=>this.subscription.add(i)),Gr("codecs",ee.video.supportedCodecs)}initTracerSubscription(){let e=(0,p.getTraceSubscriptionMethod)(this.tracer.log.bind(this.tracer)),t=(0,p.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,p.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,p.combine)({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe((0,p.filter)(({currentQuality:i,videoBitrate:r})=>!!i&&!!r),(0,p.filterChanged)((i,r)=>i.currentQuality===r.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe((0,p.filter)(i=>i>0),(0,p.filterChanged)()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe((0,p.filter)(i=>i>0),(0,p.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,p.combine)({currentBuffer:this.info.currentBuffer$.pipe((0,p.filter)(i=>i.end>0),(0,p.filterChanged)((i,r)=>i.end===r.end&&i.start===r.start)),position:this.info.position$.pipe((0,p.filterChanged)())}).pipe((0,p.throttle)(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe((0,p.filterChanged)()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe((0,p.filterChanged)()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe((0,p.filterChanged)()).subscribe(e("canChangePlaybackSpeed"))).add((0,p.combine)({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe((0,p.filter)(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),(0,p.throttle)(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe((0,p.filterChanged)(),(0,p.filter)(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe((0,p.filterChanged)(),(0,p.filter)(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe((0,p.filterChanged)()).subscribe(e("muted"))).add(this.info.volume$.pipe((0,p.filterChanged)()).subscribe(e("volume"))).add(this.info.isEnded$.pipe((0,p.filterChanged)(),(0,p.filter)(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add((0,p.combine)({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe((0,p.filter)(({throughputEstimation:i,rtt:r})=>!!i&&!!r),(0,p.throttle)(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe((0,p.filterChanged)(),(0,p.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==null||e.release(),e=void 0},i=()=>A(this,null,function*(){t(),e=yield window.navigator.wakeLock.request("screen").catch(r=>{r instanceof DOMException&&r.name==="NotAllowedError"||this.events.managedError$.next({id:"WakeLock",category:p.ErrorCategory.DOM,message:String(r)})})});this.subscription.add((0,p.merge)((0,p.fromEvent)(document,"visibilitychange"),(0,p.fromEvent)(document,"fullscreenchange"),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let r=document.visibilityState==="visible",s=this.desiredState.playbackState.getState()==="playing",n=!!e&&!(e!=null&&e.released);r&&s?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,p.flattenObject)({quality:t,availableTracks:(0,p.flattenObject)(e),track:(0,p.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&&!Jr()}};var xt=require("@vkontakte/videoplayer-shared/es2015"),v$=`@vkontakte/videoplayer-core@${Cn}`;
|
|
68
|
+
`;var cs=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 Mu(this.params.fov,this.params.orientation),this.cameraRotationManager=new Lu(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(Cy,this.gl.VERTEX_SHADER),i=this.createShader(Vy,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,d=t+r,c=e-i,h=t+r;return[a,n,o,u,l,d,c,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 Me=require("@vkontakte/videoplayer-shared/es2015");var Bu="stalls_manager_metrics",aB="stalls_manager_abr_params",$d=class{constructor(){this.isSeeked$=new Me.ValueSubject(!1);this.isBuffering$=new Me.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 Me.Subscription;this.severeStallOccurred$=new Me.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}set lastVideoTrackSelected(e){var t;((t=this.lastUniqueVideoTrackSelected)==null?void 0:t.id)!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=(0,Me.now)(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=((0,Me.now)()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}updateStoredAbrParams(){let e=[],t=this.getStoredData(Bu,"[]");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(Bu,[]),this.setStoredData(aB,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="{}"){var i;return JSON.parse((i=Me.safeStorage.get(e))!=null?i:t)}setStoredData(e,t){Me.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(Bu,"[]"),r=t/e,a=i.length?Ci(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(Bu,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,Me.once)()).subscribe(t=>this.providerStartWatchingTimestamp=(0,Me.now)())),this.subscription.add(this.currentStallDuration$.pipe((0,Me.filterChanged)()).subscribe(t=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:a,ignoreStallsOnSeek:n}=this.tuning;if((0,Me.isNullable)(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),d=(0,Me.now)(),c=r&&this.currentStallsCount>=r,h=i&&d-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&d-l>=i+o&&t>=i;(c||h)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,(0,Me.isNonNullable)(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!t&&(0,Me.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}))}},Du=$d;var It=require("@vkontakte/videoplayer-shared/es2015"),$u=class{constructor(){this.subscription=new It.Subscription;this.pipSize$=new It.ValueSubject(void 0);this.videoSize$=new It.ValueSubject(void 0);this.elementSize$=new It.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=It.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,It.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,It.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,It.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 Er=class{constructor(e){this.subscription=new ne.Subscription;this.videoState=new ie("stopped");this.droppedFramesManager=new es;this.stallsManager=new Du;this.elementSizeManager=new $u;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Xi;this.audioTrackSwitchHistory=new Xi;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==null?void 0: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"),V(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"),V(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&V(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==null?void 0:i.to)==="playing"&&V(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&V(this.params.desiredState.playbackState,"paused");return;default:return(0,ne.assertNever)(e)}}};this.init3DScene=e=>{var i,r,a;if(this.scene3D)return;this.scene3D=new cs(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:((i=e.projectionData)==null?void 0:i.pose.yaw)||0,y:((r=e.projectionData)==null?void 0:r.pose.pitch)||0,z:((a=e.projectionData)==null?void 0:a.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 yt(e.source.url),this.params=e,this.video=tt(e.container,e.tuning),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(He(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 Ru({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params,i=st(this.video);this.subscription.add(()=>i.destroy());let r=this.constructor.name,a=o=>{e.error$.next({id:r,category:ne.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,ne.filter)(c=>!!c.length),(0,ne.once)()).subscribe(c=>{this.droppedFramesManager.connect({video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:c})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,ne.map)(c=>c.to.state!=="none"),(0,ne.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,ne.filter)(ne.isNonNullable),(0,ne.once)()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe((0,ne.map)(c=>c.to)),this.params.output.playbackState$),this.subscription.add(i.loopExpected$.subscribe(c=>{t.seekState.setState({state:"requested",position:0,forcePrecise:!1})})),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(rt(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(vt(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(Tt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),V(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),V(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:c})=>{if(c==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let h=this.player.getStreams();if((0,ne.assertNonNullable)(h,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let f=[];for(let m of h.audio){f.push(xd(m));let S=[];for(let v of m.representations){let x=Sy(v);S.push(x),this.audioTracksMap.set(x,{stream:m,representation:v})}this.audioStreamsMap.set(m,S)}this.params.output.availableAudioStreams$.next(f)}let p=[];for(let f of h.video){p.push(Ed(f));let m=[];for(let S of f.representations){let v=gy(N(R({},S),{streamId:f.id}));v&&(m.push(v),this.videoTracksMap.set(v,{stream:f,representation:S}))}this.videoStreamsMap.set(f,m)}this.params.output.availableVideoStreams$.next(p);for(let f of h.text)for(let m of f.representations){let S=vy(f,m);this.textTracksMap.set(S,{stream:f,representation:m})}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 c==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r));let{vktvAbrThrottle:o}=this.params.tuning.dash,u=o&&Iy(o)||null;this.subscription.add((0,ne.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,ne.fromEvent)(this.video,"progress")).pipe((0,ne.filter)(()=>this.videoTracksMap.size>0)).subscribe(()=>P(this,null,function*(){let c=this.player.state$.getState(),h=this.player.state$.getTransition();if(c!=="manifest_ready"&&c!=="running"||h||c==="running"&&u&&!u())return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState()),this.selectVideoAudioRepresentations();let{video:p,audio:f}=this.selectedRepresentations;if(!p)return;let m=xr(this.videoTracksMap.keys(),v=>{var x;return((x=this.videoTracksMap.get(v))==null?void 0:x.representation.id)===p.id});(0,ne.isNonNullable)(m)&&(this.stallsManager.lastVideoTrackSelected=m);let S=this.params.desiredState.autoVideoTrackLimits.getTransition();if(S&&this.params.output.autoVideoTrackLimits$.next(S.to),c==="manifest_ready")yield this.player.initRepresentations(p.id,f==null?void 0:f.id,this.params.sourceHls);else if(yield this.player.switchRepresentation("video",p.id),f){let v=!!t.audioStream.getTransition();yield this.player.switchRepresentation("audio",f.id,v)}}),r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:c})=>{this.scene3D&&c&&this.scene3D.pointCameraTo(c.x,c.y)})),this.subscription.add(this.elementSizeManager.subscribe(c=>{this.scene3D&&c&&this.scene3D.setViewportSize(c.width,c.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,ne.filterChanged)()).subscribe(c=>{let h=xr(this.videoTracksMap.entries(),([,{representation:S}])=>S.id===c);if(!h){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[p,{stream:f}]=h,m=this.params.desiredState.videoStream.getTransition();m&&m.to&&m.to.id===f.id&&this.params.desiredState.videoStream.setState(m.to),e.currentVideoTrack$.next(p),e.currentVideoStream$.next(Ed(f))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,ne.filterChanged)()).subscribe(c=>{let h=xr(this.audioTracksMap.entries(),([,{representation:S}])=>S.id===c);if(!h){e.currentAudioStream$.next(void 0);return}let[p,{stream:f}]=h,m=this.params.desiredState.audioStream.getTransition();m&&m.to&&m.to.id===f.id&&this.params.desiredState.audioStream.setState(m.to),e.currentAudioStream$.next(xd(f))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(c=>{var h,p;if(c!=null&&c.is3dVideo&&((h=this.params.tuning.spherical)!=null&&h.enabled))try{this.init3DScene(c),e.is3DVideo$.next(!0)}catch(f){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${f}`})}else this.destroy3DScene(),(p=this.params.tuning.spherical)!=null&&p.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 l=t.playbackState.stateChangeStarted$.pipe((0,ne.map)(({to:c})=>c==="ready"),(0,ne.filterChanged)());this.subscription.add((0,ne.merge)(l,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,ne.observableFrom)(["init"])).subscribe(()=>{let c=t.autoVideoTrackSwitching.getState(),p=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:c?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(p)})),this.subscription.add((0,ne.merge)(l,this.player.state$.stateChangeEnded$,(0,ne.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let d=(0,ne.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ne.observableFrom)(["init"])).pipe((0,ne.debounce)(0));this.subscription.add(d.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var G,X,D,U,O,F,$,H,C,j,be,ge;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ma:Ra,t=this.params.tuning.useNewAutoSelectVideoTrack?nu:au,i=this.params.tuning.useNewAutoSelectVideoTrack?di:su,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=(G=r.videoTrack.getState())==null?void 0:G.id,u=xr(this.videoTracksMap.keys(),J=>J.id===o),l=a.currentVideoTrack$.getValue(),d=((U=(D=r.videoStream.getState())!=null?D:u&&((X=this.videoTracksMap.get(u))==null?void 0:X.stream))!=null?U:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!d)return;let c=xr(this.videoStreamsMap.keys(),J=>J.id===d.id),h=c&&this.videoStreamsMap.get(c);if(!h)return;let p=De(this.video.buffered,this.video.currentTime*1e3),f;this.player.isActiveLive$.getValue()?f=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?f=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:f=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let m=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,S=Math.min(p/Math.min(f,m||1/0),1),v=(O=r.audioStream.getState())!=null?O:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,x=(v==null?void 0:v.id)&&xr(this.audioStreamsMap.keys(),J=>J.id===v.id)||this.audioStreamsMap.keys().next().value,I=0;if(x){if(u&&!n){let J=e(u,h,(F=this.audioStreamsMap.get(x))!=null?F:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);I=Math.max(I,($=J==null?void 0:J.bitrate)!=null?$:-1/0)}if(l){let J=e(l,h,(H=this.audioStreamsMap.get(x))!=null?H:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);I=Math.max(I,(C=J==null?void 0:J.bitrate)!=null?C:-1/0)}}let E=u;(n||!E)&&(E=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:I,forwardBufferHealth:S,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}));let L=x&&t(E,h,(j=this.audioStreamsMap.get(x))!=null?j:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:S,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate}),M=(be=this.videoTracksMap.get(E))==null?void 0:be.representation,_=L&&((ge=this.audioTracksMap.get(L))==null?void 0:ge.representation);M&&_?(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=_):M&&!_&&this.audioTracksMap.size===0&&(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=null)}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){at(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),V(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}))}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),it(this.video)}};var vn=class extends Er{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 Ie=require("@vkontakte/videoplayer-shared/es2015");var yn=class extends Er{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 Ie.ValueSubject(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe((0,Ie.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,Ie.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,Ie.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,Ie.filter)(o=>(0,Ie.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,Ie.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,Ie.merge)(i.playbackRateState$,new Ie.ValueSubject(1))}).pipe((0,Ie.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),d=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;d||u<1-c||this.video.paused||(0,Ie.isNullable)(l)||(e=o-l)})).add((0,Ie.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,Ie.merge)(i.playbackRateState$,new Ie.ValueSubject(1))}).pipe((0,Ie.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:c}=this.params.tuning.dashCmafLive.lowLatency;if(!d&&!this.video.paused&&l>=1-c||(0,Ie.isNullable)(o)||(0,Ie.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=yy(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 oe=require("@vkontakte/videoplayer-shared/es2015");var zd=Y(_a(),1);var y=require("@vkontakte/videoplayer-shared/es2015");var Cu=Y(Ot(),1),ps=Y(ei(),1),Vu=Y(_a(),1);var sT=Y(Aa(),1);var ir=require("@vkontakte/videoplayer-shared/es2015");var oB=18,Oy=!1;try{Oy=ee.browser.isSafari&&!!ee.browser.safariVersion&&ee.browser.safariVersion<=oB}catch(s){console.error(s)}var Cd=class{constructor(e){this.bufferFull$=new ir.Subject;this.error$=new ir.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.completeTask=()=>{var e;try{if(this.currentTask){let t=(e=this.currentTask.signal)==null?void 0:e.aborted;this.currentTask.callback(!t),this.currentTask=null}this.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:ir.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,this.buffer.addEventListener("updateend",this.completeTask)}append(e,t){return P(this,null,function*(){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})})}remove(e,t,i){return P(this,null,function*(){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()})})}abort(e){return P(this,null,function*(){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};Oy&&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(){var r;if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.queue.shift();if(!e)return;if((r=e.signal)!=null&&r.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:ir.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,ir.assertNever)(t)}}},_y=Cd;var A=require("@vkontakte/videoplayer-shared/es2015");var me=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 ds=class extends me{};var Tn=class extends me{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 In=class extends me{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 xn=class extends me{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var we=class extends me{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var En=class extends we{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 wn=class extends me{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Pn=class extends me{constructor(e,t){super(e,t),this.data=this.content}};var wr=class extends we{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 An=class extends me{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var kn=class extends me{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Rn=class extends we{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 Mn=class extends we{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Ln=class extends we{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var Bn=class extends me{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Dn=class extends we{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 $n=class extends me{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Cn=class extends me{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Vn=class extends we{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var On=class extends me{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var _n=class extends we{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 Fn=class extends we{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 Nn=class extends we{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 Un=class extends me{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var qn=class extends we{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 Hn=class extends me{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var lB={ftyp:In,moov:xn,mvhd:En,moof:wn,mdat:Pn,sidx:wr,trak:An,mdia:Bn,mfhd:Vn,tkhd:Dn,traf:On,tfhd:_n,tfdt:Fn,trun:Nn,minf:$n,sv3d:kn,st3d:Rn,prhd:Mn,proj:Cn,equi:Ln,uuid:Tn,stbl:Un,stsd:qn,avc1:Hn,unknown:ds},Oi=class s{constructor(e={}){this.options=R({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(r){break}return t}createBox(e,t){let i=lB[e];return i?new i(t,new s):new ds(t,new s)}};var rr=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{var i,r,a;(a=(i=this.index)[r=t.type])!=null||(i[r]=[]),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 dB=new TextDecoder("ascii"),pB=s=>dB.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",hB=s=>{let e=new wr(s,new Oi),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})},fB=(s,e)=>{let i=new Oi().parse(s),r=new rr(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,c=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,c)},mB=s=>{let t=new Oi().parse(s),i=new rr(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},bB=s=>{var r;let t=new Oi().parse(s);return(r=new rr(t).find("sidx"))==null?void 0:r.timescale},gB=(s,e)=>{let i=new Oi().parse(s),a=new rr(i).findAll("traf"),n=a[a.length-1].children.find(c=>c.type==="tfhd"),o=a[a.length-1].children.find(c=>c.type==="tfdt"),u=a[a.length-1].children.find(c=>c.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((c,h)=>c+h,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},SB=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 Oi().parse(s),r=new rr(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},Fy={validateData:pB,parseInit:SB,getIndexRange:()=>{},parseSegments:hB,parseFeedableSegmentChunk:fB,getChunkEndTime:gB,getServerLatencyTimestamps:mB,getTimescaleFromIndex:bB};var Gn=Y(Ot(),1),_i=require("@vkontakte/videoplayer-shared/es2015");var Uy=require("@vkontakte/videoplayer-shared/es2015");var Ny={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"}},qy=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=jn(s,t),r=i in Ny,a=r?Ny[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,d=jn(u),c=l*ft(2,(o-1)*8)+d,h=t+o,p;return h+c>s.byteLength?p=new DataView(s.buffer,s.byteOffset+h):p=new DataView(s.buffer,s.byteOffset+h,c),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:h,tagSize:h+c,value:p,valueSize:c}},jn=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*ft(2,16)+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*ft(2,32)+s.getUint32(1);case 6:return s.getUint16(0)*ft(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},ii=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return jn(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,Uy.assertNever)(e)}},Pr=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=qy(i);if(!e(r))return;r.type==="master"&&Pr(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},Hy=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=qy(s);return Pr(r.value,({tag:a,type:n,value:o})=>(a===17143?e=ii(o,n):a===17026?t=ii(o,n):a===17029&&(i=ii(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var jy=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],vB=[231,22612,22743,167,171,163,160,175],yB=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,d=!1,c=0;return Pr(s,({tag:h,type:p,value:f,valueSize:m})=>{if(h===21419){let S=ii(f,p);l=jn(S)}else h!==21420&&(l=void 0);return h===408125543?(e=f.byteOffset,t=f.byteOffset+m):h===357149030?a=!0:h===290298740?n=!0:h===2807729?i=ii(f,p):h===17545?r=ii(f,p):h===21420&&l===475249515?u=ii(f,p):h===374648427?Pr(f,({tag:S,type:v,value:x})=>S===30321?(d=ii(x,v)===1,!1):!0):a&&n&&(0,Gn.default)(jy,h)&&(o=!0),!o}),(0,_i.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,_i.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,_i.assertNonNullable)(r,"Failed to parse webm Segment duration"),i=i!=null?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:d,stereoMode:c,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},TB=s=>{if((0,_i.isNullable)(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},IB=(s,e)=>{let t=!1,i=!1,r=o=>(0,_i.isNonNullable)(o.time)&&(0,_i.isNonNullable)(o.position),a=[],n;return Pr(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=ii(l,u));break;case 183:break;case 241:n&&(n.position=ii(l,u));break;default:t&&(0,Gn.default)(jy,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:d}=o,c=a[u+1];return{status:"none",time:{from:l,to:c?c.time:e.segmentDuration},byte:{from:e.segmentStart+d,to:c?e.segmentStart+c.position-1:e.segmentEnd-1}}})},xB=s=>{let e=0,t=!1;try{Pr(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,Gn.default)(vB,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||(t=(0,Gn.default)([163,160,175],i.tag))),!0):!1)}catch(i){}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},Gy={validateData:Hy,parseInit:yB,getIndexRange:TB,parseSegments:IB,parseFeedableSegmentChunk:xB};var zn=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return Gy;case"mp4":return Fy}}throw new ReferenceError(`Unsupported mime type ${s}`)};var qd=Y(vd(),1),eT=Y(Fr(),1),tT=Y(yd(),1),iT=Y(ei(),1),Hd=Y(vr(),1);var Qn=require("@vkontakte/videoplayer-shared/es2015");var zy=s=>{var e;try{let t=EB(),i=s.match(t),{groups:r}=i!=null?i:{};if(r){let a={};if(r.extensions){let u=r.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(u||[]).forEach(l=>{a[l[0]]=l.slice(2)})}let n=(e=r.variants)==null?void 0:e.split(/-/).filter(u=>u!==""),o={extlang:r.extlang,langtag:r.langtag,language:r.language,privateuse:r.privateuse||r.privateuse2,region:r.region,script:r.script,extensions:a,variants:n};return Object.keys(o).forEach(u=>{let l=o[u];(typeof l=="undefined"||l==="")&&delete o[u]}),o}return null}catch(t){return null}};function EB(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",d=`^(?:(?<langtag>${`
|
|
69
|
+
(?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
|
|
70
|
+
(-(?<script>[a-z]{4}))?
|
|
71
|
+
(-(?<region>(?:[a-z]{2}|[0-9]{3})))?
|
|
72
|
+
(?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
|
|
73
|
+
(?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
|
|
74
|
+
(?:-(?<privateuse>(?:${e})))?
|
|
75
|
+
`})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(d,"i")}var _d=Y(ei(),1);var Wy=require("@vkontakte/videoplayer-shared/es2015"),Qy=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{var u;let o=(u=a?ci(a):void 0)!=null?u:(0,Wy.videoSizeToQuality)({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},Yy=({id:s,bitrate:e})=>({id:s,bitrate:e}),Ky=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Xy=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Fd=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,_d.default)(i.split("."),0),isDefault:r}),Nd=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,_d.default)(r.split("."),0)}),Ud=s=>"url"in s,St=s=>s.type==="template",Wn=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var Jy=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},Ar=(s,e)=>{for(let t of s)if(e(t))return t;return null};var Zy=s=>{if(!(s!=null&&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==null?void 0:i[1])==="-"?-1:1,a={days:e(i==null?void 0:i[5],r),hours:e(i==null?void 0:i[6],r),minutes:e(i==null?void 0:i[7],r),seconds:e(i==null?void 0:i[8],r)};return a.days*24*60*60*1e3+a.hours*60*60*1e3+a.minutes*60*1e3+a.seconds*1e3},Fi=(s,e)=>{let t=s;t=(0,qd.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,eT.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,qd.default)(t,n,(o,u)=>(0,Qn.isNullable)(a)?o:(0,Qn.isNullable)(u)?a:(0,tT.default)(a,parseInt(u,10),"0"))}return t},rT=(s,e)=>{var X,D,U,O,F,$,H,C,j,be,ge,J,Ut,pe,Le,Fe,ot,qt,mi,Ht,si,Hi,ji,ms,bs,gs,Ss,vs,ys,Ts,Is,xs,Es,ws,Ps,As,ks,Rs,Ms,Ls,Bs,Ds,$s,Cs,Vs,Os,_s,Fs,Ns,Us,qs,Hs,js,Gs,zs,Ws,Qs,Ys,Ks,Xs,Js;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(Ae=>{var W,ut;return(ut=(W=Ae.textContent)==null?void 0:W.trim())!=null?ut:""}),o=(X=(0,iT.default)(n,0))!=null?X:"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),d=a.getAttribute("publishTime"),c=a.getElementsByTagName("vk:Attrs")[0],h=c==null?void 0:c.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,p=c==null?void 0:c.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=c==null?void 0:c.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,m=c==null?void 0:c.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,S;u&&(S={availabilityStartTime:l?new Date(l).getTime():0,publishTime:d?new Date(d).getTime():0,latestSegmentPublishTime:h?new Date(h).getTime():0,streamIsAlive:p==="yes",streamIsUnpublished:f==="yes"});let v,x=a.getAttribute("mediaPresentationDuration"),I=[...a.getElementsByTagName("Period")],E=I.reduce((Ae,W)=>N(R({},Ae),{[W.id]:W.children}),{}),L=I.reduce((Ae,W)=>N(R({},Ae),{[W.id]:W.getAttribute("duration")}),{});x?v=Zy(x):(0,Hd.default)(L).filter(Ae=>Ae).length&&!u?v=(0,Hd.default)(L).reduce((Ae,W)=>{var ut;return Ae+((ut=Zy(W))!=null?ut:0)},0):m&&(v=parseInt(m,10));let M=0,_=(U=(D=a.getAttribute("profiles"))==null?void 0:D.split(","))!=null?U:[];for(let Ae of I.map(W=>W.id))for(let W of E[Ae]){let ut=(O=W.getAttribute("id"))!=null?O:"id"+(M++).toString(10),jt=(F=W.getAttribute("mimeType"))!=null?F:"",sr=($=W.getAttribute("codecs"))!=null?$:"",ar=(H=W.getAttribute("contentType"))!=null?H:jt==null?void 0:jt.split("/")[0],Wu=(j=(C=W.getAttribute("profiles"))==null?void 0:C.split(","))!=null?j:[],Zs=(ge=zy((be=W.getAttribute("lang"))!=null?be:""))!=null?ge:{},bi=(pe=(Ut=(J=W.querySelector("Label"))==null?void 0:J.textContent)==null?void 0:Ut.trim())!=null?pe:void 0,Qu=W.querySelectorAll("Representation"),Yu=W.querySelector("SegmentTemplate"),Ku=(Fe=(Le=W.querySelector("Role"))==null?void 0:Le.getAttribute("value"))!=null?Fe:void 0,Et=ar,ae={id:ut,language:Zs.language,isDefault:Ku==="main",label:bi,codecs:sr,hdr:Et==="video"&&os(sr),mime:jt,representations:[]};for(let z of Qu){let Ge=(ot=z.getAttribute("lang"))!=null?ot:void 0,Gt=(mi=(qt=bi!=null?bi:W.getAttribute("label"))!=null?qt:z.getAttribute("label"))!=null?mi:void 0,gi=(Hi=(si=(Ht=z.querySelector("BaseURL"))==null?void 0:Ht.textContent)==null?void 0:si.trim())!=null?Hi:"",lt=new URL(gi||o,e).toString(),ze=(ji=z.getAttribute("mimeType"))!=null?ji:jt,Si=(bs=(ms=z.getAttribute("codecs"))!=null?ms:sr)!=null?bs:"",vi;if(ar==="text"){let We=z.getAttribute("id")||"",yi=((gs=Zs.privateuse)==null?void 0:gs.includes("x-auto"))||We.includes("_auto"),ct=z.querySelector("SegmentTemplate");if(ct){let zt={representationId:(Ss=z.getAttribute("id"))!=null?Ss:void 0,bandwidth:(vs=z.getAttribute("bandwidth"))!=null?vs:void 0},Ti=parseInt((ys=z.getAttribute("bandwidth"))!=null?ys:"",10)/1e3,Ii=(Is=parseInt((Ts=ct.getAttribute("startNumber"))!=null?Ts:"",10))!=null?Is:1,wt=parseInt((xs=ct.getAttribute("timescale"))!=null?xs:"",10),nr=(Es=ct.querySelectorAll("SegmentTimeline S"))!=null?Es:[],Pt=ct.getAttribute("media");if(!Pt)continue;let xi=[],Ei=0,wi="",At=0,Wt=Ii,Se=0;for(let ke of nr){let dt=parseInt((ws=ke.getAttribute("d"))!=null?ws:"",10),Te=parseInt((Ps=ke.getAttribute("r"))!=null?Ps:"",10)||0,Qe=parseInt((As=ke.getAttribute("t"))!=null?As:"",10);Se=Number.isFinite(Qe)?Qe:Se;let pt=dt/wt*1e3,Ye=Se/wt*1e3;for(let $e=0;$e<Te+1;$e++){let Ke=Fi(Pt,N(R({},zt),{segmentNumber:Wt.toString(10),segmentTime:(Se+$e*dt).toString(10)})),kt=(Ye!=null?Ye:0)+$e*pt,Yt=kt+pt;Wt++,xi.push({time:{from:kt,to:Yt},url:Ke})}Se+=(Te+1)*dt,Ei+=(Te+1)*pt}At=Se/wt*1e3,wi=Fi(Pt,N(R({},zt),{segmentNumber:Wt.toString(10),segmentTime:Se.toString(10)}));let Qt={time:{from:At,to:1/0},url:wi},Ne={type:"template",baseUrl:lt,segmentTemplateUrl:Pt,initUrl:"",totalSegmentsDurationMs:Ei,segments:xi,nextSegmentBeyondManifest:Qt,timescale:wt};vi={id:We,kind:"text",segmentReference:Ne,profiles:[],duration:v,bitrate:Ti,mime:"",codecs:"",width:0,height:0,isAuto:yi}}else vi={id:We,isAuto:yi,kind:"text",url:lt}}else{let We=(Rs=(ks=z.getAttribute("contentType"))!=null?ks:ze==null?void 0:ze.split("/")[0])!=null?Rs:ar,yi=(Ls=(Ms=W.getAttribute("profiles"))==null?void 0:Ms.split(","))!=null?Ls:[],ct=parseInt((Bs=z.getAttribute("width"))!=null?Bs:"",10),zt=parseInt((Ds=z.getAttribute("height"))!=null?Ds:"",10),Ti=parseInt(($s=z.getAttribute("bandwidth"))!=null?$s:"",10)/1e3,Ii=(Cs=z.getAttribute("frameRate"))!=null?Cs:"",wt=(Vs=z.getAttribute("quality"))!=null?Vs:void 0,nr=Ii?pu(Ii):void 0,Pt=(Os=z.getAttribute("id"))!=null?Os:"id"+(M++).toString(10),xi=We==="video"?`${zt}p`:We==="audio"?`${Ti}Kbps`:Si,Ei=`${Pt}@${xi}`,wi=[..._,...Wu,...yi],At,Wt=z.querySelector("SegmentBase"),Se=(_s=z.querySelector("SegmentTemplate"))!=null?_s:Yu;if(Wt){let Ne=(Ns=(Fs=z.querySelector("SegmentBase Initialization"))==null?void 0:Fs.getAttribute("range"))!=null?Ns:"",[ke,dt]=Ne.split("-").map(Ke=>parseInt(Ke,10)),Te={from:ke,to:dt},Qe=(Us=z.querySelector("SegmentBase"))==null?void 0:Us.getAttribute("indexRange"),[pt,Ye]=Qe?Qe.split("-").map(Ke=>parseInt(Ke,10)):[],$e=Qe?{from:pt,to:Ye}:void 0;At={type:"byteRange",url:lt,initRange:Te,indexRange:$e}}else if(Se){let Ne={representationId:(qs=z.getAttribute("id"))!=null?qs:void 0,bandwidth:(Hs=z.getAttribute("bandwidth"))!=null?Hs:void 0},ke=parseInt((js=Se.getAttribute("timescale"))!=null?js:"",10),dt=(Gs=Se.getAttribute("initialization"))!=null?Gs:"",Te=Se.getAttribute("media"),Qe=(Ws=parseInt((zs=Se.getAttribute("startNumber"))!=null?zs:"",10))!=null?Ws:1,pt=Fi(dt,Ne);if(!Te)throw new ReferenceError("No media attribute in SegmentTemplate");let Ye=(Qs=Se.querySelectorAll("SegmentTimeline S"))!=null?Qs:[],$e=[],Ke=0,kt="",Yt=0;if(Ye.length){let Pi=Qe,Re=0;for(let Rt of Ye){let Ce=parseInt((Ys=Rt.getAttribute("d"))!=null?Ys:"",10),ht=parseInt((Ks=Rt.getAttribute("r"))!=null?Ks:"",10)||0,Ai=parseInt((Xs=Rt.getAttribute("t"))!=null?Xs:"",10);Re=Number.isFinite(Ai)?Ai:Re;let or=Ce/ke*1e3,ur=Re/ke*1e3;for(let ki=0;ki<ht+1;ki++){let Ju=Fi(Te,N(R({},Ne),{segmentNumber:Pi.toString(10),segmentTime:(Re+ki*Ce).toString(10)})),ea=(ur!=null?ur:0)+ki*or,Zu=ea+or;Pi++,$e.push({time:{from:ea,to:Zu},url:Ju})}Re+=(ht+1)*Ce,Ke+=(ht+1)*or}Yt=Re/ke*1e3,kt=Fi(Te,N(R({},Ne),{segmentNumber:Pi.toString(10),segmentTime:Re.toString(10)}))}else if((0,Qn.isNonNullable)(v)){let Re=parseInt((Js=Se.getAttribute("duration"))!=null?Js:"",10)/ke*1e3,Rt=Math.ceil(v/Re),Ce=0;for(let ht=1;ht<Rt;ht++){let Ai=Fi(Te,N(R({},Ne),{segmentNumber:ht.toString(10),segmentTime:Ce.toString(10)}));$e.push({time:{from:Ce,to:Ce+Re},url:Ai}),Ce+=Re}Yt=Ce,kt=Fi(Te,N(R({},Ne),{segmentNumber:Rt.toString(10),segmentTime:Ce.toString(10)}))}let Xu={time:{from:Yt,to:1/0},url:kt};At={type:"template",baseUrl:lt,segmentTemplateUrl:Te,initUrl:pt,totalSegmentsDurationMs:Ke,segments:$e,nextSegmentBeyondManifest:Xu,timescale:ke}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!We||!ze)continue;let Qt={video:"video",audio:"audio",text:"text"}[We];if(!Qt)continue;Et||(Et=Qt),vi={id:Ei,kind:Qt,segmentReference:At,profiles:wi,duration:v,bitrate:Ti,mime:ze,codecs:Si,width:ct,height:zt,fps:nr,quality:wt}}ae.language||(ae.language=Ge),ae.label||(ae.label=Gt),ae.mime||(ae.mime=ze),ae.codecs||(ae.codecs=Si),ae.hdr||(ae.hdr=Et==="video"&&os(Si)),ae.representations.push(vi)}if(Et){let z=r[Et].find(Ge=>Ge.id===ae.id);if(z&&ae.representations.every(Ge=>St(Ge.segmentReference)))for(let Ge of z.representations){let Gt=ae.representations.find(ze=>ze.id===Ge.id),gi=Gt==null?void 0:Gt.segmentReference,lt=Ge.segmentReference;lt.segments.push(...gi.segments),lt.nextSegmentBeyondManifest=gi.nextSegmentBeyondManifest}else r[Et].push(ae)}}return{duration:v,streams:r,baseUrls:n,live:S}};var Yn=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new A.ValueSubject(0);this.currentLowLatencySegmentLength$=new A.ValueSubject(0);this.currentSegmentLength$=new A.ValueSubject(0);this.onLastSegment$=new A.ValueSubject(!1);this.fullyBuffered$=new A.ValueSubject(!1);this.playingRepresentation$=new A.ValueSubject(void 0);this.playingRepresentationInit$=new A.ValueSubject(void 0);this.error$=new A.Subject;this.gaps=[];this.subscription=new A.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new ye;this.switchAbortController=new ye;this.destroyAbortController=new ye;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,A.abortable)(this.destroyAbortController.signal,function(e){return ue(this,null,function*(){let t=this.representations.get(e);(0,A.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 _y(this.sourceBuffer),this.subscription.add((0,A.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:A.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o!=null||(o={id:"SegmentEjection",category:A.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),this.error$.next(o)})),this.subscription.add((0,A.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:A.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,ss(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=De(this.sourceBuffer.buffered,o),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<d).catch(c=>{this.handleAsyncError(c,"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,A.assertNonNullable)(i,"No init buffer for starting representation"),(0,A.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,A.abortable)(this.destroyAbortController.signal,function(e,t=!1){return ue(this,null,function*(){if(!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,A.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,A.isNullable)(a)||(0,A.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,A.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,A.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,yield new lr(this.pruneBuffer(n,1/0,!0))),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}})}.bind(this));this.switchToOld=(0,A.abortable)(this.destroyAbortController.signal,function(e,t=!1){return ue(this,null,function*(){if(!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,A.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,A.isNullable)(a)||(0,A.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,A.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,A.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,yield new lr(this.pruneBuffer(n,1/0,!0))),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}})}.bind(this));this.seekLive=(0,A.abortable)(this.destroyAbortController.signal,function(e){return ue(this,null,function*(){var u,l;let t=(u=(0,Vu.default)(e,d=>d.representations))!=null?u:[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let d of this.representations.keys()){let c=t.find(f=>f.id===d);c&&this.representations.set(d,c);let h=this.representations.get(d);if(!h||!St(h.segmentReference))return;let p=this.getActualLiveStartingSegments(h.segmentReference);this.segments.set(h.id,p)}let i=(l=this.switchingToRepresentationId)!=null?l:this.downloadingRepresentationId,r=this.representations.get(i);(0,A.assertNonNullable)(r);let a=this.segments.get(i);(0,A.assertNonNullable)(a,"No segments for starting representation");let n=this.initData.get(i);if((0,A.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));var d;this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!(l!=null&&l.live),this.baseUrls=(d=l==null?void 0:l.baseUrls)!=null?d:[],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 ye,(0,A.abortable)(this.switchAbortController.signal,function(i,r=!1){return ue(this,null,function*(){this.switchingToRepresentationId=i;let a=this.representations.get(i);(0,A.assertNonNullable)(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,A.isNullable)(o)||(0,A.isNullable)(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,A.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,A.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,A.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}abort(){return P(this,null,function*(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new ye,this.abortBuffer()})}maintain(e=this.getCurrentPosition()){if((0,A.isNullable)(e)||(0,A.isNullable)(this.downloadingRepresentationId)||(0,A.isNullable)(this.playingRepresentationId)||(0,A.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer)||(0,A.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,A.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(d=>e>=d.time.from&&e<d.time.to);(0,A.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next((r==null?void 0:r.time.to)-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let d=De(this.sourceBuffer.buffered,e),c=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&d>=r.time.to-e+n&&(a=c)}if(isFinite(this.bufferLimit)&&ss(this.sourceBuffer.buffered)>=this.bufferLimit){let d=De(this.sourceBuffer.buffered,e),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,d<c).catch(h=>{this.handleAsyncError(h,"pruneBuffer")});return}let u=null;if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u!=null&&u.length)){let d="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,Cu.default)(u,r))d="high";else{let c=(0,ps.default)(u,0);c&&c.time.from-r.time.to>=this.forwardBufferTarget/2&&(d="low")}this.loadSegments(u,t,d).catch(c=>{this.handleAsyncError(c,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!(u!=null&&u.length)&&De(this.sourceBuffer.buffered,e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,ps.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-De(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,A.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,Vu.default)(e==null?void 0: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!=null&&i.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){var i,r,a,n;let t=(i=(0,Vu.default)(e==null?void 0:e.streams[this.kind],o=>o.representations))!=null?i:[];if(![...this.segments.values()].every(o=>!o.length))for(let o of t){if(!o||!St(o.segmentReference))return;let u=o.segmentReference.segments.map(p=>N(R({},p),{status:"none",size:void 0})),l=100,d=(r=this.segments.get(o.id))!=null?r:[],c=(n=(a=(0,ps.default)(d,-1))==null?void 0:a.time.to)!=null?n:0,h=u==null?void 0:u.findIndex(p=>c>=p.time.from+l&&c<=p.time.to+l);if(h===-1){this.liveUpdateSegmentIndex=0;let p=this.getActualLiveStartingSegments(o.segmentReference);this.segments.set(o.id,p)}else{let p=u.slice(h+1);this.segments.set(o.id,[...d,...p])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,A.assertNonNullable)(e);let t=this.segments.get(e);if(t!=null&&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(!St(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=Fi(r.segmentTemplateUrl,{segmentTime:u});a.push({status:"none",time:{from:e.time.to,to:1/0},url:l})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){var a,n,o;let t=(n=(a=this.switchingToRepresentationId)!=null?a:this.downloadingRepresentationId)!=null?n:this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);if(!i)return;let r=i.find(u=>u.time.from<=e&&u.time.to>=e);return(o=r==null?void 0:r.time.from)!=null?o:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){var e;if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),(e=this.sourceBufferTaskQueue)==null||e.destroy(),this.gapDetectionIdleCallback&&hi&&hi(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&hi&&hi(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(t){if(!(t instanceof DOMException&&t.name==="NotFoundError"))throw t}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:c,time:{from:h,to:p}},f)=>{let m=h<=i&&p>=i,S=h>i||m||f===0&&i===0,v=Math.min(this.forwardBufferTarget,this.bufferLimit),x=this.preloadOnly&&h<=i+v||p<=i+v;return(c==="none"||c==="partially_ejected"&&S&&x&&this.sourceBuffer&&Z(this.mediaSource,this.sourceBuffer)&&!(nt(this.sourceBuffer.buffered,h)&&nt(this.sourceBuffer.buffered,p)))&&S&&x});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,d=this.preloadOnly?this.forwardBufferTarget:0;for(let c=r;c<a.length&&(n<=l||o<=d);c++){let h=a[c];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}loadSegments(e,t,i="auto"){return P(this,null,function*(){St(t.segmentReference)?yield this.loadTemplateSegment(e[0],t,i):yield this.loadByteRangeSegments(e,t,i)})}loadTemplateSegment(e,t,i="auto"){return P(this,null,function*(){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&&(yield(0,A.abortable)(o,function(){return ue(this,null,function*(){let d=(0,A.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,d))})}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let d=yield this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,A.now)(),!d)return;let c=new DataView(d),h=zn(t.mime);if(!isFinite(r.segment.time.to)){let m=t.segmentReference.timescale;r.segment.time.to=h.getChunkEndTime(c,m)}u&&r.feedingBytes&&l?yield Promise.all(l):yield this.sourceBufferTaskQueue.append(c,o);let{serverDataReceivedTimestamp:p,serverDataPreparedTime:f}=h.getServerLatencyTimestamps(c);p&&f&&this.currentLiveSegmentServerLatency$.next(f-p),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(d){this.abortActiveSegments([e]),Wn(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())St(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}loadByteRangeSegments(e,t,i="auto"){return P(this,null,function*(){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&&(yield(0,A.abortable)(n,function(){return ue(this,null,function*(){let u=(0,A.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,A.fromEvent)(window,"online").pipe((0,A.once)()).subscribe(()=>{l(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{yield this.fetcher.fetch(a,{range:r,onProgress:o,signal:n,priority:i}),this.lastDataObtainedTimestampMs=(0,A.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),Wn(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}prepareByteRangeFetchSegmentParams(e,t){if(St(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,ps.default)(e,0).byte.from,to:(0,ps.default)(e,-1).byte.to},{signal:a}=this.downloadAbortController;return{url:i,range:r,signal:a,onProgress:(o,u)=>P(this,null,function*(){if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,A.now)(),yield 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:A.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}})}}prepareTemplateFetchSegmentParams(e,t){if(!St(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,d)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,A.now)();let c=this.onSomeTemplateDataLoaded({dataView:l,loaded:d,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(c)}catch(c){this.error$.next({id:"SegmentFeeding",category:A.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,Cu.default)(e,t.segment)&&this.abortSegment(t.segment)}onSomeTemplateDataLoaded(n){return P(this,arguments,function*({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){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){if(a.aborted){r();continue}if(u.loadedBytes=i,u.loadedBytes>u.feedingBytes){let d=new DataView(e.buffer,e.byteOffset+u.feedingBytes,u.loadedBytes-u.feedingBytes),c=zn(o.mime).parseFeedableSegmentChunk(d,this.isLive);c!=null&&c.byteLength&&(l.status="partially_fed",u.feedingBytes+=c.byteLength,yield this.sourceBufferTaskQueue.append(c),u.fedBytes+=c.byteLength)}}}})}onSomeByteRangesDataLoaded(o){return P(this,arguments,function*({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!Z(this.mediaSource,this.sourceBuffer))return;let u=this.representations.get(t);if(u)for(let l of this.activeSegments){if(l.representationId!==t)continue;if(a.aborted){yield n();continue}let{segment:d}=l,c=d.byte.from-i,h=d.byte.to-i,p=h-c+1,f=c<r,m=h<=r;if(f){if(d.status==="downloading"&&m){d.status="downloaded";let S=new DataView(e.buffer,e.byteOffset+c,p);(yield this.sourceBufferTaskQueue.append(S,a))&&!a.aborted?this.onSegmentFullyAppended(l,t):yield n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(d.status==="downloading"||d.status==="partially_fed")&&(l.loadedBytes=Math.min(p,r-c),l.loadedBytes>l.feedingBytes)){let S=new DataView(e.buffer,e.byteOffset+c+l.feedingBytes,l.loadedBytes-l.feedingBytes),v=l.loadedBytes===p?S:zn(u.mime).parseFeedableSegmentChunk(S);v!=null&&v.byteLength&&(d.status="partially_fed",l.feedingBytes+=v.byteLength,(yield this.sourceBufferTaskQueue.append(v,a))&&!a.aborted?(l.fedBytes+=v.byteLength,l.fedBytes===p&&this.onSegmentFullyAppended(l,t)):yield n())}}}})}onSegmentFullyAppended(e,t){if(!((0,A.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer))){!this.isLive&&ee.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(nt(this.sourceBuffer.buffered,e.segment.time.from,100)&&nt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:A.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",Ud(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||(t=n),a===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=rs(()=>(0,sT.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}loadInit(e,t="auto",i=!1){return P(this,null,function*(){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,A.abortable)(this.destroyAbortController.signal,function(){return ue(this,null,function*(){let o=(0,A.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))})}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,zn(e.mime),r)).then(o=>{if(!o)return;let{init:u,dataView:l,segments:d}=o,c=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,c);let h=d;this.isLive&&St(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:A.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n})}dropBuffer(){return P(this,null,function*(){for(let e of this.segments.values())for(let t of e)t.status="none";yield this.pruneBuffer(0,1/0,!0)})}pruneBuffer(e,t,i=!1){return P(this,null,function*(){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,A.isNullable)(e))return!1;let r=[],a=0,n=o=>{var l;if(a>=t)return;r.push(R({},o.time));let u=Ud(o)?(l=o.size)!=null?l: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,d=u.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(l||d)&&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,d=0;for(let c of this.segments.values())for(let h of c)(0,Cu.default)(["none","partially_ejected"],h.status)&&Math.round(h.time.from)<=Math.round(u)&&Math.round(h.time.to)>=Math.round(l)&&d++;if(d===this.segments.size){let c={time:{from:u,to:l},url:"",status:"none"};n(c)}}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=Jy(r),(yield Promise.all(r.map(u=>this.sourceBufferTaskQueue.remove(u.from,u.to)))).reduce((u,l)=>u||l,!1)):!1})}abortBuffer(){return P(this,null,function*(){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,A.isNullable)(e)?0:De(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=rs(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:A.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,A.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer)||(0,A.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(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?r.status="partially_ejected":this.gaps.some(d=>d.from===r.time.from||d.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:A.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var se=require("@vkontakte/videoplayer-shared/es2015");var _u=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new se.ValueSubject(void 0);this.lastConnectionReused$=new se.ValueSubject(void 0);this.lastRequestFirstBytes$=new se.ValueSubject(void 0);this.recoverableError$=new se.Subject;this.error$=new se.Subject;this.abortAllController=new ye;this.subscription=new se.SubscriptionRemovable;this.fetchManifest=(0,se.abortable)(this.abortAllController.signal,function(e){return ue(this,null,function*(){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=er(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=vu(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Ou);return r?(t.log("success",(0,se.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,se.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)})}.bind(this));this.fetch=(0,se.abortable)(this.abortAllController.signal,function(l){return ue(this,arguments,function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){var F,$,H;let d=e,c=new Headers,h=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{c.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let C=new URL(d,location.href);C.searchParams.append("bytes",`${i.from}-${i.to}`),d=C.toString();break}default:(0,se.assertNever)(t)}this.requestQuic&&(d=er(d));let p=this.abortAllController.signal,f;if(n){let C=new ye;if(f=(0,se.merge)((0,se.fromEvent)(this.abortAllController.signal,"abort"),(0,se.fromEvent)(n,"abort")).subscribe(()=>{try{C.abort()}catch(j){Ou(j)}}),this.abortAllController.signal.aborted||n.aborted)try{C.abort()}catch(j){Ou(j)}p=C.signal}let m=(0,se.now)();h.log("startRequest",(0,se.flattenObject)({url:d,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:m}));let S=yield this.doFetch(d,{priority:a,headers:c,signal:p}),v=(0,se.now)();if(!S)return h.error("error",{message:"No response in request"}),h.end(),this.unsubscribeAbortSubscription(f),null;if((F=this.throughputEstimator)==null||F.addRawRtt(v-m),!S.ok||!S.body){this.unsubscribeAbortSubscription(f);let C=`Fetch error ${S.status}: ${S.statusText}`;return h.error("error",{message:C}),h.end(),Promise.reject(new Error(`Fetch error ${S.status}: ${S.statusText}`))}if(this.onHeadersReceived(S.headers),!r&&!o){this.unsubscribeAbortSubscription(f);let C=(0,se.now)(),j={requestStartedAt:m,requestEndedAt:C,duration:C-m};return h.log("endRequest",(0,se.flattenObject)(j)),h.end(),S.arrayBuffer()}let x=S.body;if(o){let C;[x,C]=S.body.tee(),($=this.throughputEstimator)==null||$.trackStream(C,u)}let I=x.getReader(),E,L=parseInt((H=S.headers.get("content-length"))!=null?H:"",10);Number.isFinite(L)&&(E=L),!E&&i&&(E=i.to-i.from+1);let M=0,_=E?new Uint8Array(E):new Uint8Array(0),G=!1,X=C=>{this.unsubscribeAbortSubscription(f),G=!0,Ou(C)},D=(0,se.abortable)(p,function(be){return ue(this,arguments,function*({done:C,value:j}){if(M===0&&this.lastRequestFirstBytes$.next((0,se.now)()-m),p.aborted){this.unsubscribeAbortSubscription(f);return}if(!C&&j){if(E)_.set(j,M),M+=j.byteLength;else{let ge=new Uint8Array(_.length+j.length);ge.set(_),ge.set(j,_.length),_=ge,M+=j.byteLength}r==null||r(new DataView(_.buffer),M),yield I==null?void 0:I.read().then(D,X)}})}.bind(this));yield I==null?void 0:I.read().then(D,X),this.unsubscribeAbortSubscription(f);let U=(0,se.now)(),O={failed:G,requestStartedAt:m,requestEndedAt:U,duration:U-m};return G?(h.error("endRequest",(0,se.flattenObject)(O)),h.end(),null):(h.log("endRequest",(0,se.flattenObject)(O)),h.end(),_.buffer)})}.bind(this));this.fetchByteRangeRepresentation=(0,se.abortable)(this.abortAllController.signal,function(e,t,i){return ue(this,null,function*(){var v;if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,l,d;e.indexRange&&(l=e.indexRange.from,d=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(d,a))),n=Math.min(n,0);let c=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!c)return null;let h=new DataView(c,r-n,a-n+1);if(!t.validateData(h))throw new Error("Invalid media file");let p=t.parseInit(h),f=(v=e.indexRange)!=null?v:t.getIndexRange(p);if(!f)throw new ReferenceError("No way to load representation index");let m;if(u)m=new DataView(c,f.from-n,f.to-f.from+1);else{let x=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!x)return null;m=new DataView(x)}let S=t.parseSegments(m,p,f);return{init:p,dataView:new DataView(c),segments:S}})}.bind(this));this.fetchTemplateRepresentation=(0,se.abortable)(this.abortAllController.signal,function(e,t){return ue(this,null,function*(){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(R({},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}=Su(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}fetchRepresentation(e,t,i="auto"){return P(this,null,function*(){var a,n;let{type:r}=e;switch(r){case"byteRange":return(a=yield this.fetchByteRangeRepresentation(e,t,i))!=null?a:null;case"template":return(n=yield this.fetchTemplateRepresentation(e,i))!=null?n:null;default:(0,se.assertNever)(r)}})}destroy(){this.abortAllController.abort(),this.tracer.end(),this.subscription.unsubscribe()}doFetch(e,t){return P(this,null,function*(){let i=yield Ft(e,t);if(i.ok)return i;let r=yield i.text(),a=parseInt(r);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:se.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:se.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:se.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:se.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:se.ErrorCategory.FATAL})}})}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}},Ou=s=>{if(!Wn(s))throw s};var Fu=require("@vkontakte/videoplayer-shared/es2015");var Kn=class s{constructor(e,t){this.currentRepresentation$=new Fu.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==null?void 0:e.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){var t;if(!(0,Fu.isNullable)(e))for(let i of this.representations)for(let r of i){let a=r.segmentReference,n=a.segments.length,o=a.segments[0].time.from,u=a.segments[n-1].time.to;if(e<o||e>u)continue;let l=a.segments.find(d=>d.time.from<=e&&d.time.to>=e);!l||((t=this.currentSegment)==null?void 0:t.time.from)===l.time.from&&this.currentSegment.time.to===l.time.to||(this.currentSegment=l,this.currentRepresentation$.next(N(R({},r),{label:"Live Text",language:"ru",isAuto:!0,url:new URL(l.url,a.baseUrl).toString()})))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e!=null?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!=null&&e.some(t=>s.filterRepresentations(t.representations)))}static filterRepresentations(e){return e==null?void 0:e.filter(t=>t.kind==="text"&&"segmentReference"in t&&St(t.segmentReference))}};var AB=["timeupdate","progress","play","seeked","stalled","waiting"],kB=["timeupdate","progress","loadeddata","playing","seeked"];var Nu=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new y.Subscription;this.representationSubscription=new y.Subscription;this.state$=new ie("none");this.currentVideoRepresentation$=new y.ValueSubject(void 0);this.currentVideoRepresentationInit$=new y.ValueSubject(void 0);this.currentAudioRepresentation$=new y.ValueSubject(void 0);this.currentVideoSegmentLength$=new y.ValueSubject(0);this.currentAudioSegmentLength$=new y.ValueSubject(0);this.error$=new y.Subject;this.lastConnectionType$=new y.ValueSubject(void 0);this.lastConnectionReused$=new y.ValueSubject(void 0);this.lastRequestFirstBytes$=new y.ValueSubject(void 0);this.currentLiveTextRepresentation$=new y.ValueSubject(null);this.isLive$=new y.ValueSubject(!1);this.isActiveLive$=new y.ValueSubject(!1);this.isLowLatency$=new y.ValueSubject(!1);this.liveDuration$=new y.ValueSubject(0);this.liveSeekableDuration$=new y.ValueSubject(0);this.liveAvailabilityStartTime$=new y.ValueSubject(0);this.liveStreamStatus$=new y.ValueSubject(void 0);this.bufferLength$=new y.ValueSubject(0);this.liveLatency$=new y.ValueSubject(void 0);this.liveLoadBufferLength$=new y.ValueSubject(0);this.livePositionFromPlayer$=new y.ValueSubject(0);this.currentStallDuration$=new y.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new y.ValueSubject(0);this.fetcherRecoverableError$=new y.Subject;this.fetcherError$=new y.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new y.Subject;this.gapWatchdogActive=!1;this.destroyController=new ye;this.initManifest=(0,y.abortable)(this.destroyController.signal,function(e,t,i){return ue(this,null,function*(){var r;this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=Oe(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),(r=this.manifest)!=null&&r.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:y.ErrorCategory.PARSER,message:"No playable video representations"})})}.bind(this));this.updateManifest=(0,y.abortable)(this.destroyController.signal,function(){return ue(this,null,function*(){var n,o;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:y.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=rT(e!=null?e:"",this.manifestUrlString)}catch(u){let l=(n=du(e))!=null?n:{id:"ManifestParsing",category:y.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:u};this.error$.next(l)}if(!t)return null;let i=(u,l,d)=>{var c,h,p,f;return!!((h=(c=this.element)==null?void 0:c.canPlayType)!=null&&h.call(c,l)&&((f=(p=$t())==null?void 0:p.isTypeSupported)!=null&&f.call(p,`${l}; codecs="${d}"`))||u==="text")};if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:u,latestSegmentPublishTime:l,streamIsUnpublished:d,streamIsAlive:c}=t.live,h=((o=t.duration)!=null?o:0)/1e3;this.liveSeekableDuration$.next(-1*h),this.liveDuration$.next((l-u)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";c||(p=d?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let u of["video","audio"]){let d=t.streams[u].filter(({mime:p,codecs:f})=>i(u,p,f)),c=new Set(d.map(({codecs:p})=>p)),h=ku(c);if(h&&(r[u]=d.filter(({codecs:p})=>p.startsWith(h))),u==="video"){let p=this.tuning.preferHDR,f=r.video.some(S=>S.hdr),m=r.video.some(S=>!S.hdr);ee.display.isHDR&&p&&f?r.video=r.video.filter(S=>S.hdr):m&&(r.video=r.video.filter(S=>!S.hdr))}}let a=N(R({},t),{streams:r});return this.tracer.log("updateManifestEnd",(0,y.flattenObject)(a)),a})}.bind(this));this.initRepresentations=(0,y.abortable)(this.destroyController.signal,function(e,t,i){return ue(this,null,function*(){var h;this.tracer.log("initRepresentationsStart",(0,y.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,y.assertNonNullable)(this.manifest),(0,y.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.representationSubscription=new y.Subscription,this.state$.startTransitionTo("representations_ready");let r=p=>{this.representationSubscription.add((0,y.fromEvent)(p,"error").pipe((0,y.filter)(f=>{var m;return!!((m=this.element)!=null&&m.played.length)})).subscribe(f=>{this.error$.next({id:"VideoSource",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:f})}))};this.source=this.tuning.useManagedMediaSource?Qo():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 p=document.createElement("source");r(p),p.type="application/x-mpegurl",p.src=i.url,this.element.appendChild(p)}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((p,f)=>[...p,...f.representations],[]);if(this.videoBufferManager=new Yn("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,y.isNonNullable)(t)){let p=this.manifest.streams.audio.reduce((f,m)=>[...f,...m.representations],[]);this.audioBufferManager=new Yn("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}Kn.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Kn(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=()=>{var p;(p=this.stallWatchdogSubscription)==null||p.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,y.merge)(...kB.map(p=>(0,y.fromEvent)(this.element,p))).pipe((0,y.map)(p=>this.element?De(this.element.buffered,this.element.currentTime*1e3):0),(0,y.filterChanged)(),(0,y.tap)(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,y.merge)((0,y.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,y.filterChanged)()).subscribe(f=>this.liveStreamEndTimestamp=(0,y.now)())),this.subscription.add((0,y.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,y.interval)(1e3).subscribe(f=>{let m=Qi(this.manifestUrlString,2);this.manifestUrlString=Oe(this.manifestUrlString,m+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,y.fromEvent)(this.element,"play").subscribe(f=>{var m;return(m=this.livePauseWatchdogSubscription)==null?void 0:m.unsubscribe()})),this.representationSubscription.add((0,y.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,y.map)(({isActiveLive:f,isLowLatency:m})=>f&&m),(0,y.filterChanged)()).subscribe(f=>{this.isManualDecreasePlaybackInLive()||ls(this.element,1)})),this.representationSubscription.add((0,y.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,y.filter)(({bufferLength:f,isActiveLive:m,isLowLatency:S})=>m&&S&&!!f)).subscribe(({bufferLength:f})=>this.liveBuffer.next(f))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(f=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!f)return;let m=this.liveSeekableDuration$.getValue()-f/1e3;this.liveSeekableDuration$.next(Math.max(m,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+f/1e3)})),this.representationSubscription.add((0,y.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,y.filter)(({isLive:f})=>f),(0,y.filterChanged)((f,m)=>m.bufferLength<f.bufferLength),(0,y.map)(({rtt:f,bufferLength:m,segmentServerLatency:S})=>{let v=Qi(this.manifestUrlString,2);return(f/2+m+S+v)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,y.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:f,isActiveLive:m,isLowLatency:S})=>{if(!S||!m)return;let v=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,x=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,I=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,E=f-v;if(this.isManualDecreasePlaybackInLive())return;let L=1;Math.abs(E)>x&&(L=1+Math.sign(E)*I),ls(this.element,L)})),this.representationSubscription.add(this.bufferLength$.subscribe(f=>{var S,v;let m=0;if(f){let x=((v=(S=this.element)==null?void 0:S.currentTime)!=null?v:0)*1e3;m=Math.min(...this.bufferManagers.map(E=>{var L,M;return(M=(L=E.getLiveSegmentsToLoadState(this.manifest))==null?void 0:L.to)!=null?M:x}))-x}this.liveLoadBufferLength$.getValue()!==m&&this.liveLoadBufferLength$.next(m)}));let p=0;this.representationSubscription.add((0,y.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,y.throttle)(1e3)).subscribe(S=>P(this,[S],function*({liveLoadBufferLength:f,bufferLength:m}){if(!this.element||this.isUpdatingLive)return;let v=this.element.playbackRate,x=Qi(this.manifestUrlString,2),I=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,E=Math.min(I,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*v),L=this.tuning.dashCmafLive.normalizedActualBufferOffset*v,M=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*v,_=isFinite(f)?f:m,G=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),X=I<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(X);let D="none";if(G?D="active_low_latency":this.isLowLatency$.getValue()&&X?(this.bufferManagers.forEach(U=>U.proceedLowLatencyLive()),D="active_low_latency"):x!==0&&_<E?D="live_forward_buffering":_<E+M&&(D="live_with_target_offset"),isFinite(f)&&(p=f>p?f:p),D==="live_forward_buffering"||D==="live_with_target_offset"){let U=p-(E+L),O=this.normolizeLiveOffset(Math.trunc(x+U/v)),F=Math.abs(O-x),$=0;!f||F<=this.tuning.dashCmafLive.offsetCalculationError?$=x:O>0&&F>this.tuning.dashCmafLive.offsetCalculationError&&($=O),this.manifestUrlString=Oe(this.manifestUrlString,$,2)}(D==="live_with_target_offset"||D==="live_forward_buffering")&&(p=0,yield this.updateLive())}),f=>{this.error$.next({id:"updateLive",category:y.ErrorCategory.VIDEO_PIPELINE,thrown:f,message:"Failed to update live with subscription"})}))}let l=(0,y.merge)(...this.bufferManagers.map(p=>p.fullyBuffered$)).pipe((0,y.map)(()=>this.bufferManagers.every(p=>p.fullyBuffered$.getValue()))),d=(0,y.merge)(...this.bufferManagers.map(p=>p.onLastSegment$)).pipe((0,y.map)(()=>this.bufferManagers.some(p=>p.onLastSegment$.getValue()))),c=(0,y.combine)({allBuffersFull:l,someBufferEnded:d}).pipe((0,y.filterChanged)(),(0,y.map)(({allBuffersFull:p,someBufferEnded:f})=>p&&f),(0,y.filter)(p=>p));if(this.representationSubscription.add((0,y.merge)(this.forceEnded$,c).subscribe(()=>{var p;if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(f=>!f.updating))try{(p=this.source)==null||p.endOfStream()}catch(f){this.error$.next({id:"EndOfStream",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:f})}})),this.representationSubscription.add((0,y.merge)(...this.bufferManagers.map(p=>p.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 p=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((f,m)=>{var S;p&&(this.timeoutSourceOpenId=setTimeout(()=>{var v;if(((v=this.source)==null?void 0:v.readyState)==="open"){f();return}this.tuning.dash.rejectOnSourceOpenTimeout?m(new Error("Timeout reject when wait sourceopen event")):f()},this.tuning.dash.sourceOpenTimeout)),(S=this.source)==null||S.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),f()},{once:!0})})}if(!this.isLive$.getValue()){let p=[(h=this.manifest.duration)!=null?h:0,...(0,zd.default)((0,zd.default)([...this.manifest.streams.audio,...this.manifest.streams.video],f=>f.representations),f=>{let m=[];return f.duration&&m.push(f.duration),St(f.segmentReference)&&f.segmentReference.totalSegmentsDurationMs&&m.push(f.segmentReference.totalSegmentsDurationMs),m})];this.source.duration=Math.max(...p)/1e3}this.audioBufferManager&&(0,y.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=()=>{var t,i,r,a;if(!this.element||!this.videoBufferManager||((t=this.source)==null?void 0:t.readyState)!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),(i=this.audioBufferManager)==null||i.maintain(e),(r=this.liveTextManager)==null||r.maintain(e),(this.videoBufferManager.gaps.length||(a=this.audioBufferManager)!=null&&a.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,y.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),n=>{this.error$.next({id:"GapWatchdog",category:y.ErrorCategory.WTF,message:"Error handling gaps",thrown:n})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.fetcher=new _u({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,R({},e.tuning.dashCmafLive.lowLatency.bufferEstimator)),this.initTracerSubscription()}seekLive(e){return P(this,null,function*(){var r,a,n;(0,y.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,y.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=Oe(this.manifestUrlString,i,2),this.manifest=yield this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,yield(r=this.videoBufferManager)==null?void 0:r.seekLive(this.manifest.streams.video),yield(a=this.audioBufferManager)==null?void 0:a.seekLive(this.manifest.streams.audio),(n=this.liveTextManager)==null||n.seekLive(this.manifest.streams.text))})}initBuffer(){(0,y.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,y.merge)(...AB.map(e=>(0,y.fromEvent)(this.element,e)),(0,y.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:y.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,y.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,y.fromEvent)(this.element,"waiting").subscribe(()=>{var t;this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&nt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{var p,f,m,S,v,x,I,E,L,M,_;if(!this.element||((p=this.source)==null?void 0:p.readyState)!=="open")return;let i=this.currentStallDuration$.getValue();i+=50,this.currentStallDuration$.next(i);let r={timeInWaiting:i},a=(0,y.now)(),n=100,o=(m=(f=this.videoBufferManager)==null?void 0:f.lastDataObtainedTimestamp)!=null?m:0;this.videoLastDataObtainedTimestamp$.next(o);let u=(v=(S=this.audioBufferManager)==null?void 0:S.lastDataObtainedTimestamp)!=null?v:0,l=(I=(x=this.videoBufferManager)==null?void 0:x.getForwardBufferDuration())!=null?I:0,d=(L=(E=this.audioBufferManager)==null?void 0:E.getForwardBufferDuration())!=null?L:0,c=l<n&&a-o>this.tuning.dash.crashOnStallTWithoutDataTimeout,h=this.audioBufferManager&&d<n&&a-u>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((c||h)&&i>this.tuning.dash.crashOnStallTWithoutDataTimeout||i>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${i} ms`);if(this.isLive$.getValue()&&i%2e3===0){let G=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(G).catch(X=>{this.error$.next({id:"stallIntervalCallback",category:y.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:X})}),r.liveLastOffset=G}else{let G=this.element.currentTime*1e3;(M=this.videoBufferManager)==null||M.maintain(G),(_=this.audioBufferManager)==null||_.maintain(G),r.position=G}this.tracer.log("stallIntervalCallback",(0,y.flattenObject)(r))};(t=this.stallWatchdogSubscription)==null||t.unsubscribe(),this.stallWatchdogSubscription=(0,y.interval)(50).subscribe(e,i=>{this.error$.next({id:"StallWatchdogCallback",category:y.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:i})}),this.subscription.add(this.stallWatchdogSubscription)})),this.tick()}switchRepresentation(e,t,i=!1){return P(this,null,function*(){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r==null?void 0:r.switchToWithPreviousAbort(t,i):r==null?void 0:r.switchTo(t,i):r==null?void 0:r.switchToOld(t,i)})}seek(e,t){return P(this,null,function*(){var r,a,n,o,u;(0,y.assertNonNullable)(this.element),(0,y.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((r=this.videoBufferManager.findSegmentStartTime(e))!=null?r:e,(n=(a=this.audioBufferManager)==null?void 0:a.findSegmentStartTime(e))!=null?n:e),this.warmUpMediaSourceIfNeeded(i),nt(this.element.buffered,i)||(yield Promise.all([this.videoBufferManager.abort(),(o=this.audioBufferManager)==null?void 0:o.abort()])),!((0,y.isNullable)(this.element)||(0,y.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),(u=this.audioBufferManager)==null||u.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,y.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))})}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){var i;(0,y.isNonNullable)(this.element)&&(0,y.isNonNullable)(this.source)&&(0,y.isNonNullable)(e)&&((i=this.source)==null?void 0:i.readyState)==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(r=>r.warmUpMediaSource())}get isStreamEnded(){var e;return((e=this.source)==null?void 0:e.readyState)==="ended"}stop(){var e,t,i;this.tracer.log("stop"),(e=this.element)==null||e.querySelectorAll("source").forEach(r=>{URL.revokeObjectURL(r.src),r.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),(t=this.videoBufferManager)==null||t.destroy(),this.videoBufferManager=null,(i=this.audioBufferManager)==null||i.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){var e;return(e=this.manifest)==null?void 0:e.streams}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){var e;this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),((e=this.source)==null?void 0:e.readyState)==="open"&&Array.from(this.source.sourceBuffers).every(t=>!t.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=(0,y.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}updateLive(){return P(this,null,function*(){var e,t;this.isUpdatingLive=!0,this.manifest=yield this.updateManifest(),this.manifest&&((e=this.bufferManagers)==null||e.forEach(i=>i.updateLive(this.manifest)),(t=this.liveTextManager)==null||t.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,y.flattenObject)({isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime,jumpTo:n,resultCurrentTime:this.element.currentTime})))}}};var xt=require("@vkontakte/videoplayer-shared/es2015"),Uu=class{constructor(){this.subscription=new xt.Subscription;this.pipSize$=new xt.ValueSubject(void 0);this.videoSize$=new xt.ValueSubject(void 0);this.elementSize$=new xt.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=xt.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,xt.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,xt.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,xt.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 kr=class{constructor(e){this.subscription=new oe.Subscription;this.videoState=new ie("stopped");this.droppedFramesManager=new es;this.stallsManager=new Du;this.elementSizeManager=new Uu;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Xi;this.audioTrackSwitchHistory=new Xi;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==null?void 0: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"),V(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"),V(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&V(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==null?void 0:i.to)==="playing"&&V(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&V(this.params.desiredState.playbackState,"paused");return;default:return(0,oe.assertNever)(e)}}};this.init3DScene=e=>{var i,r,a;if(this.scene3D)return;this.scene3D=new cs(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:((i=e.projectionData)==null?void 0:i.pose.yaw)||0,y:((r=e.projectionData)==null?void 0:r.pose.pitch)||0,z:((a=e.projectionData)==null?void 0:a.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 yt(e.source.url),this.params=e,this.video=tt(e.container,e.tuning),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(He(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 Nu({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=st(this.video);this.subscription.add(()=>i.destroy());let r=this.constructor.name,a=o=>{e.error$.next({id:r,category:oe.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,oe.filter)(l=>!!l.length),(0,oe.once)()).subscribe(l=>{this.droppedFramesManager.connect({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,oe.map)(l=>l.to.state!=="none"),(0,oe.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,oe.filter)(oe.isNonNullable),(0,oe.once)()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe((0,oe.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(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(_t(this.video,t.isLooped,r)),this.subscription.add(rt(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(vt(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(Tt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),V(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),V(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 d=this.player.getStreams();if((0,oe.assertNonNullable)(d,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let h=[];for(let p of d.audio){h.push(Fd(p));let f=[];for(let m of p.representations){let S=Yy(m);f.push(S),this.audioTracksMap.set(S,{stream:p,representation:m})}this.audioStreamsMap.set(p,f)}this.params.output.availableAudioStreams$.next(h)}let c=[];for(let h of d.video){c.push(Nd(h));let p=[];for(let f of h.representations){let m=Qy(N(R({},f),{streamId:h.id}));m&&(p.push(m),this.videoTracksMap.set(m,{stream:h,representation:f}))}this.videoStreamsMap.set(h,p)}this.params.output.availableVideoStreams$.next(c);for(let h of d.text)for(let p of h.representations){let f=Ky(h,p);this.textTracksMap.set(f,{stream:h,representation:p})}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,oe.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,oe.fromEvent)(this.video,"progress")).subscribe(()=>P(this,null,function*(){let l=this.player.state$.getState(),d=this.player.state$.getTransition();if(l!=="manifest_ready"&&l!=="running"||d)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState()),this.selectVideoAudioRepresentations();let{video:c,audio:h}=this.selectedRepresentations;if(!c)return;let p=Ar(this.videoTracksMap.keys(),m=>{var S;return((S=this.videoTracksMap.get(m))==null?void 0:S.representation.id)===c.id});(0,oe.isNonNullable)(p)&&(this.stallsManager.lastVideoTrackSelected=p);let f=this.params.desiredState.autoVideoTrackLimits.getTransition();if(f&&this.params.output.autoVideoTrackLimits$.next(f.to),l==="manifest_ready")yield this.player.initRepresentations(c.id,h==null?void 0:h.id,this.params.sourceHls);else if(yield this.player.switchRepresentation("video",c.id),h){let m=!!t.audioStream.getTransition();yield this.player.switchRepresentation("audio",h.id,m)}}),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,oe.filterChanged)()).subscribe(l=>{let d=Ar(this.videoTracksMap.entries(),([,{representation:f}])=>f.id===l);if(!d){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[c,{stream:h}]=d,p=this.params.desiredState.videoStream.getTransition();p&&p.to&&p.to.id===h.id&&this.params.desiredState.videoStream.setState(p.to),e.currentVideoTrack$.next(c),e.currentVideoStream$.next(Nd(h))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,oe.filterChanged)()).subscribe(l=>{let d=Ar(this.audioTracksMap.entries(),([,{representation:f}])=>f.id===l);if(!d){e.currentAudioStream$.next(void 0);return}let[c,{stream:h}]=d,p=this.params.desiredState.audioStream.getTransition();p&&p.to&&p.to.id===h.id&&this.params.desiredState.audioStream.setState(p.to),e.currentAudioStream$.next(Fd(h))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{var d,c;if(l!=null&&l.is3dVideo&&((d=this.params.tuning.spherical)!=null&&d.enabled))try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(h){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${h}`})}else this.destroy3DScene(),(c=this.params.tuning.spherical)!=null&&c.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,oe.map)(({to:l})=>l==="ready"),(0,oe.filterChanged)());this.subscription.add((0,oe.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,oe.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),c=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(c)})),this.subscription.add((0,oe.merge)(o,this.player.state$.stateChangeEnded$,(0,oe.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,oe.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,oe.observableFrom)(["init"])).pipe((0,oe.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var G,X,D,U,O,F,$,H,C,j,be,ge;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ma:Ra,t=this.params.tuning.useNewAutoSelectVideoTrack?nu:au,i=this.params.tuning.useNewAutoSelectVideoTrack?di:su,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=(G=r.videoTrack.getState())==null?void 0:G.id,u=Ar(this.videoTracksMap.keys(),J=>J.id===o),l=a.currentVideoTrack$.getValue(),d=((U=(D=r.videoStream.getState())!=null?D:u&&((X=this.videoTracksMap.get(u))==null?void 0:X.stream))!=null?U:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!d)return;let c=Ar(this.videoStreamsMap.keys(),J=>J.id===d.id),h=c&&this.videoStreamsMap.get(c);if(!h)return;let p=De(this.video.buffered,this.video.currentTime*1e3),f;this.player.isActiveLive$.getValue()?f=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?f=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:f=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let m=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,S=Math.min(p/Math.min(f,m||1/0),1),v=(O=r.audioStream.getState())!=null?O:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,x=(v==null?void 0:v.id)&&Ar(this.audioStreamsMap.keys(),J=>J.id===v.id)||this.audioStreamsMap.keys().next().value,I=0;if(x){if(u&&!n){let J=e(u,h,(F=this.audioStreamsMap.get(x))!=null?F:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);I=Math.max(I,($=J==null?void 0:J.bitrate)!=null?$:-1/0)}if(l){let J=e(l,h,(H=this.audioStreamsMap.get(x))!=null?H:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);I=Math.max(I,(C=J==null?void 0:J.bitrate)!=null?C:-1/0)}}let E=u;(n||!E)&&(E=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:I,forwardBufferHealth:S,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}));let L=x&&t(E,h,(j=this.audioStreamsMap.get(x))!=null?j:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:S,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate}),M=(be=this.videoTracksMap.get(E))==null?void 0:be.representation,_=L&&((ge=this.audioTracksMap.get(L))==null?void 0:ge.representation);M&&_?(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=_):M&&!_&&this.audioTracksMap.size===0&&(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=null)}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){at(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),V(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}))}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),it(this.video),this.tracer.end()}};var Xn=class extends kr{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 xe=require("@vkontakte/videoplayer-shared/es2015");var Jn=class extends kr{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 xe.ValueSubject(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe((0,xe.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,xe.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,xe.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,xe.filter)(o=>(0,xe.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,xe.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,xe.merge)(i.playbackRateState$,new xe.ValueSubject(1))}).pipe((0,xe.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),d=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;d||u<1-c||this.video.paused||(0,xe.isNullable)(l)||(e=o-l)})).add((0,xe.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,xe.merge)(i.playbackRateState$,new xe.ValueSubject(1))}).pipe((0,xe.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:c}=this.params.tuning.dashCmafLive.lowLatency;if(!d&&!this.video.paused&&l>=1-c||(0,xe.isNullable)(o)||(0,xe.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=Xy(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 nT=Y(Aa(),1);var de=require("@vkontakte/videoplayer-shared/es2015");var ri={};var hs=(s,e)=>new de.Observable(t=>{let i=(r,a)=>t.next(a);return s.on(e,i),()=>s.off(e,i)}),Zn=class{constructor(e){this.subscription=new de.Subscription;this.videoState=new ie("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==null?void 0: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,de.assertNever)(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:(0,de.assertNever)(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:(0,de.assertNever)(e)}break;case"paused":switch(e){case"paused":break;case"stopped":this.prepare();break;case"ready":this.videoState.setState("paused"),V(this.params.desiredState.playbackState,"paused");break;case"playing":this.pause();break;default:(0,de.assertNever)(e)}break;default:(0,de.assertNever)(t)}};this.textTracksManager=new yt(e.source.url),this.video=tt(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(He(this.params.source.url)),this.loadHlsJs()}destroy(){var e,t;this.subscription.unsubscribe(),this.trackLevels.clear(),this.textTracksManager.destroy(),(e=this.hls)==null||e.detachMedia(),(t=this.hls)==null||t.destroy(),this.params.output.element$.next(void 0),it(this.video)}loadHlsJs(){let e=!1,t=r=>{e||this.params.output.error$.next({id:r==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:de.ErrorCategory.NETWORK,message:"Failed to load Hls.js",thrown:r}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,nT.default)(import("hls.js").then(r=>{e||(ri.Hls=r.default,ri.Events=r.default.Events,this.init())},t),()=>{window.clearTimeout(i),e=!0})}init(){(0,de.assertNonNullable)(ri.Hls,"hls.js not loaded"),this.hls=new ri.Hls({fragLoadingMaxRetry:5,levelLoadingMaxRetry:2,manifestLoadingMaxRetry:2,fragLoadingMaxRetryTimeout:16e3,manifestLoadingMaxRetryTimeout:2e3,levelLoadingMaxRetryTimeout:2e3}),this.subscribe(),this.videoState.setState("stopped")}subscribe(){(0,de.assertNonNullable)(ri.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:de.ErrorCategory.WTF,message:"HlsJsProvider internal logic error",thrown:l})},r=st(this.video);this.subscription.add(()=>r.destroy());let a=(l,d)=>this.subscription.add(l.subscribe(d,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(rt(this.video,e.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$)),this.subscription.add(vt(this.video,e.playbackRate,r.playbackRateState$,i)),a(Tt(this.video),t.elementVisible$),a(this.videoState.stateChangeEnded$.pipe((0,de.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(hs(this.hls,ri.Events.ERROR).subscribe(l=>{var d;l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:de.ErrorCategory.WTF,message:`HlsJs fatal ${l.type} ${l.details}, ${(d=l.err)==null?void 0:d.message} ${l.reason}`,thrown:l.error})})),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),V(e.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),V(e.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var l;((l=this.videoState.getTransition())==null?void 0:l.to)==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),a(hs(this.hls,ri.Events.MANIFEST_PARSED).pipe((0,de.map)(({levels:l})=>l.reduce((d,c)=>{var x,I;let h=c.name||c.height.toString(10),{width:p,height:f}=c,m=(I=ci((x=c.attrs.QUALITY)!=null?x:""))!=null?I:(0,de.videoSizeToQuality)({width:p,height:f});if(!m)return d;let S=c.attrs["FRAME-RATE"]?parseFloat(c.attrs["FRAME-RATE"]):void 0,v={id:h.toString(),quality:m,bitrate:c.bitrate/1e3,size:{width:p,height:f},fps:S};return this.trackLevels.set(h,{track:v,level:c}),d.push(v),d},[]))),t.availableVideoTracks$),a(hs(this.hls,ri.Events.MANIFEST_PARSED),l=>{if(l.subtitleTracks.length>0){let d=[];for(let c of l.subtitleTracks){let h=c.name,p=c.attrs.URI||"",f=c.lang;d.push({id:h,url:p,language:f,type:"internal"})}e.internalTextTracks.startTransitionTo(d)}}),a(hs(this.hls,ri.Events.LEVEL_LOADING).pipe((0,de.map)(({url:l})=>He(l))),t.hostname$),a(hs(this.hls,ri.Events.FRAG_CHANGED),l=>{var h,p,f,m;let{video:d,audio:c}=l.frag.elementaryStreams;t.currentVideoSegmentLength$.next((((h=d==null?void 0:d.endPTS)!=null?h:0)-((p=d==null?void 0:d.startPTS)!=null?p:0))*1e3),t.currentAudioSegmentLength$.next((((f=c==null?void 0:c.endPTS)!=null?f:0)-((m=c==null?void 0:c.startPTS)!=null?m:0))*1e3)}),this.subscription.add(Ki(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=>{var d;return(d=Array.from(this.trackLevels.values()).find(({level:c})=>c===l))==null?void 0:d.track},o=hs(this.hls,ri.Events.LEVEL_SWITCHED).pipe((0,de.map)(({level:l})=>n(this.hls.levels[l])));o.pipe((0,de.filter)(de.isNonNullable)).subscribe(t.currentVideoTrack$,i),this.subscription.add(Ki(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{var f;if((0,de.isNullable)(l))return;let d=(f=this.trackLevels.get(l.id))==null?void 0:f.level;if(!d)return;let c=this.hls.levels.indexOf(d),h=this.hls.currentLevel,p=this.hls.levels[h];!p||d.bitrate>p.bitrate?this.hls.nextLevel=c:(this.hls.loadLevel=c,this.hls.loadLevel=c)},{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,de.merge)(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,de.observableFrom)(["init"])).pipe((0,de.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)}playIfAllowed(){return P(this,null,function*(){this.videoState.startTransitionTo("playing"),(yield at(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).catch(t=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:de.ErrorCategory.DOM,thrown:t})))||(this.videoState.setState("paused"),V(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"),V(this.params.desiredState.playbackState,"stopped",!0)}};var oT="X-Playback-Duration",Wd=s=>P(void 0,null,function*(){var r;let e=yield Ft(s),t=yield e.text(),i=(r=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t))==null?void 0:r[1];return i?parseInt(i,10):e.headers.has(oT)?parseInt(e.headers.get(oT),10):void 0});var le=require("@vkontakte/videoplayer-shared/es2015");var Yd=Y(sc(),1);var qu=require("@vkontakte/videoplayer-shared/es2015");var MB=s=>{let e=null;if(s.QUALITY&&(e=ci(s.QUALITY)),!e&&s.RESOLUTION){let[t,i]=s.RESOLUTION.split("x").map(r=>parseInt(r,10));e=(0,qu.videoSizeToQuality)({width:t,height:i})}return e!=null?e:null},LB=(s,e)=>{var a,n;let t=s.split(`
|
|
76
|
+
`),i=[],r=[];for(let o=0;o<t.length;o++){let u=t[o],l=u.match(/^#EXT-X-STREAM-INF:(.+)/),d=u.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!l&&!d)){if(l){let c=(0,Yd.default)(l[1].split(",").map(x=>x.split("="))),h=(a=c.QUALITY)!=null?a:`stream-${c.BANDWIDTH}`,p=MB(c),f;c.BANDWIDTH&&(f=parseInt(c.BANDWIDTH,10)/1e3||void 0),!f&&c["AVERAGE-BANDWIDTH"]&&(f=parseInt(c["AVERAGE-BANDWIDTH"],10)/1e3||void 0);let m=c["FRAME-RATE"]?parseFloat(c["FRAME-RATE"]):void 0,S;if(c.RESOLUTION){let[x,I]=c.RESOLUTION.split("x").map(E=>parseInt(E,10));x&&I&&(S={width:x,height:I})}let v=new URL(t[++o],e).toString();p&&i.push({id:h,quality:p,url:v,bandwidth:f,size:S,fps:m})}if(d){let c=(0,Yd.default)(d[1].split(",").map(m=>{let S=m.indexOf("=");return[m.substring(0,S),m.substring(S+1)]}).map(([m,S])=>[m,S.replace(/^"|"$/g,"")])),h=(n=c.URI)==null?void 0:n.replace(/playlist$/,"subtitles.vtt"),p=c.LANGUAGE,f=c.NAME;h&&p&&r.push({type:"internal",id:p,label:f,language:p,url:h,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:r}},BB=s=>new Promise(e=>{setTimeout(()=>{e()},s)}),Qd=0,uT=(r,...a)=>P(void 0,[r,...a],function*(s,e=s,t,i){let o=yield(yield Ft(s,i)).text();Qd+=1;try{let{qualityManifests:u,textTracks:l}=LB(o,e);return{qualityManifests:u,textTracks:l}}catch(u){if(Qd<=t.manifestRetryMaxCount)return yield BB((0,qu.getExponentialDelay)(Qd-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),uT(s,e,t)}return{qualityManifests:[],textTracks:[]}}),Hu=uT;var Vt=require("@vkontakte/videoplayer-shared/es2015");var ju=class{constructor(e,t,i,r,a){this.subscription=new Vt.Subscription;this.abortControllers={destroy:new ye,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new Vt.ValueSubject(null);this.getCurrentTime$=new Vt.ValueSubject(null);this.error$=new Vt.Subject;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:a},this.subscription.add(e.pipe((0,Vt.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()}prepare(e){return P(this,null,function*(){try{let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),this.prepareUrl=t.toString();let{textTracks:i}=yield this.fetchManifestData();yield this.processTextTracks(i,this.params.sourceUrl)}catch(t){this.error("prepare",t)}})}processTextTracks(e,t){return P(this,null,function*(){try{let i=yield this.parseTextTracks(e,t);i&&(this.currentTextTrackData=i)}catch(i){this.error("processTextTracks",i)}})}parseTextTracks(e,t){return P(this,null,function*(){for(let i of e){let r=new URL(i.url,t).toString(),n=yield(yield Ft(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(`
|
|
77
|
+
`),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(),d=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:a,to:a+d},url:l}),a=a+d,!i.segmentStartTime){let c=new Date(i.vkStartTime).valueOf(),h=new Date(i.programDateTime).valueOf();i.segmentStartTime=h-c}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,Vt.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([N(R({},this.currentTextTrackData.textTrack),{url:n.url,isAuto:!0})]);break}}}fetchNextManifestData(){return P(this,null,function*(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new ye;let{textTracks:e}=yield this.fetchManifestData(),t=yield 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}})}fetchManifestData(){return P(this,null,function*(){var t;let e=(t=this.prepareUrl)!=null?t:this.params.sourceUrl;return yield this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})})}error(e,t){this.error$.next({id:"[LiveTextManager][HLS_LIVE_CMAF]",category:Vt.ErrorCategory.WTF,thrown:t,message:e})}};var eo=class{constructor(e){this.subscription=new le.Subscription;this.videoState=new ie("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new le.ValueSubject([]);this.liveOffset=new yr;this.manifestStartTime$=new le.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"),V(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 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((r==null?void 0: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"?V(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),V(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==null?void 0:r.to)==="playing"&&V(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(r==null?void 0:r.to)==="paused"&&(V(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return(0,le.assertNever)(t)}};var i;this.params=e,this.video=tt(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:le.VideoQuality.INVARIANT,url:this.params.source.url};let t=(r,a)=>Hu(r,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 ju(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new yt(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:r,textTracks:a})=>{var n;r.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:le.ErrorCategory.WTF,message:"HlsLiveProvider: there are no qualities in manifest"}),(n=this.liveTextManager)==null||n.processTextTracks(a,this.params.source.url),this.manifests$.next([this.masterManifest,...r])}).catch(r=>{this.params.output.error$.next({id:"ExtractHlsQualities",category:le.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:r})}),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(He(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new le.ValueSubject((i=e.source.maxSeekBackTime)!=null?i:1/0),this.subscribe()}selectManifest(){var u,l,d,c;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=(c=(d=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?d:(l=t.getState())==null?void 0:l.id)!=null?c:"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":a;return i&&!r&&t.startTransitionTo(this.masterManifest),n.find(h=>h.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsLiveProvider",category:le.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=st(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(rt(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(vt(this.video,t.playbackRate,r.playbackRateState$,i)),a(Tt(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"),V(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),V(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var o;((o=this.videoState.getTransition())==null?void 0:o.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,le.filterChanged)(),(0,le.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(),d=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,le.isNonNullable)(l.to)){let c=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let h=this.manifests$.getValue().find(p=>p.id===c);h&&(this.params.output.currentVideoTrack$.next(h),this.params.output.hostname$.next(He(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(r.loadedData$.subscribe(()=>{var u,l,d;let o=(d=(l=(u=this.video)==null?void 0:u.getStartDate)==null?void 0:l.call(u))==null?void 0:d.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add((0,le.combine)({startTime:this.manifestStartTime$.pipe((0,le.filter)(le.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,le.map)(o=>o.map(({id:u,quality:l,size:d,bandwidth:c,fps:h})=>({id:u,quality:l,size:d,fps:h,bitrate:c})))).subscribe(this.params.output.availableVideoTracks$,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(){var e,t;this.subscription.unsubscribe(),(e=this.textTracksManager)==null||e.destroy(),(t=this.liveTextManager)==null||t.destroy(),this.params.output.element$.next(void 0),it(this.video)}prepare(){var o,u,l;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:d,min:c}=(u=(o=t==null?void 0:t.to)!=null?o:i)!=null?u:{};for(let[h,p]of[[d,"mq"],[c,"lq"]]){let f=String(parseFloat(h||""));p&&h&&r.searchParams.set(p,f)}}let a=this.params.format==="HLS_LIVE_CMAF"?2:0,n=Oe(r.toString(),this.liveOffset.getTotalOffset(),a);(l=this.liveTextManager)==null||l.prepare(n),this.video.setAttribute("src",n),this.video.load(),Wd(n).then(d=>{var c;if(!(0,le.isNullable)(d))this.maxSeekBackTime$.next(d);else{let h=(c=this.params.source.maxSeekBackTime)!=null?c:this.maxSeekBackTime$.getValue();((0,le.isNullable)(h)||!isFinite(h))&&Ft(n).then(p=>p.text()).then(p=>{var m;let f=(m=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(p))==null?void 0:m[1];if(f){let S=new URL(f,n).toString();Wd(S).then(v=>{(0,le.isNullable)(v)||this.maxSeekBackTime$.next(v)})}}).catch(()=>{})}})}playIfAllowed(){at(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),V(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();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=Oe(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 ve=require("@vkontakte/videoplayer-shared/es2015");var to=class{constructor(e){this.subscription=new ve.Subscription;this.videoState=new ie("stopped");this.manifests$=new ve.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"),V(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 d=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(d);let{currentTime:c}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:c*1e3,forcePrecise:!0});return}switch((r==null?void 0:r.to)!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?V(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),V(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==null?void 0:r.to)==="playing"&&V(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(r==null?void 0:r.to)==="paused"&&V(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return(0,ve.assertNever)(t)}};this.textTracksManager=new yt(e.source.url),this.params=e,this.video=tt(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:ve.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(He(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),Hu(Oe(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:ve.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:t})),this.subscribe()}selectManifest(){var u,l,d,c;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=(c=(d=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?d:(l=t.getState())==null?void 0:l.id)!=null?c:"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(h=>h.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsProvider",category:ve.ErrorCategory.WTF,message:"HlsProvider internal logic error",thrown:o})},r=st(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,ve.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(_t(this.video,t.isLooped,i)),this.subscription.add(rt(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(vt(this.video,t.playbackRate,r.playbackRateState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),V(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),V(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var o;((o=this.videoState.getTransition())==null?void 0:o.to)==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i).add(r.loadedMetadata$.subscribe(()=>{var p;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,ve.isNonNullable)(l.to)){let f=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let m=this.manifests$.getValue().find(S=>S.id===f);m&&(this.params.output.currentVideoTrack$.next(m),this.params.output.hostname$.next(He(m.url)))}let c=this.params.desiredState.playbackRate.getState(),h=(p=this.params.output.element$.getValue())==null?void 0:p.playbackRate;if(c!==h){let f=this.params.output.element$.getValue();f&&(this.params.desiredState.playbackRate.setState(c),f.playbackRate=c)}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,ve.map)(o=>o.map(({id:u,quality:l,size:d,bandwidth:c,fps:h})=>({id:u,quality:l,size:d,fps:h,bitrate:c})))).subscribe(this.params.output.availableVideoTracks$,i)),!ee.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add((0,ve.merge)((0,ve.fromEvent)(o,"addtrack"),(0,ve.fromEvent)(o,"removetrack"),(0,ve.fromEvent)(o,"change"),(0,ve.observableFrom)(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=(0,ve.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,ve.observableFrom)(["init"])).pipe((0,ve.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),it(this.video)}prepare(){var a,n;let e=this.selectManifest();if((0,ve.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}=(n=(a=t==null?void 0:t.to)!=null?a:i)!=null?n:{};for(let[l,d]of[[o,"mq"],[u,"lq"]]){let c=String(parseFloat(l||""));d&&l&&r.searchParams.set(d,c)}}this.video.setAttribute("src",r.toString()),this.video.load()}playIfAllowed(){at(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),V(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ve.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var lT=Y(Fr(),1),Kd=Y(vr(),1),cT=Y(ei(),1);var Pe=require("@vkontakte/videoplayer-shared/es2015");var io=class{constructor(e){this.subscription=new Pe.Subscription;this.videoState=new ie("stopped");this.trackUrls={};this.textTracksManager=new yt;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"),V(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==null?void 0:i.to)!=="paused"&&o.state==="requested"&&this.seek(o.position),e){case"ready":t==="ready"?V(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),V(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==null?void 0:i.to)==="playing"&&V(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&V(this.params.desiredState.playbackState,"paused");return;default:return(0,Pe.assertNever)(e)}};this.params=e,this.video=tt(e.container,e.tuning),this.params.output.element$.next(this.video),(0,lT.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,Kd.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:Pe.ErrorCategory.WTF,message:"MpegProvider internal logic error",thrown:o})},r=st(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,Pe.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(_t(this.video,t.isLooped,i)),this.subscription.add(rt(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(vt(this.video,t.playbackRate,r.playbackRateState$,i)),a(Tt(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),V(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),V(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var u,l;((u=this.videoState.getTransition())==null?void 0:u.to)==="ready"&&this.videoState.setState("ready");let o=this.params.desiredState.videoTrack.getTransition();if(o&&(0,Pe.isNonNullable)(o.to)){this.params.desiredState.videoTrack.setState(o.to),this.params.output.currentVideoTrack$.next(this.trackUrls[o.to.id].track);let d=this.params.desiredState.playbackRate.getState(),c=(l=this.params.output.element$.getValue())==null?void 0:l.playbackRate;if(d!==c){let h=this.params.output.element$.getValue();h&&(this.params.desiredState.playbackRate.setState(d),h.playbackRate=d)}}this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.textTracksManager.connect(this.video,t,e);let n=(0,Pe.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,Pe.observableFrom)(["init"])).pipe((0,Pe.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),it(this.video)}prepare(){var i;let e=(i=this.params.desiredState.videoTrack.getState())==null?void 0:i.id;(0,Pe.assertNonNullable)(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];(0,Pe.assertNonNullable)(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=er(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(He(t))}playIfAllowed(){at(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),V(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:Pe.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}handleQualityLimitTransition(e){var l,d;this.params.output.autoVideoTrackLimits$.next(e);let t=c=>{this.params.output.currentVideoTrack$.next(c),this.params.desiredState.videoTrack.startTransitionTo(c)},i=c=>{let h=di(n,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:c});t(h)},r=(l=this.params.output.currentVideoTrack$.getValue())==null?void 0:l.quality,a=!!(e.max||e.min),n=(0,Kd.default)(this.trackUrls).map(c=>c.track);if(!r||!a||Xr(e,n[0].quality,(d=(0,cT.default)(n,-1))==null?void 0:d.quality)){i();return}let o=e.max?(0,Pe.isLowerOrEqual)(r,e.max):!0,u=e.min?(0,Pe.isHigherOrEqual)(r,e.min):!0;o&&u||i(e)}};var je=require("@vkontakte/videoplayer-shared/es2015");var pT=require("@vkontakte/videoplayer-shared/es2015");var dT=["stun:videostun.mycdn.me:80"],DB=1e3,$B=3,Xd=()=>null,Gu=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=Xd;this.externalStopCallback=Xd;this.externalErrorCallback=Xd;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}}handleUpdateMessage(e){return P(this,null,function*(){try{let t=yield this.createOffer();this.peerConnection&&(yield this.peerConnection.setLocalDescription(t)),this.handleAnswer(e.sdp)}catch(t){this.handleRTCError(t)}})}handleLogin(){return P(this,null,function*(){try{let e={iceServers:[{urls:dT}]};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=yield this.createOffer();yield this.peerConnection.setLocalDescription(t),this.send({type:this.signalingType,inviteType:"OFFER",streamKey:this.streamKey,sdp:t.sdp,callSupport:!1})}catch(e){this.handleRTCError(e)}})}handleAnswer(e){return P(this,null,function*(){try{this.peerConnection&&(yield this.peerConnection.setRemoteDescription(new RTCSessionDescription({type:"answer",sdp:e})))}catch(t){this.handleRTCError(t)}})}handleCandidate(e){return P(this,null,function*(){if(e)try{this.peerConnection&&(yield 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:pT.ErrorCategory.WTF,message:e.message})}onPeerConnectionStream(e){return P(this,null,function*(){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()))}}createOffer(){return P(this,null,function*(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw new Error("Can not create offer - no peer connection instance ");let t=yield 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(t){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),DB)}normalizeOptions(e={}){let t={stunServerList:dT,maxRetryNumber:$B,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var ro=class{constructor(e){this.videoState=new ie("stopped");this.maxSeekBackTime$=new je.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"),V(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"),V(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==null?void 0:i.to)==="playing"&&V(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&V(this.params.desiredState.playbackState,"paused");return;default:return(0,je.assertNever)(e)}};this.subscription=new je.Subscription,this.params=e,this.video=tt(e.container,e.tuning),this.liveStreamClient=new Gu(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),it(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:je.ErrorCategory.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})},r=st(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(Tt(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(()=>{var n;((n=this.videoState.getTransition())==null?void 0:n.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(rt(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,je.assertNever)(n.to)}},i)).add((0,je.merge)(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,je.observableFrom)(["init"])).pipe((0,je.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(He(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:je.VideoQuality.INVARIANT}),this.video.srcObject=e,V(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:je.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){at(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),V(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:je.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var so=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 w=require("@vkontakte/videoplayer-shared/es2015");var Ni=require("@vkontakte/videoplayer-shared/es2015"),hT=s=>new Ni.Observable(e=>{let t=new Ni.Subscription,i=s.desiredPlaybackState$.stateChangeStarted$.pipe((0,Ni.map)(({from:l,to:d})=>`${l}-${d}`)),r=s.desiredPlaybackState$.stateChangeEnded$,a=s.providerChanged$.pipe((0,Ni.map)(({type:l})=>l!==void 0)),n=new Ni.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 Nt=require("@vkontakte/videoplayer-shared/es2015");function fT(){return new(window.AudioContext||window.webkitAudioContext)}var ao=class ao{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new ye;this.subscriptions=new Nt.Subscription;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe((0,Nt.filter)(a=>!!a.type),(0,Nt.once)()).subscribe(({type:a})=>this.subscribe(a)))}subscribe(e){ee.browser.isSafari&&e!=="MPEG"||this.subscriptions.add((0,Nt.combine)({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe((0,Nt.filter)(({playbackState:t,video:i,volume:{muted:r,volume:a}})=>t==="playing"&&!!i&&!r&&!!a),(0,Nt.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}initAudioContextOnce(e){return P(this,null,function*(){let{volumeMultiplier:t}=this,i=fT();this.audioContext=i;let r=i.createGain();if(this.gainNode=r,r.gain.value=t,r.connect(i.destination),i.state==="suspended"&&(yield 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){var t;this.volumeMultiplierError$.next({id:ao.errorId,category:Nt.ErrorCategory.VIDEO_PIPELINE,message:(t=e==null?void 0:e.message)!=null?t:`${ao.errorId} exception`,thrown:e})}};ao.errorId="VolumeMultiplierManager";var fs=ao;var CB={chunkDuration:5e3,maxParallelRequests:5},no=class{constructor(e){this.current$=new w.ValueSubject({type:void 0});this.providerError$=new w.Subject;this.noAvailableProvidersError$=new w.Subject;this.volumeMultiplierError$=new w.Subject;this.providerOutput={position$:new w.ValueSubject(0),duration$:new w.ValueSubject(1/0),volume$:new w.ValueSubject({muted:!1,volume:1}),availableVideoStreams$:new w.ValueSubject([]),currentVideoStream$:new w.ValueSubject(void 0),availableVideoTracks$:new w.ValueSubject([]),currentVideoTrack$:new w.ValueSubject(void 0),availableAudioStreams$:new w.ValueSubject([]),currentAudioStream$:new w.ValueSubject(void 0),availableAudioTracks$:new w.ValueSubject([]),currentVideoSegmentLength$:new w.ValueSubject(0),currentAudioSegmentLength$:new w.ValueSubject(0),isAudioAvailable$:new w.ValueSubject(!0),autoVideoTrackLimitingAvailable$:new w.ValueSubject(!1),autoVideoTrackLimits$:new w.ValueSubject(void 0),currentBuffer$:new w.ValueSubject(void 0),isBuffering$:new w.ValueSubject(!0),error$:new w.Subject,fetcherError$:new w.Subject,fetcherRecoverableError$:new w.Subject,warning$:new w.Subject,willSeekEvent$:new w.Subject,soundProhibitedEvent$:new w.Subject,seekedEvent$:new w.Subject,loopedEvent$:new w.Subject,endedEvent$:new w.Subject,firstBytesEvent$:new w.Subject,loadedMetadataEvent$:new w.Subject,firstFrameEvent$:new w.Subject,canplay$:new w.Subject,isLive$:new w.ValueSubject(void 0),isLiveEnded$:new w.ValueSubject(null),isLowLatency$:new w.ValueSubject(!1),canChangePlaybackSpeed$:new w.ValueSubject(!0),liveTime$:new w.ValueSubject(void 0),liveBufferTime$:new w.ValueSubject(void 0),liveLatency$:new w.ValueSubject(void 0),severeStallOccurred$:new w.Subject,availableTextTracks$:new w.ValueSubject([]),currentTextTrack$:new w.ValueSubject(void 0),hostname$:new w.ValueSubject(void 0),httpConnectionType$:new w.ValueSubject(void 0),httpConnectionReused$:new w.ValueSubject(void 0),inPiP$:new w.ValueSubject(!1),inFullscreen$:new w.ValueSubject(!1),element$:new w.ValueSubject(void 0),elementVisible$:new w.ValueSubject(!0),availableSources$:new w.ValueSubject(void 0),is3DVideo$:new w.ValueSubject(!1),playbackState$:new w.ValueSubject(""),getCurrentTime$:new w.ValueSubject(null)};this.subscription=new w.Subscription;this.volumeMultiplierManager=null;this.params=e;let t=My([...By(this.params.tuning),...Ly(this.params.tuning)],this.params.tuning).filter(l=>(0,w.isNonNullable)(e.sources[l])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,a=[];i?a=[i]:r.length?a=[...t.filter(l=>!(0,Jd.default)(r,l)),...t.filter(l=>(0,Jd.default)(r,l))]:a=t,this.screenFormatsIterator=new so(a);let n=[...Ld(!0),...Ld(!1)];this.chromecastFormatsIterator=new so(n.filter(l=>(0,w.isNonNullable)(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&fs.isSupported()&&(this.volumeMultiplierManager=new fs(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(){var e;this.destroyProvider(),this.current$.next({type:void 0}),this.subscription.unsubscribe(),(e=this.volumeMultiplierManager)==null||e.destroy(),this.volumeMultiplierManager=null}initProvider(){let e=this.chooseDestination(),t=this.chooseFormat(e);if((0,w.isNullable)(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:w.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.destroyProvider(),this.initProvider()}switchToNextProvider(e){this.destroyProvider(),this.failoverIndex=void 0,this.skipFormat(e),this.initProvider()}destroyProvider(){let e=this.current$.getValue().provider;if(!e)return;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(e){case"SCREEN":return this.createScreenProvider(t);case"CHROMECAST":return this.createChromecastProvider(t);default:return(0,w.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,w.assertNonNullable)(u),this.params.tuning.useNewDashProvider?new Xn(N(R({},o),{source:u,sourceHls:l})):new vn(N(R({},o),{source:u,sourceHls:l}))}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),this.params.tuning.useNewDashProvider?new Jn(N(R({},o),{source:u})):new yn(N(R({},o),{source:u}))}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),ee.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new to(N(R({},o),{source:u})):new Zn(N(R({},o),{source:u}))}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),new eo(N(R({},o),{source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e}))}case"MPEG":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),new io(N(R({},o),{source:u}))}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),new CS(N(R({},o),{source:u,config:N(R({},CB),{maxPausedTime:this.params.tuning.live.maxPausedTime})}))}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),new ro({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,w.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,w.assertNonNullable)(o),new ka({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,w.assertNever)(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return(0,w.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,w.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 N(R({},e),{url:i(e.url)})}return(0,bT.default)((0,mT.default)(e).map(([r,a])=>[r,i(a)]))}initProviderErrorHandling(){let e=new w.Subscription,t=!1,i=0;return e.add((0,w.merge)(this.providerOutput.error$.pipe((0,w.filter)(r=>!this.params.tuning.ignoreAudioRendererError||!r.message||!/AUDIO_RENDERER_ERROR/ig.test(r.message))),hT({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe((0,w.map)(r=>({id:`ProviderHangup:${r}`,category:w.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,w.filter)(({to:a})=>a==="playing"),(0,w.once)()).subscribe(()=>t=!0);e.add(r)})),e.add(this.providerError$.subscribe(r=>{let a=this.current$.getValue().destination;if(a==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("SCREEN"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let n=r.category===w.ErrorCategory.NETWORK,o=r.category===w.ErrorCategory.FATAL,u=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),l=i<this.params.tuning.providerErrorLimit&&!o;l?(i++,this.reinitProvider()):u&&!o&&(n&&t||!l)?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(a!=null?a:"SCREEN"))}})),e}};var te=require("@vkontakte/videoplayer-shared/es2015");var VB=5e3,gT="one_video_throughput",ST="one_video_rtt",Ui=window.navigator.connection,vT=()=>{let s=Ui==null?void 0:Ui.downlink;if((0,te.isNonNullable)(s)&&s!==10)return s*1e3},yT=()=>{let s=Ui==null?void 0:Ui.rtt;if((0,te.isNonNullable)(s)&&s!==3e3)return s},TT=(s,e,t)=>{let i=t*8,r=i/s;return i/(r+e)},Zd=class s{constructor(e){this.subscription=new te.Subscription;this.concurrentDownloads=new Set;var r,a;this.tuningConfig=e;let t=s.load(gT)||(e.useBrowserEstimation?vT():void 0)||VB,i=(a=(r=s.load(ST))!=null?r:e.useBrowserEstimation?yT():void 0)!=null?a:0;if(this.throughput$=new te.ValueSubject(t),this.rtt$=new te.ValueSubject(i),this.rttAdjustedThroughput$=new te.ValueSubject(TT(t,i,e.rttPenaltyRequestSize)),this.throughput=Vi.getSmoothedValue(t,-1,e),this.rtt=Vi.getSmoothedValue(i,1,e),e.useBrowserEstimation){let n=()=>{let u=vT();u&&this.throughput.next(u);let l=yT();(0,te.isNonNullable)(l)&&this.rtt.next(l)};Ui&&"onchange"in Ui&&this.subscription.add((0,te.fromEvent)(Ui,"change").subscribe(n)),n()}this.subscription.add(this.throughput.smoothed$.subscribe(n=>{te.safeStorage.set(gT,n.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(n=>{te.safeStorage.set(ST,n.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add((0,te.combine)({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe((0,te.map)(({throughput:n,rtt:o})=>TT(n,o,e.rttPenaltyRequestSize)),(0,te.filter)(n=>{let o=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(n-o)/o>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,i=(0,te.now)(),r=new te.Subscription;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add((0,te.fromEvent)(e,"progress").pipe((0,te.once)()).subscribe(a=>{t=a.loaded,i=(0,te.now)()}));break;case 1:case 0:r.add((0,te.fromEvent)(e,"loadstart").subscribe(()=>{t=0,i=(0,te.now)()}));break}r.add((0,te.fromEvent)(e,"loadend").subscribe(a=>{if(e.status===200){let n=a.loaded,o=(0,te.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,te.now)(),n=0,o=(0,te.now)(),u=d=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${d}`).catch(()=>{})},l=h=>P(this,[h],function*({done:d,value:c}){if(d)!t&&this.addRawSpeed(r,(0,te.now)()-a,1),this.concurrentDownloads.delete(e);else if(c){if(t){let p=(0,te.now)();if(p-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||p-a>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let m=o-a;m&&this.addRawSpeed(n,m,1,t),n=c.byteLength,a=(0,te.now)()}else n+=c.byteLength;o=(0,te.now)()}else r+=c.byteLength,n+=c.byteLength,n>=this.tuningConfig.streamMinSampleSize&&(0,te.now)()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,(0,te.now)()-o,this.concurrentDownloads.size),n=0,o=(0,te.now)());yield i==null?void 0:i.read().then(l,u)}});this.concurrentDownloads.add(e),i==null||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){var i;let t=te.safeStorage.get(e);if((0,te.isNonNullable)(t))return(i=parseInt(t,10))!=null?i:void 0}},IT=Zd;var Rr=require("@vkontakte/videoplayer-shared/es2015");var xT={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:Rr.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Rr.VideoQuality.Q_720P,trafficSavingLimit:Rr.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:Rr.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,vktvAbrThrottle:null},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},ET=s=>{var e;return N(R({},(0,Rr.fillWithDefault)(s,xT)),{configName:[...(e=s.configName)!=null?e:[],...xT.configName]})};var b=require("@vkontakte/videoplayer-shared/es2015");var qi=require("@vkontakte/videoplayer-shared/es2015"),ep=({seekState:s,position$:e})=>(0,qi.merge)(s.stateChangeEnded$.pipe((0,qi.map)(({to:t})=>{var i;return t.state==="none"?void 0:((i=t.position)!=null?i:NaN)/1e3}),(0,qi.filter)(qi.isNonNullable)),e.pipe((0,qi.filter)(()=>s.getState().state==="none")));var wT=require("@vkontakte/videoplayer-shared/es2015"),PT=s=>{let e=typeof s.container=="string"?document.getElementById(s.container):s.container;return(0,wT.assertNonNullable)(e,`Wrong container or containerId {${s.container}}`),e};var zu=require("@vkontakte/videoplayer-shared/es2015"),AT=(s,e,t,i)=>{s!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&(t==null?void 0:t.getValue().length)===0?t.pipe((0,zu.filter)(r=>r.length>0),(0,zu.once)()).subscribe(r=>{r.find(i)&&e.startTransitionTo(s)}):(s===void 0||t!=null&&t.getValue().find(i))&&e.startTransitionTo(s)};var oo=class{constructor(e={configName:[]}){this.subscription=new b.Subscription;this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new b.ValueSubject(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new b.ValueSubject(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new ie("stopped"),seekState:new ie({state:"none"}),volume:new ie({volume:1,muted:!1}),videoTrack:new ie(void 0),videoStream:new ie(void 0),audioStream:new ie(void 0),autoVideoTrackSwitching:new ie(!0),autoVideoTrackLimits:new ie({}),isLooped:new ie(!1),isLowLatency:new ie(!1),playbackRate:new ie(1),externalTextTracks:new ie([]),internalTextTracks:new ie([]),currentTextTrack:new ie(void 0),textTrackCuesSettings:new ie({}),cameraOrientation:new ie({x:0,y:0})};this.info={playbackState$:new b.ValueSubject(void 0),position$:new b.ValueSubject(0),duration$:new b.ValueSubject(1/0),muted$:new b.ValueSubject(!1),volume$:new b.ValueSubject(1),availableVideoStreams$:new b.ValueSubject([]),currentVideoStream$:new b.ValueSubject(void 0),availableQualities$:new b.ValueSubject([]),availableQualitiesFps$:new b.ValueSubject({}),currentQuality$:new b.ValueSubject(void 0),isAutoQualityEnabled$:new b.ValueSubject(!0),autoQualityLimitingAvailable$:new b.ValueSubject(!1),autoQualityLimits$:new b.ValueSubject({}),predefinedQualityLimitType$:new b.ValueSubject("unknown"),availableAudioStreams$:new b.ValueSubject([]),currentAudioStream$:new b.ValueSubject(void 0),availableAudioTracks$:new b.ValueSubject([]),isAudioAvailable$:new b.ValueSubject(!0),currentPlaybackRate$:new b.ValueSubject(1),currentBuffer$:new b.ValueSubject({start:0,end:0}),isBuffering$:new b.ValueSubject(!0),isStalled$:new b.ValueSubject(!1),isEnded$:new b.ValueSubject(!1),isLooped$:new b.ValueSubject(!1),isLive$:new b.ValueSubject(void 0),isLiveEnded$:new b.ValueSubject(null),canChangePlaybackSpeed$:new b.ValueSubject(void 0),atLiveEdge$:new b.ValueSubject(void 0),atLiveDurationEdge$:new b.ValueSubject(void 0),liveTime$:new b.ValueSubject(void 0),liveBufferTime$:new b.ValueSubject(void 0),liveLatency$:new b.ValueSubject(void 0),currentFormat$:new b.ValueSubject(void 0),availableTextTracks$:new b.ValueSubject([]),currentTextTrack$:new b.ValueSubject(void 0),throughputEstimation$:new b.ValueSubject(void 0),rttEstimation$:new b.ValueSubject(void 0),videoBitrate$:new b.ValueSubject(void 0),hostname$:new b.ValueSubject(void 0),httpConnectionType$:new b.ValueSubject(void 0),httpConnectionReused$:new b.ValueSubject(void 0),surface$:new b.ValueSubject("none"),chromecastState$:new b.ValueSubject("NOT_AVAILABLE"),chromecastDeviceName$:new b.ValueSubject(void 0),intrinsicVideoSize$:new b.ValueSubject(void 0),availableSources$:new b.ValueSubject(void 0),is3DVideo$:new b.ValueSubject(!1),currentVideoSegmentLength$:new b.ValueSubject(0),currentAudioSegmentLength$:new b.ValueSubject(0)};this.events={inited$:new b.Subject,ready$:new b.Subject,started$:new b.Subject,playing$:new b.Subject,paused$:new b.Subject,stopped$:new b.Subject,willStart$:new b.Subject,willResume$:new b.Subject,willPause$:new b.Subject,willStop$:new b.Subject,willDestruct$:new b.Subject,watchCoverageRecord$:new b.Subject,watchCoverageLive$:new b.Subject,managedError$:new b.Subject,fatalError$:new b.Subject,fetcherRecoverableError$:new b.Subject,ended$:new b.Subject,looped$:new b.Subject,seeked$:new b.Subject,willSeek$:new b.Subject,autoplaySoundProhibited$:new b.Subject,firstBytes$:new b.Subject,loadedMetadata$:new b.Subject,firstFrame$:new b.Subject,canplay$:new b.Subject,log$:new b.Subject,fetcherError$:new b.Subject,severeStallOccured$:new b.Subject};this.experimental={element$:new b.ValueSubject(void 0),tuningConfigName$:new b.ValueSubject([]),enableDebugTelemetry$:new b.ValueSubject(!1),getCurrentTime$:new b.ValueSubject(null)};if(this.tuning=ET(e),this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new mo({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast}),this.throughputEstimator=new IT(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new b.InternalsExposure("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return new Proxy(this,{get:(t,i,r)=>{let a=Reflect.get(t,i,r);return typeof a!="function"?a:(...n)=>{try{return a.apply(t,n)}catch(o){let u=n.map(c=>JSON.stringify(c,(h,p)=>{let f=typeof p;return(0,kT.default)(["number","string","boolean"],f)?p:p===null?null:`<${f}>`})),l=`Player.${String(i)}`,d=`Exception calling ${l} (${u.join(", ")})`;throw this.events.fatalError$.next({id:l,category:b.ErrorCategory.WTF,message:d,thrown:o}),o}}}})}initVideo(e){var a;this.config=e,(a=this.internalsExposure)==null||a.expose({config:e,tuning:this.tuning});let t=()=>{var n,o,u;this.domContainer=PT(e),this.chromecastInitializer.contentId=(n=e.meta)==null?void 0:n.videoId,this.providerContainer=new no({sources:e.sources,meta:(o=e.meta)!=null?o:{},failoverHosts:(u=e.failoverHosts)!=null?u:[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),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()},r=()=>{this.tuning.asyncResolveClientChecker?ee.isInited$.pipe((0,b.filter)(n=>!!n),(0,b.once)()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(0,b.fromEvent)(document,"visibilitychange").pipe((0,b.once)()).subscribe(r):r(),this}destroy(){var e,t;window.clearTimeout(this.hasLiveOffsetByPausedTimer),this.playerInitRequest&&window.cancelAnimationFrame(this.playerInitRequest),this.events.willDestruct$.next(),this.stop(),(e=this.providerContainer)==null||e.destroy(),this.throughputEstimator.destroy(),this.chromecastInitializer.destroy(),this.subscription.unsubscribe(),(t=this.internalsExposure)==null||t.destroy()}prepare(){return this.subscription.add(this.playerInited.pipe((0,b.filter)(e=>!!e),(0,b.once)()).subscribe(()=>{let e=this.desiredState.playbackState;e.getState()==="stopped"&&e.startTransitionTo("ready")})),this}play(){return this.subscription.add(this.playerInited.pipe((0,b.filter)(e=>!!e),(0,b.once)()).subscribe(()=>{let e=this.desiredState.playbackState;e.getState()!=="playing"&&e.startTransitionTo("playing")})),this}pause(){return this.subscription.add(this.playerInited.pipe((0,b.filter)(e=>!!e),(0,b.once)()).subscribe(()=>{let e=this.desiredState.playbackState;e.getState()!=="paused"&&e.startTransitionTo("paused")})),this}stop(){return this.subscription.add(this.playerInited.pipe((0,b.filter)(e=>!!e),(0,b.once)()).subscribe(()=>{let e=this.desiredState.playbackState;e.getState()!=="stopped"&&e.startTransitionTo("stopped")})),this}seekTime(e,t=!0){return this.subscription.add(this.playerInited.pipe((0,b.filter)(i=>!!i),(0,b.once)()).subscribe(()=>{let i=this.info.duration$.getValue(),r=this.info.isLive$.getValue(),a=e;e>=i&&!r&&(a=i-this.tuning.seekNearDurationBias),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,b.filter)(t=>!!t),(0,b.once)()).subscribe(()=>{let t=this.info.duration$.getValue();isFinite(t)&&this.seekTime(Math.abs(t)*e,!1)})),this}setVolume(e,t){return this.subscription.add(this.playerInited.pipe((0,b.filter)(i=>!!i),(0,b.once)()).subscribe(()=>{var o;let i=this.desiredState.volume,r=i.getTransition(),a=(o=r==null?void 0:r.to.muted)!=null?o:this.info.muted$.getValue(),n=t!=null?t:this.tuning.isAudioDisabled||a;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,b.filter)(t=>!!t),(0,b.once)()).subscribe(()=>{var n;let t=this.desiredState.volume,i=this.tuning.isAudioDisabled||e,r=t.getTransition(),a=(n=r==null?void 0:r.to.volume)!=null?n:this.info.volume$.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,b.filter)(t=>!!t),(0,b.once)()).subscribe(()=>{this.desiredState.videoStream.startTransitionTo(e)})),this}setAudioStream(e){return this.subscription.add(this.playerInited.pipe((0,b.filter)(t=>!!t),(0,b.once)()).subscribe(()=>{this.desiredState.audioStream.startTransitionTo(e)})),this}setQuality(e){return this.subscription.add(this.playerInited.pipe((0,b.filter)(t=>!!t),(0,b.once)()).subscribe(()=>{(0,b.assertNonNullable)(this.providerContainer);let t=this.providerContainer.providerOutput.availableVideoTracks$.getValue();this.desiredState.videoTrack.getState()===void 0&&this.desiredState.videoTrack.getPrevState()===void 0&&t.length===0?this.wasSetStartedQuality?this.providerContainer.providerOutput.availableVideoTracks$.pipe((0,b.filter)(i=>i.length>0),(0,b.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,b.filter)(t=>!!t),(0,b.once)()).subscribe(()=>{this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)})),this}setAutoQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,b.filter)(t=>!!t),(0,b.once)()).subscribe(()=>{this.desiredState.autoVideoTrackLimits.startTransitionTo(e)})),this}setPredefinedQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,b.filter)(t=>!!t),(0,b.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,b.filter)(t=>!!t),(0,b.once)()).subscribe(()=>{var i;(0,b.assertNonNullable)(this.providerContainer);let t=(i=this.providerContainer)==null?void 0:i.providerOutput.element$.getValue();t&&(this.desiredState.playbackRate.setState(e),t.playbackRate=e)})),this}setExternalTextTracks(e){return this.subscription.add(this.playerInited.pipe((0,b.filter)(t=>!!t),(0,b.once)()).subscribe(()=>{this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>R({type:"external"},t)))})),this}selectTextTrack(e){return this.subscription.add(this.playerInited.pipe((0,b.filter)(t=>!!t),(0,b.once)()).subscribe(()=>{var t;AT(e,this.desiredState.currentTextTrack,(t=this.providerContainer)==null?void 0:t.providerOutput.availableTextTracks$,i=>i.id===e)})),this}setTextTrackCueSettings(e){return this.subscription.add(this.playerInited.pipe((0,b.filter)(t=>!!t),(0,b.once)()).subscribe(()=>{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.desiredState.isLowLatency.setState(e),this.seekTime(0))}setLooped(e){return this.subscription.add(this.playerInited.pipe((0,b.filter)(t=>!!t),(0,b.once)()).subscribe(()=>{this.desiredState.isLooped.startTransitionTo(e)})),this}toggleChromecast(){this.chromecastInitializer.toggleConnection()}startCameraManualRotation(e,t){return this.subscription.add(this.playerInited.pipe((0,b.filter)(i=>!!i),(0,b.once)()).subscribe(()=>{let i=this.getScene3D();i&&i.startCameraManualRotation(e,t)})),this}stopCameraManualRotation(e=!1){return this.subscription.add(this.playerInited.pipe((0,b.filter)(t=>!!t),(0,b.once)()).subscribe(()=>{let t=this.getScene3D();t&&t.stopCameraManualRotation(e)})),this}moveCameraFocusPX(e,t){return this.subscription.add(this.playerInited.pipe((0,b.filter)(i=>!!i),(0,b.once)()).subscribe(()=>{let i=this.getScene3D();if(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,b.filter)(e=>e),(0,b.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.holdCamera()})),this}releaseCamera(){return this.subscription.add(this.playerInited.pipe((0,b.filter)(e=>!!e),(0,b.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,b.isNullable)(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return(0,b.isNonNullable)(i)?i/1e3:e.currentTime}getScene3D(){var t,i;let e=(t=this.providerContainer)==null?void 0:t.current$.getValue();if((i=e==null?void 0:e.provider)!=null&&i.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,b.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,b.map)(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe((0,b.map)(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe((0,b.map)(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,b.map)(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe((0,b.map)(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(Zc(e,t,i))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe((0,b.filter)(({from:e})=>e==="stopped"),(0,b.once)()).subscribe(()=>{this.initedAt=(0,b.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();n.state==="requested"?this.desiredState.seekState.setState(N(R({},n),{state:"applying"})):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:b.ErrorCategory.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe((0,b.once)()).subscribe(this.events.autoplaySoundProhibited$)).add(e.providerOutput.severeStallOccurred$.subscribe(this.events.severeStallOccured$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{this.desiredState.seekState.getState().state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe((0,b.map)(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe((0,b.map)(n=>n.destination),(0,b.filterChanged)()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add((0,b.combine)({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe((0,b.map)(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>(0,b.isInvariantQuality)(u)?1:(0,b.isInvariantQuality)(l)?-1:(0,b.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,b.filterChanged)()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe((0,b.filter)(n=>(0,b.isNonNullable)(n))).subscribe(n=>{this.info.currentQuality$.next(n==null?void 0:n.quality),this.info.videoBitrate$.next(n==null?void 0:n.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe((0,b.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe((0,b.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe((0,b.filterChanged)()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe((0,b.filterChanged)()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe((0,b.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!=null?n:{})})).add(e.providerOutput.currentBuffer$.pipe((0,b.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,b.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,b.combine)({hasLiveOffsetByPaused:(0,b.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,b.map)(n=>n.to),(0,b.filterChanged)(),(0,b.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,b.combine)({atLiveEdge:(0,b.combine)({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:ep({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe((0,b.map)(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),(0,b.filterChanged)(),(0,b.tap)(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe((0,b.map)(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add((0,b.combine)({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe((0,b.map)(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),(0,b.filterChanged)(),(0,b.tap)(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe((0,b.map)(n=>n.muted),(0,b.filterChanged)()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe((0,b.map)(n=>n.volume),(0,b.filterChanged)()).subscribe(this.info.volume$)).add(ep({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add((0,b.merge)(e.providerOutput.endedEvent$.pipe((0,b.mapTo)(!0)),e.providerOutput.seekedEvent$.pipe((0,b.mapTo)(!1))).pipe((0,b.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,b.map)(n=>({id:n?`No${n}`:"NoProviders",category:b.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,b.once)(),(0,b.map)(n=>n!=null?n:(0,b.now)()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe((0,b.once)(),(0,b.map)(()=>(0,b.now)()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe((0,b.once)(),(0,b.map)(()=>(0,b.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 b.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new b.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe((0,b.filter)(({to:n})=>n==="playing"),(0,b.once)()).subscribe(()=>i.next(!1)));let r=0,a=(0,b.merge)(e.providerOutput.isBuffering$,t,i).pipe((0,b.map)(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),(0,b.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,b.merge)(e.providerOutput.canplay$,e.providerOutput.firstFrameEvent$,e.providerOutput.firstBytesEvent$).subscribe(()=>{let n=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n==null?void 0:n.videoWidth,height:n==null?void 0:n.videoHeight})})).add(e.providerOutput.currentVideoTrack$.subscribe(n=>{var u,l;let o=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:(u=n==null?void 0:n.size)==null?void 0:u.width,height:(l=n==null?void 0:n.size)==null?void 0:l.height},{width:o==null?void 0:o.videoWidth,height:o==null?void 0:o.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add((0,b.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(),c;d==="CONNECTED"?c="second_screen":u?l?n?c="pip":o?c="fullscreen":c="inline":c="invisible":c="none",this.info.surface$.getValue()!==c&&this.info.surface$.next(c)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe((0,b.map)(e=>e==null?void 0:e.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new b.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe((0,b.filterChanged)((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe((0,b.filter)(i=>i.length>0),(0,b.once)()).subscribe(i=>{this.setStartingVideoTrack(i)}))}))}setStartingVideoTrack(e){var r;let t;this.wasSetStartedQuality=!0;let i=(r=this.explicitInitialQuality)!=null?r:this.info.currentQuality$.getValue();i&&(t=e.find(({quality:a})=>a===i),t||this.setAutoQuality(!0)),t||(t=di(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})),this.desiredState.videoTrack.startTransitionTo(t),this.info.currentQuality$.next(t.quality),this.info.videoBitrate$.next(t.bitrate)}initDebugTelemetry(){var t;let e=(t=this.providerContainer)==null?void 0:t.providerOutput;(0,b.assertNonNullable)(this.providerContainer),(0,b.assertNonNullable)(e),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart)}initWakeLock(){if(!window.navigator.wakeLock||!this.tuning.enableWakeLock)return;let e,t=()=>{e==null||e.release(),e=void 0},i=()=>P(this,null,function*(){t(),e=yield window.navigator.wakeLock.request("screen").catch(r=>{r instanceof DOMException&&r.name==="NotAllowedError"||this.events.managedError$.next({id:"WakeLock",category:b.ErrorCategory.DOM,message:String(r)})})});this.subscription.add((0,b.merge)((0,b.fromEvent)(document,"visibilitychange"),(0,b.fromEvent)(document,"fullscreenchange"),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let r=document.visibilityState==="visible",a=this.desiredState.playbackState.getState()==="playing",n=!!e&&!(e!=null&&e.released);r&&a?n||i():t()})).add(this.events.willDestruct$.subscribe(t))}setVideoTrackIdByQuality(e,t){let i=e.find(r=>r.quality===t);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&&!$a()}};var fi=require("@vkontakte/videoplayer-shared/es2015"),OB=`@vkontakte/videoplayer-core@${el}`;
|