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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/es2015.cjs.js +94 -33
  2. package/es2015.esm.js +90 -29
  3. package/es2018.cjs.js +95 -34
  4. package/es2018.esm.js +91 -30
  5. package/es2024.cjs.js +97 -36
  6. package/es2024.esm.js +93 -32
  7. package/esnext.cjs.js +97 -36
  8. package/esnext.esm.js +93 -32
  9. package/evergreen.esm.js +91 -30
  10. package/package.json +2 -2
  11. package/types/player/types.d.ts +0 -10
  12. package/types/providers/DashProvider/baseDashProvider.d.ts +1 -2
  13. package/types/providers/DashProvider/lib/player.d.ts +1 -4
  14. package/types/providers/DashProvider/lib/types.d.ts +1 -5
  15. package/types/providers/DashProviderNew/baseDashProvider.d.ts +57 -0
  16. package/types/providers/DashProviderNew/consts.d.ts +3 -0
  17. package/types/providers/DashProviderNew/index.d.ts +2 -0
  18. package/types/providers/DashProviderNew/lib/ElementSizeManager.d.ts +19 -0
  19. package/types/providers/DashProviderNew/lib/LiveTextManager.d.ts +23 -0
  20. package/types/providers/DashProviderNew/lib/buffer.d.ts +117 -0
  21. package/types/providers/DashProviderNew/lib/fetcher.d.ts +59 -0
  22. package/types/providers/DashProviderNew/lib/parsers/ietf/index.d.ts +13 -0
  23. package/types/providers/DashProviderNew/lib/parsers/index.d.ts +3 -0
  24. package/types/providers/DashProviderNew/lib/parsers/mpd.d.ts +3 -0
  25. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxModel.d.ts +20 -0
  26. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxParser.d.ts +21 -0
  27. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxTypeEnum.d.ts +30 -0
  28. package/types/providers/DashProviderNew/lib/parsers/mpeg/box.d.ts +74 -0
  29. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/avc1.d.ts +8 -0
  30. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/equi.d.ts +21 -0
  31. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/ftyp.d.ts +17 -0
  32. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/index.d.ts +26 -0
  33. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdat.d.ts +15 -0
  34. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdia.d.ts +8 -0
  35. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mfhd.d.ts +11 -0
  36. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/minf.d.ts +8 -0
  37. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moof.d.ts +8 -0
  38. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moov.d.ts +8 -0
  39. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mvhd.d.ts +35 -0
  40. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/prhd.d.ts +16 -0
  41. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/proj.d.ts +8 -0
  42. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sidx.d.ts +48 -0
  43. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/st3d.d.ts +23 -0
  44. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stbl.d.ts +8 -0
  45. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stsd.d.ts +11 -0
  46. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sv3d.d.ts +8 -0
  47. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfdt.d.ts +17 -0
  48. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfhd.d.ts +22 -0
  49. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tkhd.d.ts +42 -0
  50. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/traf.d.ts +8 -0
  51. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trak.d.ts +8 -0
  52. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trun.d.ts +31 -0
  53. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/unknown.d.ts +6 -0
  54. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/uuid.d.ts +11 -0
  55. package/types/providers/DashProviderNew/lib/parsers/mpeg/fullBox.d.ts +15 -0
  56. package/types/providers/DashProviderNew/lib/parsers/mpeg/isobmff.d.ts +12 -0
  57. package/types/providers/DashProviderNew/lib/parsers/webm/ebml.d.ts +76 -0
  58. package/types/providers/DashProviderNew/lib/parsers/webm/webm.d.ts +3 -0
  59. package/types/providers/DashProviderNew/lib/player.d.ts +92 -0
  60. package/types/providers/DashProviderNew/lib/sourceBufferTaskQueue.d.ts +19 -0
  61. package/types/providers/DashProviderNew/lib/types.d.ts +186 -0
  62. package/types/providers/DashProviderNew/lib/utils.d.ts +21 -0
  63. package/types/providers/DashProviderNew/newDashCmafLiveProvider.d.ts +8 -0
  64. package/types/providers/DashProviderNew/newDashProvider.d.ts +6 -0
  65. package/types/providers/ProviderContainer/index.d.ts +0 -2
  66. package/types/providers/ProviderContainer/utils/formatsSupport.d.ts +1 -4
  67. package/types/providers/types.d.ts +1 -3
  68. package/types/providers/utils/HTMLVideoElement/observable.d.ts +0 -1
  69. package/types/providers/utils/StallsManager.d.ts +18 -4
  70. package/types/utils/StatefulIterator/index.d.ts +1 -5
  71. package/types/utils/autoSelectTrack.d.ts +6 -3
  72. package/types/utils/qualityLimits.d.ts +3 -18
  73. package/types/utils/tuningConfig.d.ts +27 -8
package/es2015.cjs.js CHANGED
@@ -1,73 +1,127 @@
1
1
  /**
2
- * @vkontakte/videoplayer-core v2.0.131-dev.f14d8d97.0
3
- * Thu, 17 Apr 2025 15:45:13 GMT
2
+ * @vkontakte/videoplayer-core v2.0.131-dev.f8833e36.0
3
+ * Thu, 15 May 2025 11:30:37 GMT
4
4
  * https://st.mycdn.me/static/vkontakte-videoplayer/2-0-131/doc/
5
5
  */
6
- "use strict";var qS=Object.create;var yr=Object.defineProperty,US=Object.defineProperties,HS=Object.getOwnPropertyDescriptor,jS=Object.getOwnPropertyDescriptors,QS=Object.getOwnPropertyNames,os=Object.getOwnPropertySymbols,GS=Object.getPrototypeOf,Cn=Object.prototype.hasOwnProperty,fc=Object.prototype.propertyIsEnumerable;var WS=(a,e)=>(e=Symbol[a])?e:Symbol.for("Symbol."+a);var bt=Math.pow,mc=(a,e,t)=>e in a?yr(a,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):a[e]=t,L=(a,e)=>{for(var t in e||(e={}))Cn.call(e,t)&&mc(a,t,e[t]);if(os)for(var t of os(e))fc.call(e,t)&&mc(a,t,e[t]);return a},U=(a,e)=>US(a,jS(e));var bc=(a,e)=>{var t={};for(var i in a)Cn.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&&fc.call(a,i)&&(t[i]=a[i]);return t};var b=(a,e)=>()=>(e||a((e={exports:{}}).exports,e),e.exports),YS=(a,e)=>{for(var t in e)yr(a,t,{get:e[t],enumerable:!0})},gc=(a,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of QS(e))!Cn.call(a,r)&&r!==t&&yr(a,r,{get:()=>e[r],enumerable:!(i=HS(e,r))||i.enumerable});return a};var G=(a,e,t)=>(t=a!=null?qS(GS(a)):{},gc(e||!a||!a.__esModule?yr(t,"default",{value:a,enumerable:!0}):t,a)),zS=a=>gc(yr({},"__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[WS("asyncIterator")]=()=>s,r("next"),r("throw"),r("return"),s};var ve=b((Vn,vc)=>{"use strict";var Er=function(a){return a&&a.Math===Math&&a};vc.exports=Er(typeof globalThis=="object"&&globalThis)||Er(typeof window=="object"&&window)||Er(typeof self=="object"&&self)||Er(typeof global=="object"&&global)||Er(typeof Vn=="object"&&Vn)||function(){return this}()||Function("return this")()});var ke=b(($$,Sc)=>{"use strict";Sc.exports=function(a){try{return!!a()}catch(e){return!0}}});var xr=b((L$,yc)=>{"use strict";var KS=ke();yc.exports=!KS(function(){var a=function(){}.bind();return typeof a!="function"||a.hasOwnProperty("prototype")})});var On=b((M$,xc)=>{"use strict";var XS=xr(),Ec=Function.prototype,Tc=Ec.apply,Ic=Ec.call;xc.exports=typeof Reflect=="object"&&Reflect.apply||(XS?Ic.bind(Tc):function(){return Ic.apply(Tc,arguments)})});var xe=b((C$,Ac)=>{"use strict";var Pc=xr(),wc=Function.prototype,_n=wc.call,JS=Pc&&wc.bind.bind(_n,_n);Ac.exports=Pc?JS:function(a){return function(){return _n.apply(a,arguments)}}});var pi=b((D$,Rc)=>{"use strict";var kc=xe(),ZS=kc({}.toString),ey=kc("".slice);Rc.exports=function(a){return ey(ZS(a),8,-1)}});var Bn=b((V$,$c)=>{"use strict";var ty=pi(),iy=xe();$c.exports=function(a){if(ty(a)==="Function")return iy(a)}});var be=b((O$,Lc)=>{"use strict";var Nn=typeof document=="object"&&document.all;Lc.exports=typeof Nn=="undefined"&&Nn!==void 0?function(a){return typeof a=="function"||a===Nn}:function(a){return typeof a=="function"}});var Ge=b((_$,Mc)=>{"use strict";var ry=ke();Mc.exports=!ry(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var We=b((B$,Cc)=>{"use strict";var ay=xr(),ds=Function.prototype.call;Cc.exports=ay?ds.bind(ds):function(){return ds.apply(ds,arguments)}});var Fn=b(Oc=>{"use strict";var Dc={}.propertyIsEnumerable,Vc=Object.getOwnPropertyDescriptor,sy=Vc&&!Dc.call({1:2},1);Oc.f=sy?function(e){var t=Vc(this,e);return!!t&&t.enumerable}:Dc});var Pr=b((F$,_c)=>{"use strict";_c.exports=function(a,e){return{enumerable:!(a&1),configurable:!(a&2),writable:!(a&4),value:e}}});var Nc=b((q$,Bc)=>{"use strict";var ny=xe(),oy=ke(),uy=pi(),qn=Object,ly=ny("".split);Bc.exports=oy(function(){return!qn("z").propertyIsEnumerable(0)})?function(a){return uy(a)==="String"?ly(a,""):qn(a)}:qn});var Oi=b((U$,Fc)=>{"use strict";Fc.exports=function(a){return a==null}});var Gt=b((H$,qc)=>{"use strict";var cy=Oi(),dy=TypeError;qc.exports=function(a){if(cy(a))throw new dy("Can't call method on "+a);return a}});var hi=b((j$,Uc)=>{"use strict";var py=Nc(),hy=Gt();Uc.exports=function(a){return py(hy(a))}});var Ye=b((Q$,Hc)=>{"use strict";var my=be();Hc.exports=function(a){return typeof a=="object"?a!==null:my(a)}});var _i=b((G$,jc)=>{"use strict";jc.exports={}});var kt=b((W$,Gc)=>{"use strict";var Un=_i(),Hn=ve(),fy=be(),Qc=function(a){return fy(a)?a:void 0};Gc.exports=function(a,e){return arguments.length<2?Qc(Un[a])||Qc(Hn[a]):Un[a]&&Un[a][e]||Hn[a]&&Hn[a][e]}});var wr=b((Y$,Wc)=>{"use strict";var by=xe();Wc.exports=by({}.isPrototypeOf)});var mi=b((z$,Kc)=>{"use strict";var gy=ve(),Yc=gy.navigator,zc=Yc&&Yc.userAgent;Kc.exports=zc?String(zc):""});var Qn=b((K$,id)=>{"use strict";var td=ve(),jn=mi(),Xc=td.process,Jc=td.Deno,Zc=Xc&&Xc.versions||Jc&&Jc.version,ed=Zc&&Zc.v8,nt,ps;ed&&(nt=ed.split("."),ps=nt[0]>0&&nt[0]<4?1:+(nt[0]+nt[1]));!ps&&jn&&(nt=jn.match(/Edge\/(\d+)/),(!nt||nt[1]>=74)&&(nt=jn.match(/Chrome\/(\d+)/),nt&&(ps=+nt[1])));id.exports=ps});var Gn=b((X$,ad)=>{"use strict";var rd=Qn(),vy=ke(),Sy=ve(),yy=Sy.String;ad.exports=!!Object.getOwnPropertySymbols&&!vy(function(){var a=Symbol("symbol detection");return!yy(a)||!(Object(a)instanceof Symbol)||!Symbol.sham&&rd&&rd<41})});var Wn=b((J$,sd)=>{"use strict";var Ty=Gn();sd.exports=Ty&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Yn=b((Z$,nd)=>{"use strict";var Iy=kt(),Ey=be(),xy=wr(),Py=Wn(),wy=Object;nd.exports=Py?function(a){return typeof a=="symbol"}:function(a){var e=Iy("Symbol");return Ey(e)&&xy(e.prototype,wy(a))}});var Ar=b((eL,od)=>{"use strict";var Ay=String;od.exports=function(a){try{return Ay(a)}catch(e){return"Object"}}});var vt=b((tL,ud)=>{"use strict";var ky=be(),Ry=Ar(),$y=TypeError;ud.exports=function(a){if(ky(a))return a;throw new $y(Ry(a)+" is not a function")}});var kr=b((iL,ld)=>{"use strict";var Ly=vt(),My=Oi();ld.exports=function(a,e){var t=a[e];return My(t)?void 0:Ly(t)}});var dd=b((rL,cd)=>{"use strict";var zn=We(),Kn=be(),Xn=Ye(),Cy=TypeError;cd.exports=function(a,e){var t,i;if(e==="string"&&Kn(t=a.toString)&&!Xn(i=zn(t,a))||Kn(t=a.valueOf)&&!Xn(i=zn(t,a))||e!=="string"&&Kn(t=a.toString)&&!Xn(i=zn(t,a)))return i;throw new Cy("Can't convert object to primitive value")}});var ot=b((aL,pd)=>{"use strict";pd.exports=!0});var fd=b((sL,md)=>{"use strict";var hd=ve(),Dy=Object.defineProperty;md.exports=function(a,e){try{Dy(hd,a,{value:e,configurable:!0,writable:!0})}catch(t){hd[a]=e}return e}});var Rr=b((nL,vd)=>{"use strict";var Vy=ot(),Oy=ve(),_y=fd(),bd="__core-js_shared__",gd=vd.exports=Oy[bd]||_y(bd,{});(gd.versions||(gd.versions=[])).push({version:"3.38.0",mode:Vy?"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 Jn=b((oL,yd)=>{"use strict";var Sd=Rr();yd.exports=function(a,e){return Sd[a]||(Sd[a]=e||{})}});var Bi=b((uL,Td)=>{"use strict";var By=Gt(),Ny=Object;Td.exports=function(a){return Ny(By(a))}});var ut=b((lL,Id)=>{"use strict";var Fy=xe(),qy=Bi(),Uy=Fy({}.hasOwnProperty);Id.exports=Object.hasOwn||function(e,t){return Uy(qy(e),t)}});var Zn=b((cL,Ed)=>{"use strict";var Hy=xe(),jy=0,Qy=Math.random(),Gy=Hy(1 .toString);Ed.exports=function(a){return"Symbol("+(a===void 0?"":a)+")_"+Gy(++jy+Qy,36)}});var Re=b((dL,Pd)=>{"use strict";var Wy=ve(),Yy=Jn(),xd=ut(),zy=Zn(),Ky=Gn(),Xy=Wn(),Ni=Wy.Symbol,eo=Yy("wks"),Jy=Xy?Ni.for||Ni:Ni&&Ni.withoutSetter||zy;Pd.exports=function(a){return xd(eo,a)||(eo[a]=Ky&&xd(Ni,a)?Ni[a]:Jy("Symbol."+a)),eo[a]}});var Rd=b((pL,kd)=>{"use strict";var Zy=We(),wd=Ye(),Ad=Yn(),eT=kr(),tT=dd(),iT=Re(),rT=TypeError,aT=iT("toPrimitive");kd.exports=function(a,e){if(!wd(a)||Ad(a))return a;var t=eT(a,aT),i;if(t){if(e===void 0&&(e="default"),i=Zy(t,a,e),!wd(i)||Ad(i))return i;throw new rT("Can't convert object to primitive value")}return e===void 0&&(e="number"),tT(a,e)}});var to=b((hL,$d)=>{"use strict";var sT=Rd(),nT=Yn();$d.exports=function(a){var e=sT(a,"string");return nT(e)?e:e+""}});var hs=b((mL,Md)=>{"use strict";var oT=ve(),Ld=Ye(),io=oT.document,uT=Ld(io)&&Ld(io.createElement);Md.exports=function(a){return uT?io.createElement(a):{}}});var ro=b((fL,Cd)=>{"use strict";var lT=Ge(),cT=ke(),dT=hs();Cd.exports=!lT&&!cT(function(){return Object.defineProperty(dT("div"),"a",{get:function(){return 7}}).a!==7})});var Od=b(Vd=>{"use strict";var pT=Ge(),hT=We(),mT=Fn(),fT=Pr(),bT=hi(),gT=to(),vT=ut(),ST=ro(),Dd=Object.getOwnPropertyDescriptor;Vd.f=pT?Dd:function(e,t){if(e=bT(e),t=gT(t),ST)try{return Dd(e,t)}catch(i){}if(vT(e,t))return fT(!hT(mT.f,e,t),e[t])}});var ao=b((gL,_d)=>{"use strict";var yT=ke(),TT=be(),IT=/#|\.prototype\./,$r=function(a,e){var t=xT[ET(a)];return t===wT?!0:t===PT?!1:TT(e)?yT(e):!!e},ET=$r.normalize=function(a){return String(a).replace(IT,".").toLowerCase()},xT=$r.data={},PT=$r.NATIVE="N",wT=$r.POLYFILL="P";_d.exports=$r});var Fi=b((vL,Nd)=>{"use strict";var Bd=Bn(),AT=vt(),kT=xr(),RT=Bd(Bd.bind);Nd.exports=function(a,e){return AT(a),e===void 0?a:kT?RT(a,e):function(){return a.apply(e,arguments)}}});var so=b((SL,Fd)=>{"use strict";var $T=Ge(),LT=ke();Fd.exports=$T&&LT(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var St=b((yL,qd)=>{"use strict";var MT=Ye(),CT=String,DT=TypeError;qd.exports=function(a){if(MT(a))return a;throw new DT(CT(a)+" is not an object")}});var fi=b(Hd=>{"use strict";var VT=Ge(),OT=ro(),_T=so(),ms=St(),Ud=to(),BT=TypeError,no=Object.defineProperty,NT=Object.getOwnPropertyDescriptor,oo="enumerable",uo="configurable",lo="writable";Hd.f=VT?_T?function(e,t,i){if(ms(e),t=Ud(t),ms(i),typeof e=="function"&&t==="prototype"&&"value"in i&&lo in i&&!i[lo]){var r=NT(e,t);r&&r[lo]&&(e[t]=i.value,i={configurable:uo in i?i[uo]:r[uo],enumerable:oo in i?i[oo]:r[oo],writable:!1})}return no(e,t,i)}:no:function(e,t,i){if(ms(e),t=Ud(t),ms(i),OT)try{return no(e,t,i)}catch(r){}if("get"in i||"set"in i)throw new BT("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var qi=b((IL,jd)=>{"use strict";var FT=Ge(),qT=fi(),UT=Pr();jd.exports=FT?function(a,e,t){return qT.f(a,e,UT(1,t))}:function(a,e,t){return a[e]=t,a}});var Ie=b((EL,Gd)=>{"use strict";var Lr=ve(),HT=On(),jT=Bn(),QT=be(),GT=Od().f,WT=ao(),Ui=_i(),YT=Fi(),Hi=qi(),Qd=ut();Rr();var zT=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 HT(a,this,arguments)};return e.prototype=a.prototype,e};Gd.exports=function(a,e){var t=a.target,i=a.global,r=a.stat,s=a.proto,n=i?Lr:r?Lr[t]:Lr[t]&&Lr[t].prototype,o=i?Ui:Ui[t]||Hi(Ui,t,{})[t],u=o.prototype,l,c,d,m,h,f,g,y,S;for(m in e)l=WT(i?m:t+(r?".":"#")+m,a.forced),c=!l&&n&&Qd(n,m),f=o[m],c&&(a.dontCallGetSet?(S=GT(n,m),g=S&&S.value):g=n[m]),h=c&&g?g:e[m],!(!l&&!s&&typeof f==typeof h)&&(a.bind&&c?y=YT(h,Lr):a.wrap&&c?y=zT(h):s&&QT(h)?y=jT(h):y=h,(a.sham||h&&h.sham||f&&f.sham)&&Hi(y,"sham",!0),Hi(o,m,y),s&&(d=t+"Prototype",Qd(Ui,d)||Hi(Ui,d,{}),Hi(Ui[d],m,h),a.real&&u&&(l||!u[m])&&Hi(u,m,h)))}});var Yd=b((xL,Wd)=>{"use strict";var KT=Math.ceil,XT=Math.floor;Wd.exports=Math.trunc||function(e){var t=+e;return(t>0?XT:KT)(t)}});var Mr=b((PL,zd)=>{"use strict";var JT=Yd();zd.exports=function(a){var e=+a;return e!==e||e===0?0:JT(e)}});var Xd=b((wL,Kd)=>{"use strict";var ZT=Mr(),eI=Math.max,tI=Math.min;Kd.exports=function(a,e){var t=ZT(a);return t<0?eI(t+e,0):tI(t,e)}});var co=b((AL,Jd)=>{"use strict";var iI=Mr(),rI=Math.min;Jd.exports=function(a){var e=iI(a);return e>0?rI(e,9007199254740991):0}});var ji=b((kL,Zd)=>{"use strict";var aI=co();Zd.exports=function(a){return aI(a.length)}});var po=b((RL,tp)=>{"use strict";var sI=hi(),nI=Xd(),oI=ji(),ep=function(a){return function(e,t,i){var r=sI(e),s=oI(r);if(s===0)return!a&&-1;var n=nI(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}};tp.exports={includes:ep(!0),indexOf:ep(!1)}});var Cr=b(($L,ip)=>{"use strict";ip.exports=function(){}});var rp=b(()=>{"use strict";var uI=Ie(),lI=po().includes,cI=ke(),dI=Cr(),pI=cI(function(){return!Array(1).includes()});uI({target:"Array",proto:!0,forced:pI},{includes:function(e){return lI(this,e,arguments.length>1?arguments[1]:void 0)}});dI("includes")});var Wt=b((CL,ap)=>{"use strict";var hI=kt();ap.exports=hI});var np=b((DL,sp)=>{"use strict";rp();var mI=Wt();sp.exports=mI("Array","includes")});var up=b((VL,op)=>{"use strict";var fI=np();op.exports=fI});var Ne=b((OL,lp)=>{"use strict";var bI=up();lp.exports=bI});var bs=b((WL,pp)=>{"use strict";var vI=Jn(),SI=Zn(),dp=vI("keys");pp.exports=function(a){return dp[a]||(dp[a]=SI(a))}});var mp=b((YL,hp)=>{"use strict";var yI=ke();hp.exports=!yI(function(){function a(){}return a.prototype.constructor=null,Object.getPrototypeOf(new a)!==a.prototype})});var gs=b((zL,bp)=>{"use strict";var TI=ut(),II=be(),EI=Bi(),xI=bs(),PI=mp(),fp=xI("IE_PROTO"),ho=Object,wI=ho.prototype;bp.exports=PI?ho.getPrototypeOf:function(a){var e=EI(a);if(TI(e,fp))return e[fp];var t=e.constructor;return II(t)&&e instanceof t?t.prototype:e instanceof ho?wI:null}});var vs=b((KL,gp)=>{"use strict";gp.exports={}});var yp=b((XL,Sp)=>{"use strict";var AI=xe(),mo=ut(),kI=hi(),RI=po().indexOf,$I=vs(),vp=AI([].push);Sp.exports=function(a,e){var t=kI(a),i=0,r=[],s;for(s in t)!mo($I,s)&&mo(t,s)&&vp(r,s);for(;e.length>i;)mo(t,s=e[i++])&&(~RI(r,s)||vp(r,s));return r}});var fo=b((JL,Tp)=>{"use strict";Tp.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var bo=b((ZL,Ip)=>{"use strict";var LI=yp(),MI=fo();Ip.exports=Object.keys||function(e){return LI(e,MI)}});var go=b((eM,Ap)=>{"use strict";var xp=Ge(),CI=ke(),Pp=xe(),DI=gs(),VI=bo(),OI=hi(),_I=Fn().f,wp=Pp(_I),BI=Pp([].push),NI=xp&&CI(function(){var a=Object.create(null);return a[2]=2,!wp(a,2)}),Ep=function(a){return function(e){for(var t=OI(e),i=VI(t),r=NI&&DI(t)===null,s=i.length,n=0,o=[],u;s>n;)u=i[n++],(!xp||(r?u in t:wp(t,u)))&&BI(o,a?[u,t[u]]:t[u]);return o}};Ap.exports={entries:Ep(!0),values:Ep(!1)}});var kp=b(()=>{"use strict";var FI=Ie(),qI=go().entries;FI({target:"Object",stat:!0},{entries:function(e){return qI(e)}})});var $p=b((rM,Rp)=>{"use strict";kp();var UI=_i();Rp.exports=UI.Object.entries});var Mp=b((aM,Lp)=>{"use strict";var HI=$p();Lp.exports=HI});var Qi=b((sM,Cp)=>{"use strict";var jI=Mp();Cp.exports=jI});var bi=b((nM,Dp)=>{"use strict";Dp.exports={}});var _p=b((oM,Op)=>{"use strict";var QI=ve(),GI=be(),Vp=QI.WeakMap;Op.exports=GI(Vp)&&/native code/.test(String(Vp))});var To=b((uM,Fp)=>{"use strict";var WI=_p(),Np=ve(),YI=Ye(),zI=qi(),vo=ut(),So=Rr(),KI=bs(),XI=vs(),Bp="Object already initialized",yo=Np.TypeError,JI=Np.WeakMap,Ss,Dr,ys,ZI=function(a){return ys(a)?Dr(a):Ss(a,{})},eE=function(a){return function(e){var t;if(!YI(e)||(t=Dr(e)).type!==a)throw new yo("Incompatible receiver, "+a+" required");return t}};WI||So.state?(lt=So.state||(So.state=new JI),lt.get=lt.get,lt.has=lt.has,lt.set=lt.set,Ss=function(a,e){if(lt.has(a))throw new yo(Bp);return e.facade=a,lt.set(a,e),e},Dr=function(a){return lt.get(a)||{}},ys=function(a){return lt.has(a)}):(gi=KI("state"),XI[gi]=!0,Ss=function(a,e){if(vo(a,gi))throw new yo(Bp);return e.facade=a,zI(a,gi,e),e},Dr=function(a){return vo(a,gi)?a[gi]:{}},ys=function(a){return vo(a,gi)});var lt,gi;Fp.exports={set:Ss,get:Dr,has:ys,enforce:ZI,getterFor:eE}});var xo=b((lM,Up)=>{"use strict";var Io=Ge(),tE=ut(),qp=Function.prototype,iE=Io&&Object.getOwnPropertyDescriptor,Eo=tE(qp,"name"),rE=Eo&&function(){}.name==="something",aE=Eo&&(!Io||Io&&iE(qp,"name").configurable);Up.exports={EXISTS:Eo,PROPER:rE,CONFIGURABLE:aE}});var jp=b(Hp=>{"use strict";var sE=Ge(),nE=so(),oE=fi(),uE=St(),lE=hi(),cE=bo();Hp.f=sE&&!nE?Object.defineProperties:function(e,t){uE(e);for(var i=lE(t),r=cE(t),s=r.length,n=0,o;s>n;)oE.f(e,o=r[n++],i[o]);return e}});var Po=b((dM,Qp)=>{"use strict";var dE=kt();Qp.exports=dE("document","documentElement")});var Ro=b((pM,Jp)=>{"use strict";var pE=St(),hE=jp(),Gp=fo(),mE=vs(),fE=Po(),bE=hs(),gE=bs(),Wp=">",Yp="<",Ao="prototype",ko="script",Kp=gE("IE_PROTO"),wo=function(){},Xp=function(a){return Yp+ko+Wp+a+Yp+"/"+ko+Wp},zp=function(a){a.write(Xp("")),a.close();var e=a.parentWindow.Object;return a=null,e},vE=function(){var a=bE("iframe"),e="java"+ko+":",t;return a.style.display="none",fE.appendChild(a),a.src=String(e),t=a.contentWindow.document,t.open(),t.write(Xp("document.F=Object")),t.close(),t.F},Ts,Is=function(){try{Ts=new ActiveXObject("htmlfile")}catch(e){}Is=typeof document!="undefined"?document.domain&&Ts?zp(Ts):vE():zp(Ts);for(var a=Gp.length;a--;)delete Is[Ao][Gp[a]];return Is()};mE[Kp]=!0;Jp.exports=Object.create||function(e,t){var i;return e!==null?(wo[Ao]=pE(e),i=new wo,wo[Ao]=null,i[Kp]=e):i=Is(),t===void 0?i:hE.f(i,t)}});var Gi=b((hM,Zp)=>{"use strict";var SE=qi();Zp.exports=function(a,e,t,i){return i&&i.enumerable?a[e]=t:SE(a,e,t),a}});var Co=b((mM,ih)=>{"use strict";var yE=ke(),TE=be(),IE=Ye(),EE=Ro(),eh=gs(),xE=Gi(),PE=Re(),wE=ot(),Mo=PE("iterator"),th=!1,Rt,$o,Lo;[].keys&&(Lo=[].keys(),"next"in Lo?($o=eh(eh(Lo)),$o!==Object.prototype&&(Rt=$o)):th=!0);var AE=!IE(Rt)||yE(function(){var a={};return Rt[Mo].call(a)!==a});AE?Rt={}:wE&&(Rt=EE(Rt));TE(Rt[Mo])||xE(Rt,Mo,function(){return this});ih.exports={IteratorPrototype:Rt,BUGGY_SAFARI_ITERATORS:th}});var Es=b((fM,ah)=>{"use strict";var kE=Re(),RE=kE("toStringTag"),rh={};rh[RE]="z";ah.exports=String(rh)==="[object z]"});var Vr=b((bM,sh)=>{"use strict";var $E=Es(),LE=be(),xs=pi(),ME=Re(),CE=ME("toStringTag"),DE=Object,VE=xs(function(){return arguments}())==="Arguments",OE=function(a,e){try{return a[e]}catch(t){}};sh.exports=$E?xs:function(a){var e,t,i;return a===void 0?"Undefined":a===null?"Null":typeof(t=OE(e=DE(a),CE))=="string"?t:VE?xs(e):(i=xs(e))==="Object"&&LE(e.callee)?"Arguments":i}});var oh=b((gM,nh)=>{"use strict";var _E=Es(),BE=Vr();nh.exports=_E?{}.toString:function(){return"[object "+BE(this)+"]"}});var Or=b((vM,lh)=>{"use strict";var NE=Es(),FE=fi().f,qE=qi(),UE=ut(),HE=oh(),jE=Re(),uh=jE("toStringTag");lh.exports=function(a,e,t,i){var r=t?a:a&&a.prototype;r&&(UE(r,uh)||FE(r,uh,{configurable:!0,value:e}),i&&!NE&&qE(r,"toString",HE))}});var dh=b((SM,ch)=>{"use strict";var QE=Co().IteratorPrototype,GE=Ro(),WE=Pr(),YE=Or(),zE=bi(),KE=function(){return this};ch.exports=function(a,e,t,i){var r=e+" Iterator";return a.prototype=GE(QE,{next:WE(+!i,t)}),YE(a,r,!1,!0),zE[r]=KE,a}});var hh=b((yM,ph)=>{"use strict";var XE=xe(),JE=vt();ph.exports=function(a,e,t){try{return XE(JE(Object.getOwnPropertyDescriptor(a,e)[t]))}catch(i){}}});var fh=b((TM,mh)=>{"use strict";var ZE=Ye();mh.exports=function(a){return ZE(a)||a===null}});var gh=b((IM,bh)=>{"use strict";var ex=fh(),tx=String,ix=TypeError;bh.exports=function(a){if(ex(a))return a;throw new ix("Can't set "+tx(a)+" as a prototype")}});var Do=b((EM,vh)=>{"use strict";var rx=hh(),ax=Ye(),sx=Gt(),nx=gh();vh.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var a=!1,e={},t;try{t=rx(Object.prototype,"__proto__","set"),t(e,[]),a=e instanceof Array}catch(i){}return function(r,s){return sx(r),nx(s),ax(r)&&(a?t(r,s):r.__proto__=s),r}}():void 0)});var Rh=b((xM,kh)=>{"use strict";var ox=Ie(),ux=We(),Ps=ot(),wh=xo(),lx=be(),cx=dh(),Sh=gs(),yh=Do(),dx=Or(),px=qi(),Vo=Gi(),hx=Re(),Th=bi(),Ah=Co(),mx=wh.PROPER,fx=wh.CONFIGURABLE,Ih=Ah.IteratorPrototype,ws=Ah.BUGGY_SAFARI_ITERATORS,_r=hx("iterator"),Eh="keys",Br="values",xh="entries",Ph=function(){return this};kh.exports=function(a,e,t,i,r,s,n){cx(t,e,i);var o=function(S){if(S===r&&m)return m;if(!ws&&S&&S in c)return c[S];switch(S){case Eh:return function(){return new t(this,S)};case Br:return function(){return new t(this,S)};case xh:return function(){return new t(this,S)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,c=a.prototype,d=c[_r]||c["@@iterator"]||r&&c[r],m=!ws&&d||o(r),h=e==="Array"&&c.entries||d,f,g,y;if(h&&(f=Sh(h.call(new a)),f!==Object.prototype&&f.next&&(!Ps&&Sh(f)!==Ih&&(yh?yh(f,Ih):lx(f[_r])||Vo(f,_r,Ph)),dx(f,u,!0,!0),Ps&&(Th[u]=Ph))),mx&&r===Br&&d&&d.name!==Br&&(!Ps&&fx?px(c,"name",Br):(l=!0,m=function(){return ux(d,this)})),r)if(g={values:o(Br),keys:s?m:o(Eh),entries:o(xh)},n)for(y in g)(ws||l||!(y in c))&&Vo(c,y,g[y]);else ox({target:e,proto:!0,forced:ws||l},g);return(!Ps||n)&&c[_r]!==m&&Vo(c,_r,m,{name:r}),Th[e]=m,g}});var Lh=b((PM,$h)=>{"use strict";$h.exports=function(a,e){return{value:a,done:e}}});var _o=b((wM,Oh)=>{"use strict";var bx=hi(),Oo=Cr(),Mh=bi(),Dh=To(),gx=fi().f,vx=Rh(),As=Lh(),Sx=ot(),yx=Ge(),Vh="Array Iterator",Tx=Dh.set,Ix=Dh.getterFor(Vh);Oh.exports=vx(Array,"Array",function(a,e){Tx(this,{type:Vh,target:bx(a),index:0,kind:e})},function(){var a=Ix(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 Ch=Mh.Arguments=Mh.Array;Oo("keys");Oo("values");Oo("entries");if(!Sx&&yx&&Ch.name!=="values")try{gx(Ch,"name",{value:"values"})}catch(a){}});var Bh=b((AM,_h)=>{"use strict";var Ex=Re(),xx=bi(),Px=Ex("iterator"),wx=Array.prototype;_h.exports=function(a){return a!==void 0&&(xx.Array===a||wx[Px]===a)}});var Bo=b((kM,Fh)=>{"use strict";var Ax=Vr(),Nh=kr(),kx=Oi(),Rx=bi(),$x=Re(),Lx=$x("iterator");Fh.exports=function(a){if(!kx(a))return Nh(a,Lx)||Nh(a,"@@iterator")||Rx[Ax(a)]}});var Uh=b((RM,qh)=>{"use strict";var Mx=We(),Cx=vt(),Dx=St(),Vx=Ar(),Ox=Bo(),_x=TypeError;qh.exports=function(a,e){var t=arguments.length<2?Ox(a):e;if(Cx(t))return Dx(Mx(t,a));throw new _x(Vx(a)+" is not iterable")}});var Qh=b(($M,jh)=>{"use strict";var Bx=We(),Hh=St(),Nx=kr();jh.exports=function(a,e,t){var i,r;Hh(a);try{if(i=Nx(a,"return"),!i){if(e==="throw")throw t;return t}i=Bx(i,a)}catch(s){r=!0,i=s}if(e==="throw")throw t;if(r)throw i;return Hh(i),t}});var Rs=b((LM,zh)=>{"use strict";var Fx=Fi(),qx=We(),Ux=St(),Hx=Ar(),jx=Bh(),Qx=ji(),Gh=wr(),Gx=Uh(),Wx=Bo(),Wh=Qh(),Yx=TypeError,ks=function(a,e){this.stopped=a,this.result=e},Yh=ks.prototype;zh.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=Fx(e,i),l,c,d,m,h,f,g,y=function(I){return l&&Wh(l,"normal",I),new ks(!0,I)},S=function(I){return r?(Ux(I),o?u(I[0],I[1],y):u(I[0],I[1])):o?u(I,y):u(I)};if(s)l=a.iterator;else if(n)l=a;else{if(c=Wx(a),!c)throw new Yx(Hx(a)+" is not iterable");if(jx(c)){for(d=0,m=Qx(a);m>d;d++)if(h=S(a[d]),h&&Gh(Yh,h))return h;return new ks(!1)}l=Gx(a,c)}for(f=s?a.next:l.next;!(g=qx(f,l)).done;){try{h=S(g.value)}catch(I){Wh(l,"throw",I)}if(typeof h=="object"&&h&&Gh(Yh,h))return h}return new ks(!1)}});var Xh=b((MM,Kh)=>{"use strict";var zx=Ge(),Kx=fi(),Xx=Pr();Kh.exports=function(a,e,t){zx?Kx.f(a,e,Xx(0,t)):a[e]=t}});var Jh=b(()=>{"use strict";var Jx=Ie(),Zx=Rs(),eP=Xh();Jx({target:"Object",stat:!0},{fromEntries:function(e){var t={};return Zx(e,function(i,r){eP(t,i,r)},{AS_ENTRIES:!0}),t}})});var em=b((VM,Zh)=>{"use strict";_o();Jh();var tP=_i();Zh.exports=tP.Object.fromEntries});var im=b((OM,tm)=>{"use strict";tm.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 am=b(()=>{"use strict";_o();var iP=im(),rP=ve(),aP=Or(),rm=bi();for($s in iP)aP(rP[$s],$s),rm[$s]=rm.Array;var $s});var nm=b((NM,sm)=>{"use strict";var sP=em();am();sm.exports=sP});var No=b((FM,om)=>{"use strict";var nP=nm();om.exports=nP});var um=b(()=>{"use strict"});var Fo=b((HM,lm)=>{"use strict";var Nr=ve(),oP=mi(),uP=pi(),Ls=function(a){return oP.slice(0,a.length)===a};lm.exports=function(){return Ls("Bun/")?"BUN":Ls("Cloudflare-Workers")?"CLOUDFLARE":Ls("Deno/")?"DENO":Ls("Node.js/")?"NODE":Nr.Bun&&typeof Bun.version=="string"?"BUN":Nr.Deno&&typeof Deno.version=="object"?"DENO":uP(Nr.process)==="process"?"NODE":Nr.window&&Nr.document?"BROWSER":"REST"}()});var Ms=b((jM,cm)=>{"use strict";var lP=Fo();cm.exports=lP==="NODE"});var pm=b((QM,dm)=>{"use strict";var cP=fi();dm.exports=function(a,e,t){return cP.f(a,e,t)}});var fm=b((GM,mm)=>{"use strict";var dP=kt(),pP=pm(),hP=Re(),mP=Ge(),hm=hP("species");mm.exports=function(a){var e=dP(a);mP&&e&&!e[hm]&&pP(e,hm,{configurable:!0,get:function(){return this}})}});var gm=b((WM,bm)=>{"use strict";var fP=wr(),bP=TypeError;bm.exports=function(a,e){if(fP(e,a))return a;throw new bP("Incorrect invocation")}});var Uo=b((YM,vm)=>{"use strict";var gP=xe(),vP=be(),qo=Rr(),SP=gP(Function.toString);vP(qo.inspectSource)||(qo.inspectSource=function(a){return SP(a)});vm.exports=qo.inspectSource});var jo=b((zM,Em)=>{"use strict";var yP=xe(),TP=ke(),Sm=be(),IP=Vr(),EP=kt(),xP=Uo(),ym=function(){},Tm=EP("Reflect","construct"),Ho=/^\s*(?:class|function)\b/,PP=yP(Ho.exec),wP=!Ho.test(ym),Fr=function(e){if(!Sm(e))return!1;try{return Tm(ym,[],e),!0}catch(t){return!1}},Im=function(e){if(!Sm(e))return!1;switch(IP(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return wP||!!PP(Ho,xP(e))}catch(t){return!0}};Im.sham=!0;Em.exports=!Tm||TP(function(){var a;return Fr(Fr.call)||!Fr(Object)||!Fr(function(){a=!0})||a})?Im:Fr});var Pm=b((KM,xm)=>{"use strict";var AP=jo(),kP=Ar(),RP=TypeError;xm.exports=function(a){if(AP(a))return a;throw new RP(kP(a)+" is not a constructor")}});var Qo=b((XM,Am)=>{"use strict";var wm=St(),$P=Pm(),LP=Oi(),MP=Re(),CP=MP("species");Am.exports=function(a,e){var t=wm(a).constructor,i;return t===void 0||LP(i=wm(t)[CP])?e:$P(i)}});var Rm=b((JM,km)=>{"use strict";var DP=xe();km.exports=DP([].slice)});var Lm=b((ZM,$m)=>{"use strict";var VP=TypeError;$m.exports=function(a,e){if(a<e)throw new VP("Not enough arguments");return a}});var Go=b((eC,Mm)=>{"use strict";var OP=mi();Mm.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(OP)});var tu=b((tC,qm)=>{"use strict";var ze=ve(),_P=On(),BP=Fi(),Cm=be(),NP=ut(),Fm=ke(),Dm=Po(),FP=Rm(),Vm=hs(),qP=Lm(),UP=Go(),HP=Ms(),Jo=ze.setImmediate,Zo=ze.clearImmediate,jP=ze.process,Wo=ze.Dispatch,QP=ze.Function,Om=ze.MessageChannel,GP=ze.String,Yo=0,qr={},_m="onreadystatechange",Ur,vi,zo,Ko;Fm(function(){Ur=ze.location});var eu=function(a){if(NP(qr,a)){var e=qr[a];delete qr[a],e()}},Xo=function(a){return function(){eu(a)}},Bm=function(a){eu(a.data)},Nm=function(a){ze.postMessage(GP(a),Ur.protocol+"//"+Ur.host)};(!Jo||!Zo)&&(Jo=function(e){qP(arguments.length,1);var t=Cm(e)?e:QP(e),i=FP(arguments,1);return qr[++Yo]=function(){_P(t,void 0,i)},vi(Yo),Yo},Zo=function(e){delete qr[e]},HP?vi=function(a){jP.nextTick(Xo(a))}:Wo&&Wo.now?vi=function(a){Wo.now(Xo(a))}:Om&&!UP?(zo=new Om,Ko=zo.port2,zo.port1.onmessage=Bm,vi=BP(Ko.postMessage,Ko)):ze.addEventListener&&Cm(ze.postMessage)&&!ze.importScripts&&Ur&&Ur.protocol!=="file:"&&!Fm(Nm)?(vi=Nm,ze.addEventListener("message",Bm,!1)):_m in Vm("script")?vi=function(a){Dm.appendChild(Vm("script"))[_m]=function(){Dm.removeChild(this),eu(a)}}:vi=function(a){setTimeout(Xo(a),0)});qm.exports={set:Jo,clear:Zo}});var jm=b((iC,Hm)=>{"use strict";var Um=ve(),WP=Ge(),YP=Object.getOwnPropertyDescriptor;Hm.exports=function(a){if(!WP)return Um[a];var e=YP(Um,a);return e&&e.value}});var iu=b((rC,Gm)=>{"use strict";var Qm=function(){this.head=null,this.tail=null};Qm.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}}};Gm.exports=Qm});var Ym=b((aC,Wm)=>{"use strict";var zP=mi();Wm.exports=/ipad|iphone|ipod/i.test(zP)&&typeof Pebble!="undefined"});var Km=b((sC,zm)=>{"use strict";var KP=mi();zm.exports=/web0s(?!.*chrome)/i.test(KP)});var af=b((nC,rf)=>{"use strict";var Yi=ve(),XP=jm(),Xm=Fi(),ru=tu().set,JP=iu(),ZP=Go(),ew=Ym(),tw=Km(),au=Ms(),Jm=Yi.MutationObserver||Yi.WebKitMutationObserver,Zm=Yi.document,ef=Yi.process,Cs=Yi.Promise,ou=XP("queueMicrotask"),Wi,su,nu,Ds,tf;ou||(Hr=new JP,jr=function(){var a,e;for(au&&(a=ef.domain)&&a.exit();e=Hr.get();)try{e()}catch(t){throw Hr.head&&Wi(),t}a&&a.enter()},!ZP&&!au&&!tw&&Jm&&Zm?(su=!0,nu=Zm.createTextNode(""),new Jm(jr).observe(nu,{characterData:!0}),Wi=function(){nu.data=su=!su}):!ew&&Cs&&Cs.resolve?(Ds=Cs.resolve(void 0),Ds.constructor=Cs,tf=Xm(Ds.then,Ds),Wi=function(){tf(jr)}):au?Wi=function(){ef.nextTick(jr)}:(ru=Xm(ru,Yi),Wi=function(){ru(jr)}),ou=function(a){Hr.head||Wi(),Hr.add(a)});var Hr,jr;rf.exports=ou});var nf=b((oC,sf)=>{"use strict";sf.exports=function(a,e){try{arguments.length===1?console.error(a):console.error(a,e)}catch(t){}}});var Vs=b((uC,of)=>{"use strict";of.exports=function(a){try{return{error:!1,value:a()}}catch(e){return{error:!0,value:e}}}});var Si=b((lC,uf)=>{"use strict";var iw=ve();uf.exports=iw.Promise});var zi=b((cC,pf)=>{"use strict";var rw=ve(),Qr=Si(),aw=be(),sw=ao(),nw=Uo(),ow=Re(),lf=Fo(),uw=ot(),uu=Qn(),cf=Qr&&Qr.prototype,lw=ow("species"),lu=!1,df=aw(rw.PromiseRejectionEvent),cw=sw("Promise",function(){var a=nw(Qr),e=a!==String(Qr);if(!e&&uu===66||uw&&!(cf.catch&&cf.finally))return!0;if(!uu||uu<51||!/native code/.test(a)){var t=new Qr(function(s){s(1)}),i=function(s){s(function(){},function(){})},r=t.constructor={};if(r[lw]=i,lu=t.then(function(){})instanceof i,!lu)return!0}return!e&&(lf==="BROWSER"||lf==="DENO")&&!df});pf.exports={CONSTRUCTOR:cw,REJECTION_EVENT:df,SUBCLASSING:lu}});var Ki=b((dC,mf)=>{"use strict";var hf=vt(),dw=TypeError,pw=function(a){var e,t;this.promise=new a(function(i,r){if(e!==void 0||t!==void 0)throw new dw("Bad Promise constructor");e=i,t=r}),this.resolve=hf(e),this.reject=hf(t)};mf.exports.f=function(a){return new pw(a)}});var Cf=b(()=>{"use strict";var hw=Ie(),mw=ot(),Ns=Ms(),Yt=ve(),er=We(),ff=Gi(),bf=Do(),fw=Or(),bw=fm(),gw=vt(),Bs=be(),vw=Ye(),Sw=gm(),yw=Qo(),Tf=tu().set,mu=af(),Tw=nf(),Iw=Vs(),Ew=iu(),If=To(),Fs=Si(),fu=zi(),Ef=Ki(),qs="Promise",xf=fu.CONSTRUCTOR,xw=fu.REJECTION_EVENT,Pw=fu.SUBCLASSING,cu=If.getterFor(qs),ww=If.set,Xi=Fs&&Fs.prototype,yi=Fs,Os=Xi,Pf=Yt.TypeError,du=Yt.document,bu=Yt.process,pu=Ef.f,Aw=pu,kw=!!(du&&du.createEvent&&Yt.dispatchEvent),wf="unhandledrejection",Rw="rejectionhandled",gf=0,Af=1,$w=2,gu=1,kf=2,_s,vf,Lw,Sf,Rf=function(a){var e;return vw(a)&&Bs(e=a.then)?e:!1},$f=function(a,e){var t=e.value,i=e.state===Af,r=i?a.ok:a.fail,s=a.resolve,n=a.reject,o=a.domain,u,l,c;try{r?(i||(e.rejection===kf&&Cw(e),e.rejection=gu),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),c=!0)),u===a.promise?n(new Pf("Promise-chain cycle")):(l=Rf(u))?er(l,u,s,n):s(u)):n(t)}catch(d){o&&!c&&o.exit(),n(d)}},Lf=function(a,e){a.notified||(a.notified=!0,mu(function(){for(var t=a.reactions,i;i=t.get();)$f(i,a);a.notified=!1,e&&!a.rejection&&Mw(a)}))},Mf=function(a,e,t){var i,r;kw?(i=du.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(a,!1,!0),Yt.dispatchEvent(i)):i={promise:e,reason:t},!xw&&(r=Yt["on"+a])?r(i):a===wf&&Tw("Unhandled promise rejection",t)},Mw=function(a){er(Tf,Yt,function(){var e=a.facade,t=a.value,i=yf(a),r;if(i&&(r=Iw(function(){Ns?bu.emit("unhandledRejection",t,e):Mf(wf,e,t)}),a.rejection=Ns||yf(a)?kf:gu,r.error))throw r.value})},yf=function(a){return a.rejection!==gu&&!a.parent},Cw=function(a){er(Tf,Yt,function(){var e=a.facade;Ns?bu.emit("rejectionHandled",e):Mf(Rw,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=$w,Lf(a,!0))},hu=function(a,e,t){if(!a.done){a.done=!0,t&&(a=t);try{if(a.facade===e)throw new Pf("Promise can't be resolved itself");var i=Rf(e);i?mu(function(){var r={done:!1};try{er(i,e,Ji(hu,r,a),Ji(Zi,r,a))}catch(s){Zi(r,s,a)}}):(a.value=e,a.state=Af,Lf(a,!1))}catch(r){Zi({done:!1},r,a)}}};if(xf&&(yi=function(e){Sw(this,Os),gw(e),er(_s,this);var t=cu(this);try{e(Ji(hu,t),Ji(Zi,t))}catch(i){Zi(t,i)}},Os=yi.prototype,_s=function(e){ww(this,{type:qs,done:!1,notified:!1,parent:!1,reactions:new Ew,rejection:!1,state:gf,value:void 0})},_s.prototype=ff(Os,"then",function(e,t){var i=cu(this),r=pu(yw(this,yi));return i.parent=!0,r.ok=Bs(e)?e:!0,r.fail=Bs(t)&&t,r.domain=Ns?bu.domain:void 0,i.state===gf?i.reactions.add(r):mu(function(){$f(r,i)}),r.promise}),vf=function(){var a=new _s,e=cu(a);this.promise=a,this.resolve=Ji(hu,e),this.reject=Ji(Zi,e)},Ef.f=pu=function(a){return a===yi||a===Lw?new vf(a):Aw(a)},!mw&&Bs(Fs)&&Xi!==Object.prototype)){Sf=Xi.then,Pw||ff(Xi,"then",function(e,t){var i=this;return new yi(function(r,s){er(Sf,i,r,s)}).then(e,t)},{unsafe:!0});try{delete Xi.constructor}catch(a){}bf&&bf(Xi,Os)}hw({global:!0,constructor:!0,wrap:!0,forced:xf},{Promise:yi});fw(yi,qs,!1,!0);bw(qs)});var Bf=b((mC,_f)=>{"use strict";var Dw=Re(),Vf=Dw("iterator"),Of=!1;try{Df=0,vu={next:function(){return{done:!!Df++}},return:function(){Of=!0}},vu[Vf]=function(){return this},Array.from(vu,function(){throw 2})}catch(a){}var Df,vu;_f.exports=function(a,e){try{if(!e&&!Of)return!1}catch(r){return!1}var t=!1;try{var i={};i[Vf]=function(){return{next:function(){return{done:t=!0}}}},a(i)}catch(r){}return t}});var Su=b((fC,Nf)=>{"use strict";var Vw=Si(),Ow=Bf(),_w=zi().CONSTRUCTOR;Nf.exports=_w||!Ow(function(a){Vw.all(a).then(void 0,function(){})})});var Ff=b(()=>{"use strict";var Bw=Ie(),Nw=We(),Fw=vt(),qw=Ki(),Uw=Vs(),Hw=Rs(),jw=Su();Bw({target:"Promise",stat:!0,forced:jw},{all:function(e){var t=this,i=qw.f(t),r=i.resolve,s=i.reject,n=Uw(function(){var o=Fw(t.resolve),u=[],l=0,c=1;Hw(e,function(d){var m=l++,h=!1;c++,Nw(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 Uf=b(()=>{"use strict";var Qw=Ie(),Gw=ot(),Ww=zi().CONSTRUCTOR,Tu=Si(),Yw=kt(),zw=be(),Kw=Gi(),qf=Tu&&Tu.prototype;Qw({target:"Promise",proto:!0,forced:Ww,real:!0},{catch:function(a){return this.then(void 0,a)}});!Gw&&zw(Tu)&&(yu=Yw("Promise").prototype.catch,qf.catch!==yu&&Kw(qf,"catch",yu,{unsafe:!0}));var yu});var Hf=b(()=>{"use strict";var Xw=Ie(),Jw=We(),Zw=vt(),eA=Ki(),tA=Vs(),iA=Rs(),rA=Su();Xw({target:"Promise",stat:!0,forced:rA},{race:function(e){var t=this,i=eA.f(t),r=i.reject,s=tA(function(){var n=Zw(t.resolve);iA(e,function(o){Jw(n,t,o).then(i.resolve,r)})});return s.error&&r(s.value),i.promise}})});var jf=b(()=>{"use strict";var aA=Ie(),sA=Ki(),nA=zi().CONSTRUCTOR;aA({target:"Promise",stat:!0,forced:nA},{reject:function(e){var t=sA.f(this),i=t.reject;return i(e),t.promise}})});var Iu=b((xC,Qf)=>{"use strict";var oA=St(),uA=Ye(),lA=Ki();Qf.exports=function(a,e){if(oA(a),uA(e)&&e.constructor===a)return e;var t=lA.f(a),i=t.resolve;return i(e),t.promise}});var Yf=b(()=>{"use strict";var cA=Ie(),dA=kt(),Gf=ot(),pA=Si(),Wf=zi().CONSTRUCTOR,hA=Iu(),mA=dA("Promise"),fA=Gf&&!Wf;cA({target:"Promise",stat:!0,forced:Gf||Wf},{resolve:function(e){return hA(fA&&this===mA?pA:this,e)}})});var zf=b(()=>{"use strict";Cf();Ff();Uf();Hf();jf();Yf()});var Zf=b(()=>{"use strict";var bA=Ie(),gA=ot(),Us=Si(),vA=ke(),Xf=kt(),Jf=be(),SA=Qo(),Kf=Iu(),yA=Gi(),xu=Us&&Us.prototype,TA=!!Us&&vA(function(){xu.finally.call({then:function(){}},function(){})});bA({target:"Promise",proto:!0,real:!0,forced:TA},{finally:function(a){var e=SA(this,Xf("Promise")),t=Jf(a);return this.then(t?function(i){return Kf(e,a()).then(function(){return i})}:a,t?function(i){return Kf(e,a()).then(function(){throw i})}:a)}});!gA&&Jf(Us)&&(Eu=Xf("Promise").prototype.finally,xu.finally!==Eu&&yA(xu,"finally",Eu,{unsafe:!0}));var Eu});var tb=b((LC,eb)=>{"use strict";um();zf();Zf();var IA=Wt();eb.exports=IA("Promise","finally")});var rb=b((MC,ib)=>{"use strict";var EA=tb();ib.exports=EA});var Hs=b((CC,ab)=>{"use strict";var xA=rb();ab.exports=xA});var db=b(()=>{"use strict";var RA=Ie(),$A=go().values;RA({target:"Object",stat:!0},{values:function(e){return $A(e)}})});var hb=b((cD,pb)=>{"use strict";db();var LA=_i();pb.exports=LA.Object.values});var fb=b((dD,mb)=>{"use strict";var MA=hb();mb.exports=MA});var tr=b((pD,bb)=>{"use strict";var CA=fb();bb.exports=CA});var kb=b(()=>{"use strict";var HA=Ie(),jA=Bi(),QA=ji(),GA=Mr(),WA=Cr();HA({target:"Array",proto:!0},{at:function(e){var t=jA(this),i=QA(t),r=GA(e),s=r>=0?r:i+r;return s<0||s>=i?void 0:t[s]}});WA("at")});var $b=b((S0,Rb)=>{"use strict";kb();var YA=Wt();Rb.exports=YA("Array","at")});var Mb=b((y0,Lb)=>{"use strict";var zA=$b();Lb.exports=zA});var Jt=b((T0,Cb)=>{"use strict";var KA=Mb();Cb.exports=KA});var ju=b((JV,tg)=>{"use strict";var uk=pi();tg.exports=Array.isArray||function(e){return uk(e)==="Array"}});var rg=b((ZV,ig)=>{"use strict";var lk=TypeError,ck=9007199254740991;ig.exports=function(a){if(a>ck)throw lk("Maximum allowed index exceeded");return a}});var ng=b((eO,sg)=>{"use strict";var dk=ju(),pk=ji(),hk=rg(),mk=Fi(),ag=function(a,e,t,i,r,s,n,o){for(var u=r,l=0,c=n?mk(n,o):!1,d,m;l<i;)l in t&&(d=c?c(t[l],l,e):t[l],s>0&&dk(d)?(m=pk(d),u=ag(a,e,d,m,u,s-1)-1):(hk(u+1),a[u]=d),u++),l++;return u};sg.exports=ag});var cg=b((tO,lg)=>{"use strict";var og=ju(),fk=jo(),bk=Ye(),gk=Re(),vk=gk("species"),ug=Array;lg.exports=function(a){var e;return og(a)&&(e=a.constructor,fk(e)&&(e===ug||og(e.prototype))?e=void 0:bk(e)&&(e=e[vk],e===null&&(e=void 0))),e===void 0?ug:e}});var pg=b((iO,dg)=>{"use strict";var Sk=cg();dg.exports=function(a,e){return new(Sk(a))(e===0?0:e)}});var hg=b(()=>{"use strict";var yk=Ie(),Tk=ng(),Ik=vt(),Ek=Bi(),xk=ji(),Pk=pg();yk({target:"Array",proto:!0},{flatMap:function(e){var t=Ek(this),i=xk(t),r;return Ik(e),r=Pk(t,0),r.length=Tk(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var mg=b(()=>{"use strict";var wk=Cr();wk("flatMap")});var bg=b((oO,fg)=>{"use strict";hg();mg();var Ak=Wt();fg.exports=Ak("Array","flatMap")});var vg=b((uO,gg)=>{"use strict";var kk=bg();gg.exports=kk});var Qu=b((lO,Sg)=>{"use strict";var Rk=vg();Sg.exports=Rk});var ra=b((cO,yg)=>{"use strict";var $k=Vr(),Lk=String;yg.exports=function(a){if($k(a)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return Lk(a)}});var Gu=b((dO,Tg)=>{"use strict";Tg.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 xg=b((pO,Eg)=>{"use strict";var Mk=xe(),Ck=Gt(),Dk=ra(),Yu=Gu(),Ig=Mk("".replace),Vk=RegExp("^["+Yu+"]+"),Ok=RegExp("(^|[^"+Yu+"])["+Yu+"]+$"),Wu=function(a){return function(e){var t=Dk(Ck(e));return a&1&&(t=Ig(t,Vk,"")),a&2&&(t=Ig(t,Ok,"$1")),t}};Eg.exports={start:Wu(1),end:Wu(2),trim:Wu(3)}});var kg=b((hO,Ag)=>{"use strict";var _k=xo().PROPER,Bk=ke(),Pg=Gu(),wg="\u200B\x85\u180E";Ag.exports=function(a){return Bk(function(){return!!Pg[a]()||wg[a]()!==wg||_k&&Pg[a].name!==a})}});var zu=b((mO,Rg)=>{"use strict";var Nk=xg().start,Fk=kg();Rg.exports=Fk("trimStart")?function(){return Nk(this)}:"".trimStart});var Lg=b(()=>{"use strict";var qk=Ie(),$g=zu();qk({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==$g},{trimLeft:$g})});var Cg=b(()=>{"use strict";Lg();var Uk=Ie(),Mg=zu();Uk({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==Mg},{trimStart:Mg})});var Vg=b((SO,Dg)=>{"use strict";Cg();var Hk=Wt();Dg.exports=Hk("String","trimLeft")});var _g=b((yO,Og)=>{"use strict";var jk=Vg();Og.exports=jk});var Ng=b((TO,Bg)=>{"use strict";var Qk=_g();Bg.exports=Qk});var Zg=b(()=>{"use strict"});var ev=b(()=>{"use strict"});var iv=b((eN,tv)=>{"use strict";var dR=Ye(),pR=pi(),hR=Re(),mR=hR("match");tv.exports=function(a){var e;return dR(a)&&((e=a[mR])!==void 0?!!e:pR(a)==="RegExp")}});var av=b((tN,rv)=>{"use strict";var fR=St();rv.exports=function(){var a=fR(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 ov=b((iN,nv)=>{"use strict";var bR=We(),gR=ut(),vR=wr(),SR=av(),sv=RegExp.prototype;nv.exports=function(a){var e=a.flags;return e===void 0&&!("flags"in sv)&&!gR(a,"flags")&&vR(sv,a)?bR(SR,a):e}});var lv=b((rN,uv)=>{"use strict";var il=xe(),yR=Bi(),TR=Math.floor,el=il("".charAt),IR=il("".replace),tl=il("".slice),ER=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,xR=/\$([$&'`]|\d{1,2})/g;uv.exports=function(a,e,t,i,r,s){var n=t+a.length,o=i.length,u=xR;return r!==void 0&&(r=yR(r),u=ER),IR(s,u,function(l,c){var d;switch(el(c,0)){case"$":return"$";case"&":return a;case"`":return tl(e,0,t);case"'":return tl(e,n);case"<":d=r[tl(c,1,-1)];break;default:var m=+c;if(m===0)return l;if(m>o){var h=TR(m/10);return h===0?l:h<=o?i[h-1]===void 0?el(c,1):i[h-1]+el(c,1):l}d=i[m-1]}return d===void 0?"":d})}});var pv=b(()=>{"use strict";var PR=Ie(),wR=We(),al=xe(),cv=Gt(),AR=be(),kR=Oi(),RR=iv(),ur=ra(),$R=kr(),LR=ov(),MR=lv(),CR=Re(),DR=ot(),VR=CR("replace"),OR=TypeError,rl=al("".indexOf),_R=al("".replace),dv=al("".slice),BR=Math.max;PR({target:"String",proto:!0},{replaceAll:function(e,t){var i=cv(this),r,s,n,o,u,l,c,d,m,h,f=0,g="";if(!kR(e)){if(r=RR(e),r&&(s=ur(cv(LR(e))),!~rl(s,"g")))throw new OR("`.replaceAll` does not allow non-global regexes");if(n=$R(e,VR),n)return wR(n,e,i,t);if(DR&&r)return _R(ur(i),e,t)}for(o=ur(i),u=ur(e),l=AR(t),l||(t=ur(t)),c=u.length,d=BR(1,c),m=rl(o,u);m!==-1;)h=l?ur(t(u,m,o)):MR(u,o,m,[],void 0,t),g+=dv(o,f,m)+h,f=m+c,m=m+d>o.length?-1:rl(o,u,m+d);return f<o.length&&(g+=dv(o,f)),g}})});var mv=b((nN,hv)=>{"use strict";Zg();ev();pv();var NR=Wt();hv.exports=NR("String","replaceAll")});var bv=b((oN,fv)=>{"use strict";var FR=mv();fv.exports=FR});var vv=b((uN,gv)=>{"use strict";var qR=bv();gv.exports=qR});var yv=b((lN,Sv)=>{"use strict";var UR=Mr(),HR=ra(),jR=Gt(),QR=RangeError;Sv.exports=function(e){var t=HR(jR(this)),i="",r=UR(e);if(r<0||r===1/0)throw new QR("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var Pv=b((cN,xv)=>{"use strict";var Ev=xe(),GR=co(),Tv=ra(),WR=yv(),YR=Gt(),zR=Ev(WR),KR=Ev("".slice),XR=Math.ceil,Iv=function(a){return function(e,t,i){var r=Tv(YR(e)),s=GR(t),n=r.length,o=i===void 0?" ":Tv(i),u,l;return s<=n||o===""?r:(u=s-n,l=zR(o,XR(u/o.length)),l.length>u&&(l=KR(l,0,u)),a?r+l:l+r)}};xv.exports={start:Iv(!1),end:Iv(!0)}});var Av=b((dN,wv)=>{"use strict";var JR=mi();wv.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(JR)});var kv=b(()=>{"use strict";var ZR=Ie(),e$=Pv().start,t$=Av();ZR({target:"String",proto:!0,forced:t$},{padStart:function(e){return e$(this,e,arguments.length>1?arguments[1]:void 0)}})});var $v=b((mN,Rv)=>{"use strict";kv();var i$=Wt();Rv.exports=i$("String","padStart")});var Mv=b((fN,Lv)=>{"use strict";var r$=$v();Lv.exports=r$});var Dv=b((bN,Cv)=>{"use strict";var a$=Mv();Cv.exports=a$});var w$={};YS(w$,{ChromecastState:()=>Tr,HttpConnectionType:()=>ls,Observable:()=>xt.Observable,PlaybackState:()=>Be,Player:()=>Wa,PredefinedQualityLimits:()=>Ir,SDK_VERSION:()=>P$,Subject:()=>xt.Subject,Subscription:()=>xt.Subscription,Surface:()=>cs,VERSION:()=>Dn,ValueSubject:()=>xt.ValueSubject,VideoFormat:()=>gt,VideoQuality:()=>xt.VideoQuality,clientChecker:()=>z,isMobile:()=>ir});module.exports=zS(w$);var Dn="2.0.131-dev.f14d8d97.0";var Be=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(Be||{}),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 Tr=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(Tr||{}),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||{}),Ir=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(Ir||{});var CS=G(Ne(),1);var W=require("@vkontakte/videoplayer-shared/es2015");var cp=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 W.ValueSubject(void 0);this.castState$=new W.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new W.Subject;this.realCastState$=new W.ValueSubject("NOT_AVAILABLE");this.subscription=new W.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,W.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||cp("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:W.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,W.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,W.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,W.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,W.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,W.assertNever)(r.sessionState)}})).add((0,W.merge)((0,W.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,W.tap)(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),(0,W.map)(r=>r.castState)),(0,W.observableFrom)([i.getCastState()])).pipe((0,W.filterChanged)(),(0,W.map)(gI),(0,W.tap)(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{var o,u;let s=r==="CONNECTED",n=(0,W.isNonNullable)(this.connection$.getValue());if(s&&!n){let l=i.getCurrentSession();(0,W.assertNonNullable)(l);let c=l.getCastDevice(),d=(u=(o=l.getMediaSession())==null?void 0:o.media)==null?void 0:u.contentId;((0,W.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,W.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:W.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:s})}}},gI=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,W.assertNever)(a)}};var Al=G(Ne(),1),yS=G(Qi(),1),TS=G(No(),1);var ub=G(Hs(),1);var Pu=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,Pu.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,Pu.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 sb=require("@vkontakte/videoplayer-shared/es2015"),nb=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,sb.assertNever)(a)}};var D=require("@vkontakte/videoplayer-shared/es2015");var PA=5,wA=5,AA=500,ob=7e3,Gr=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(nb(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)(AA)).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)>PA)&&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<wA&&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)(ob).subscribe(()=>s(`timeout(${ob})`)))});(0,ub.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 Uu=G(Ne(),1);var Ru=require("@vkontakte/videoplayer-shared/es2015");var lb=require("@vkontakte/videoplayer-shared/es2015"),cb=a=>{try{a.pause(),a.playbackRate=0,(0,lb.clearVideoElement)(a),a.remove()}catch(e){console.error(e)}};var Qs=require("@vkontakte/videoplayer-shared/es2015"),wu=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)}},Au=window.WeakMap?new WeakMap:new wu,ku=window.WeakMap?new WeakMap:new Map,kA=(a,e=20)=>{let t=0;return(0,Qs.fromEvent)(a,"ratechange").subscribe(i=>{t++,t>=e&&(a.currentTime=a.currentTime,t=0)})},Fe=(a,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=a.querySelector("video"),r=!!i;i?(0,Ru.clearVideoElement)(i):(i=document.createElement("video"),a.appendChild(i)),Au.set(i,r);let s=new Qs.Subscription;return s.add(kA(i,e)),ku.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},qe=a=>{let e=ku.get(a);e==null||e.unsubscribe(),ku.delete(a);let t=Au.get(a);Au.delete(a),t?(0,Ru.clearVideoElement)(a):cb(a)};var $u=G(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}),Ue=(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 DA=a=>["__",a.language,a.label].join("|"),VA=(a,e)=>{if(a.id===e)return!0;let[t,i,r]=e.split("|");return a.language===i&&a.label===r},Lu=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,$u.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,$u.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:DA(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)||!VA(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=Lu;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 gb=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},Mu=a=>{let e=gb(a);return!!(e&&e.fullscreenElement&&e.fullscreenElement===a)},vb=a=>{let e=gb(a);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===a)};var R=require("@vkontakte/videoplayer-shared/es2015");var OA=3,Sb=(a,e,t=OA)=>{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 yb=G(Ne(),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,yb.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))},Tb=()=>{var a,e;return!!(window.MediaSource&&((e=(a=window.SourceBuffer)==null?void 0:a.prototype)!=null&&e.appendBuffer))},Ib=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var _A=document.createElement("video"),BA='video/mp4; codecs="avc1.42000a,mp4a.40.2"',NA='video/mp4; codecs="hev1.1.6.L93.B0"',Eb='video/webm; codecs="vp09.00.10.08"',xb='video/webm; codecs="av01.0.00M.08"',FA='audio/mp4; codecs="mp4a.40.2"',qA='audio/webm; codecs="opus"',Pb,UA=()=>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:xb})})),window.navigator.mediaCapabilities.decodingInfo(U(L({},a),{video:U(L({},a.video),{contentType:Eb})}))]);Pb={DASH_WEBM_AV1:e,DASH_WEBM:t}});UA().catch(a=>{console.log(_A),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 Pb}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,y,S,I,x,w;this._video=document.createElement("video");try{this._protocols={mms:Ks(),mse:Tb(),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,BA)),O=!!((m=(d=ct())==null?void 0:d.isTypeSupported)!=null&&m.call(d,NA)),Z=!!((f=(h=ct())==null?void 0:h.isTypeSupported)!=null&&f.call(h,FA));this._codecs={h264:P,h265:O,vp9:!!((y=(g=ct())==null?void 0:g.isTypeSupported)!=null&&y.call(g,Eb)),av1:!!((I=(S=ct())==null?void 0:S.isTypeSupported)!=null&&I.call(S,xb)),aac:Z,opus:!!((w=(x=ct())==null?void 0:x.isTypeSupported)!=null&&w.call(x,qA)),mpeg:(P||O)&&Z},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 wb="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,wb))},this._codecs={mp3:!!((r=(i=ct())==null?void 0:i.isTypeSupported)!=null&&r.call(i,wb))}}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 Ab=require("@vkontakte/videoplayer-shared/es2015");var Cu=class{constructor(){this.isInited$=new Ab.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)})}},z=new Cu;var He=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)(()=>Sb(a.buffered,a.currentTime))),o=z.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)),y=(0,R.fromEvent)(a,"enterpictureinpicture"),S=(0,R.fromEvent)(a,"leavepictureinpicture"),I=new R.ValueSubject(vb(a));t.add(y.subscribe(()=>I.next(!0))),t.add(S.subscribe(()=>I.next(!1)));let x=new R.ValueSubject(Mu(a)),w=(0,R.fromEvent)(a,"fullscreenchange");t.add(w.pipe((0,R.map)(()=>Mu(a))).subscribe(x));let P=.1,O=1e3,Z=(0,R.fromEvent)(a,"timeupdate").pipe((0,R.filter)(k=>a.duration-a.currentTime<P)),ee=(0,R.merge)(Z.pipe((0,R.filter)(k=>!a.loop)),(0,R.fromEvent)(a,"ended")).pipe((0,R.throttle)(O),(0,R.mapTo)(void 0)),ne=Z.pipe((0,R.filter)(k=>a.loop));return{playing$:o,pause$:g,canplay$:e("canplay"),ended$:ee,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$:y,leavePip$:S,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=G(Jt(),1),Nb=G(Ne(),1),Zs=G(Qi(),1),F=require("@vkontakte/videoplayer-shared/es2015");var Du=!1,Mt={},Db=a=>{Du=a},Vb=()=>{Mt={}},Ob=a=>{a(Mt)},Wr=(a,e)=>{var t;Du&&(Mt.meta=(t=Mt.meta)!=null?t:{},Mt.meta[a]=e)},De=class{constructor(e){this.name=e}next(e){var i,r;if(!Du)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 Vu({limits:a,highQualityLimit:e,trafficSavingLimit:t}){return!a.max&&a.min===e?"high_quality":!a.min&&a.max===t?"traffic_saving":"unknown"}function Ou({limits:a,highQualityLimit:e,trafficSavingLimit:t}){return!!a&&Vu({limits:a,highQualityLimit:e,trafficSavingLimit:t})==="high_quality"}function Yr({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 _b({limits:a,highestAvailableHeight:e,lowestAvailableHeight:t}){return Yr({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 XA=new De("best_bitrate"),Fb=(a,e,t)=>(e-t)*Math.pow(2,-10*a)+t;var _u=a=>(e,t)=>a*(Number(e.bitrate)-Number(t.bitrate)),zr=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={}}},qb='Assertion "ABR Tracks is empty array" failed',en=(a,e,t,i)=>{var u;let r=[...e].sort(_u(1)),s=[...t].sort(_u(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,Nb.default)(n,o)?o:n.length?(0,Zt.default)(n,-1):(0,Zt.default)(s,0)},Bb=a=>"quality"in a,Ub=(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=Bb(o)?"video":"audio",l=Bb(o)?o.quality:o.bitrate;return e({message:`
6
+ "use strict";var DT=Object.create;var ra=Object.defineProperty,CT=Object.defineProperties,VT=Object.getOwnPropertyDescriptor,OT=Object.getOwnPropertyDescriptors,_T=Object.getOwnPropertyNames,po=Object.getOwnPropertySymbols,FT=Object.getPrototypeOf,Zu=Object.prototype.hasOwnProperty,rp=Object.prototype.propertyIsEnumerable;var NT=(s,e)=>(e=Symbol[s])?e:Symbol.for("Symbol."+s);var St=Math.pow,ip=(s,e,t)=>e in s?ra(s,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):s[e]=t,k=(s,e)=>{for(var t in e||(e={}))Zu.call(e,t)&&ip(s,t,e[t]);if(po)for(var t of po(e))rp.call(e,t)&&ip(s,t,e[t]);return s},N=(s,e)=>CT(s,OT(e));var sp=(s,e)=>{var t={};for(var i in s)Zu.call(s,i)&&e.indexOf(i)<0&&(t[i]=s[i]);if(s!=null&&po)for(var i of po(s))e.indexOf(i)<0&&rp.call(s,i)&&(t[i]=s[i]);return t};var g=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports),UT=(s,e)=>{for(var t in e)ra(s,t,{get:e[t],enumerable:!0})},ap=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of _T(e))!Zu.call(s,r)&&r!==t&&ra(s,r,{get:()=>e[r],enumerable:!(i=VT(e,r))||i.enumerable});return s};var K=(s,e,t)=>(t=s!=null?DT(FT(s)):{},ap(e||!s||!s.__esModule?ra(t,"default",{value:s,enumerable:!0}):t,s)),qT=s=>ap(ra({},"__esModule",{value:!0}),s);var A=(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())}),hr=function(s,e){this[0]=s,this[1]=e},pe=(s,e,t)=>{var i=(n,o,u,l)=>{try{var d=t[n](o),c=(o=d.value)instanceof hr,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[NT("asyncIterator")]=()=>a,r("next"),r("throw"),r("return"),a};var Fe=g((tl,np)=>{"use strict";var na=function(s){return s&&s.Math===Math&&s};np.exports=na(typeof globalThis=="object"&&globalThis)||na(typeof window=="object"&&window)||na(typeof self=="object"&&self)||na(typeof global=="object"&&global)||na(typeof tl=="object"&&tl)||function(){return this}()||Function("return this")()});var st=g((q$,op)=>{"use strict";op.exports=function(s){try{return!!s()}catch(e){return!0}}});var oa=g((j$,up)=>{"use strict";var jT=st();up.exports=!jT(function(){var s=function(){}.bind();return typeof s!="function"||s.hasOwnProperty("prototype")})});var il=g((H$,pp)=>{"use strict";var HT=oa(),dp=Function.prototype,lp=dp.apply,cp=dp.call;pp.exports=typeof Reflect=="object"&&Reflect.apply||(HT?cp.bind(lp):function(){return cp.apply(lp,arguments)})});var Ze=g((G$,mp)=>{"use strict";var hp=oa(),fp=Function.prototype,rl=fp.call,GT=hp&&fp.bind.bind(rl,rl);mp.exports=hp?GT:function(s){return function(){return rl.apply(s,arguments)}}});var fr=g((z$,gp)=>{"use strict";var bp=Ze(),zT=bp({}.toString),QT=bp("".slice);gp.exports=function(s){return QT(zT(s),8,-1)}});var sl=g((Q$,Sp)=>{"use strict";var WT=fr(),YT=Ze();Sp.exports=function(s){if(WT(s)==="Function")return YT(s)}});var Oe=g((W$,vp)=>{"use strict";var al=typeof document=="object"&&document.all;vp.exports=typeof al=="undefined"&&al!==void 0?function(s){return typeof s=="function"||s===al}:function(s){return typeof s=="function"}});var Ct=g((Y$,yp)=>{"use strict";var KT=st();yp.exports=!KT(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var Vt=g((K$,Tp)=>{"use strict";var XT=oa(),mo=Function.prototype.call;Tp.exports=XT?mo.bind(mo):function(){return mo.apply(mo,arguments)}});var nl=g(Ep=>{"use strict";var Ip={}.propertyIsEnumerable,xp=Object.getOwnPropertyDescriptor,JT=xp&&!Ip.call({1:2},1);Ep.f=JT?function(e){var t=xp(this,e);return!!t&&t.enumerable}:Ip});var ua=g((J$,wp)=>{"use strict";wp.exports=function(s,e){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:e}}});var Ap=g((Z$,Pp)=>{"use strict";var ZT=Ze(),eI=st(),tI=fr(),ol=Object,iI=ZT("".split);Pp.exports=eI(function(){return!ol("z").propertyIsEnumerable(0)})?function(s){return tI(s)==="String"?iI(s,""):ol(s)}:ol});var Cr=g((eB,kp)=>{"use strict";kp.exports=function(s){return s==null}});var Yi=g((tB,Rp)=>{"use strict";var rI=Cr(),sI=TypeError;Rp.exports=function(s){if(rI(s))throw new sI("Can't call method on "+s);return s}});var mr=g((iB,Lp)=>{"use strict";var aI=Ap(),nI=Yi();Lp.exports=function(s){return aI(nI(s))}});var Ot=g((rB,Mp)=>{"use strict";var oI=Oe();Mp.exports=function(s){return typeof s=="object"?s!==null:oI(s)}});var Vr=g((sB,$p)=>{"use strict";$p.exports={}});var Bi=g((aB,Dp)=>{"use strict";var ul=Vr(),ll=Fe(),uI=Oe(),Bp=function(s){return uI(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 la=g((nB,Cp)=>{"use strict";var lI=Ze();Cp.exports=lI({}.isPrototypeOf)});var br=g((oB,_p)=>{"use strict";var cI=Fe(),Vp=cI.navigator,Op=Vp&&Vp.userAgent;_p.exports=Op?String(Op):""});var dl=g((uB,Hp)=>{"use strict";var jp=Fe(),cl=br(),Fp=jp.process,Np=jp.Deno,Up=Fp&&Fp.versions||Np&&Np.version,qp=Up&&Up.v8,ei,bo;qp&&(ei=qp.split("."),bo=ei[0]>0&&ei[0]<4?1:+(ei[0]+ei[1]));!bo&&cl&&(ei=cl.match(/Edge\/(\d+)/),(!ei||ei[1]>=74)&&(ei=cl.match(/Chrome\/(\d+)/),ei&&(bo=+ei[1])));Hp.exports=bo});var pl=g((lB,zp)=>{"use strict";var Gp=dl(),dI=st(),pI=Fe(),hI=pI.String;zp.exports=!!Object.getOwnPropertySymbols&&!dI(function(){var s=Symbol("symbol detection");return!hI(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&Gp&&Gp<41})});var hl=g((cB,Qp)=>{"use strict";var fI=pl();Qp.exports=fI&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var fl=g((dB,Wp)=>{"use strict";var mI=Bi(),bI=Oe(),gI=la(),SI=hl(),vI=Object;Wp.exports=SI?function(s){return typeof s=="symbol"}:function(s){var e=mI("Symbol");return bI(e)&&gI(e.prototype,vI(s))}});var ca=g((pB,Yp)=>{"use strict";var yI=String;Yp.exports=function(s){try{return yI(s)}catch(e){return"Object"}}});var ci=g((hB,Kp)=>{"use strict";var TI=Oe(),II=ca(),xI=TypeError;Kp.exports=function(s){if(TI(s))return s;throw new xI(II(s)+" is not a function")}});var da=g((fB,Xp)=>{"use strict";var EI=ci(),wI=Cr();Xp.exports=function(s,e){var t=s[e];return wI(t)?void 0:EI(t)}});var Zp=g((mB,Jp)=>{"use strict";var ml=Vt(),bl=Oe(),gl=Ot(),PI=TypeError;Jp.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 PI("Can't convert object to primitive value")}});var ti=g((bB,eh)=>{"use strict";eh.exports=!0});var rh=g((gB,ih)=>{"use strict";var th=Fe(),AI=Object.defineProperty;ih.exports=function(s,e){try{AI(th,s,{value:e,configurable:!0,writable:!0})}catch(t){th[s]=e}return e}});var pa=g((SB,nh)=>{"use strict";var kI=ti(),RI=Fe(),LI=rh(),sh="__core-js_shared__",ah=nh.exports=RI[sh]||LI(sh,{});(ah.versions||(ah.versions=[])).push({version:"3.38.0",mode:kI?"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((vB,uh)=>{"use strict";var oh=pa();uh.exports=function(s,e){return oh[s]||(oh[s]=e||{})}});var Or=g((yB,lh)=>{"use strict";var MI=Yi(),$I=Object;lh.exports=function(s){return $I(MI(s))}});var ii=g((TB,ch)=>{"use strict";var BI=Ze(),DI=Or(),CI=BI({}.hasOwnProperty);ch.exports=Object.hasOwn||function(e,t){return CI(DI(e),t)}});var vl=g((IB,dh)=>{"use strict";var VI=Ze(),OI=0,_I=Math.random(),FI=VI(1 .toString);dh.exports=function(s){return"Symbol("+(s===void 0?"":s)+")_"+FI(++OI+_I,36)}});var at=g((xB,hh)=>{"use strict";var NI=Fe(),UI=Sl(),ph=ii(),qI=vl(),jI=pl(),HI=hl(),_r=NI.Symbol,yl=UI("wks"),GI=HI?_r.for||_r:_r&&_r.withoutSetter||qI;hh.exports=function(s){return ph(yl,s)||(yl[s]=jI&&ph(_r,s)?_r[s]:GI("Symbol."+s)),yl[s]}});var gh=g((EB,bh)=>{"use strict";var zI=Vt(),fh=Ot(),mh=fl(),QI=da(),WI=Zp(),YI=at(),KI=TypeError,XI=YI("toPrimitive");bh.exports=function(s,e){if(!fh(s)||mh(s))return s;var t=QI(s,XI),i;if(t){if(e===void 0&&(e="default"),i=zI(t,s,e),!fh(i)||mh(i))return i;throw new KI("Can't convert object to primitive value")}return e===void 0&&(e="number"),WI(s,e)}});var Tl=g((wB,Sh)=>{"use strict";var JI=gh(),ZI=fl();Sh.exports=function(s){var e=JI(s,"string");return ZI(e)?e:e+""}});var go=g((PB,yh)=>{"use strict";var ex=Fe(),vh=Ot(),Il=ex.document,tx=vh(Il)&&vh(Il.createElement);yh.exports=function(s){return tx?Il.createElement(s):{}}});var xl=g((AB,Th)=>{"use strict";var ix=Ct(),rx=st(),sx=go();Th.exports=!ix&&!rx(function(){return Object.defineProperty(sx("div"),"a",{get:function(){return 7}}).a!==7})});var Eh=g(xh=>{"use strict";var ax=Ct(),nx=Vt(),ox=nl(),ux=ua(),lx=mr(),cx=Tl(),dx=ii(),px=xl(),Ih=Object.getOwnPropertyDescriptor;xh.f=ax?Ih:function(e,t){if(e=lx(e),t=cx(t),px)try{return Ih(e,t)}catch(i){}if(dx(e,t))return ux(!nx(ox.f,e,t),e[t])}});var El=g((RB,wh)=>{"use strict";var hx=st(),fx=Oe(),mx=/#|\.prototype\./,ha=function(s,e){var t=gx[bx(s)];return t===vx?!0:t===Sx?!1:fx(e)?hx(e):!!e},bx=ha.normalize=function(s){return String(s).replace(mx,".").toLowerCase()},gx=ha.data={},Sx=ha.NATIVE="N",vx=ha.POLYFILL="P";wh.exports=ha});var Fr=g((LB,Ah)=>{"use strict";var Ph=sl(),yx=ci(),Tx=oa(),Ix=Ph(Ph.bind);Ah.exports=function(s,e){return yx(s),e===void 0?s:Tx?Ix(s,e):function(){return s.apply(e,arguments)}}});var wl=g((MB,kh)=>{"use strict";var xx=Ct(),Ex=st();kh.exports=xx&&Ex(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var di=g(($B,Rh)=>{"use strict";var wx=Ot(),Px=String,Ax=TypeError;Rh.exports=function(s){if(wx(s))return s;throw new Ax(Px(s)+" is not an object")}});var gr=g(Mh=>{"use strict";var kx=Ct(),Rx=xl(),Lx=wl(),So=di(),Lh=Tl(),Mx=TypeError,Pl=Object.defineProperty,$x=Object.getOwnPropertyDescriptor,Al="enumerable",kl="configurable",Rl="writable";Mh.f=kx?Lx?function(e,t,i){if(So(e),t=Lh(t),So(i),typeof e=="function"&&t==="prototype"&&"value"in i&&Rl in i&&!i[Rl]){var r=$x(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(So(e),t=Lh(t),So(i),Rx)try{return Pl(e,t,i)}catch(r){}if("get"in i||"set"in i)throw new Mx("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var Nr=g((DB,$h)=>{"use strict";var Bx=Ct(),Dx=gr(),Cx=ua();$h.exports=Bx?function(s,e,t){return Dx.f(s,e,Cx(1,t))}:function(s,e,t){return s[e]=t,s}});var He=g((CB,Dh)=>{"use strict";var fa=Fe(),Vx=il(),Ox=sl(),_x=Oe(),Fx=Eh().f,Nx=El(),Ur=Vr(),Ux=Fr(),qr=Nr(),Bh=ii();pa();var qx=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 Vx(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?fa:r?fa[t]:fa[t]&&fa[t].prototype,o=i?Ur:Ur[t]||qr(Ur,t,{})[t],u=o.prototype,l,d,c,h,p,f,b,S,v;for(h in e)l=Nx(i?h:t+(r?".":"#")+h,s.forced),d=!l&&n&&Bh(n,h),f=o[h],d&&(s.dontCallGetSet?(v=Fx(n,h),b=v&&v.value):b=n[h]),p=d&&b?b:e[h],!(!l&&!a&&typeof f==typeof p)&&(s.bind&&d?S=Ux(p,fa):s.wrap&&d?S=qx(p):a&&_x(p)?S=Ox(p):S=p,(s.sham||p&&p.sham||f&&f.sham)&&qr(S,"sham",!0),qr(o,h,S),a&&(c=t+"Prototype",Bh(Ur,c)||qr(Ur,c,{}),qr(Ur[c],h,p),s.real&&u&&(l||!u[h])&&qr(u,h,p)))}});var Vh=g((VB,Ch)=>{"use strict";var jx=Math.ceil,Hx=Math.floor;Ch.exports=Math.trunc||function(e){var t=+e;return(t>0?Hx:jx)(t)}});var ma=g((OB,Oh)=>{"use strict";var Gx=Vh();Oh.exports=function(s){var e=+s;return e!==e||e===0?0:Gx(e)}});var Fh=g((_B,_h)=>{"use strict";var zx=ma(),Qx=Math.max,Wx=Math.min;_h.exports=function(s,e){var t=zx(s);return t<0?Qx(t+e,0):Wx(t,e)}});var Ll=g((FB,Nh)=>{"use strict";var Yx=ma(),Kx=Math.min;Nh.exports=function(s){var e=Yx(s);return e>0?Kx(e,9007199254740991):0}});var jr=g((NB,Uh)=>{"use strict";var Xx=Ll();Uh.exports=function(s){return Xx(s.length)}});var Ml=g((UB,jh)=>{"use strict";var Jx=mr(),Zx=Fh(),eE=jr(),qh=function(s){return function(e,t,i){var r=Jx(e),a=eE(r);if(a===0)return!s&&-1;var n=Zx(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}};jh.exports={includes:qh(!0),indexOf:qh(!1)}});var ba=g((qB,Hh)=>{"use strict";Hh.exports=function(){}});var Gh=g(()=>{"use strict";var tE=He(),iE=Ml().includes,rE=st(),sE=ba(),aE=rE(function(){return!Array(1).includes()});tE({target:"Array",proto:!0,forced:aE},{includes:function(e){return iE(this,e,arguments.length>1?arguments[1]:void 0)}});sE("includes")});var Ki=g((GB,zh)=>{"use strict";var nE=Bi();zh.exports=nE});var Wh=g((zB,Qh)=>{"use strict";Gh();var oE=Ki();Qh.exports=oE("Array","includes")});var Kh=g((QB,Yh)=>{"use strict";var uE=Wh();Yh.exports=uE});var _t=g((WB,Xh)=>{"use strict";var lE=Kh();Xh.exports=lE});var yo=g((aD,ef)=>{"use strict";var dE=Sl(),pE=vl(),Zh=dE("keys");ef.exports=function(s){return Zh[s]||(Zh[s]=pE(s))}});var rf=g((nD,tf)=>{"use strict";var hE=st();tf.exports=!hE(function(){function s(){}return s.prototype.constructor=null,Object.getPrototypeOf(new s)!==s.prototype})});var To=g((oD,af)=>{"use strict";var fE=ii(),mE=Oe(),bE=Or(),gE=yo(),SE=rf(),sf=gE("IE_PROTO"),$l=Object,vE=$l.prototype;af.exports=SE?$l.getPrototypeOf:function(s){var e=bE(s);if(fE(e,sf))return e[sf];var t=e.constructor;return mE(t)&&e instanceof t?t.prototype:e instanceof $l?vE:null}});var Io=g((uD,nf)=>{"use strict";nf.exports={}});var lf=g((lD,uf)=>{"use strict";var yE=Ze(),Bl=ii(),TE=mr(),IE=Ml().indexOf,xE=Io(),of=yE([].push);uf.exports=function(s,e){var t=TE(s),i=0,r=[],a;for(a in t)!Bl(xE,a)&&Bl(t,a)&&of(r,a);for(;e.length>i;)Bl(t,a=e[i++])&&(~IE(r,a)||of(r,a));return r}});var Dl=g((cD,cf)=>{"use strict";cf.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var Cl=g((dD,df)=>{"use strict";var EE=lf(),wE=Dl();df.exports=Object.keys||function(e){return EE(e,wE)}});var Vl=g((pD,bf)=>{"use strict";var hf=Ct(),PE=st(),ff=Ze(),AE=To(),kE=Cl(),RE=mr(),LE=nl().f,mf=ff(LE),ME=ff([].push),$E=hf&&PE(function(){var s=Object.create(null);return s[2]=2,!mf(s,2)}),pf=function(s){return function(e){for(var t=RE(e),i=kE(t),r=$E&&AE(t)===null,a=i.length,n=0,o=[],u;a>n;)u=i[n++],(!hf||(r?u in t:mf(t,u)))&&ME(o,s?[u,t[u]]:t[u]);return o}};bf.exports={entries:pf(!0),values:pf(!1)}});var gf=g(()=>{"use strict";var BE=He(),DE=Vl().entries;BE({target:"Object",stat:!0},{entries:function(e){return DE(e)}})});var vf=g((mD,Sf)=>{"use strict";gf();var CE=Vr();Sf.exports=CE.Object.entries});var Tf=g((bD,yf)=>{"use strict";var VE=vf();yf.exports=VE});var Sr=g((gD,If)=>{"use strict";var OE=Tf();If.exports=OE});var vr=g((SD,xf)=>{"use strict";xf.exports={}});var Pf=g((vD,wf)=>{"use strict";var _E=Fe(),FE=Oe(),Ef=_E.WeakMap;wf.exports=FE(Ef)&&/native code/.test(String(Ef))});var Nl=g((yD,Rf)=>{"use strict";var NE=Pf(),kf=Fe(),UE=Ot(),qE=Nr(),Ol=ii(),_l=pa(),jE=yo(),HE=Io(),Af="Object already initialized",Fl=kf.TypeError,GE=kf.WeakMap,xo,ga,Eo,zE=function(s){return Eo(s)?ga(s):xo(s,{})},QE=function(s){return function(e){var t;if(!UE(e)||(t=ga(e)).type!==s)throw new Fl("Incompatible receiver, "+s+" required");return t}};NE||_l.state?(ri=_l.state||(_l.state=new GE),ri.get=ri.get,ri.has=ri.has,ri.set=ri.set,xo=function(s,e){if(ri.has(s))throw new Fl(Af);return e.facade=s,ri.set(s,e),e},ga=function(s){return ri.get(s)||{}},Eo=function(s){return ri.has(s)}):(yr=jE("state"),HE[yr]=!0,xo=function(s,e){if(Ol(s,yr))throw new Fl(Af);return e.facade=s,qE(s,yr,e),e},ga=function(s){return Ol(s,yr)?s[yr]:{}},Eo=function(s){return Ol(s,yr)});var ri,yr;Rf.exports={set:xo,get:ga,has:Eo,enforce:zE,getterFor:QE}});var jl=g((TD,Mf)=>{"use strict";var Ul=Ct(),WE=ii(),Lf=Function.prototype,YE=Ul&&Object.getOwnPropertyDescriptor,ql=WE(Lf,"name"),KE=ql&&function(){}.name==="something",XE=ql&&(!Ul||Ul&&YE(Lf,"name").configurable);Mf.exports={EXISTS:ql,PROPER:KE,CONFIGURABLE:XE}});var Bf=g($f=>{"use strict";var JE=Ct(),ZE=wl(),ew=gr(),tw=di(),iw=mr(),rw=Cl();$f.f=JE&&!ZE?Object.defineProperties:function(e,t){tw(e);for(var i=iw(t),r=rw(t),a=r.length,n=0,o;a>n;)ew.f(e,o=r[n++],i[o]);return e}});var Hl=g((xD,Df)=>{"use strict";var sw=Bi();Df.exports=sw("document","documentElement")});var Wl=g((ED,Uf)=>{"use strict";var aw=di(),nw=Bf(),Cf=Dl(),ow=Io(),uw=Hl(),lw=go(),cw=yo(),Vf=">",Of="<",zl="prototype",Ql="script",Ff=cw("IE_PROTO"),Gl=function(){},Nf=function(s){return Of+Ql+Vf+s+Of+"/"+Ql+Vf},_f=function(s){s.write(Nf("")),s.close();var e=s.parentWindow.Object;return s=null,e},dw=function(){var s=lw("iframe"),e="java"+Ql+":",t;return s.style.display="none",uw.appendChild(s),s.src=String(e),t=s.contentWindow.document,t.open(),t.write(Nf("document.F=Object")),t.close(),t.F},wo,Po=function(){try{wo=new ActiveXObject("htmlfile")}catch(e){}Po=typeof document!="undefined"?document.domain&&wo?_f(wo):dw():_f(wo);for(var s=Cf.length;s--;)delete Po[zl][Cf[s]];return Po()};ow[Ff]=!0;Uf.exports=Object.create||function(e,t){var i;return e!==null?(Gl[zl]=aw(e),i=new Gl,Gl[zl]=null,i[Ff]=e):i=Po(),t===void 0?i:nw.f(i,t)}});var Hr=g((wD,qf)=>{"use strict";var pw=Nr();qf.exports=function(s,e,t,i){return i&&i.enumerable?s[e]=t:pw(s,e,t),s}});var Jl=g((PD,Gf)=>{"use strict";var hw=st(),fw=Oe(),mw=Ot(),bw=Wl(),jf=To(),gw=Hr(),Sw=at(),vw=ti(),Xl=Sw("iterator"),Hf=!1,Di,Yl,Kl;[].keys&&(Kl=[].keys(),"next"in Kl?(Yl=jf(jf(Kl)),Yl!==Object.prototype&&(Di=Yl)):Hf=!0);var yw=!mw(Di)||hw(function(){var s={};return Di[Xl].call(s)!==s});yw?Di={}:vw&&(Di=bw(Di));fw(Di[Xl])||gw(Di,Xl,function(){return this});Gf.exports={IteratorPrototype:Di,BUGGY_SAFARI_ITERATORS:Hf}});var Ao=g((AD,Qf)=>{"use strict";var Tw=at(),Iw=Tw("toStringTag"),zf={};zf[Iw]="z";Qf.exports=String(zf)==="[object z]"});var Sa=g((kD,Wf)=>{"use strict";var xw=Ao(),Ew=Oe(),ko=fr(),ww=at(),Pw=ww("toStringTag"),Aw=Object,kw=ko(function(){return arguments}())==="Arguments",Rw=function(s,e){try{return s[e]}catch(t){}};Wf.exports=xw?ko:function(s){var e,t,i;return s===void 0?"Undefined":s===null?"Null":typeof(t=Rw(e=Aw(s),Pw))=="string"?t:kw?ko(e):(i=ko(e))==="Object"&&Ew(e.callee)?"Arguments":i}});var Kf=g((RD,Yf)=>{"use strict";var Lw=Ao(),Mw=Sa();Yf.exports=Lw?{}.toString:function(){return"[object "+Mw(this)+"]"}});var va=g((LD,Jf)=>{"use strict";var $w=Ao(),Bw=gr().f,Dw=Nr(),Cw=ii(),Vw=Kf(),Ow=at(),Xf=Ow("toStringTag");Jf.exports=function(s,e,t,i){var r=t?s:s&&s.prototype;r&&(Cw(r,Xf)||Bw(r,Xf,{configurable:!0,value:e}),i&&!$w&&Dw(r,"toString",Vw))}});var em=g((MD,Zf)=>{"use strict";var _w=Jl().IteratorPrototype,Fw=Wl(),Nw=ua(),Uw=va(),qw=vr(),jw=function(){return this};Zf.exports=function(s,e,t,i){var r=e+" Iterator";return s.prototype=Fw(_w,{next:Nw(+!i,t)}),Uw(s,r,!1,!0),qw[r]=jw,s}});var im=g(($D,tm)=>{"use strict";var Hw=Ze(),Gw=ci();tm.exports=function(s,e,t){try{return Hw(Gw(Object.getOwnPropertyDescriptor(s,e)[t]))}catch(i){}}});var sm=g((BD,rm)=>{"use strict";var zw=Ot();rm.exports=function(s){return zw(s)||s===null}});var nm=g((DD,am)=>{"use strict";var Qw=sm(),Ww=String,Yw=TypeError;am.exports=function(s){if(Qw(s))return s;throw new Yw("Can't set "+Ww(s)+" as a prototype")}});var Zl=g((CD,om)=>{"use strict";var Kw=im(),Xw=Ot(),Jw=Yi(),Zw=nm();om.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var s=!1,e={},t;try{t=Kw(Object.prototype,"__proto__","set"),t(e,[]),s=e instanceof Array}catch(i){}return function(r,a){return Jw(r),Zw(a),Xw(r)&&(s?t(r,a):r.__proto__=a),r}}():void 0)});var Sm=g((VD,gm)=>{"use strict";var eP=He(),tP=Vt(),Ro=ti(),mm=jl(),iP=Oe(),rP=em(),um=To(),lm=Zl(),sP=va(),aP=Nr(),ec=Hr(),nP=at(),cm=vr(),bm=Jl(),oP=mm.PROPER,uP=mm.CONFIGURABLE,dm=bm.IteratorPrototype,Lo=bm.BUGGY_SAFARI_ITERATORS,ya=nP("iterator"),pm="keys",Ta="values",hm="entries",fm=function(){return this};gm.exports=function(s,e,t,i,r,a,n){rP(t,e,i);var o=function(v){if(v===r&&h)return h;if(!Lo&&v&&v in d)return d[v];switch(v){case pm:return function(){return new t(this,v)};case Ta:return function(){return new t(this,v)};case hm:return function(){return new t(this,v)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,d=s.prototype,c=d[ya]||d["@@iterator"]||r&&d[r],h=!Lo&&c||o(r),p=e==="Array"&&d.entries||c,f,b,S;if(p&&(f=um(p.call(new s)),f!==Object.prototype&&f.next&&(!Ro&&um(f)!==dm&&(lm?lm(f,dm):iP(f[ya])||ec(f,ya,fm)),sP(f,u,!0,!0),Ro&&(cm[u]=fm))),oP&&r===Ta&&c&&c.name!==Ta&&(!Ro&&uP?aP(d,"name",Ta):(l=!0,h=function(){return tP(c,this)})),r)if(b={values:o(Ta),keys:a?h:o(pm),entries:o(hm)},n)for(S in b)(Lo||l||!(S in d))&&ec(d,S,b[S]);else eP({target:e,proto:!0,forced:Lo||l},b);return(!Ro||n)&&d[ya]!==h&&ec(d,ya,h,{name:r}),cm[e]=h,b}});var ym=g((OD,vm)=>{"use strict";vm.exports=function(s,e){return{value:s,done:e}}});var ic=g((_D,wm)=>{"use strict";var lP=mr(),tc=ba(),Tm=vr(),xm=Nl(),cP=gr().f,dP=Sm(),Mo=ym(),pP=ti(),hP=Ct(),Em="Array Iterator",fP=xm.set,mP=xm.getterFor(Em);wm.exports=dP(Array,"Array",function(s,e){fP(this,{type:Em,target:lP(s),index:0,kind:e})},function(){var s=mP(this),e=s.target,t=s.index++;if(!e||t>=e.length)return s.target=void 0,Mo(void 0,!0);switch(s.kind){case"keys":return Mo(t,!1);case"values":return Mo(e[t],!1)}return Mo([t,e[t]],!1)},"values");var Im=Tm.Arguments=Tm.Array;tc("keys");tc("values");tc("entries");if(!pP&&hP&&Im.name!=="values")try{cP(Im,"name",{value:"values"})}catch(s){}});var Am=g((FD,Pm)=>{"use strict";var bP=at(),gP=vr(),SP=bP("iterator"),vP=Array.prototype;Pm.exports=function(s){return s!==void 0&&(gP.Array===s||vP[SP]===s)}});var rc=g((ND,Rm)=>{"use strict";var yP=Sa(),km=da(),TP=Cr(),IP=vr(),xP=at(),EP=xP("iterator");Rm.exports=function(s){if(!TP(s))return km(s,EP)||km(s,"@@iterator")||IP[yP(s)]}});var Mm=g((UD,Lm)=>{"use strict";var wP=Vt(),PP=ci(),AP=di(),kP=ca(),RP=rc(),LP=TypeError;Lm.exports=function(s,e){var t=arguments.length<2?RP(s):e;if(PP(t))return AP(wP(t,s));throw new LP(kP(s)+" is not iterable")}});var Dm=g((qD,Bm)=>{"use strict";var MP=Vt(),$m=di(),$P=da();Bm.exports=function(s,e,t){var i,r;$m(s);try{if(i=$P(s,"return"),!i){if(e==="throw")throw t;return t}i=MP(i,s)}catch(a){r=!0,i=a}if(e==="throw")throw t;if(r)throw i;return $m(i),t}});var Bo=g((jD,_m)=>{"use strict";var BP=Fr(),DP=Vt(),CP=di(),VP=ca(),OP=Am(),_P=jr(),Cm=la(),FP=Mm(),NP=rc(),Vm=Dm(),UP=TypeError,$o=function(s,e){this.stopped=s,this.result=e},Om=$o.prototype;_m.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=BP(e,i),l,d,c,h,p,f,b,S=function(y){return l&&Vm(l,"normal",y),new $o(!0,y)},v=function(y){return r?(CP(y),o?u(y[0],y[1],S):u(y[0],y[1])):o?u(y,S):u(y)};if(a)l=s.iterator;else if(n)l=s;else{if(d=NP(s),!d)throw new UP(VP(s)+" is not iterable");if(OP(d)){for(c=0,h=_P(s);h>c;c++)if(p=v(s[c]),p&&Cm(Om,p))return p;return new $o(!1)}l=FP(s,d)}for(f=a?s.next:l.next;!(b=DP(f,l)).done;){try{p=v(b.value)}catch(y){Vm(l,"throw",y)}if(typeof p=="object"&&p&&Cm(Om,p))return p}return new $o(!1)}});var Nm=g((HD,Fm)=>{"use strict";var qP=Ct(),jP=gr(),HP=ua();Fm.exports=function(s,e,t){qP?jP.f(s,e,HP(0,t)):s[e]=t}});var Um=g(()=>{"use strict";var GP=He(),zP=Bo(),QP=Nm();GP({target:"Object",stat:!0},{fromEntries:function(e){var t={};return zP(e,function(i,r){QP(t,i,r)},{AS_ENTRIES:!0}),t}})});var jm=g((QD,qm)=>{"use strict";ic();Um();var WP=Vr();qm.exports=WP.Object.fromEntries});var Gm=g((WD,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 Qm=g(()=>{"use strict";ic();var YP=Gm(),KP=Fe(),XP=va(),zm=vr();for(Do in YP)XP(KP[Do],Do),zm[Do]=zm.Array;var Do});var Ym=g((XD,Wm)=>{"use strict";var JP=jm();Qm();Wm.exports=JP});var sc=g((JD,Km)=>{"use strict";var ZP=Ym();Km.exports=ZP});var Xm=g(()=>{"use strict"});var ac=g((t0,Jm)=>{"use strict";var Ia=Fe(),eA=br(),tA=fr(),Co=function(s){return eA.slice(0,s.length)===s};Jm.exports=function(){return Co("Bun/")?"BUN":Co("Cloudflare-Workers")?"CLOUDFLARE":Co("Deno/")?"DENO":Co("Node.js/")?"NODE":Ia.Bun&&typeof Bun.version=="string"?"BUN":Ia.Deno&&typeof Deno.version=="object"?"DENO":tA(Ia.process)==="process"?"NODE":Ia.window&&Ia.document?"BROWSER":"REST"}()});var Vo=g((i0,Zm)=>{"use strict";var iA=ac();Zm.exports=iA==="NODE"});var tb=g((r0,eb)=>{"use strict";var rA=gr();eb.exports=function(s,e,t){return rA.f(s,e,t)}});var sb=g((s0,rb)=>{"use strict";var sA=Bi(),aA=tb(),nA=at(),oA=Ct(),ib=nA("species");rb.exports=function(s){var e=sA(s);oA&&e&&!e[ib]&&aA(e,ib,{configurable:!0,get:function(){return this}})}});var nb=g((a0,ab)=>{"use strict";var uA=la(),lA=TypeError;ab.exports=function(s,e){if(uA(e,s))return s;throw new lA("Incorrect invocation")}});var oc=g((n0,ob)=>{"use strict";var cA=Ze(),dA=Oe(),nc=pa(),pA=cA(Function.toString);dA(nc.inspectSource)||(nc.inspectSource=function(s){return pA(s)});ob.exports=nc.inspectSource});var lc=g((o0,pb)=>{"use strict";var hA=Ze(),fA=st(),ub=Oe(),mA=Sa(),bA=Bi(),gA=oc(),lb=function(){},cb=bA("Reflect","construct"),uc=/^\s*(?:class|function)\b/,SA=hA(uc.exec),vA=!uc.test(lb),xa=function(e){if(!ub(e))return!1;try{return cb(lb,[],e),!0}catch(t){return!1}},db=function(e){if(!ub(e))return!1;switch(mA(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return vA||!!SA(uc,gA(e))}catch(t){return!0}};db.sham=!0;pb.exports=!cb||fA(function(){var s;return xa(xa.call)||!xa(Object)||!xa(function(){s=!0})||s})?db:xa});var fb=g((u0,hb)=>{"use strict";var yA=lc(),TA=ca(),IA=TypeError;hb.exports=function(s){if(yA(s))return s;throw new IA(TA(s)+" is not a constructor")}});var cc=g((l0,bb)=>{"use strict";var mb=di(),xA=fb(),EA=Cr(),wA=at(),PA=wA("species");bb.exports=function(s,e){var t=mb(s).constructor,i;return t===void 0||EA(i=mb(t)[PA])?e:xA(i)}});var Sb=g((c0,gb)=>{"use strict";var AA=Ze();gb.exports=AA([].slice)});var yb=g((d0,vb)=>{"use strict";var kA=TypeError;vb.exports=function(s,e){if(s<e)throw new kA("Not enough arguments");return s}});var dc=g((p0,Tb)=>{"use strict";var RA=br();Tb.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(RA)});var yc=g((h0,Lb)=>{"use strict";var Ft=Fe(),LA=il(),MA=Fr(),Ib=Oe(),$A=ii(),Rb=st(),xb=Hl(),BA=Sb(),Eb=go(),DA=yb(),CA=dc(),VA=Vo(),gc=Ft.setImmediate,Sc=Ft.clearImmediate,OA=Ft.process,pc=Ft.Dispatch,_A=Ft.Function,wb=Ft.MessageChannel,FA=Ft.String,hc=0,Ea={},Pb="onreadystatechange",wa,Tr,fc,mc;Rb(function(){wa=Ft.location});var vc=function(s){if($A(Ea,s)){var e=Ea[s];delete Ea[s],e()}},bc=function(s){return function(){vc(s)}},Ab=function(s){vc(s.data)},kb=function(s){Ft.postMessage(FA(s),wa.protocol+"//"+wa.host)};(!gc||!Sc)&&(gc=function(e){DA(arguments.length,1);var t=Ib(e)?e:_A(e),i=BA(arguments,1);return Ea[++hc]=function(){LA(t,void 0,i)},Tr(hc),hc},Sc=function(e){delete Ea[e]},VA?Tr=function(s){OA.nextTick(bc(s))}:pc&&pc.now?Tr=function(s){pc.now(bc(s))}:wb&&!CA?(fc=new wb,mc=fc.port2,fc.port1.onmessage=Ab,Tr=MA(mc.postMessage,mc)):Ft.addEventListener&&Ib(Ft.postMessage)&&!Ft.importScripts&&wa&&wa.protocol!=="file:"&&!Rb(kb)?(Tr=kb,Ft.addEventListener("message",Ab,!1)):Pb in Eb("script")?Tr=function(s){xb.appendChild(Eb("script"))[Pb]=function(){xb.removeChild(this),vc(s)}}:Tr=function(s){setTimeout(bc(s),0)});Lb.exports={set:gc,clear:Sc}});var Bb=g((f0,$b)=>{"use strict";var Mb=Fe(),NA=Ct(),UA=Object.getOwnPropertyDescriptor;$b.exports=function(s){if(!NA)return Mb[s];var e=UA(Mb,s);return e&&e.value}});var Tc=g((m0,Cb)=>{"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}}};Cb.exports=Db});var Ob=g((b0,Vb)=>{"use strict";var qA=br();Vb.exports=/ipad|iphone|ipod/i.test(qA)&&typeof Pebble!="undefined"});var Fb=g((g0,_b)=>{"use strict";var jA=br();_b.exports=/web0s(?!.*chrome)/i.test(jA)});var zb=g((S0,Gb)=>{"use strict";var zr=Fe(),HA=Bb(),Nb=Fr(),Ic=yc().set,GA=Tc(),zA=dc(),QA=Ob(),WA=Fb(),xc=Vo(),Ub=zr.MutationObserver||zr.WebKitMutationObserver,qb=zr.document,jb=zr.process,Oo=zr.Promise,Pc=HA("queueMicrotask"),Gr,Ec,wc,_o,Hb;Pc||(Pa=new GA,Aa=function(){var s,e;for(xc&&(s=jb.domain)&&s.exit();e=Pa.get();)try{e()}catch(t){throw Pa.head&&Gr(),t}s&&s.enter()},!zA&&!xc&&!WA&&Ub&&qb?(Ec=!0,wc=qb.createTextNode(""),new Ub(Aa).observe(wc,{characterData:!0}),Gr=function(){wc.data=Ec=!Ec}):!QA&&Oo&&Oo.resolve?(_o=Oo.resolve(void 0),_o.constructor=Oo,Hb=Nb(_o.then,_o),Gr=function(){Hb(Aa)}):xc?Gr=function(){jb.nextTick(Aa)}:(Ic=Nb(Ic,zr),Gr=function(){Ic(Aa)}),Pc=function(s){Pa.head||Gr(),Pa.add(s)});var Pa,Aa;Gb.exports=Pc});var Wb=g((v0,Qb)=>{"use strict";Qb.exports=function(s,e){try{arguments.length===1?console.error(s):console.error(s,e)}catch(t){}}});var Fo=g((y0,Yb)=>{"use strict";Yb.exports=function(s){try{return{error:!1,value:s()}}catch(e){return{error:!0,value:e}}}});var Ir=g((T0,Kb)=>{"use strict";var YA=Fe();Kb.exports=YA.Promise});var Qr=g((I0,eg)=>{"use strict";var KA=Fe(),ka=Ir(),XA=Oe(),JA=El(),ZA=oc(),ek=at(),Xb=ac(),tk=ti(),Ac=dl(),Jb=ka&&ka.prototype,ik=ek("species"),kc=!1,Zb=XA(KA.PromiseRejectionEvent),rk=JA("Promise",function(){var s=ZA(ka),e=s!==String(ka);if(!e&&Ac===66||tk&&!(Jb.catch&&Jb.finally))return!0;if(!Ac||Ac<51||!/native code/.test(s)){var t=new ka(function(a){a(1)}),i=function(a){a(function(){},function(){})},r=t.constructor={};if(r[ik]=i,kc=t.then(function(){})instanceof i,!kc)return!0}return!e&&(Xb==="BROWSER"||Xb==="DENO")&&!Zb});eg.exports={CONSTRUCTOR:rk,REJECTION_EVENT:Zb,SUBCLASSING:kc}});var Wr=g((x0,ig)=>{"use strict";var tg=ci(),sk=TypeError,ak=function(s){var e,t;this.promise=new s(function(i,r){if(e!==void 0||t!==void 0)throw new sk("Bad Promise constructor");e=i,t=r}),this.resolve=tg(e),this.reject=tg(t)};ig.exports.f=function(s){return new ak(s)}});var Tg=g(()=>{"use strict";var nk=He(),ok=ti(),jo=Vo(),Xi=Fe(),Jr=Vt(),rg=Hr(),sg=Zl(),uk=va(),lk=sb(),ck=ci(),qo=Oe(),dk=Ot(),pk=nb(),hk=cc(),lg=yc().set,Bc=zb(),fk=Wb(),mk=Fo(),bk=Tc(),cg=Nl(),Ho=Ir(),Dc=Qr(),dg=Wr(),Go="Promise",pg=Dc.CONSTRUCTOR,gk=Dc.REJECTION_EVENT,Sk=Dc.SUBCLASSING,Rc=cg.getterFor(Go),vk=cg.set,Yr=Ho&&Ho.prototype,xr=Ho,No=Yr,hg=Xi.TypeError,Lc=Xi.document,Cc=Xi.process,Mc=dg.f,yk=Mc,Tk=!!(Lc&&Lc.createEvent&&Xi.dispatchEvent),fg="unhandledrejection",Ik="rejectionhandled",ag=0,mg=1,xk=2,Vc=1,bg=2,Uo,ng,Ek,og,gg=function(s){var e;return dk(s)&&qo(e=s.then)?e:!1},Sg=function(s,e){var t=e.value,i=e.state===mg,r=i?s.ok:s.fail,a=s.resolve,n=s.reject,o=s.domain,u,l,d;try{r?(i||(e.rejection===bg&&Pk(e),e.rejection=Vc),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),d=!0)),u===s.promise?n(new hg("Promise-chain cycle")):(l=gg(u))?Jr(l,u,a,n):a(u)):n(t)}catch(c){o&&!d&&o.exit(),n(c)}},vg=function(s,e){s.notified||(s.notified=!0,Bc(function(){for(var t=s.reactions,i;i=t.get();)Sg(i,s);s.notified=!1,e&&!s.rejection&&wk(s)}))},yg=function(s,e,t){var i,r;Tk?(i=Lc.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(s,!1,!0),Xi.dispatchEvent(i)):i={promise:e,reason:t},!gk&&(r=Xi["on"+s])?r(i):s===fg&&fk("Unhandled promise rejection",t)},wk=function(s){Jr(lg,Xi,function(){var e=s.facade,t=s.value,i=ug(s),r;if(i&&(r=mk(function(){jo?Cc.emit("unhandledRejection",t,e):yg(fg,e,t)}),s.rejection=jo||ug(s)?bg:Vc,r.error))throw r.value})},ug=function(s){return s.rejection!==Vc&&!s.parent},Pk=function(s){Jr(lg,Xi,function(){var e=s.facade;jo?Cc.emit("rejectionHandled",e):yg(Ik,e,s.value)})},Kr=function(s,e,t){return function(i){s(e,i,t)}},Xr=function(s,e,t){s.done||(s.done=!0,t&&(s=t),s.value=e,s.state=xk,vg(s,!0))},$c=function(s,e,t){if(!s.done){s.done=!0,t&&(s=t);try{if(s.facade===e)throw new hg("Promise can't be resolved itself");var i=gg(e);i?Bc(function(){var r={done:!1};try{Jr(i,e,Kr($c,r,s),Kr(Xr,r,s))}catch(a){Xr(r,a,s)}}):(s.value=e,s.state=mg,vg(s,!1))}catch(r){Xr({done:!1},r,s)}}};if(pg&&(xr=function(e){pk(this,No),ck(e),Jr(Uo,this);var t=Rc(this);try{e(Kr($c,t),Kr(Xr,t))}catch(i){Xr(t,i)}},No=xr.prototype,Uo=function(e){vk(this,{type:Go,done:!1,notified:!1,parent:!1,reactions:new bk,rejection:!1,state:ag,value:void 0})},Uo.prototype=rg(No,"then",function(e,t){var i=Rc(this),r=Mc(hk(this,xr));return i.parent=!0,r.ok=qo(e)?e:!0,r.fail=qo(t)&&t,r.domain=jo?Cc.domain:void 0,i.state===ag?i.reactions.add(r):Bc(function(){Sg(r,i)}),r.promise}),ng=function(){var s=new Uo,e=Rc(s);this.promise=s,this.resolve=Kr($c,e),this.reject=Kr(Xr,e)},dg.f=Mc=function(s){return s===xr||s===Ek?new ng(s):yk(s)},!ok&&qo(Ho)&&Yr!==Object.prototype)){og=Yr.then,Sk||rg(Yr,"then",function(e,t){var i=this;return new xr(function(r,a){Jr(og,i,r,a)}).then(e,t)},{unsafe:!0});try{delete Yr.constructor}catch(s){}sg&&sg(Yr,No)}nk({global:!0,constructor:!0,wrap:!0,forced:pg},{Promise:xr});uk(xr,Go,!1,!0);lk(Go)});var Pg=g((P0,wg)=>{"use strict";var Ak=at(),xg=Ak("iterator"),Eg=!1;try{Ig=0,Oc={next:function(){return{done:!!Ig++}},return:function(){Eg=!0}},Oc[xg]=function(){return this},Array.from(Oc,function(){throw 2})}catch(s){}var Ig,Oc;wg.exports=function(s,e){try{if(!e&&!Eg)return!1}catch(r){return!1}var t=!1;try{var i={};i[xg]=function(){return{next:function(){return{done:t=!0}}}},s(i)}catch(r){}return t}});var _c=g((A0,Ag)=>{"use strict";var kk=Ir(),Rk=Pg(),Lk=Qr().CONSTRUCTOR;Ag.exports=Lk||!Rk(function(s){kk.all(s).then(void 0,function(){})})});var kg=g(()=>{"use strict";var Mk=He(),$k=Vt(),Bk=ci(),Dk=Wr(),Ck=Fo(),Vk=Bo(),Ok=_c();Mk({target:"Promise",stat:!0,forced:Ok},{all:function(e){var t=this,i=Dk.f(t),r=i.resolve,a=i.reject,n=Ck(function(){var o=Bk(t.resolve),u=[],l=0,d=1;Vk(e,function(c){var h=l++,p=!1;d++,$k(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 Lg=g(()=>{"use strict";var _k=He(),Fk=ti(),Nk=Qr().CONSTRUCTOR,Nc=Ir(),Uk=Bi(),qk=Oe(),jk=Hr(),Rg=Nc&&Nc.prototype;_k({target:"Promise",proto:!0,forced:Nk,real:!0},{catch:function(s){return this.then(void 0,s)}});!Fk&&qk(Nc)&&(Fc=Uk("Promise").prototype.catch,Rg.catch!==Fc&&jk(Rg,"catch",Fc,{unsafe:!0}));var Fc});var Mg=g(()=>{"use strict";var Hk=He(),Gk=Vt(),zk=ci(),Qk=Wr(),Wk=Fo(),Yk=Bo(),Kk=_c();Hk({target:"Promise",stat:!0,forced:Kk},{race:function(e){var t=this,i=Qk.f(t),r=i.reject,a=Wk(function(){var n=zk(t.resolve);Yk(e,function(o){Gk(n,t,o).then(i.resolve,r)})});return a.error&&r(a.value),i.promise}})});var $g=g(()=>{"use strict";var Xk=He(),Jk=Wr(),Zk=Qr().CONSTRUCTOR;Xk({target:"Promise",stat:!0,forced:Zk},{reject:function(e){var t=Jk.f(this),i=t.reject;return i(e),t.promise}})});var Uc=g((V0,Bg)=>{"use strict";var eR=di(),tR=Ot(),iR=Wr();Bg.exports=function(s,e){if(eR(s),tR(e)&&e.constructor===s)return e;var t=iR.f(s),i=t.resolve;return i(e),t.promise}});var Vg=g(()=>{"use strict";var rR=He(),sR=Bi(),Dg=ti(),aR=Ir(),Cg=Qr().CONSTRUCTOR,nR=Uc(),oR=sR("Promise"),uR=Dg&&!Cg;rR({target:"Promise",stat:!0,forced:Dg||Cg},{resolve:function(e){return nR(uR&&this===oR?aR:this,e)}})});var Og=g(()=>{"use strict";Tg();kg();Lg();Mg();$g();Vg()});var Ug=g(()=>{"use strict";var lR=He(),cR=ti(),zo=Ir(),dR=st(),Fg=Bi(),Ng=Oe(),pR=cc(),_g=Uc(),hR=Hr(),jc=zo&&zo.prototype,fR=!!zo&&dR(function(){jc.finally.call({then:function(){}},function(){})});lR({target:"Promise",proto:!0,real:!0,forced:fR},{finally:function(s){var e=pR(this,Fg("Promise")),t=Ng(s);return this.then(t?function(i){return _g(e,s()).then(function(){return i})}:s,t?function(i){return _g(e,s()).then(function(){throw i})}:s)}});!cR&&Ng(zo)&&(qc=Fg("Promise").prototype.finally,jc.finally!==qc&&hR(jc,"finally",qc,{unsafe:!0}));var qc});var jg=g((j0,qg)=>{"use strict";Xm();Og();Ug();var mR=Ki();qg.exports=mR("Promise","finally")});var Gg=g((H0,Hg)=>{"use strict";var bR=jg();Hg.exports=bR});var Ra=g((G0,zg)=>{"use strict";var gR=Gg();zg.exports=gR});var Zg=g(()=>{"use strict";var IR=He(),xR=Vl().values;IR({target:"Object",stat:!0},{values:function(e){return xR(e)}})});var tS=g((IC,eS)=>{"use strict";Zg();var ER=Vr();eS.exports=ER.Object.values});var rS=g((xC,iS)=>{"use strict";var wR=tS();iS.exports=wR});var Er=g((EC,sS)=>{"use strict";var PR=rS();sS.exports=PR});var mS=g(()=>{"use strict";var VR=He(),OR=Or(),_R=jr(),FR=ma(),NR=ba();VR({target:"Array",proto:!0},{at:function(e){var t=OR(this),i=_R(t),r=FR(e),a=r>=0?r:i+r;return a<0||a>=i?void 0:t[a]}});NR("at")});var gS=g((MV,bS)=>{"use strict";mS();var UR=Ki();bS.exports=UR("Array","at")});var vS=g(($V,SS)=>{"use strict";var qR=gS();SS.exports=qR});var si=g((BV,yS)=>{"use strict";var jR=vS();yS.exports=jR});var ud=g((c_,qS)=>{"use strict";var ZR=fr();qS.exports=Array.isArray||function(e){return ZR(e)==="Array"}});var HS=g((d_,jS)=>{"use strict";var eL=TypeError,tL=9007199254740991;jS.exports=function(s){if(s>tL)throw eL("Maximum allowed index exceeded");return s}});var QS=g((p_,zS)=>{"use strict";var iL=ud(),rL=jr(),sL=HS(),aL=Fr(),GS=function(s,e,t,i,r,a,n,o){for(var u=r,l=0,d=n?aL(n,o):!1,c,h;l<i;)l in t&&(c=d?d(t[l],l,e):t[l],a>0&&iL(c)?(h=rL(c),u=GS(s,e,c,h,u,a-1)-1):(sL(u+1),s[u]=c),u++),l++;return u};zS.exports=GS});var XS=g((h_,KS)=>{"use strict";var WS=ud(),nL=lc(),oL=Ot(),uL=at(),lL=uL("species"),YS=Array;KS.exports=function(s){var e;return WS(s)&&(e=s.constructor,nL(e)&&(e===YS||WS(e.prototype))?e=void 0:oL(e)&&(e=e[lL],e===null&&(e=void 0))),e===void 0?YS:e}});var ZS=g((f_,JS)=>{"use strict";var cL=XS();JS.exports=function(s,e){return new(cL(s))(e===0?0:e)}});var ev=g(()=>{"use strict";var dL=He(),pL=QS(),hL=ci(),fL=Or(),mL=jr(),bL=ZS();dL({target:"Array",proto:!0},{flatMap:function(e){var t=fL(this),i=mL(t),r;return hL(e),r=bL(t,0),r.length=pL(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var tv=g(()=>{"use strict";var gL=ba();gL("flatMap")});var rv=g((v_,iv)=>{"use strict";ev();tv();var SL=Ki();iv.exports=SL("Array","flatMap")});var av=g((y_,sv)=>{"use strict";var vL=rv();sv.exports=vL});var Ua=g((T_,nv)=>{"use strict";var yL=av();nv.exports=yL});var qa=g((I_,ov)=>{"use strict";var TL=Sa(),IL=String;ov.exports=function(s){if(TL(s)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return IL(s)}});var ld=g((x_,uv)=>{"use strict";uv.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 dv=g((E_,cv)=>{"use strict";var xL=Ze(),EL=Yi(),wL=qa(),dd=ld(),lv=xL("".replace),PL=RegExp("^["+dd+"]+"),AL=RegExp("(^|[^"+dd+"])["+dd+"]+$"),cd=function(s){return function(e){var t=wL(EL(e));return s&1&&(t=lv(t,PL,"")),s&2&&(t=lv(t,AL,"$1")),t}};cv.exports={start:cd(1),end:cd(2),trim:cd(3)}});var mv=g((w_,fv)=>{"use strict";var kL=jl().PROPER,RL=st(),pv=ld(),hv="\u200B\x85\u180E";fv.exports=function(s){return RL(function(){return!!pv[s]()||hv[s]()!==hv||kL&&pv[s].name!==s})}});var pd=g((P_,bv)=>{"use strict";var LL=dv().start,ML=mv();bv.exports=ML("trimStart")?function(){return LL(this)}:"".trimStart});var Sv=g(()=>{"use strict";var $L=He(),gv=pd();$L({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==gv},{trimLeft:gv})});var yv=g(()=>{"use strict";Sv();var BL=He(),vv=pd();BL({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==vv},{trimStart:vv})});var Iv=g((M_,Tv)=>{"use strict";yv();var DL=Ki();Tv.exports=DL("String","trimLeft")});var Ev=g(($_,xv)=>{"use strict";var CL=Iv();xv.exports=CL});var Pv=g((B_,wv)=>{"use strict";var VL=Ev();wv.exports=VL});var Fv=g(()=>{"use strict"});var Nv=g(()=>{"use strict"});var qv=g((pU,Uv)=>{"use strict";var iM=Ot(),rM=fr(),sM=at(),aM=sM("match");Uv.exports=function(s){var e;return iM(s)&&((e=s[aM])!==void 0?!!e:rM(s)==="RegExp")}});var Hv=g((hU,jv)=>{"use strict";var nM=di();jv.exports=function(){var s=nM(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((fU,zv)=>{"use strict";var oM=Vt(),uM=ii(),lM=la(),cM=Hv(),Gv=RegExp.prototype;zv.exports=function(s){var e=s.flags;return e===void 0&&!("flags"in Gv)&&!uM(s,"flags")&&lM(Gv,s)?oM(cM,s):e}});var Yv=g((mU,Wv)=>{"use strict";var gd=Ze(),dM=Or(),pM=Math.floor,md=gd("".charAt),hM=gd("".replace),bd=gd("".slice),fM=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,mM=/\$([$&'`]|\d{1,2})/g;Wv.exports=function(s,e,t,i,r,a){var n=t+s.length,o=i.length,u=mM;return r!==void 0&&(r=dM(r),u=fM),hM(a,u,function(l,d){var c;switch(md(d,0)){case"$":return"$";case"&":return s;case"`":return bd(e,0,t);case"'":return bd(e,n);case"<":c=r[bd(d,1,-1)];break;default:var h=+d;if(h===0)return l;if(h>o){var p=pM(h/10);return p===0?l:p<=o?i[p-1]===void 0?md(d,1):i[p-1]+md(d,1):l}c=i[h-1]}return c===void 0?"":c})}});var Jv=g(()=>{"use strict";var bM=He(),gM=Vt(),vd=Ze(),Kv=Yi(),SM=Oe(),vM=Cr(),yM=qv(),cs=qa(),TM=da(),IM=Qv(),xM=Yv(),EM=at(),wM=ti(),PM=EM("replace"),AM=TypeError,Sd=vd("".indexOf),kM=vd("".replace),Xv=vd("".slice),RM=Math.max;bM({target:"String",proto:!0},{replaceAll:function(e,t){var i=Kv(this),r,a,n,o,u,l,d,c,h,p,f=0,b="";if(!vM(e)){if(r=yM(e),r&&(a=cs(Kv(IM(e))),!~Sd(a,"g")))throw new AM("`.replaceAll` does not allow non-global regexes");if(n=TM(e,PM),n)return gM(n,e,i,t);if(wM&&r)return kM(cs(i),e,t)}for(o=cs(i),u=cs(e),l=SM(t),l||(t=cs(t)),d=u.length,c=RM(1,d),h=Sd(o,u);h!==-1;)p=l?cs(t(u,h,o)):xM(u,o,h,[],void 0,t),b+=Xv(o,f,h)+p,f=h+d,h=h+c>o.length?-1:Sd(o,u,h+c);return f<o.length&&(b+=Xv(o,f)),b}})});var ey=g((SU,Zv)=>{"use strict";Fv();Nv();Jv();var LM=Ki();Zv.exports=LM("String","replaceAll")});var iy=g((vU,ty)=>{"use strict";var MM=ey();ty.exports=MM});var yd=g((yU,ry)=>{"use strict";var $M=iy();ry.exports=$M});var ay=g((TU,sy)=>{"use strict";var BM=ma(),DM=qa(),CM=Yi(),VM=RangeError;sy.exports=function(e){var t=DM(CM(this)),i="",r=BM(e);if(r<0||r===1/0)throw new VM("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var cy=g((IU,ly)=>{"use strict";var uy=Ze(),OM=Ll(),ny=qa(),_M=ay(),FM=Yi(),NM=uy(_M),UM=uy("".slice),qM=Math.ceil,oy=function(s){return function(e,t,i){var r=ny(FM(e)),a=OM(t),n=r.length,o=i===void 0?" ":ny(i),u,l;return a<=n||o===""?r:(u=a-n,l=NM(o,qM(u/o.length)),l.length>u&&(l=UM(l,0,u)),s?r+l:l+r)}};ly.exports={start:oy(!1),end:oy(!0)}});var py=g((xU,dy)=>{"use strict";var jM=br();dy.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(jM)});var hy=g(()=>{"use strict";var HM=He(),GM=cy().start,zM=py();HM({target:"String",proto:!0,forced:zM},{padStart:function(e){return GM(this,e,arguments.length>1?arguments[1]:void 0)}})});var my=g((PU,fy)=>{"use strict";hy();var QM=Ki();fy.exports=QM("String","padStart")});var gy=g((AU,by)=>{"use strict";var WM=my();by.exports=WM});var Td=g((kU,Sy)=>{"use strict";var YM=gy();Sy.exports=YM});var _$={};UT(_$,{ChromecastState:()=>sa,HttpConnectionType:()=>ho,Observable:()=>Si.Observable,PlaybackState:()=>vt,Player:()=>co,PredefinedQualityLimits:()=>aa,SDK_VERSION:()=>O$,Subject:()=>Si.Subject,Subscription:()=>Si.Subscription,Surface:()=>fo,VERSION:()=>el,ValueSubject:()=>Si.ValueSubject,VideoFormat:()=>li,VideoQuality:()=>Si.VideoQuality,clientChecker:()=>te,isMobile:()=>Zr});module.exports=qT(_$);var el="2.0.131-dev.f8833e36.0";var vt=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(vt||{}),li=(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))(li||{});var sa=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(sa||{}),ho=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(ho||{});var fo=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(fo||{}),aa=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(aa||{});var BT=K(_t(),1);var le=require("@vkontakte/videoplayer-shared/es2015");var Jh=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 vo=class{constructor(e){this.connection$=new le.ValueSubject(void 0);this.castState$=new le.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new le.Subject;this.realCastState$=new le.ValueSubject("NOT_AVAILABLE");this.subscription=new le.Subscription;this.isDestroyed=!1;var a;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,le.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||Jh("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:le.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,le.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,le.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,le.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,le.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,le.assertNever)(r.sessionState)}})).add((0,le.merge)((0,le.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,le.tap)(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),(0,le.map)(r=>r.castState)),(0,le.observableFrom)([i.getCastState()])).pipe((0,le.filterChanged)(),(0,le.map)(cE),(0,le.tap)(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{var o,u;let a=r==="CONNECTED",n=(0,le.isNonNullable)(this.connection$.getValue());if(a&&!n){let l=i.getCurrentSession();(0,le.assertNonNullable)(l);let d=l.getCastDevice(),c=(u=(o=l.getMediaSession())==null?void 0:o.media)==null?void 0:u.contentId;((0,le.isNullable)(c)||c===this.contentId)&&(this.log({message:"connection created"}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:l,castDevice:d}))}else!a&&n&&(this.log({message:"connection destroyed"}),this.connection$.next(void 0));this.castState$.next(r==="CONNECTED"?(0,le.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:le.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:a})}}},cE=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,le.assertNever)(s)}};var Zd=K(_t(),1),yT=K(Sr(),1),TT=K(sc(),1);var Kg=K(Ra(),1);var Hc=require("@vkontakte/videoplayer-shared/es2015");var _e=(s,e=0,t=0)=>{switch(t){case 0:return s.replace("_offset_p",e===0?"":"_"+e.toFixed(0));case 1:{if(e===0)return s;let i=new URL(s);return i.searchParams.append("playback_shift",e.toFixed(0)),i.toString()}case 2:{let i=new URL(s);return!i.searchParams.get("offset_p")&&e===0?s:(i.searchParams.set("offset_p",e.toFixed(0)),i.toString())}default:(0,Hc.assertNever)(t)}return s},Ji=(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,Hc.assertNever)(e)}};var O=(s,e,t=!1)=>{let i=s.getTransition();(t||!i||i.to===e)&&s.setState(e)};var pi=require("@vkontakte/videoplayer-shared/es2015"),re=class{constructor(e){this.transitionStarted$=new pi.Subject;this.transitionEnded$=new pi.Subject;this.transitionUpdated$=new pi.Subject;this.forceChanged$=new pi.Subject;this.stateChangeStarted$=(0,pi.merge)(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=(0,pi.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,pi.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 Qg=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,Qg.assertNever)(s)}};var X=require("@vkontakte/videoplayer-shared/es2015");var SR=5,vR=5,yR=500,Yg=7e3,La=class{constructor(e){this.subscription=new X.Subscription;this.loadMediaTimeoutSubscription=new X.Subscription;this.videoState=new re("stopped");this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; desiredPlaybackStateTransition: ${this.params.desiredState.playbackState.getTransition()}; seekState: ${JSON.stringify(a)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.stop());return}if(!t){if((r==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,X.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,X.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,X.assertNever)(e)}break}default:(0,X.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(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.log({message:"[destroy]"}),this.subscription.unsubscribe()}subscribe(){this.subscription.add(this.loadMediaTimeoutSubscription);let e=new X.Subscription;this.subscription.add(e),this.subscription.add((0,X.merge)(this.videoState.stateChangeStarted$.pipe((0,X.map)(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe((0,X.map)(r=>`stateChangeEnded$ ${JSON.stringify(r)}`))).subscribe(r=>this.log({message:`[videoState] ${r}`})));let t=(r,a)=>this.subscription.add(r.subscribe(a));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let r=new X.Subject;e.add(r.pipe((0,X.debounce)(yR)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let a=NaN;e.add((0,X.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.CURRENT_TIME_CHANGED).subscribe(n=>{this.logRemoteEvent(n);let o=n.value;this.params.output.position$.next(o),(this.params.desiredState.seekState.getState().state==="applying"||Math.abs(o-a)>SR)&&r.next(o),a=o})),e.add((0,X.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t((0,X.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,X.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t((0,X.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),r=>{this.logRemoteEvent(r);let{remotePlayer:a}=this.params.connection,n=r.value,o=this.params.output.isBuffering$.getValue(),u=n===chrome.cast.media.PlayerState.BUFFERING;switch(o!==u&&this.params.output.isBuffering$.next(u),n){case chrome.cast.media.PlayerState.IDLE:!this.params.output.isLive$.getValue()&&a.duration-a.currentTime<vR&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),O(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,X.assertNever)(n)}}),t((0,X.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t((0,X.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=(0,X.merge)(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,X.observableFrom)(["init"])).pipe((0,X.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"),O(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),O(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"),O(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"),O(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"&&O(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,X.assertNonNullable)(d);let c=(0,X.getHighestQuality)(Object.keys(d));(0,X.assertNonNullable)(c);let h=d[c];(0,X.assertNonNullable)(h),i=h,r="video/mp4",a=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let d=t[e];(0,X.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,X.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,X.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,X.assertNonNullable)(d),i=_e(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:X.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,X.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,X.isNonNullable)(o)&&(n.metadata.title=o),(0,X.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,X.timeout)(Yg).subscribe(()=>a(`timeout(${Yg})`)))});(0,Kg.default)(Promise.race([t,i]).then(()=>{this.log({message:`[loadMedia] completed, format: ${this.params.format}`}),this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.handleRemoteReady()},r=>{let a=`[prepare] loadMedia failed, format: ${this.params.format}, reason: ${r}`;this.log({message:a}),this.params.output.error$.next({id:"ChromecastProvider.loadMedia",category:X.ErrorCategory.VIDEO_PIPELINE,message:a,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var nd=K(_t(),1);var Wc=require("@vkontakte/videoplayer-shared/es2015");var Xg=require("@vkontakte/videoplayer-shared/es2015"),Jg=s=>{try{s.pause(),s.playbackRate=0,(0,Xg.clearVideoElement)(s),s.remove()}catch(e){console.error(e)}};var Qo=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,Qc=window.WeakMap?new WeakMap:new Map,TR=(s,e=20)=>{let t=0;return(0,Qo.fromEvent)(s,"ratechange").subscribe(i=>{t++,t>=e&&(s.currentTime=s.currentTime,t=0)})},nt=(s,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=s.querySelector("video"),r=!!i;i?(0,Wc.clearVideoElement)(i):(i=document.createElement("video"),s.appendChild(i)),zc.set(i,r);let a=new Qo.Subscription;return a.add(TR(i,e)),Qc.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},ot=s=>{let e=Qc.get(s);e==null||e.unsubscribe(),Qc.delete(s);let t=zc.get(s);zc.delete(s),t?(0,Wc.clearVideoElement)(s):Jg(s)};var Yc=K(Er(),1),J=require("@vkontakte/videoplayer-shared/es2015");var Zi=require("@vkontakte/videoplayer-shared/es2015"),Wo=(s,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:a}={})=>{let n=s.getState(),o=e(),u=(0,Zi.isNullable)(r),l=new Zi.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},Ht=(s,e,t)=>Wo(e,()=>s.loop,i=>{(0,Zi.isNonNullable)(i)&&(s.loop=i)},{onError:t}),ut=(s,e,t,i)=>Wo(e,()=>({muted:s.muted,volume:s.volume}),r=>{(0,Zi.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}),Et=(s,e,t,i)=>Wo(e,()=>s.playbackRate,r=>{(0,Zi.isNonNullable)(r)&&(s.playbackRate=r)},{changed$:t,onError:i}),er=Wo;var AR=s=>["__",s.language,s.label].join("|"),kR=(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 J.Subject;this.current$=new J.ValueSubject(void 0);this.error$=new J.Subject;this.subscription=new J.Subscription;this.externalTracks=new Map;this.internalTracks=new Map;this.baseURL=e}connect(e,t,i){this.video=e,this.cueSettings=t.textTrackCuesSettings,this.subscribe();let r=a=>{this.error$.next({id:"TextTracksManager",category:J.ErrorCategory.WTF,message:"Generic HtmlVideoTextTrackManager error",thrown:a})};this.subscription.add(this.available$.subscribe(i.availableTextTracks$)),this.subscription.add(this.current$.subscribe(i.currentTextTrack$)),this.subscription.add(this.error$.subscribe(i.error$)),this.subscription.add(er(t.internalTextTracks,()=>(0,Yc.default)(this.internalTracks),a=>{(0,J.isNonNullable)(a)&&this.setInternal(a)},{equal:(a,n)=>(0,J.isNonNullable)(a)&&(0,J.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,J.map)(a=>a.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(er(t.externalTextTracks,()=>(0,Yc.default)(this.externalTracks),a=>{(0,J.isNonNullable)(a)&&this.setExternal(a)},{equal:(a,n)=>(0,J.isNonNullable)(a)&&(0,J.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,J.map)(a=>a.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(er(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(er(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let a of this.htmlTextTracksAsArray())this.applyCueSettings(a.cues),this.applyCueSettings(a.activeCues)}))}subscribe(){(0,J.assertNonNullable)(this.video);let{textTracks:e}=this.video;this.subscription.add((0,J.fromEvent)(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add((0,J.merge)((0,J.fromEvent)(e,"addtrack"),(0,J.fromEvent)(e,"removetrack"),(0,J.observableFrom)(["init"])).pipe((0,J.map)(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),(0,J.filterChanged)((i,r)=>i.length===r.length&&i.every(({id:a},n)=>a===r[n].id))).subscribe(this.available$)),this.subscription.add((0,J.merge)((0,J.fromEvent)(e,"change"),(0,J.observableFrom)(["init"])).pipe((0,J.map)(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),(0,J.map)(i=>i&&this.htmlTextTrackToITextTrack(i).id),(0,J.filterChanged)()).subscribe(this.current$));let t=i=>{var r,a;return this.applyCueSettings((a=(r=i.target)==null?void 0:r.activeCues)!=null?a:null)};this.subscription.add((0,J.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,J.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,J.isNonNullable)(t.align)&&(r.align=t.align),(0,J.isNonNullable)(t.position)&&(r.position=t.position),(0,J.isNonNullable)(t.size)&&(r.size=t.size),(0,J.isNonNullable)(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){(0,J.assertNonNullable)(this.video);let t=[...this.video.textTracks];return e?t:t.filter(s.isHealthyTrack)}htmlTextTrackToITextTrack(e){var o,u,l,d,c;let{language:t,label:i}=e,r=e.id?e.id:AR(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,J.assertNonNullable)(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))((0,J.isNullable)(e)||!kR(t,e))&&(t.mode="disabled")}destroy(){if(this.subscription.unsubscribe(),this.video)for(let e of Array.from(this.video.getElementsByTagName("track"))){let t=e.getAttribute("id");t&&this.externalTracks.has(t)&&this.video.removeChild(e)}this.externalTracks.clear()}attach(e){(0,J.assertNonNullable)(this.video);let t=document.createElement("track");this.baseURL?t.setAttribute("src",new URL(e.url,this.baseURL).toString()):t.setAttribute("src",e.url),t.setAttribute("id",e.id),e.label&&t.setAttribute("label",e.label),e.language&&t.setAttribute("srclang",e.language),e.type==="external"?this.externalTracks.set(e.id,e):e.type==="internal"&&this.internalTracks.set(e.id,e),this.video.appendChild(t)}detach(e){(0,J.assertNonNullable)(this.video);let t=Array.prototype.find.call(this.video.getElementsByTagName("track"),i=>i.getAttribute("id")===e.id);t&&this.video.removeChild(t),e.type==="external"?this.externalTracks.delete(e.id):e.type==="internal"&&this.internalTracks.delete(e.id)}},wt=Kc;var wr=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 aS=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=aS(s);return!!(e&&e.fullscreenElement&&e.fullscreenElement===s)},nS=s=>{let e=aS(s);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===s)};var q=require("@vkontakte/videoplayer-shared/es2015");var RR=3,oS=(s,e,t=RR)=>{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 Yo=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 uS=K(_t(),1);var Zr=()=>{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 Ko=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,uS.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=Zr()}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!=null&&e.getHighEntropyValues){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 Xo=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 Nt=()=>window.ManagedMediaSource||window.MediaSource,es=()=>{var s,e;return!!(window.ManagedMediaSource&&((e=(s=window.ManagedSourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},lS=()=>{var s,e;return!!(window.MediaSource&&((e=(s=window.SourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},Jo=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var LR=document.createElement("video"),MR='video/mp4; codecs="avc1.42000a,mp4a.40.2"',$R='video/mp4; codecs="hev1.1.6.L93.B0"',cS='video/webm; codecs="vp09.00.10.08"',dS='video/webm; codecs="av01.0.00M.08"',BR='audio/mp4; codecs="mp4a.40.2"',DR='audio/webm; codecs="opus"',pS,CR=()=>A(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(k({},s),{video:N(k({},s.video),{contentType:dS})})),window.navigator.mediaCapabilities.decodingInfo(N(k({},s),{video:N(k({},s.video),{contentType:cS})}))]);pS={DASH_WEBM_AV1:e,DASH_WEBM:t}});CR().catch(s=>{console.log(LR),console.error(s)});var Zo=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 pS}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,b,S,v,y,x,E;this._video=document.createElement("video");try{this._protocols={mms:es(),mse:lS(),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 P=!!((d=(l=Nt())==null?void 0:l.isTypeSupported)!=null&&d.call(l,MR)),D=!!((h=(c=Nt())==null?void 0:c.isTypeSupported)!=null&&h.call(c,$R)),j=!!((f=(p=Nt())==null?void 0:p.isTypeSupported)!=null&&f.call(p,BR));this._codecs={h264:P,h265:D,vp9:!!((S=(b=Nt())==null?void 0:b.isTypeSupported)!=null&&S.call(b,cS)),av1:!!((y=(v=Nt())==null?void 0:v.isTypeSupported)!=null&&y.call(v,dS)),aac:j,opus:!!((E=(x=Nt())==null?void 0:x.isTypeSupported)!=null&&E.call(x,DR)),mpeg:(P||D)&&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 hS="audio/mpeg",eu=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,hS))},this._codecs={mp3:!!((r=(i=Nt())==null?void 0:i.isTypeSupported)!=null&&r.call(i,hS))}}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 fS=require("@vkontakte/videoplayer-shared/es2015");var Jc=class{constructor(){this.isInited$=new fS.ValueSubject(!1);this._displayChecker=new Xo,this._deviceChecker=new Ko(this._displayChecker),this._browserChecker=new Yo,this._videoChecker=new Zo(this._deviceChecker,this._browserChecker),this._audioChecker=new eu,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)})}},te=new Jc;var lt=s=>{let e=B=>(0,q.fromEvent)(s,B).pipe((0,q.mapTo)(void 0)),t=new q.Subscription,i=()=>t.unsubscribe(),r=(0,q.merge)((0,q.fromEvent)(s,"progress"),(0,q.fromEvent)(s,"timeupdate")).pipe((0,q.map)(()=>oS(s.buffered,s.currentTime))),a=te.browser.isSafari?(0,q.combine)({play:e("play").pipe((0,q.once)()),playing:e("playing")}).pipe((0,q.mapTo)(void 0)):e("playing"),n=(0,q.fromEvent)(s,"volumechange").pipe((0,q.map)(()=>({muted:s.muted,volume:s.volume}))),o=(0,q.fromEvent)(s,"ratechange").pipe((0,q.map)(()=>s.playbackRate)),u=(0,q.fromEvent)(s,"error").pipe((0,q.filter)(()=>!!(s.error||s.played.length)),(0,q.map)(()=>{var z;let B=s.error;return{id:B?`MediaError#${B.code}`:"HtmlVideoError",category:q.ErrorCategory.VIDEO_PIPELINE,message:B?B.message:"Error event from HTML video element",thrown:(z=s.error)!=null?z:void 0}})),l=(0,q.fromEvent)(s,"timeupdate").pipe((0,q.map)(()=>s.currentTime)),d=["waiting","seeking","seeked","timeupdate"],c=new q.Subject,h=.3,p;t.add((0,q.merge)(...d.map(B=>(0,q.fromEvent)(s,B))).subscribe(B=>{let z=s.currentTime;s.loop&&(0,q.isNonNullable)(p)&&(0,q.isNonNullable)(z)&&p>=s.duration-h&&z<=h&&c.next(p),p=z}));let f=e("pause").pipe((0,q.filter)(()=>!s.error&&p!==s.duration)),b=(0,q.fromEvent)(s,"enterpictureinpicture"),S=(0,q.fromEvent)(s,"leavepictureinpicture"),v=new q.ValueSubject(nS(s));t.add(b.subscribe(()=>v.next(!0))),t.add(S.subscribe(()=>v.next(!1)));let y=new q.ValueSubject(Xc(s)),x=(0,q.fromEvent)(s,"fullscreenchange");t.add(x.pipe((0,q.map)(()=>Xc(s))).subscribe(y));let E=.1,P=1e3,D=(0,q.fromEvent)(s,"timeupdate").pipe((0,q.map)(B=>s.duration-s.currentTime<E)),j=(0,q.merge)(D.pipe((0,q.filter)(B=>!s.loop&&B)),(0,q.fromEvent)(s,"ended")).pipe((0,q.throttle)(P),(0,q.mapTo)(void 0)),G=(0,q.combine)({latestNativeEvent:(0,q.merge)(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(B=>(0,q.fromEvent)(s,B))),endedExpected:D}).pipe((0,q.map)(({endedExpected:B})=>B?s.readyState<2:s.readyState<3),(0,q.filterChanged)());return{playing$:a,pause$:f,canplay$:e("canplay"),ended$:j,looped$:c,error$:u,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:l,durationChange$:(0,q.fromEvent)(s,"durationchange").pipe((0,q.map)(()=>s.duration)),isBuffering$:G,currentBuffer$:r,volumeState$:n,playbackRateState$:o,inPiP$:v,inFullscreen$:y,enterPip$:b,leavePip$:S,destroy:i}};var Ci=require("@vkontakte/videoplayer-shared/es2015"),fi=s=>{switch(s){case"mobile":return Ci.VideoQuality.Q_144P;case"lowest":return Ci.VideoQuality.Q_240P;case"low":return Ci.VideoQuality.Q_360P;case"sd":case"medium":return Ci.VideoQuality.Q_480P;case"hd":case"high":return Ci.VideoQuality.Q_720P;case"fullhd":case"full":return Ci.VideoQuality.Q_1080P;case"quadhd":case"quad":return Ci.VideoQuality.Q_1440P;case"ultrahd":case"ultra":return Ci.VideoQuality.Q_2160P}};var Tt=K(si(),1),td=K(_t(),1),Pr=K(Sr(),1),C=require("@vkontakte/videoplayer-shared/es2015");var Zc=!1,Vi={},TS=s=>{Zc=s},IS=()=>{Vi={}},xS=s=>{s(Vi)},Ma=(s,e)=>{var t;Zc&&(Vi.meta=(t=Vi.meta)!=null?t:{},Vi.meta[s]=e)},yt=class{constructor(e){this.name=e}next(e){var i,r;if(!Zc)return;Vi.series=(i=Vi.series)!=null?i:{};let t=(r=Vi.series[this.name])!=null?r:[];t.push([Date.now(),e]),Vi.series[this.name]=t}};var Ge=require("@vkontakte/videoplayer-shared/es2015");function ed(s,e,t){return!s.max&&s.min===e?"high_quality":!s.min&&s.max===t?"traffic_saving":"unknown"}function tu(s,e,t){return!!s&&ed(s,e,t)==="high_quality"}function ts(s,e,t){return(0,Ge.isNullable)(s)||(0,Ge.isNonNullable)(s.min)&&(0,Ge.isNonNullable)(s.max)&&(0,Ge.isLower)(s.max,s.min)||(0,Ge.isNonNullable)(s.min)&&e&&(0,Ge.isHigher)(s.min,e)||(0,Ge.isNonNullable)(s.max)&&t&&(0,Ge.isLower)(s.max,t)}function ES({limits:s,highestAvailableHeight:e,lowestAvailableHeight:t}){return ts({max:s!=null&&s.max?(0,Ge.videoHeightToQuality)(s.max):void 0,min:s!=null&&s.min?(0,Ge.videoHeightToQuality)(s.min):void 0},e?(0,Ge.videoHeightToQuality)(e):void 0,t?(0,Ge.videoHeightToQuality)(t):void 0)}var RS=new yt("best_bitrate"),ru=(s,e,t)=>(e-t)*Math.pow(2,-10*s)+t;var is=s=>(e,t)=>s*(Number(e.bitrate)-Number(t.bitrate)),tr=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=(0,C.now)()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},su='Assertion "ABR Tracks is empty array" failed',iu=new WeakMap,wS=new WeakMap,PS=new WeakMap,$a=(s,e,t,i)=>{var u;let r=[...e].sort(is(1)),a=[...t].sort(is(1)),n=a.filter(l=>(0,C.isNonNullable)(l.bitrate)&&(0,C.isNonNullable)(s.bitrate)?s.bitrate/l.bitrate>i:!0),o=(u=(0,Tt.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,Tt.default)(a,-1);return o&&(0,td.default)(n,o)?o:n.length?(0,Tt.default)(n,-1):(0,Tt.default)(a,0)},Ba=(s,e,t,i)=>{var u;let r=iu.get(e);r||(r=[...e].sort(is(1)),iu.set(e,r));let a=iu.get(t);a||(a=[...t].sort(is(1)),iu.set(t,a));let n=PS.get(s);n||(n=a.filter(l=>(0,C.isNonNullable)(l.bitrate)&&(0,C.isNonNullable)(s.bitrate)?s.bitrate/l.bitrate>i:!0),PS.set(s,n));let o=(u=(0,Tt.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,Tt.default)(a,-1);return o&&(0,td.default)(n,o)?o:n.length?(0,Tt.default)(n,-1):(0,Tt.default)(a,0)},AS=s=>"quality"in s,au=(s,e,t,i)=>{var n;let r=(0,C.isNonNullable)((n=i==null?void 0:i.last)==null?void 0:n.bitrate)&&(0,C.isNonNullable)(t==null?void 0:t.bitrate)&&i.last.bitrate<t.bitrate?s.trackCooldownIncreaseQuality:s.trackCooldownDecreaseQuality,a=t&&i&&i.history[t.id]&&(0,C.now)()-i.history[t.id]<=r&&(!i.last||t.id!==i.last.id);if(t!=null&&t.id&&i&&!a&&i.recordSelection(t),a&&(i!=null&&i.last)){let o=i.last;i==null||i.recordSwitch(o);let u=AS(o)?"video":"audio",l=AS(o)?o.quality:o.bitrate;return e({message:`
8
8
  [last ${u} selected] ${l}
9
- `}),o}return i==null||i.recordSwitch(t),t},JA=(a,e)=>Math.log(e)/Math.log(a),ZA=({tuning:a,container:e,limits:t,panelSize:i})=>{let r=a.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(a.usePixelRatio&&z.display.pixelRatio){let s=z.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=JA(n,o*s+u)+l;Number.isFinite(c)&&(r*=c)}}return Ou({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 X,ue,C,Q,oe;(0,F.assertNotEmptyArray)(a,qb);let{containerSizeFactor:y,containerSizeLimit:S}=ZA({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=(X=(0,Zt.default)(x,-1))==null?void 0:X.quality,P=(ue=(0,Zt.default)(x,0))==null?void 0:ue.quality,O=Yr({limits:r,lowestAvailableQuality:w,highestAvailableQuality:P}),Z=I*Fb(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),ee={},k=x.filter($=>{let N=!0;if(S)if($.size)N=$.size.width<=S.width&&$.size.height<=S.height;else{let wt=S&&(0,F.videoSizeToQuality)(S);N=wt?(0,F.isLowerOrEqual)($.quality,wt):!0}if(!N)return ee[$.quality]="FitsContainer",!1;let Ae=h||t,ki=(0,F.isNonNullable)(Ae)&&isFinite(Ae)&&(0,F.isNonNullable)($.bitrate)?Ae-s>=$.bitrate*Z:!0,Pt=Ou({highQualityLimit:i.highQualityLimit,trafficSavingLimit:i.trafficSavingLimit,limits:r})&&(r==null?void 0:r.min)===$.quality;if(!ki&&!Pt)return ee[$.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 ee[$.quality]="Buffer",!1;if(!!d&&(0,F.isHigherOrEqual)($.quality,d)&&!Pt)return ee[$.quality]="DroppedFramesLimit",!1;if(!!m&&(0,F.isHigherOrEqual)($.quality,m)&&!Pt)return ee[$.quality]="StallsLimit",!1;let _e=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!_e||!ht?(ee[$.quality]="FitsQualityLimits",!1):!0})[0];k&&k.bitrate&&XA.next(k.bitrate);let te=(C=k!=null?k:(0,Zt.default)(x,-1))!=null?C:a[0],B=l==null?void 0:l.last,ie=Ub(i,f,te,l);return(0,F.isNonNullable)(l)&&ie.quality!==(B==null?void 0:B.quality)&&f({message:`
9
+ `}),o}return i==null||i.recordSwitch(t),t},HR=(s,e)=>Math.log(e)/Math.log(s),LS=({tuning:s,container:e,limits:t,panelSize:i})=>{let r=s.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(s.usePixelRatio&&te.display.pixelRatio){let a=te.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=HR(n,o*a+u)+l;Number.isFinite(d)&&(r*=d)}}return tu(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}},kS=new WeakMap,mi=(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,abrLogger:f,panelSize:b})=>{var Z,Q,de,$,F;(0,C.assertNotEmptyArray)(s,su);let{containerSizeFactor:S,containerSizeLimit:v}=LS({container:e,tuning:i,limits:r,panelSize:b}),y=i.considerPlaybackRate&&(0,C.isNonNullable)(o)?o:1,x=kS.get(s);x||(x=s.filter(V=>!(0,C.isInvariantQuality)(V.quality)).sort((V,M)=>(0,C.isHigher)(V.quality,M.quality)?-1:1),kS.set(s,x));let E=(Z=(0,Tt.default)(x,-1))==null?void 0:Z.quality,P=(Q=(0,Tt.default)(x,0))==null?void 0:Q.quality,D=ts(r,P,E),j=y*ru(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),U={},G=null;for(let V of x){let M=!0;if(v)if(V.size)M=V.size.width<=v.width&&V.size.height<=v.height;else{let rt=v&&(0,C.videoSizeToQuality)(v);M=rt?(0,C.isLowerOrEqual)(V.quality,rt):!0}if(!M){U[V.quality]="FitsContainer";continue}let H=p||t,we=(0,C.isNonNullable)(H)&&isFinite(H)&&(0,C.isNonNullable)(V.bitrate)?H-a>=V.bitrate*j:!0,it=tu(r,i.highQualityLimit,i.trafficSavingLimit)&&(r==null?void 0:r.min)===V.quality;if(!we&&!it){U[V.quality]="FitsThroughput";continue}if(i.lazyQualitySwitch&&(0,C.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,C.isInvariantQuality)(u.quality)&&(n!=null?n:0)<i.minBufferToSwitchUp&&(0,C.isHigher)(V.quality,u.quality)){U[V.quality]="Buffer";continue}if(!!c&&(0,C.isHigherOrEqual)(V.quality,c)&&!it){U[V.quality]="DroppedFramesLimit";continue}if(!!h&&(0,C.isHigherOrEqual)(V.quality,h)&&!it){U[V.quality]="StallsLimit";continue}let Ue=D||((0,C.isNullable)(r==null?void 0:r.max)||(0,C.isLowerOrEqual)(V.quality,r.max))&&((0,C.isNullable)(r==null?void 0:r.min)||(0,C.isHigherOrEqual)(V.quality,r.min)),qe=(0,C.isNonNullable)(d)&&!d?(0,C.isLowerOrEqual)(V.quality,i.backgroundVideoQualityLimit):!0;if(!Ue||!qe){U[V.quality]="FitsQualityLimits";continue}G||(G=V)}G&&G.bitrate&&RS.next(G.bitrate);let B=(de=G!=null?G:(0,Tt.default)(x,-1))!=null?de:s[0],z=l==null?void 0:l.last,_=au(i,f,B,l);return(0,C.isNonNullable)(l)&&_.quality!==(z==null?void 0:z.quality)&&f({message:`
10
10
  [VIDEO TRACKS ABR]
11
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(`
12
+ ${s.map(V=>{var M,H;return`{ id: ${V.id}, quality: ${V.quality}, bitrate: ${V.bitrate}, size: ${(M=V.size)==null?void 0:M.width}:${(H=V.size)==null?void 0:H.height} }`}).join(`
13
13
  `)}
14
14
 
15
15
  [tuning]
16
- ${(0,Zs.default)(i!=null?i:{}).map(([$,N])=>`${$}: ${N}`).join(`
16
+ ${(0,Pr.default)(i!=null?i:{}).map(([V,M])=>`${V}: ${M}`).join(`
17
17
  `)}
18
18
 
19
19
  [limit params]
20
- containerSizeFactor: ${y},
21
- containerSizeLimit: ${(Q=S==null?void 0:S.width)!=null?Q:0} x ${(oe=S==null?void 0:S.height)!=null?oe:0},
20
+ containerSizeFactor: ${S},
21
+ containerSizeLimit: ${($=v==null?void 0:v.width)!=null?$:0} x ${(F=v==null?void 0:v.height)!=null?F:0},
22
22
  estimatedThroughput: ${t},
23
- stallsPredictedThroughput: ${h},
24
- reserve: ${s},
23
+ stallsPredictedThroughput: ${p},
24
+ reserve: ${a},
25
25
  playbackRate: ${o},
26
- playbackRateFactor: ${I},
26
+ playbackRateFactor: ${y},
27
27
  forwardBufferHealth: ${n},
28
- bitrateFactor: ${Z},
28
+ bitrateFactor: ${j},
29
29
  minBufferToSwitchUp: ${i.minBufferToSwitchUp},
30
- droppedVideoMaxQualityLimit: ${d},
31
- stallsVideoMaxQualityLimit: ${m},
32
- limitsAreInvalid: ${O},
30
+ droppedVideoMaxQualityLimit: ${c},
31
+ stallsVideoMaxQualityLimit: ${h},
32
+ limitsAreInvalid: ${D},
33
33
  maxQualityLimit: ${r==null?void 0:r.max},
34
34
  minQualityLimit: ${r==null?void 0:r.min},
35
35
 
36
36
  [limited video tracks]
37
- ${(0,Zs.default)(ee).map(([$,N])=>`${$}: ${N}`).join(`
37
+ ${(0,Pr.default)(U).map(([V,M])=>`${V}: ${M}`).join(`
38
38
  `)||"All tracks are available"}
39
39
 
40
- [best video track] ${k==null?void 0:k.quality}
41
- [selected video track] ${ie==null?void 0:ie.quality}
42
- `}),ie},Hb=(a,e,t,{estimatedThroughput:i,tuning:r,playbackRate:s,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,F.assertNotEmptyArray)(t,qb);let c=r.considerPlaybackRate&&(0,F.isNonNullable)(s)?s:1,d=[...t].sort(_u(-1)),m=a.bitrate;(0,F.assertNonNullable)(m);let h=c*Fb(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,g=en(a,e,t,r.minVideoAudioRatio),y=l||i;(0,F.isNonNullable)(y)&&isFinite(y)&&(f=d.find(x=>(0,F.isNonNullable)(x.bitrate)&&(0,F.isNonNullable)(g==null?void 0:g.bitrate)?y-m>=x.bitrate*h&&x.bitrate>=g.bitrate:!1)),f||(f=g);let S=o==null?void 0:o.last,I=f&&Ub(r,u,f,o);return(0,F.isNonNullable)(o)&&(I==null?void 0:I.bitrate)!==(S==null?void 0:S.bitrate)&&u({message:`
40
+ [best video track] ${G==null?void 0:G.quality}
41
+ [selected video track] ${_==null?void 0:_.quality}
42
+ `}),_},nu=(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,abrLogger:f,panelSize:b})=>{var Q,de,$,F,V;(0,C.assertNotEmptyArray)(s,su);let{containerSizeFactor:S,containerSizeLimit:v}=LS({container:e,tuning:i,limits:r,panelSize:b}),y=i.considerPlaybackRate&&(0,C.isNonNullable)(o)?o:1,x=s.filter(M=>!(0,C.isInvariantQuality)(M.quality)).sort((M,H)=>(0,C.isHigher)(M.quality,H.quality)?-1:1),E=(Q=(0,Tt.default)(x,-1))==null?void 0:Q.quality,P=(de=(0,Tt.default)(x,0))==null?void 0:de.quality,D=ts(r,E,P),j=y*ru(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),U={},B=x.filter(M=>{let H=!0;if(v)if(M.size)H=M.size.width<=v.width&&M.size.height<=v.height;else{let jt=v&&(0,C.videoSizeToQuality)(v);H=jt?(0,C.isLowerOrEqual)(M.quality,jt):!0}if(!H)return U[M.quality]="FitsContainer",!1;let we=p||t,it=(0,C.isNonNullable)(we)&&isFinite(we)&&(0,C.isNonNullable)(M.bitrate)?we-a>=M.bitrate*j:!0,ye=tu(r,i.highQualityLimit,i.trafficSavingLimit)&&(r==null?void 0:r.min)===M.quality;if(!it&&!ye)return U[M.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&(0,C.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,C.isInvariantQuality)(u.quality)&&(n!=null?n:0)<i.minBufferToSwitchUp&&(0,C.isHigher)(M.quality,u.quality))return U[M.quality]="Buffer",!1;if(!!c&&(0,C.isHigherOrEqual)(M.quality,c)&&!ye)return U[M.quality]="DroppedFramesLimit",!1;if(!!h&&(0,C.isHigherOrEqual)(M.quality,h)&&!ye)return U[M.quality]="StallsLimit",!1;let qe=D||((0,C.isNullable)(r==null?void 0:r.max)||(0,C.isLowerOrEqual)(M.quality,r.max))&&((0,C.isNullable)(r==null?void 0:r.min)||(0,C.isHigherOrEqual)(M.quality,r.min)),rt=(0,C.isNonNullable)(d)&&!d?(0,C.isLowerOrEqual)(M.quality,i.backgroundVideoQualityLimit):!0;return!qe||!rt?(U[M.quality]="FitsQualityLimits",!1):!0})[0];B&&B.bitrate&&RS.next(B.bitrate);let z=($=B!=null?B:(0,Tt.default)(x,-1))!=null?$:s[0],_=l==null?void 0:l.last,Z=au(i,f,z,l);return(0,C.isNonNullable)(l)&&Z.quality!==(_==null?void 0:_.quality)&&f({message:`
43
+ [VIDEO TRACKS ABR]
44
+ [available video tracks]
45
+ ${s.map(M=>{var H,we;return`{ id: ${M.id}, quality: ${M.quality}, bitrate: ${M.bitrate}, size: ${(H=M.size)==null?void 0:H.width}:${(we=M.size)==null?void 0:we.height} }`}).join(`
46
+ `)}
47
+
48
+ [tuning]
49
+ ${(0,Pr.default)(i!=null?i:{}).map(([M,H])=>`${M}: ${H}`).join(`
50
+ `)}
51
+
52
+ [limit params]
53
+ containerSizeFactor: ${S},
54
+ containerSizeLimit: ${(F=v==null?void 0:v.width)!=null?F:0} x ${(V=v==null?void 0:v.height)!=null?V:0},
55
+ estimatedThroughput: ${t},
56
+ stallsPredictedThroughput: ${p},
57
+ reserve: ${a},
58
+ playbackRate: ${o},
59
+ playbackRateFactor: ${y},
60
+ forwardBufferHealth: ${n},
61
+ bitrateFactor: ${j},
62
+ minBufferToSwitchUp: ${i.minBufferToSwitchUp},
63
+ droppedVideoMaxQualityLimit: ${c},
64
+ stallsVideoMaxQualityLimit: ${h},
65
+ limitsAreInvalid: ${D},
66
+ maxQualityLimit: ${r==null?void 0:r.max},
67
+ minQualityLimit: ${r==null?void 0:r.min},
68
+
69
+ [limited video tracks]
70
+ ${(0,Pr.default)(U).map(([M,H])=>`${M}: ${H}`).join(`
71
+ `)||"All tracks are available"}
72
+
73
+ [best video track] ${B==null?void 0:B.quality}
74
+ [selected video track] ${Z==null?void 0:Z.quality}
75
+ `}),Z},ou=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,C.assertNotEmptyArray)(t,su);let d=r.considerPlaybackRate&&(0,C.isNonNullable)(a)?a:1,c=[...t].sort(is(-1)),h=s.bitrate;(0,C.assertNonNullable)(h);let p=d*ru(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,b=$a(s,e,t,r.minVideoAudioRatio),S=l||i;(0,C.isNonNullable)(S)&&isFinite(S)&&(f=c.find(x=>(0,C.isNonNullable)(x.bitrate)&&(0,C.isNonNullable)(b==null?void 0:b.bitrate)?S-h>=x.bitrate*p&&x.bitrate>=b.bitrate:!1)),f||(f=b);let v=o==null?void 0:o.last,y=f&&au(r,u,f,o);return(0,C.isNonNullable)(o)&&(y==null?void 0:y.bitrate)!==(v==null?void 0:v.bitrate)&&u({message:`
43
76
  [AUDIO TRACKS ABR]
44
77
  [available audio tracks]
45
78
  ${t.map(x=>`{ id: ${x.id}, bitrate: ${x.bitrate} }`).join(`
46
79
  `)}
47
80
 
48
81
  [tuning]
49
- ${(0,Zs.default)(r!=null?r:{}).map(([x,w])=>`${x}: ${w}`).join(`
82
+ ${(0,Pr.default)(r!=null?r:{}).map(([x,E])=>`${x}: ${E}`).join(`
50
83
  `)}
51
84
 
52
85
  [limit params]
53
86
  estimatedThroughput: ${i},
54
87
  stallsPredictedThroughput: ${l},
55
- reserve: ${m},
56
- playbackRate: ${s},
57
- playbackRateFactor: ${c},
88
+ reserve: ${h},
89
+ playbackRate: ${a},
90
+ playbackRateFactor: ${d},
58
91
  forwardBufferHealth: ${n},
59
- bitrateFactor: ${h},
92
+ bitrateFactor: ${p},
60
93
  minBufferToSwitchUp: ${r.minBufferToSwitchUp},
61
94
 
62
- [selected audio track] ${I==null?void 0:I.id}
63
- `}),I};var Pe=a=>new URL(a).hostname;var _=require("@vkontakte/videoplayer-shared/es2015");var zb=G(Jt(),1);var Qb=G(Ne(),1);var jb=a=>{if(a instanceof DOMException&&(0,Qb.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"))},je=(a,e)=>A(void 0,null,function*(){let t=a.muted;try{yield a.play()}catch(i){if(!jb(i))return!1;if(e&&e(),t)return console.warn(i),!1;a.muted=!0;try{yield a.play()}catch(r){return jb(r)&&(a.muted=!1,console.warn(r)),!1}}return!0});var Ke=require("@vkontakte/videoplayer-shared/es2015");var Gb=G(tr(),1),It=require("@vkontakte/videoplayer-shared/es2015");function we(){return(0,It.now)()}function Bu(a){return we()-a}function Nu(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 Wb(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,y=()=>{if(u)return;(0,It.assertNonNullable)(c);let B=Bu(c),ie;if(B<g){ie=g-B,setTimeout(y,ie);return}g*=2,g>f&&(g=f),n&&n.abort(),n=new r,O()},S=B=>(s=B,te),I=B=>(d=B,te),x=()=>(h="json",te),w=()=>{if(!u){if(--l>=0){y(),i&&i();return}u=!0,d&&d(),t&&t()}},P=B=>(m=B,te),O=()=>{c=we(),n=new r,n.open("get",a);let B=0,ie,X=0,ue=()=>((0,It.assertNonNullable)(c),Math.max(c,Math.max(ie||0,X||0)));if(s&&n.addEventListener("progress",C=>{let Q=we();s.updateChunk&&C.loaded>B&&(s.updateChunk(ue(),C.loaded-B),B=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=$-B;N&&s.updateChunk&&s.updateChunk(ue(),N)}oe==="json"&&(!Q||!(0,Gb.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&&(X=we(),n.removeEventListener("readystatechange",C))};n.addEventListener("readystatechange",C)}return n.responseType=h,n.send(),te},te={withBitrateReporting:S,withParallel:P,withJSONResponse:x,withRetryCount:B=>(l=B,te),withRetryInterval:(B,ie)=>((0,It.isNonNullable)(B)&&(g=B),(0,It.isNonNullable)(ie)&&(f=ie),te),withTimeout:B=>(o=B,te),withFinally:I,send:O,abort:()=>{n&&(n.abort(),n=void 0),u=!0,d&&d()}};return te}var Kr=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 Yb=G(tr(),1);var Xr=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,Yb.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 Kb=require("@vkontakte/videoplayer-shared/es2015");var tn=1e4,Fu=3;var tk=6e4,ik=10,rk=1,ak=500,Jr=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 Kb.Subject,this.chunkRateEstimator=new Kr(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=Nu(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=Nu(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*(z.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||{};!_b({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,zb.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,Ke.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=()=>{Wb(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 Xr(Fu,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(Fu).withFinally(()=>{u=null}).send()},h=(w,P,O)=>{(0,Ke.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}`),y()},y=()=>{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,Z=0;for(let ne=0;ne<this.bufferStates.length;ne++){let k=this.bufferStates[ne];w=Math.min(w,k.buf),k.ts<O&&Z++}this.bufferStates.splice(0,Z),t(`update playback rate; minBuffer=${w} drop=${Z} jitter=${this.sourceJitter}`);let ee=w-rk;this.sourceJitter>=0?ee-=this.sourceJitter/2:this.sourceJitter-=1,ee>3?f(1.15):ee>1?f(1.1):ee>.3?f(1.05):f(1)}},S=w=>{let P,O=()=>P&&P.start?P.start.length:0,Z=C=>P.start[C]/1e3,ee=C=>P.dur[C]/1e3,ne=C=>P.fragIndex+C,k=(C,Q)=>({chunkIdx:ne(C),startTS:Z(C),dur:ee(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)},B=C=>{let Q=O();if(!(Q<=0)){if((0,Ke.isNonNullable)(C)){for(let oe=0;oe<Q;oe++)if(Z(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>ik)return t(`Resync: offset=${$} bChunks=${Q} chunk=`+JSON.stringify(C)),te();if(!($>=Q))return k(oe-P.fragIndex,!1)}},X=(C,Q,oe)=>{l&&l.abort(),l=rr(this.urlResolver.resolve(C,!0,this.lowLatency),Q,oe,()=>this._retryCallback()).withTimeout(tn).withRetryCount(Fu).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(C,Q)=>{X(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,Ke.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(B(Q))},()=>this._handleNetworkError())},nextChunk:ie}},I=()=>{s=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),(0,Ke.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return c={start:w=>{let{videoElement:P,logger:O}=this.params,Z=S(e.jidxUrl),ee,ne,k,te,B=0,ie,X,ue,C=()=>{ie&&(clearTimeout(ie),ie=void 0);let se=Math.max(ak,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Me=B+se,Oe=we(),_e=Math.min(1e4,Me-Oe);B=Oe;let ht=()=>{l||d()&&Z.seek(()=>{d()&&(B=we(),Q(),C())})};_e>0?ie=window.setTimeout(()=>{this.paused?C():ht()},_e):ht()},Q=()=>{let se;for(;se=Z.nextChunk(te);)te=se,ki(se);let Me=Z.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,_e,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&&X===si&&Nt-ue>500&&(O("Stall suspected; trying to fix"),this._fixupStall()),X!==si&&(X=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}),y(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),Me&&Me()}catch(hr){if(hr.name==="QuotaExceededError")O("QuotaExceededError; delaying appendBuffer"),ht=this.sourceBuffer.buffered.length,ht!==0&&(Oe=this.sourceBuffer.buffered.start(0),_e=si,_e-Oe>4&&this.sourceBuffer.remove(Oe,_e-3)),wt(1e3);else throw hr}}},$=()=>{ne&&ee&&(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 _e=Math.min(10,se.dur/Oe);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*_e:_e}$()}},()=>this._handleNetworkError())},ki=se=>{d()&&((0,Ke.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(N(se),!1)))},Pt=se=>{d()&&(e.cachedHeader=se,oe(se,()=>{ee=!0,$()}))};s=!0,Z.seek(se=>{if(d()){if(B=we(),!se){C();return}te=se,!(0,Ke.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,Ke.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,Ke.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,Ke.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 y=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:h,duration:f-m,speed:y}),!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;je(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))},tk))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var Xb=G(Qi(),1),fe=require("@vkontakte/videoplayer-shared/es2015"),qu=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,Xb.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=qu;var an=require("@vkontakte/videoplayer-shared/es2015"),Jb=require("@vkontakte/videoplayer-shared/es2015");var Zr=()=>{var a;return!!((a=window.documentPictureInPicture)!=null&&a.window)||!!document.pictureInPictureElement};var sk=(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||Zr()))},L(L({},i),e));r.observe(a);let s=(0,Jb.fromEvent)(document,"visibilitychange").pipe((0,an.map)(n=>!document.hidden||Zr())).subscribe(n=>t.next(n));return()=>{r.unobserve(a),s.unsubscribe()}}),tt=sk;var nk=["paused","playing","ready"],ok=["paused","playing","ready"],ea=class{constructor(e){this.subscription=new _.Subscription;this.videoState=new Y("stopped");this.representations$=new _.ValueSubject([]);this.droppedFramesManager=new rn;this.maxSeekBackTime$=new _.ValueSubject(1/0);this.zeroTime$=new _.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:_.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,_.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,_.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,Uu.default)(ok,e)&&(n||o)){this.prepare();return}if((r==null?void 0:r.to)!=="paused"&&s.state==="requested"&&(0,Uu.default)(nk,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,_.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:_.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add((0,_.merge)(this.videoState.stateChangeStarted$.pipe((0,_.map)(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,_.map)(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:s})=>{this.log({message:`[videoState change] ${s}: ${JSON.stringify(r)}`})})),this.video=Fe(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=He(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,_.map)(r=>r.map(({track:s})=>s)),(0,_.filter)(r=>!!r.length),(0,_.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,_.filterChanged)(),(0,_.map)(r=>-r/1e3)).subscribe(this.params.output.duration$)).add((0,_.combine)({zeroTime:this.zeroTime$.pipe((0,_.filter)(_.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(Ue(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,_.videoQualityToHeight)(r),min:s&&(0,_.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,_.assertNever)(r.to)}},t)).add((0,_.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,_.observableFrom)(["init"])).pipe((0,_.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),qe(this.video)}createLiveDashPlayer(){let e=new Jr({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,_.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:y})=>y.id===s))==null?void 0:f.representation;(0,_.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,_.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 Zb=ea;var cS=G(Ne(),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)}},ta=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&&(ta.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 Hu(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 ia=nn({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),eg=ia?Hu({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,Et=ia?eg.fetch:window.fetch,zV=ia?eg.Request:window.Request,Le=ia?ta:window.AbortController,KV=ia?sr:window.AbortSignal;var nS=G(Ne(),1),yl=G(Qu(),1);var Fg=G(Ng(),1),nr=require("@vkontakte/videoplayer-shared/es2015"),qg=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,Fg.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=G(Ne(),1),lr=G(Jt(),1),un=G(Qu(),1);var Gk=(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)},Wk=a=>window.clearTimeout(a),Ug=a=>typeof a=="function"&&(a==null?void 0:a.toString().endsWith("{ [native code] }")),Hg=!Ug(window.requestIdleCallback)||!Ug(window.cancelIdleCallback),Ku=Hg?Gk:window.requestIdleCallback,aa=Hg?Wk:window.cancelIdleCallback;var zv=G(Hs(),1);var ii=require("@vkontakte/videoplayer-shared/es2015");var Yk=18,jg=!1;try{jg=z.browser.isSafari&&!!z.browser.safariVersion&&z.browser.safariVersion<=Yk}catch(a){console.error(a)}var Xu=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)};jg&&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)}}},Qg=Xu;var Ju=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 sa=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 na=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 oa=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 ua=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 la=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ca=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 da=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var pa=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ha=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 ma=class extends pe{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var fa=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 ba=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ga=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 va=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Sa=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ya=class extends pe{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var Ta=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ia=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 Ea=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 xa=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 Pa=class extends re{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var wa=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 Aa=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 Kk={ftyp:na,moov:oa,mvhd:ua,moof:la,mdat:ca,sidx:Ii,trak:da,mdia:ba,mfhd:ya,tkhd:ga,traf:Ta,tfhd:Ia,tfdt:Ea,trun:xa,minf:va,sv3d:pa,st3d:ha,prhd:ma,proj:Sa,equi:fa,uuid:sa,stbl:Pa,stsd:wa,avc1:Aa,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=Kk[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 Jk=new TextDecoder("ascii"),Zk=a=>Jk.decode(new DataView(a.buffer,a.byteOffset+4,4))==="ftyp",eR=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})},tR=(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)},iR=a=>{let t=new Ct().parse(a),i=new ri(t),r={},s=i.findAll("uuid");return s.length?s[s.length-1]:r},rR=a=>{var r;let t=new Ct().parse(a);return(r=new ri(t).find("sidx"))==null?void 0:r.timescale},aR=(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},sR=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},Gg={validateData:Zk,parseInit:sR,getIndexRange:()=>{},parseSegments:eR,parseFeedableSegmentChunk:tR,getChunkEndTime:aR,getServerLatencyTimestamps:iR,getTimescaleFromIndex:rR};var Ra=G(Ne(),1),Dt=require("@vkontakte/videoplayer-shared/es2015");var Yg=require("@vkontakte/videoplayer-shared/es2015");var Wg={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"}},zg=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=ka(a,t),r=i in Wg,s=r?Wg[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=ka(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}},ka=(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 ka(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,Yg.assertNever)(e)}},Ei=(a,e)=>{let t=0;for(;t<a.byteLength;){let i=new DataView(a.buffer,a.byteOffset+t),r=zg(i);if(!e(r))return;r.type==="master"&&Ei(r.value,e),t=r.value.byteOffset-a.byteOffset+r.valueSize}},Kg=a=>{if(a.getUint32(0)!==440786851)return!1;let e,t,i,r=zg(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 Xg=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],nR=[231,22612,22743,167,171,163,160,175],oR=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 y=dt(f,h);l=ka(y)}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:y,type:S,value:I})=>y===30321?(c=dt(I,S)===1,!1):!0):s&&n&&(0,Ra.default)(Xg,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}}}},uR=a=>{if((0,Dt.isNullable)(a.cuesSeekPosition))return;let e=a.segmentStart+a.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},lR=(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,Ra.default)(Xg,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}}})},cR=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,Ra.default)(nR,i.tag)?(e+i.tagSize<=a.byteLength&&(e+=i.tagSize,t||(t=(0,Ra.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},Jg={validateData:Kg,parseInit:oR,getIndexRange:uR,parseSegments:lR,parseFeedableSegmentChunk:cR};var $a=a=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(a);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return Jg;case"mp4":return Gg}}throw new ReferenceError(`Unsupported mime type ${a}`)};var dl=G(vv(),1),jv=G(Qi(),1),Qv=G(Dv(),1),Gv=G(Jt(),1),pl=G(tr(),1);var Vv=G(Ne(),1),sl=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,Vv.default)(["6E","7A","F4"],o)}}return!1};var Ma=require("@vkontakte/videoplayer-shared/es2015");var Ov=a=>{if(a.includes("/")){let e=a.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(a)};var _v=a=>{var e;try{let t=s$(),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 s$(){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})`})
95
+ [selected audio track] ${y==null?void 0:y.id}
96
+ `}),y},uu=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,C.assertNotEmptyArray)(t,su);let d=r.considerPlaybackRate&&(0,C.isNonNullable)(a)?a:1,c=wS.get(t);c||(c=[...t].sort(is(-1)),wS.set(t,c));let h=s.bitrate;(0,C.assertNonNullable)(h);let p=d*ru(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,b=Ba(s,e,t,r.minVideoAudioRatio),S=l||i;(0,C.isNonNullable)(S)&&isFinite(S)&&(f=c.find(x=>(0,C.isNonNullable)(x.bitrate)&&(0,C.isNonNullable)(b==null?void 0:b.bitrate)?S-h>=x.bitrate*p&&x.bitrate>=b.bitrate:!1)),f||(f=b);let v=o==null?void 0:o.last,y=f&&au(r,u,f,o);return(0,C.isNonNullable)(o)&&(y==null?void 0:y.bitrate)!==(v==null?void 0:v.bitrate)&&u({message:`
97
+ [AUDIO TRACKS ABR]
98
+ [available audio tracks]
99
+ ${t.map(x=>`{ id: ${x.id}, bitrate: ${x.bitrate} }`).join(`
100
+ `)}
101
+
102
+ [tuning]
103
+ ${(0,Pr.default)(r!=null?r:{}).map(([x,E])=>`${x}: ${E}`).join(`
104
+ `)}
105
+
106
+ [limit params]
107
+ estimatedThroughput: ${i},
108
+ stallsPredictedThroughput: ${l},
109
+ reserve: ${h},
110
+ playbackRate: ${a},
111
+ playbackRateFactor: ${d},
112
+ forwardBufferHealth: ${n},
113
+ bitrateFactor: ${p},
114
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
115
+
116
+ [selected audio track] ${y==null?void 0:y.id}
117
+ `}),y};var ze=s=>new URL(s).hostname;var ee=require("@vkontakte/videoplayer-shared/es2015");var VS=K(si(),1);var $S=K(_t(),1);var MS=s=>{if(s instanceof DOMException&&(0,$S.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"))},ct=(s,e)=>A(void 0,null,function*(){let t=s.muted;try{yield s.play()}catch(i){if(!MS(i))return!1;if(e&&e(),t)return console.warn(i),!1;s.muted=!0;try{yield s.play()}catch(r){return MS(r)&&(s.muted=!1,console.warn(r)),!1}}return!0});var Ut=require("@vkontakte/videoplayer-shared/es2015");var BS=K(Er(),1),bi=require("@vkontakte/videoplayer-shared/es2015");function et(){return(0,bi.now)()}function id(s){return et()-s}function rd(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 DS(s,e,t){let i=(...r)=>{t.apply(null,r),s.removeEventListener(e,i)};s.addEventListener(e,i)}function rs(s,e,t,i){let r=window.XMLHttpRequest,a,n,o,u=!1,l=0,d,c,h=!1,p="arraybuffer",f=7e3,b=2e3,S=()=>{if(u)return;(0,bi.assertNonNullable)(d);let _=id(d),Z;if(_<b){Z=b-_,setTimeout(S,Z);return}b*=2,b>f&&(b=f),n&&n.abort(),n=new r,D()},v=_=>(a=_,z),y=_=>(c=_,z),x=()=>(p="json",z),E=()=>{if(!u){if(--l>=0){S(),i&&i();return}u=!0,c&&c(),t&&t()}},P=_=>(h=_,z),D=()=>{d=et(),n=new r,n.open("get",s);let _=0,Z,Q=0,de=()=>((0,bi.assertNonNullable)(d),Math.max(d,Math.max(Z||0,Q||0)));if(a&&n.addEventListener("progress",$=>{let F=et();a.updateChunk&&$.loaded>_&&(a.updateChunk(de(),$.loaded-_),_=$.loaded,Z=F)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>E())),n.addEventListener("load",()=>{if(u)return;(0,bi.assertNonNullable)(n);let $=n.status;if($>=200&&$<300){let{response:F,responseType:V}=n,M=F==null?void 0:F.byteLength;if(typeof M=="number"&&a){let H=M-_;H&&a.updateChunk&&a.updateChunk(de(),H)}V==="json"&&(!F||!(0,BS.default)(F).length)?E():(c&&c(),e(F))}else E()}),n.addEventListener("error",()=>{E()}),h){let $=()=>{(0,bi.assertNonNullable)(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(Q=et(),n.removeEventListener("readystatechange",$))};n.addEventListener("readystatechange",$)}return n.responseType=p,n.send(),z},z={withBitrateReporting:v,withParallel:P,withJSONResponse:x,withRetryCount:_=>(l=_,z),withRetryInterval:(_,Z)=>((0,bi.isNonNullable)(_)&&(b=_),(0,bi.isNonNullable)(Z)&&(f=Z),z),withTimeout:_=>(o=_,z),withFinally:y,send:D,abort:()=>{n&&(n.abort(),n=void 0),u=!0,c&&c()}};return z}var Da=class{constructor(e){this.intervals=[];this.currentRate=0;this.logger=e}_updateRate(e){let t=.2;this.currentRate&&(e<this.currentRate*.1?t=.8:e<this.currentRate*.5?t=.5:e<this.currentRate*.7&&(t=.3)),e=Math.max(1,Math.min(e,100*1024*1024)),this.currentRate=this.currentRate?this.currentRate*(1-t)+e*t:e}_createInterval(e,t,i){return{start:e,end:t,bytes:i}}_doMergeIntervals(e,t){e.start=Math.min(t.start,e.start),e.end=Math.max(t.end,e.end),e.bytes+=t.bytes}_mergeIntervals(e,t){return e.start<=t.end&&t.start<=e.end?(this._doMergeIntervals(e,t),!0):!1}_flushIntervals(){if(!this.intervals.length)return!1;let e=this.intervals[0].start,t=this.intervals[this.intervals.length-1].end-500;if(t-e>2e3){let i=0,r=0;for(;this.intervals.length>0;){let a=this.intervals[0];if(a.end<=t)i+=a.end-a.start,r+=a.bytes,this.intervals.splice(0,1);else{if(a.start>=t)break;{let n=t-a.start,o=a.end-a.start;i+=n;let u=a.bytes*n/o;r+=u,a.start=t,a.bytes-=u}}}if(r>0&&i>0){let a=r*8/(i/1e3);return this._updateRate(a),this.logger(`rate updated, new=${Math.round(a/1024)}K; average=${Math.round(this.currentRate/1024)}K bytes/ms=${Math.round(r)}/${Math.round(i)} interval=${Math.round(t-e)}`),!0}}return!1}_joinIntervals(){let e;do{e=!1;for(let t=0;t<this.intervals.length-1;++t)this._mergeIntervals(this.intervals[t],this.intervals[t+1])&&(this.intervals.splice(t+1,1),e=!0)}while(e)}addInterval(e,t,i){return this.intervals.push(this._createInterval(e,t,i)),this._joinIntervals(),this.intervals.length>100&&(this.logger(`too many intervals (${this.intervals.length}); will merge`,{type:"warn"}),this._doMergeIntervals(this.intervals[1],this.intervals[0]),this.intervals.splice(0,1)),this._flushIntervals()}getBitRate(){return this.currentRate}};var CS=K(Er(),1);var Ca=class{constructor(e,t,i,r,a){this.pendingQueue=[];this.activeRequests={};this.completeRequests={};this.averageSegmentDuration=2e3;this.lastPrefetchStart=0;this.throttleTimeout=null;this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=i,this.MAX_PARALLEL_REQUESTS=r,this.logger=a}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];this.logger(`Dropping completed request for url ${t}`,{type:"warn"}),delete this.completeRequests[t]}}_sendRequest(e,t){let i=et(),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=et()-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=rs(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=et()}_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=et();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,CS.default)(this.activeRequests).forEach(e=>{e&&e._request&&e._request.abort()}),this.activeRequests={},this.pendingQueue=[],this.completeRequests={}}requestData(e,t,i,r){let a={};return a.send=()=>{let n=this.activeRequests[e]||this.completeRequests[e];if(n)n._cb=t,n._errorCB=i,n._retryCB=r,n._finallyCB=a._finallyCB,n._error||n._complete?(this._removeFromActive(e),setTimeout(()=>{n._complete?(this.logger(`Requested url already prefetched, url=${e}`),t(n._responseData,n._downloadTime)):(this.logger(`Requested url already prefetched with error, url=${e}`),i(n._errorMsg)),a._finallyCB&&a._finallyCB()},0)):this.logger(`Attached to active request, url=${e}`);else{let o=this.pendingQueue.indexOf(e);o!==-1&&this.pendingQueue.splice(o,1),this.logger(`Request not prefetched, starting new request, url=${e}${o===-1?"":"; removed pending"}`),this._sendRequest(a,e)}},a._cb=t,a._errorCB=i,a._retryCB=r,a.abort=function(){a.request&&a.request.abort()},a.withFinally=n=>(a._finallyCB=n,a),a}prefetch(e){this.activeRequests[e]||this.completeRequests[e]?this.logger(`Request already active for url=${e}`):(this.logger(`Added to pending queue; url=${e}`),this.pendingQueue.unshift(e),this._sendPending())}optimizeForSegDuration(e){this.averageSegmentDuration=e}};var OS=require("@vkontakte/videoplayer-shared/es2015");var lu=1e4,sd=3;var zR=6e4,QR=10,WR=1,YR=500,Va=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 OS.Subject,this.chunkRateEstimator=new Da(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=rd(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=rd(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,a,n=t&&1.62*(te.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||{};!ES({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,VS.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,Ut.isNonNullable)(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){let{logger:i,videoElement:r,playerCallback:a}=this.params;this.mediaSource=new window.MediaSource,i("setting video src"),r.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener("sourceopen",()=>{this.mediaSource&&(this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t())}),this.videoPlayStarted=!1,r.addEventListener("canplay",()=>{this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{DS(r,"progress",()=>{r.buffered.length?(r.currentTime=r.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,a({name:"playing"})):n()})};this.waitingForFirstBufferAfterSrcChange=!0,n()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new Ca(sd,lu,this.bitrateSwitcher,this.params.config.maxParallelRequests,this.params.logger),this._setVideoSrc(e,()=>this._switchToQuality(e))}_representation(e){let{logger:t,videoElement:i,playerCallback:r}=this.params,a=!1,n=null,o=null,u=null,l=null,d=!1,c=()=>{let E=a&&(!d||d===this.rep);return E||t("Not running!"),E},h=(E,P,D)=>{u&&u.abort(),u=rs(this.urlResolver.resolve(E,!1),P,D,()=>this._retryCallback()).withTimeout(lu).withBitrateReporting(this.bitrateSwitcher).withRetryCount(sd).withFinally(()=>{u=null}).send()},p=(E,P,D)=>{(0,Ut.assertNonNullable)(this.filesFetcher),o==null||o.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(E,!1),P,D,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},f=E=>{let P=i.playbackRate;i.playbackRate!==E&&(t(`Playback rate switch: ${P}=>${E}`),i.playbackRate=E)},b=E=>{this.lowLatency=E,t(`lowLatency changed to ${E}`),S()},S=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)f(1);else{let E=this._getBufferSizeSec();if(this.bufferStates.length<5){f(1);return}let D=et()-1e4,j=0;for(let G=0;G<this.bufferStates.length;G++){let B=this.bufferStates[G];E=Math.min(E,B.buf),B.ts<D&&j++}this.bufferStates.splice(0,j),t(`update playback rate; minBuffer=${E} drop=${j} jitter=${this.sourceJitter}`);let U=E-WR;this.sourceJitter>=0?U-=this.sourceJitter/2:this.sourceJitter-=1,U>3?f(1.15):U>1?f(1.1):U>.3?f(1.05):f(1)}},v=E=>{let P,D=()=>P&&P.start?P.start.length:0,j=$=>P.start[$]/1e3,U=$=>P.dur[$]/1e3,G=$=>P.fragIndex+$,B=($,F)=>({chunkIdx:G($),startTS:j($),dur:U($),discontinuity:F}),z=()=>{let $=0;if(P&&P.dur){let F=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,V=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,M=F;this.sourceJitter>1&&(M+=this.sourceJitter-1);let H=P.dur.length-1;for(;H>=0&&(M-=P.dur[H],!(M<=0));--H);$=Math.min(H,P.dur.length-1-V),$=Math.max($,0)}return B($,!0)},_=$=>{let F=D();if(!(F<=0)){if((0,Ut.isNonNullable)($)){for(let V=0;V<F;V++)if(j(V)>$)return B(V)}return z()}},Z=$=>{let F=D(),V=$?$.chunkIdx+1:0,M=V-P.fragIndex;if(!(F<=0)){if(!$||M<0||M-F>QR)return t(`Resync: offset=${M} bChunks=${F} chunk=`+JSON.stringify($)),z();if(!(M>=F))return B(V-P.fragIndex,!1)}},Q=($,F,V)=>{l&&l.abort(),l=rs(this.urlResolver.resolve($,!0,this.lowLatency),F,V,()=>this._retryCallback()).withTimeout(lu).withRetryCount(sd).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:($,F)=>{Q(E,V=>{if(!c())return;P=V;let M=!!P.lowLatency;M!==this.lowLatency&&b(M);let H=0;for(let we=0;we<P.dur.length;++we)H+=P.dur[we];H>0&&((0,Ut.assertNonNullable)(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(H/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,$(_(F))},()=>this._handleNetworkError())},nextChunk:Z}},y=()=>{a=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),(0,Ut.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return d={start:E=>{let{videoElement:P,logger:D}=this.params,j=v(e.jidxUrl),U,G,B,z,_=0,Z,Q,de,$=()=>{Z&&(clearTimeout(Z),Z=void 0);let me=Math.max(YR,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Ne=_+me,Ue=et(),qe=Math.min(1e4,Ne-Ue);_=Ue;let rt=()=>{l||c()&&j.seek(()=>{c()&&(_=et(),F(),$())})};qe>0?Z=window.setTimeout(()=>{this.paused?$():rt()},qe):rt()},F=()=>{let me;for(;me=j.nextChunk(z);)z=me,it(me);let Ne=j.nextChunk(B);if(Ne){if(B&&Ne.discontinuity){D("Detected discontinuity; restarting playback"),this.paused?$():(y(),this._initPlayerWith(e));return}we(Ne)}else $()},V=(me,Ne)=>{if(!c()||!this.sourceBuffer)return;let Ue,qe,rt,jt=Qt=>{window.setTimeout(()=>{c()&&V(me,Ne)},Qt)};if(this.sourceBuffer.updating)D("Source buffer is updating; delaying appendBuffer"),jt(100);else{let Qt=et(),ui=P.currentTime;!this.paused&&P.buffered.length>1&&Q===ui&&Qt-de>500&&(D("Stall suspected; trying to fix"),this._fixupStall()),Q!==ui&&(Q=ui,de=Qt);let vi=this._getBufferSizeSec();if(vi>30)D(`Buffered ${vi} seconds; delaying appendBuffer`),jt(2e3);else try{this.sourceBuffer.appendBuffer(me),this.videoPlayStarted?(this.bufferStates.push({ts:Qt,buf:vi}),S(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),Ne&&Ne()}catch(Wi){if(Wi.name==="QuotaExceededError")D("QuotaExceededError; delaying appendBuffer"),rt=this.sourceBuffer.buffered.length,rt!==0&&(Ue=this.sourceBuffer.buffered.start(0),qe=ui,qe-Ue>4&&this.sourceBuffer.remove(Ue,qe-3)),jt(1e3);else throw Wi}}},M=()=>{G&&U&&(D([`Appending chunk, sz=${G.byteLength}:`,JSON.stringify(B)]),V(G,function(){G=null,F()}))},H=me=>e.fragUrlTemplate.replace("%%id%%",me.chunkIdx),we=me=>{c()&&p(H(me),(Ne,Ue)=>{if(c()){if(Ue/=1e3,G=Ne,B=me,n=me.startTS,Ue){let qe=Math.min(10,me.dur/Ue);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*qe:qe}M()}},()=>this._handleNetworkError())},it=me=>{c()&&((0,Ut.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(H(me),!1)))},ye=me=>{c()&&(e.cachedHeader=me,V(me,()=>{U=!0,M()}))};a=!0,j.seek(me=>{if(c()){if(_=et(),!me){$();return}z=me,!(0,Ut.isNullable)(E)||me.startTS>E?we(me):(B=me,F())}},E),e.cachedHeader?ye(e.cachedHeader):h(e.headerUrl,ye,()=>this._handleNetworkError())},stop:y,getTimestampSec:()=>n},d}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),(0,Ut.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,Ut.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,Ut.isNonNullable)(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=c=>{if(!this.autoQuality)return;let h,p,f;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&c<this.bitrate&&(p=this._getBufferSizeSec(),f=c/this.bitrate,p>10&&f>.8||p>15&&f>.5||p>20&&f>.3)){e(`Not switching: buffer=${Math.floor(p)}; bitrate=${this.bitrate}; newRate=${Math.floor(c)}`);return}h=this._selectQuality(c),h?this._switchToQuality(h):e(`Could not find quality by bitrate ${c}`)},a={updateChunk:(h,p)=>{let f=et();if(this.chunkRateEstimator.addInterval(h,f,p)){let S=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:p,duration:f-h,speed:S}),!0}},get:()=>{let h=this.chunkRateEstimator.getBitRate();return h?h*.85:0}},n=-1/0,o,u=!0,l=()=>{let c=a.get();if(c&&o&&this.autoQuality){if(u&&c>o&&id(n)<3e4)return;i(c)}u=this.autoQuality};return{updateChunk:(c,h)=>{let p=a.updateChunk(c,h);return p&&l(),p},notifySwitch:c=>{let h=et();c<o&&(n=h),o=c}}}_fetchManifest(e,t,i){this.manifestRequest=rs(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(lu).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;ct(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{t||(this.params.liveOffset.pause(),this.params.videoState.setState("paused"))})}_handleManifestUpdate(e){let{logger:t,playerCallback:i,videoElement:r}=this.params,a=n=>{let o=[];return n!=null&&n.length?(n.forEach((u,l)=>{var d,c;u.video&&r.canPlayType(u.codecs).replace(/no/,"")&&((c=(d=window.MediaSource)==null?void 0:d.isTypeSupported)!=null&&c.call(d,u.codecs))&&(u.index=l,o.push(u))}),o.sort(function(u,l){return u.video&&l.video?l.video.height-u.video.height:l.bitrate-u.bitrate}),o):(i({name:"error",type:"empty_manifest"}),[])};this.manifest=a(e),t(`Valid manifest entries: ${this.manifest.length}/${e.length}`),i({name:"manifest",manifest:this.manifest})}_refetchManifest(e){this.destroyed||(this.manifestRefetchTimer&&clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=window.setTimeout(()=>{this._fetchManifest(e,t=>{this.destroyed||(this._handleManifestUpdate(t),this._refetchManifest(e))},()=>this._refetchManifest(e))},zR))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var _S=K(Sr(),1),De=require("@vkontakte/videoplayer-shared/es2015"),ad=class{constructor(){this.onDroopedVideoFramesLimit$=new De.Subject;this.subscription=new De.Subscription;this.playing=!1;this.tracks=[];this.forceChecker$=new De.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,De.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>0&&this.log({message:`[dropped]. current dropped percent: ${a}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(a)&&a>=this.droppedFramesChecker.percentLimit&&(0,De.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,De.fromEvent)(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=(0,De.interval)(this.droppedFramesChecker.checkTime).pipe((0,De.filter)(()=>this.playing),(0,De.filter)(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe((0,De.debounce)(this.droppedFramesChecker.checkTime)),i=(0,De.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,_S.default)(this.limitCounts).filter(([,a])=>a>=this.droppedFramesChecker.countLimit).sort(([a],[n])=>(0,De.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}},ss=ad;var cu=require("@vkontakte/videoplayer-shared/es2015"),FS=require("@vkontakte/videoplayer-shared/es2015");var Oa=()=>{var s;return!!((s=window.documentPictureInPicture)!=null&&s.window)||!!document.pictureInPictureElement};var KR=(s,e)=>new cu.Observable(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Oa()))},k(k({},i),e));r.observe(s);let a=(0,FS.fromEvent)(document,"visibilitychange").pipe((0,cu.map)(n=>!document.hidden||Oa())).subscribe(n=>t.next(n));return()=>{r.unobserve(s),a.unsubscribe()}}),Pt=KR;var XR=["paused","playing","ready"],JR=["paused","playing","ready"],_a=class{constructor(e){this.subscription=new ee.Subscription;this.videoState=new re("stopped");this.representations$=new ee.ValueSubject([]);this.droppedFramesManager=new ss;this.maxSeekBackTime$=new ee.ValueSubject(1/0);this.zeroTime$=new ee.ValueSubject(void 0);this.liveOffset=new wr;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:ee.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=fi(u.name))!=null?i:(0,ee.videoSizeToQuality)(u.video),c=u.bitrate/1e3,h=k({},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,ee.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(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; seekState: ${JSON.stringify(a)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.dash.destroy(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"));return}if(t)return;let n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.autoVideoTrackSwitching.getTransition();if((0,nd.default)(JR,e)&&(n||o)){this.prepare();return}if((r==null?void 0:r.to)!=="paused"&&a.state==="requested"&&(0,nd.default)(XR,e)){this.seek(a.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(_e(this.params.source.url));return;case"manifest_ready":this.videoState.startTransitionTo("ready"),this.prepare();break;case"ready":if(i==="paused")this.videoState.setState("paused");else if(i==="playing"){this.videoState.startTransitionTo("playing");let u=r==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,ee.assertNever)(e)}};this.textTracksManager=new wt(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:ee.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add((0,ee.merge)(this.videoState.stateChangeStarted$.pipe((0,ee.map)(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,ee.map)(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:a})=>{this.log({message:`[videoState change] ${a}: ${JSON.stringify(r)}`})})),this.video=nt(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(ze(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=lt(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,ee.map)(r=>r.map(({track:a})=>a)),(0,ee.filter)(r=>!!r.length),(0,ee.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,ee.filterChanged)(),(0,ee.map)(r=>-r/1e3)).subscribe(this.params.output.duration$)).add((0,ee.combine)({zeroTime:this.zeroTime$.pipe((0,ee.filter)(ee.isNonNullable)),position:i.timeUpdate$}).subscribe(({zeroTime:r,position:a})=>this.params.output.liveTime$.next(r+a*1e3),t)).add(Ht(this.video,this.params.desiredState.isLooped,t)).add(ut(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(Et(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(Pt(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,ee.videoQualityToHeight)(r),min:a&&(0,ee.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,ee.assertNever)(r.to)}},t)).add((0,ee.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,ee.observableFrom)(["init"])).pipe((0,ee.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),ot(this.video)}createLiveDashPlayer(){let e=new Va({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,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,ee.isNonNullable)(t)?t:mi(e.map(({track:b})=>b),{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,abrLogger:this.params.dependencies.abrLogger}),a=r==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 b=(f=e.find(({track:S})=>S.id===a))==null?void 0:f.representation;(0,ee.assertNonNullable)(b,"Representations missing"),this.dash.startPlay(b,i)}}setVideoTrack(e){var i;let t=(i=this.representations$.getValue().find(({track:r})=>r.id===e.id))==null?void 0:i.representation;(0,ee.assertNonNullable)(t,`No such representation ${e.id}`),this.dash.switchByName(t.name),this.params.desiredState.videoTrack.setState(e)}setAutoQuality(e){this.dash.setAutoQualityEnabled(e),this.params.desiredState.autoVideoTrackSwitching.setState(e)}seek(e){this.log({message:`[seek] position: ${e}`}),this.params.output.willSeekEvent$.next();let t=this.params.desiredState.playbackState.getState(),i=this.videoState.getState(),r=t==="paused"&&i==="paused",a=-e,n=a<=this.maxSeekBackTime$.getValue()?a:0;this.params.output.position$.next(e/1e3),this.dash.reinit(_e(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var NS=_a;var Uy=K(_t(),1);var tt=(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 ue=require("@vkontakte/videoplayer-shared/es2015");var du=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}},as=class extends du{constructor(){super(),this.listeners||du.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)}},Fa=class{constructor(){Object.defineProperty(this,"signal",{value:new as,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&&(Fa.prototype[Symbol.toStringTag]="AbortController",as.prototype[Symbol.toStringTag]="AbortSignal");function pu(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 od(s){typeof s=="function"&&(s={fetch:s});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=s;if(!pu({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 Na=pu({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),US=Na?od({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,Gt=Na?US.fetch:window.fetch,o_=Na?US.Request:window.Request,Te=Na?Fa:window.AbortController,u_=Na?as:window.AbortSignal;var Dd=K(Ua(),1);var Av=K(Pv(),1),ns=require("@vkontakte/videoplayer-shared/es2015"),hu=s=>{if(!s)return{id:"EmptyResponse",category:ns.ErrorCategory.PARSER,message:"Empty response"};if(s.length<=2&&s.match(/^\d+$/))return{id:`UVError#${s}`,category:ns.ErrorCategory.NETWORK,message:`UV Error ${s}`};let e=(0,Av.default)(s).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:ns.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:ns.ErrorCategory.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:ns.ErrorCategory.PARSER,message:"Response is valid XML, but parser failed"}};var dt=(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 I=require("@vkontakte/videoplayer-shared/es2015");var mu=K(_t(),1),ps=K(si(),1),bu=K(Ua(),1);var OL=(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)},_L=s=>window.clearTimeout(s),kv=s=>typeof s=="function"&&(s==null?void 0:s.toString().endsWith("{ [native code] }")),Rv=!kv(window.requestIdleCallback)||!kv(window.cancelIdleCallback),os=Rv?OL:window.requestIdleCallback,gi=Rv?_L:window.cancelIdleCallback;var My=K(Ra(),1);var ir=require("@vkontakte/videoplayer-shared/es2015");var FL=18,Lv=!1;try{Lv=te.browser.isSafari&&!!te.browser.safariVersion&&te.browser.safariVersion<=FL}catch(s){console.error(s)}var hd=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 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 a={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(a),this.pull()})})}abort(e){return A(this,null,function*(){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};Lv&&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)}}},Mv=hd;var us=s=>{let e=0;for(let t=0;t<s.length;t++)e+=s.end(t)-s.start(t);return e*1e3};var R=require("@vkontakte/videoplayer-shared/es2015");var be=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 ls=class extends be{};var ja=class extends be{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 Ha=class extends be{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 Ga=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Pe=class extends be{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var za=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 Qa=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Wa=class extends be{constructor(e,t){super(e,t),this.data=this.content}};var Ar=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(),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 Ya=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ka=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Xa=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 Ja=class extends Pe{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Za=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 en=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var tn=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 rn=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var sn=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var an=class extends Pe{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var nn=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var on=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 un=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 ln=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 cn=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var dn=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 pn=class extends be{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var UL={ftyp:Ha,moov:Ga,mvhd:za,moof:Qa,mdat:Wa,sidx:Ar,trak:Ya,mdia:en,mfhd:an,tkhd:tn,traf:nn,tfhd:on,tfdt:un,trun:ln,minf:rn,sv3d:Ka,st3d:Xa,prhd:Ja,proj:sn,equi:Za,uuid:ja,stbl:cn,stsd:dn,avc1:pn,unknown:ls},Oi=class s{constructor(e={}){this.options=k({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=UL[e];return i?new i(t,new s):new ls(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 jL=new TextDecoder("ascii"),HL=s=>jL.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",GL=s=>{let e=new Ar(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})},zL=(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)},QL=s=>{let t=new Oi().parse(s),i=new rr(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},WL=s=>{var r;let t=new Oi().parse(s);return(r=new rr(t).find("sidx"))==null?void 0:r.timescale},YL=(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},KL=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},$v={validateData:HL,parseInit:KL,getIndexRange:()=>{},parseSegments:GL,parseFeedableSegmentChunk:zL,getChunkEndTime:YL,getServerLatencyTimestamps:QL,getTimescaleFromIndex:WL};var fn=K(_t(),1),_i=require("@vkontakte/videoplayer-shared/es2015");var Dv=require("@vkontakte/videoplayer-shared/es2015");var Bv={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"}},Cv=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=hn(s,t),r=i in Bv,a=r?Bv[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=hn(u),c=l*St(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}},hn=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*St(2,16)+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*St(2,32)+s.getUint32(1);case 6:return s.getUint16(0)*St(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},ai=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return hn(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,Dv.assertNever)(e)}},kr=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=Cv(i);if(!e(r))return;r.type==="master"&&kr(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},Vv=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=Cv(s);return kr(r.value,({tag:a,type:n,value:o})=>(a===17143?e=ai(o,n):a===17026?t=ai(o,n):a===17029&&(i=ai(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var Ov=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],XL=[231,22612,22743,167,171,163,160,175],JL=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,d=!1,c=0;return kr(s,({tag:h,type:p,value:f,valueSize:b})=>{if(h===21419){let S=ai(f,p);l=hn(S)}else h!==21420&&(l=void 0);return h===408125543?(e=f.byteOffset,t=f.byteOffset+b):h===357149030?a=!0:h===290298740?n=!0:h===2807729?i=ai(f,p):h===17545?r=ai(f,p):h===21420&&l===475249515?u=ai(f,p):h===374648427?kr(f,({tag:S,type:v,value:y})=>S===30321?(d=ai(y,v)===1,!1):!0):a&&n&&(0,fn.default)(Ov,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}}}},ZL=s=>{if((0,_i.isNullable)(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},eM=(s,e)=>{let t=!1,i=!1,r=o=>(0,_i.isNonNullable)(o.time)&&(0,_i.isNonNullable)(o.position),a=[],n;return kr(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=ai(l,u));break;case 183:break;case 241:n&&(n.position=ai(l,u));break;default:t&&(0,fn.default)(Ov,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}}})},tM=s=>{let e=0,t=!1;try{kr(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,fn.default)(XL,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||(t=(0,fn.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},_v={validateData:Vv,parseInit:JL,getIndexRange:ZL,parseSegments:eM,parseFeedableSegmentChunk:tM};var mn=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return _v;case"mp4":return $v}}throw new ReferenceError(`Unsupported mime type ${s}`)};var Ad=K(yd(),1),Ay=K(Sr(),1),ky=K(Td(),1),Ry=K(si(),1),kd=K(Er(),1);var vy=K(_t(),1),ds=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,vy.default)(["6E","7A","F4"],o)}}return!1};var gn=require("@vkontakte/videoplayer-shared/es2015");var fu=s=>{if(s.includes("/")){let e=s.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(s)};var yy=s=>{var e;try{let t=KM(),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 KM(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",d=`^(?:(?<langtag>${`
118
+ (?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
65
119
  (-(?<script>[a-z]{4}))?
66
120
  (-(?<region>(?:[a-z]{2}|[0-9]{3})))?
67
121
  (?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
68
122
  (?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
69
123
  (?:-(?<privateuse>(?:${e})))?
70
- `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(c,"i")}var ol=G(Jt(),1);var Bv=require("@vkontakte/videoplayer-shared/es2015"),Nv=({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,Bv.videoSizeToQuality)({width:e,height:t});return o&&{id:a,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},Fv=({id:a,bitrate:e})=>({id:a,bitrate:e}),qv=({language:a,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),Uv=({language:a,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),ul=({id:a,language:e,label:t,codecs:i,isDefault:r})=>({id:a,language:e,label:t,codec:(0,ol.default)(i.split("."),0),isDefault:r}),ll=({id:a,language:e,label:t,hdr:i,codecs:r})=>({id:a,language:e,hdr:i,label:t,codec:(0,ol.default)(r.split("."),0)}),cl=a=>"url"in a,Ve=a=>a.type==="template",La=a=>a instanceof DOMException&&(a.name==="AbortError"||a.code===20);var Hv=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,dl.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,s]of(0,jv.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,dl.default)(t,n,(o,u)=>(0,Ma.isNullable)(s)?o:(0,Ma.isNullable)(u)?s:(0,Qv.default)(s,parseInt(u,10),"0"))}return t},Wv=(a,e)=>{var ne,k,te,B,ie,X,ue,C,Q,oe,$,N,Ae,ki,Pt,se,Me,Oe,_e,ht,wt,Nt,si,Ri,hr,$l,Ll,Ml,Cl,Dl,Vl,Ol,_l,Bl,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,cc,dc;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,Gv.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,y;u&&(y={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 S,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?S=Hv(I):(0,pl.default)(P).filter(rt=>rt).length&&!u?S=(0,pl.default)(P).reduce((rt,ce)=>{var ni;return rt+((ni=Hv(ce))!=null?ni:0)},0):g&&(S=parseInt(g,10));let O=0,Z=(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=(B=ce.getAttribute("id"))!=null?B:"id"+(O++).toString(10),mr=(ie=ce.getAttribute("mimeType"))!=null?ie:"",kn=(X=ce.getAttribute("codecs"))!=null?X:"",Rn=(ue=ce.getAttribute("contentType"))!=null?ue:mr==null?void 0:mr.split("/")[0],DS=(Q=(C=ce.getAttribute("profiles"))==null?void 0:C.split(","))!=null?Q:[],pc=($=_v((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,VS=ce.querySelectorAll("Representation"),OS=ce.querySelector("SegmentTemplate"),_S=(se=(Pt=ce.querySelector("Role"))==null?void 0:Pt.getAttribute("value"))!=null?se:void 0,$i=Rn,ge={id:ni,language:pc.language,isDefault:_S==="main",label:Ya,codecs:kn,hdr:$i==="video"&&sl(kn),mime:mr,representations:[]};for(let le of VS){let Ft=(Me=le.getAttribute("lang"))!=null?Me:void 0,fr=(_e=(Oe=Ya!=null?Ya:ce.getAttribute("label"))!=null?Oe:le.getAttribute("label"))!=null?_e: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:mr,Ka=(hr=(Ri=le.getAttribute("codecs"))!=null?Ri:kn)!=null?hr:"",Xa;if(Rn==="text"){let Ut=le.getAttribute("id")||"",Ja=(($l=pc.privateuse)==null?void 0:$l.includes("x-auto"))||Ut.includes("_auto"),ui=le.querySelector("SegmentTemplate");if(ui){let br={representationId:(Ll=le.getAttribute("id"))!=null?Ll:void 0,bandwidth:(Ml=le.getAttribute("bandwidth"))!=null?Ml:void 0},Za=parseInt((Cl=le.getAttribute("bandwidth"))!=null?Cl:"",10)/1e3,es=(Vl=parseInt((Dl=ui.getAttribute("startNumber"))!=null?Dl:"",10))!=null?Vl:1,Li=parseInt((Ol=ui.getAttribute("timescale"))!=null?Ol:"",10),$n=(_l=ui.querySelectorAll("SegmentTimeline S"))!=null?_l:[],Mi=ui.getAttribute("media");if(!Mi)continue;let ts=[],is=0,rs="",Ci=0,gr=es,Ce=0;for(let at of $n){let li=parseInt((Bl=at.getAttribute("d"))!=null?Bl:"",10),Je=parseInt((Nl=at.getAttribute("r"))!=null?Nl:"",10)||0,Ht=parseInt((Fl=at.getAttribute("t"))!=null?Fl:"",10);Ce=Number.isFinite(Ht)?Ht:Ce;let ci=li/Li*1e3,jt=Ce/Li*1e3;for(let mt=0;mt<Je+1;mt++){let Qt=Vt(Mi,U(L({},br),{segmentNumber:gr.toString(10),segmentTime:(Ce+mt*li).toString(10)})),Di=(jt!=null?jt:0)+mt*ci,Sr=Di+ci;gr++,ts.push({time:{from:Di,to:Sr},url:Qt})}Ce+=(Je+1)*li,is+=(Je+1)*ci}Ci=Ce/Li*1e3,rs=Vt(Mi,U(L({},br),{segmentNumber:gr.toString(10),segmentTime:Ce.toString(10)}));let vr={time:{from:Ci,to:1/0},url:rs},At={type:"template",baseUrl:oi,segmentTemplateUrl:Mi,initUrl:"",totalSegmentsDurationMs:is,segments:ts,nextSegmentBeyondManifest:vr,timescale:Li};Xa={id:Ut,kind:"text",segmentReference:At,profiles:[],duration:S,bitrate:Za,mime:"",codecs:"",width:0,height:0,isAuto:Ja}}else Xa={id:Ut,isAuto:Ja,kind:"text",url:oi}}else{let Ut=(Ul=(ql=le.getAttribute("contentType"))!=null?ql:qt==null?void 0:qt.split("/")[0])!=null?Ul:Rn,Ja=(jl=(Hl=ce.getAttribute("profiles"))==null?void 0:Hl.split(","))!=null?jl:[],ui=parseInt((Ql=le.getAttribute("width"))!=null?Ql:"",10),br=parseInt((Gl=le.getAttribute("height"))!=null?Gl:"",10),Za=parseInt((Wl=le.getAttribute("bandwidth"))!=null?Wl:"",10)/1e3,es=(Yl=le.getAttribute("frameRate"))!=null?Yl:"",Li=(zl=le.getAttribute("quality"))!=null?zl:void 0,$n=es?Ov(es):void 0,Mi=(Kl=le.getAttribute("id"))!=null?Kl:"id"+(O++).toString(10),ts=Ut==="video"?`${br}p`:Ut==="audio"?`${Za}Kbps`:Ka,is=`${Mi}@${ts}`,rs=[...Z,...DS,...Ja],Ci,gr=le.querySelector("SegmentBase"),Ce=(Xl=le.querySelector("SegmentTemplate"))!=null?Xl:OS;if(gr){let At=(Zl=(Jl=le.querySelector("SegmentBase Initialization"))==null?void 0:Jl.getAttribute("range"))!=null?Zl:"",[at,li]=At.split("-").map(Qt=>parseInt(Qt,10)),Je={from:at,to:li},Ht=(ec=le.querySelector("SegmentBase"))==null?void 0:ec.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:Je,indexRange:mt}}else if(Ce){let At={representationId:(tc=le.getAttribute("id"))!=null?tc:void 0,bandwidth:(ic=le.getAttribute("bandwidth"))!=null?ic:void 0},at=parseInt((rc=Ce.getAttribute("timescale"))!=null?rc:"",10),li=(ac=Ce.getAttribute("initialization"))!=null?ac:"",Je=Ce.getAttribute("media"),Ht=(nc=parseInt((sc=Ce.getAttribute("startNumber"))!=null?sc:"",10))!=null?nc:1,ci=Vt(li,At);if(!Je)throw new ReferenceError("No media attribute in SegmentTemplate");let jt=(oc=Ce.querySelectorAll("SegmentTimeline S"))!=null?oc:[],mt=[],Qt=0,Di="",Sr=0;if(jt.length){let as=Ht,st=0;for(let Vi of jt){let ft=parseInt((uc=Vi.getAttribute("d"))!=null?uc:"",10),di=parseInt((lc=Vi.getAttribute("r"))!=null?lc:"",10)||0,ss=parseInt((cc=Vi.getAttribute("t"))!=null?cc:"",10);st=Number.isFinite(ss)?ss:st;let Ln=ft/at*1e3,Mn=st/at*1e3;for(let ns=0;ns<di+1;ns++){let NS=Vt(Je,U(L({},At),{segmentNumber:as.toString(10),segmentTime:(st+ns*ft).toString(10)})),hc=(Mn!=null?Mn:0)+ns*Ln,FS=hc+Ln;as++,mt.push({time:{from:hc,to:FS},url:NS})}st+=(di+1)*ft,Qt+=(di+1)*Ln}Sr=st/at*1e3,Di=Vt(Je,U(L({},At),{segmentNumber:as.toString(10),segmentTime:st.toString(10)}))}else if((0,Ma.isNonNullable)(S)){let st=parseInt((dc=Ce.getAttribute("duration"))!=null?dc:"",10)/at*1e3,Vi=Math.ceil(S/st),ft=0;for(let di=1;di<Vi;di++){let ss=Vt(Je,U(L({},At),{segmentNumber:di.toString(10),segmentTime:ft.toString(10)}));mt.push({time:{from:ft,to:ft+st},url:ss}),ft+=st}Sr=ft,Di=Vt(Je,U(L({},At),{segmentNumber:Vi.toString(10),segmentTime:ft.toString(10)}))}let BS={time:{from:Sr,to:1/0},url:Di};Ci={type:"template",baseUrl:oi,segmentTemplateUrl:Je,initUrl:ci,totalSegmentsDurationMs:Qt,segments:mt,nextSegmentBeyondManifest:BS,timescale:at}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Ut||!qt)continue;let vr={video:"video",audio:"audio",text:"text"}[Ut];if(!vr)continue;$i||($i=vr),Xa={id:is,kind:vr,segmentReference:Ci,profiles:rs,duration:S,bitrate:Za,mime:qt,codecs:Ka,width:ui,height:br,fps:$n,quality:Li}}ge.language||(ge.language=Ft),ge.label||(ge.label=fr),ge.mime||(ge.mime=qt),ge.codecs||(ge.codecs=Ka),ge.hdr||(ge.hdr=$i==="video"&&sl(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 fr=ge.representations.find(qt=>qt.id===Ft.id),za=fr==null?void 0:fr.segmentReference,oi=Ft.segmentReference;oi.segments.push(...za.segments),oi.nextSegmentBeyondManifest=za.nextSegmentBeyondManifest}else r[$i].push(ge)}}return{duration:S,streams:r,baseUrls:n,live:y}};var Yv=G(Ne(),1),ml=require("@vkontakte/videoplayer-shared/es2015"),Se=(a,e)=>(0,ml.isNonNullable)(a)&&(0,ml.isNonNullable)(e)&&a.readyState==="open"&&(0,Yv.default)([...a.activeSourceBuffers],e);var Ca=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 Qg(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,Ju(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)&&Ju(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&&aa&&aa(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&aa&&aa(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,y=m>i||g||f===0&&i===0,S=Math.min(this.forwardBufferTarget,this.bufferLimit),I=this.preloadOnly&&m<=i+S||h<=i+S;return(d==="none"||d==="partially_ejected"&&y&&I&&this.sourceBuffer&&Se(this.mediaSource,this.sourceBuffer)&&!(ti(this.sourceBuffer.buffered,m)&&ti(this.sourceBuffer.buffered,h)))&&y&&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=$a(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]),La(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),La(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=$a(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 y=$a(u.mime);if(c.status==="downloading"&&g){c.status="downloaded";let S=new DataView(e.buffer,e.byteOffset+d,h);(yield this.sourceBufferTaskQueue.append(S,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 S=new DataView(e.buffer,e.byteOffset+d+l.feedingBytes,l.loadedBytes-l.feedingBytes),I=l.loadedBytes===h?S:y.parseFeedableSegmentChunk(S);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&&z.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",cl(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=Ku(()=>(0,zv.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,$a(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=cl(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=Ku(()=>{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 Da=a=>{let e=new URL(a);return e.searchParams.set("quic","1"),e.toString()};var Kv=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 Xv=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=Da(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Xv(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 B,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 X=new URL(c,location.href);X.searchParams.append("bytes",`${i.from}-${i.to}`),c=X.toString();break}default:(0,H.assertNever)(t)}this.requestQuic&&(c=Da(c));let h=this.abortAllController.signal,f;if(n){let X=new Le;if(f=(0,H.merge)((0,H.fromEvent)(this.abortAllController.signal,"abort"),(0,H.fromEvent)(n,"abort")).subscribe(()=>{try{X.abort()}catch(ue){ln(ue)}}),this.subscription.add(f),this.abortAllController.signal.aborted||n.aborted)try{X.abort()}catch(ue){ln(ue)}h=X.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 y=yield this.doFetch(c,{priority:s,headers:d,signal:h}),S=(0,H.now)();if(!y)return m.error("error",{message:"No response in request"}),m.end(),f==null||f.unsubscribe(),null;if((B=this.throughputEstimator)==null||B.addRawRtt(S-g),!y.ok||!y.body){f==null||f.unsubscribe();let X=`Fetch error ${y.status}: ${y.statusText}`;return m.error("error",{message:X}),m.end(),Promise.reject(new Error(`Fetch error ${y.status}: ${y.statusText}`))}if(this.onHeadersReceived(y.headers),!r&&!o){f==null||f.unsubscribe();let X=(0,H.now)(),ue={requestStartedAt:g,requestEndedAt:X,duration:X-g};return m.log("endRequest",(0,H.flattenObject)(ue)),m.end(),y.arrayBuffer()}let[I,x]=y.body.tee(),w=I.getReader();o&&((ie=this.throughputEstimator)==null||ie.trackStream(x,u));let P=0,O=new Uint8Array(0),Z=!1,ee=X=>{f==null||f.unsubscribe(),Z=!0,ln(X)},ne=(0,H.abortable)(h,function(C){return Te(this,arguments,function*({done:X,value:ue}){if(P===0&&this.lastRequestFirstBytes$.next((0,H.now)()-g),h.aborted){f==null||f.unsubscribe();return}if(!X&&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,ee)}})}.bind(this));yield w==null?void 0:w.read().then(ne,ee),f==null||f.unsubscribe();let k=(0,H.now)(),te={failed:Z,requestStartedAt:g,requestEndedAt:k,duration:k-g};return Z?(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 S;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=(S=e.indexRange)!=null?S: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 y=t.parseSegments(g,h,f);return{init:h,dataView:new DataView(d),segments:y}})}.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}=Kv(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(!La(a))throw a};var xi=(a,e,t)=>t*e+(1-t)*a,fl=(a,e)=>a.reduce((t,i)=>t+i,0)/e,Jv=(a,e,t,i)=>{let r=0,s=t,n=fl(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 Va=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 Va.ValueSubject(e.initial),this.debounced$=new Va.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,Va.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=fl(this.pastMeasures,this.takenMeasures);this.emaSmoothed=xi(this.emaSmoothed,e,this.params.emaAlpha);let i=Jv(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 bl=(a,e)=>{a&&a.playbackRate!==e&&(a.playbackRate=e)};var mn=require("@vkontakte/videoplayer-shared/es2015");var Oa=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=G(Jt(),1),gl=G(Ne(),1);var _a=require("@vkontakte/videoplayer-shared/es2015");var Zv=(a,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:r,protocols:s,codecs:n,nativeHlsSupported:o}=z.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,_a.assertNever)(c)}})},fn=a=>{let{webmDecodingInfo:e}=z.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,_a.assertNever)(a)}return[t,i]},eS=({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(z.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,_a.assertNever)(e)}return z.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},tS=({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=z.device.isMac&&z.browser.isSafari;if(z.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,_a.assertNever)(a)}else z.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"]},vl=a=>a?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],iS=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)},rS=a=>{let e=a.map(i=>gn(i)),{codecs:t}=z.video;return u$().filter(i=>{if((0,gl.default)(e,i))switch(i){case"av1":return t.av1;case"vp9":return t.vp9;case"avc1":return t.h264;case"hev1":return t.h265;default:return!1}else return!1})},aS=a=>{let e=a.map(i=>gn(i)),{codecs:t}=z.video;return l$().filter(i=>{if((0,gl.default)(e,i))switch(i){case"opus":return t.opus;case"mp4a":return t.aac;default:return!1}})},gn=a=>a.split(".")[0].replace("0",""),u$=()=>["av1","vp9","avc1","hev1"],l$=()=>["opus","mp4a"];var h$=["timeupdate","progress","play","seeked","stalled","waiting"],m$=["timeupdate","progress","loadeddata","playing","seeked"];var vn=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 u,l;this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(c=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:v.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:c})});if(!e)return null;let t=null;try{t=Wv(e!=null?e:"",this.manifestUrlString)}catch(c){let d=(u=qg(e))!=null?u:{id:"ManifestParsing",category:v.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:c};this.error$.next(d)}if(!t)return null;let i=(c,d,m)=>{var h,f,g,y;return!!((f=(h=this.element)==null?void 0:h.canPlayType)!=null&&f.call(h,d)&&((y=(g=ct())==null?void 0:g.isTypeSupported)!=null&&y.call(g,`${d}; codecs="${m}"`))||c==="text")};if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:c,latestSegmentPublishTime:d,streamIsUnpublished:m,streamIsAlive:h}=t.live,f=((l=t.duration)!=null?l:0)/1e3;this.liveSeekableDuration$.next(-1*f),this.liveDuration$.next((d-c)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let g="active";h||(g=m?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(g)}let r={text:t.streams.text,video:[],audio:[]},s,n;for(let c of["video","audio"]){let m=t.streams[c].filter(({mime:f,codecs:g})=>i(c,f,g));r[c]=m;let h;if(this.tuning.dash.codecsPrioritizeEnabled){let f=m.map(({codecs:g})=>g);c==="audio"&&(n=aS(f),h=n[0]),c==="video"&&(s=rS(f),this.forceVideoCodec&&(0,nS.default)(s,this.forceVideoCodec)?h=this.forceVideoCodec:h=s[0]),h&&(r[c]=m.filter(({codecs:g})=>gn(g)===h))}else{let f=new Set(m.map(({codecs:g})=>g));h=iS(f),h&&(r[c]=m.filter(({codecs:g})=>g.startsWith(h)))}if(c==="video"){let f=this.tuning.preferHDR,g=r.video.some(S=>S.hdr),y=r.video.some(S=>!S.hdr);z.display.isHDR&&f&&g?r.video=r.video.filter(S=>S.hdr):y&&(r.video=r.video.filter(S=>!S.hdr))}}let o=U(L({},t),{streams:r});return this.tuning.dash.codecsPrioritizeEnabled&&(o.codecs={video:s,audio:n}),this.tracer.log("updateManifestEnd",(0,v.flattenObject)(o)),o})}.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?Ib():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 Ca("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 Ca("audio",this.source,h,n),this.bufferManagers.push(this.audioBufferManager)}Oa.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Oa(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$));let u=()=>{var h;(h=this.stallWatchdogSubscription)==null||h.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,v.merge)(...m$.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()||bl(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:y})=>g&&y&&!!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:y})=>{let S=js(this.manifestUrlString,2);return(f/2+g+y+S)/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:y})=>{if(!y||!g)return;let S=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,I=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,x=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,w=f-S;if(this.isManualDecreasePlaybackInLive())return;let P=1;Math.abs(w)>I&&(P=1+Math.sign(w)*x),bl(this.element,P)})),this.representationSubscription.add(this.bufferLength$.subscribe(f=>{var y,S;let g=0;if(f){let I=((S=(y=this.element)==null?void 0:y.currentTime)!=null?S: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(y=>A(this,[y],function*({liveLoadBufferLength:f,bufferLength:g}){if(!this.element||this.isUpdatingLive)return;let S=this.element.playbackRate,I=js(this.manifestUrlString,2),x=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,w=Math.min(x,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*S),P=this.tuning.dashCmafLive.normalizedActualBufferOffset*S,O=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*S,Z=isFinite(f)?f:g,ee=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),ne=x<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(ne);let k="none";if(ee?k="active_low_latency":this.isLowLatency$.getValue()&&ne?(this.bufferManagers.forEach(te=>te.proceedLowLatencyLive()),k="active_low_latency"):I!==0&&Z<w?k="live_forward_buffering":Z<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),B=this.normolizeLiveOffset(Math.trunc(I+te/S)),ie=Math.abs(B-I),X=0;!f||ie<=this.tuning.dashCmafLive.offsetCalculationError?X=I:B>0&&ie>this.tuning.dashCmafLive.offsetCalculationError&&(X=B),this.manifestUrlString=$e(this.manifestUrlString,X,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 y;h&&(this.timeoutSourceOpenId=setTimeout(()=>{var S;if(((S=this.source)==null?void 0:S.readyState)==="open"){f();return}this.tuning.dash.rejectOnSourceOpenTimeout?g(new Error("Timeout reject when wait sourceopen event")):f()},this.tuning.dash.sourceOpenTimeout)),(y=this.source)==null||y.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),f()},{once:!0})})}if(!this.isLive$.getValue()){let h=[(m=this.manifest.duration)!=null?m:0,...(0,yl.default)((0,yl.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.forceVideoCodec=e.forceVideoCodec,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)(...h$.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,y,S,I,x,w,P,O,Z;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=(S=(y=this.audioBufferManager)==null?void 0:y.lastDataObtainedTimestamp)!=null?S: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 ee=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(ee).catch(ne=>{this.error$.next({id:"stallIntervalCallback",category:v.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:ne})}),r.liveLastOffset=ee}else{let ee=this.element.currentTime*1e3;(O=this.videoBufferManager)==null||O.maintain(ee),(Z=this.audioBufferManager)==null||Z.maintain(ee),r.position=ee}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}getCodecs(){var e;return(e=this.manifest)==null?void 0:e.codecs}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 Sn=class{constructor(e,t){this.fov=e,this.orientation=t}};var yn=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 oS=`attribute vec2 a_vertex;
124
+ `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(d,"i")}var xd=K(si(),1);var Ty=require("@vkontakte/videoplayer-shared/es2015"),Iy=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{var u;let o=(u=a?fi(a):void 0)!=null?u:(0,Ty.videoSizeToQuality)({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},xy=({id:s,bitrate:e})=>({id:s,bitrate:e}),Ey=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),wy=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Ed=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,xd.default)(i.split("."),0),isDefault:r}),wd=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,xd.default)(r.split("."),0)}),Pd=s=>"url"in s,It=s=>s.type==="template",bn=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var Py=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,Ad.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,Ay.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,Ad.default)(t,n,(o,u)=>(0,gn.isNullable)(a)?o:(0,gn.isNullable)(u)?a:(0,ky.default)(a,parseInt(u,10),"0"))}return t},Ly=(s,e)=>{var G,B,z,_,Z,Q,de,$,F,V,M,H,we,it,ye,me,Ne,Ue,qe,rt,jt,Qt,ui,vi,Wi,vs,ys,Ts,Is,xs,Es,ws,Ps,As,ks,Rs,Ls,Ms,$s,Bs,Ds,Cs,Vs,Os,_s,Fs,Ns,Us,qs,js,Hs,Gs,zs,Qs,Ws,Ys,Ks,Xs,Js,Zs,ea;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(Re=>{var Y,pt;return(pt=(Y=Re.textContent)==null?void 0:Y.trim())!=null?pt:""}),o=(G=(0,Ry.default)(n,0))!=null?G:"",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,b=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,y=a.getAttribute("mediaPresentationDuration"),x=[...a.getElementsByTagName("Period")],E=x.reduce((Re,Y)=>N(k({},Re),{[Y.id]:Y.children}),{}),P=x.reduce((Re,Y)=>N(k({},Re),{[Y.id]:Y.getAttribute("duration")}),{});y?v=Py(y):(0,kd.default)(P).filter(Re=>Re).length&&!u?v=(0,kd.default)(P).reduce((Re,Y)=>{var pt;return Re+((pt=Py(Y))!=null?pt:0)},0):b&&(v=parseInt(b,10));let D=0,j=(z=(B=a.getAttribute("profiles"))==null?void 0:B.split(","))!=null?z:[];for(let Re of x.map(Y=>Y.id))for(let Y of E[Re]){let pt=(_=Y.getAttribute("id"))!=null?_:"id"+(D++).toString(10),Wt=(Z=Y.getAttribute("mimeType"))!=null?Z:"",ur=(Q=Y.getAttribute("codecs"))!=null?Q:"",lr=(de=Y.getAttribute("contentType"))!=null?de:Wt==null?void 0:Wt.split("/")[0],zu=(F=($=Y.getAttribute("profiles"))==null?void 0:$.split(","))!=null?F:[],ta=(M=yy((V=Y.getAttribute("lang"))!=null?V:""))!=null?M:{},yi=(it=(we=(H=Y.querySelector("Label"))==null?void 0:H.textContent)==null?void 0:we.trim())!=null?it:void 0,Qu=Y.querySelectorAll("Representation"),Wu=Y.querySelector("SegmentTemplate"),Yu=(me=(ye=Y.querySelector("Role"))==null?void 0:ye.getAttribute("value"))!=null?me:void 0,Rt=lr,ne={id:pt,language:ta.language,isDefault:Yu==="main",label:yi,codecs:ur,hdr:Rt==="video"&&ds(ur),mime:Wt,representations:[]};for(let W of Qu){let Qe=(Ne=W.getAttribute("lang"))!=null?Ne:void 0,Yt=(qe=(Ue=yi!=null?yi:Y.getAttribute("label"))!=null?Ue:W.getAttribute("label"))!=null?qe:void 0,Ti=(Qt=(jt=(rt=W.querySelector("BaseURL"))==null?void 0:rt.textContent)==null?void 0:jt.trim())!=null?Qt:"",ht=new URL(Ti||o,e).toString(),We=(ui=W.getAttribute("mimeType"))!=null?ui:Wt,Ii=(Wi=(vi=W.getAttribute("codecs"))!=null?vi:ur)!=null?Wi:"",xi;if(lr==="text"){let Ye=W.getAttribute("id")||"",Ei=((vs=ta.privateuse)==null?void 0:vs.includes("x-auto"))||Ye.includes("_auto"),ft=W.querySelector("SegmentTemplate");if(ft){let Kt={representationId:(ys=W.getAttribute("id"))!=null?ys:void 0,bandwidth:(Ts=W.getAttribute("bandwidth"))!=null?Ts:void 0},wi=parseInt((Is=W.getAttribute("bandwidth"))!=null?Is:"",10)/1e3,Pi=(Es=parseInt((xs=ft.getAttribute("startNumber"))!=null?xs:"",10))!=null?Es:1,Lt=parseInt((ws=ft.getAttribute("timescale"))!=null?ws:"",10),cr=(Ps=ft.querySelectorAll("SegmentTimeline S"))!=null?Ps:[],Mt=ft.getAttribute("media");if(!Mt)continue;let Ai=[],ki=0,Ri="",$t=0,Xt=Pi,Se=0;for(let Le of cr){let mt=parseInt((As=Le.getAttribute("d"))!=null?As:"",10),Ie=parseInt((ks=Le.getAttribute("r"))!=null?ks:"",10)||0,Ke=parseInt((Rs=Le.getAttribute("t"))!=null?Rs:"",10);Se=Number.isFinite(Ke)?Ke:Se;let bt=mt/Lt*1e3,Xe=Se/Lt*1e3;for(let Ce=0;Ce<Ie+1;Ce++){let Je=Fi(Mt,N(k({},Kt),{segmentNumber:Xt.toString(10),segmentTime:(Se+Ce*mt).toString(10)})),Bt=(Xe!=null?Xe:0)+Ce*bt,Zt=Bt+bt;Xt++,Ai.push({time:{from:Bt,to:Zt},url:Je})}Se+=(Ie+1)*mt,ki+=(Ie+1)*bt}$t=Se/Lt*1e3,Ri=Fi(Mt,N(k({},Kt),{segmentNumber:Xt.toString(10),segmentTime:Se.toString(10)}));let Jt={time:{from:$t,to:1/0},url:Ri},je={type:"template",baseUrl:ht,segmentTemplateUrl:Mt,initUrl:"",totalSegmentsDurationMs:ki,segments:Ai,nextSegmentBeyondManifest:Jt,timescale:Lt};xi={id:Ye,kind:"text",segmentReference:je,profiles:[],duration:v,bitrate:wi,mime:"",codecs:"",width:0,height:0,isAuto:Ei}}else xi={id:Ye,isAuto:Ei,kind:"text",url:ht}}else{let Ye=(Ms=(Ls=W.getAttribute("contentType"))!=null?Ls:We==null?void 0:We.split("/")[0])!=null?Ms:lr,Ei=(Bs=($s=Y.getAttribute("profiles"))==null?void 0:$s.split(","))!=null?Bs:[],ft=parseInt((Ds=W.getAttribute("width"))!=null?Ds:"",10),Kt=parseInt((Cs=W.getAttribute("height"))!=null?Cs:"",10),wi=parseInt((Vs=W.getAttribute("bandwidth"))!=null?Vs:"",10)/1e3,Pi=(Os=W.getAttribute("frameRate"))!=null?Os:"",Lt=(_s=W.getAttribute("quality"))!=null?_s:void 0,cr=Pi?fu(Pi):void 0,Mt=(Fs=W.getAttribute("id"))!=null?Fs:"id"+(D++).toString(10),Ai=Ye==="video"?`${Kt}p`:Ye==="audio"?`${wi}Kbps`:Ii,ki=`${Mt}@${Ai}`,Ri=[...j,...zu,...Ei],$t,Xt=W.querySelector("SegmentBase"),Se=(Ns=W.querySelector("SegmentTemplate"))!=null?Ns:Wu;if(Xt){let je=(qs=(Us=W.querySelector("SegmentBase Initialization"))==null?void 0:Us.getAttribute("range"))!=null?qs:"",[Le,mt]=je.split("-").map(Je=>parseInt(Je,10)),Ie={from:Le,to:mt},Ke=(js=W.querySelector("SegmentBase"))==null?void 0:js.getAttribute("indexRange"),[bt,Xe]=Ke?Ke.split("-").map(Je=>parseInt(Je,10)):[],Ce=Ke?{from:bt,to:Xe}:void 0;$t={type:"byteRange",url:ht,initRange:Ie,indexRange:Ce}}else if(Se){let je={representationId:(Hs=W.getAttribute("id"))!=null?Hs:void 0,bandwidth:(Gs=W.getAttribute("bandwidth"))!=null?Gs:void 0},Le=parseInt((zs=Se.getAttribute("timescale"))!=null?zs:"",10),mt=(Qs=Se.getAttribute("initialization"))!=null?Qs:"",Ie=Se.getAttribute("media"),Ke=(Ys=parseInt((Ws=Se.getAttribute("startNumber"))!=null?Ws:"",10))!=null?Ys:1,bt=Fi(mt,je);if(!Ie)throw new ReferenceError("No media attribute in SegmentTemplate");let Xe=(Ks=Se.querySelectorAll("SegmentTimeline S"))!=null?Ks:[],Ce=[],Je=0,Bt="",Zt=0;if(Xe.length){let Li=Ke,Me=0;for(let Dt of Xe){let Ve=parseInt((Xs=Dt.getAttribute("d"))!=null?Xs:"",10),gt=parseInt((Js=Dt.getAttribute("r"))!=null?Js:"",10)||0,Mi=parseInt((Zs=Dt.getAttribute("t"))!=null?Zs:"",10);Me=Number.isFinite(Mi)?Mi:Me;let dr=Ve/Le*1e3,pr=Me/Le*1e3;for(let $i=0;$i<gt+1;$i++){let Xu=Fi(Ie,N(k({},je),{segmentNumber:Li.toString(10),segmentTime:(Me+$i*Ve).toString(10)})),ia=(pr!=null?pr:0)+$i*dr,Ju=ia+dr;Li++,Ce.push({time:{from:ia,to:Ju},url:Xu})}Me+=(gt+1)*Ve,Je+=(gt+1)*dr}Zt=Me/Le*1e3,Bt=Fi(Ie,N(k({},je),{segmentNumber:Li.toString(10),segmentTime:Me.toString(10)}))}else if((0,gn.isNonNullable)(v)){let Me=parseInt((ea=Se.getAttribute("duration"))!=null?ea:"",10)/Le*1e3,Dt=Math.ceil(v/Me),Ve=0;for(let gt=1;gt<Dt;gt++){let Mi=Fi(Ie,N(k({},je),{segmentNumber:gt.toString(10),segmentTime:Ve.toString(10)}));Ce.push({time:{from:Ve,to:Ve+Me},url:Mi}),Ve+=Me}Zt=Ve,Bt=Fi(Ie,N(k({},je),{segmentNumber:Dt.toString(10),segmentTime:Ve.toString(10)}))}let Ku={time:{from:Zt,to:1/0},url:Bt};$t={type:"template",baseUrl:ht,segmentTemplateUrl:Ie,initUrl:bt,totalSegmentsDurationMs:Je,segments:Ce,nextSegmentBeyondManifest:Ku,timescale:Le}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Ye||!We)continue;let Jt={video:"video",audio:"audio",text:"text"}[Ye];if(!Jt)continue;Rt||(Rt=Jt),xi={id:ki,kind:Jt,segmentReference:$t,profiles:Ri,duration:v,bitrate:wi,mime:We,codecs:Ii,width:ft,height:Kt,fps:cr,quality:Lt}}ne.language||(ne.language=Qe),ne.label||(ne.label=Yt),ne.mime||(ne.mime=We),ne.codecs||(ne.codecs=Ii),ne.hdr||(ne.hdr=Rt==="video"&&ds(Ii)),ne.representations.push(xi)}if(Rt){let W=r[Rt].find(Qe=>Qe.id===ne.id);if(W&&ne.representations.every(Qe=>It(Qe.segmentReference)))for(let Qe of W.representations){let Yt=ne.representations.find(We=>We.id===Qe.id),Ti=Yt==null?void 0:Yt.segmentReference,ht=Qe.segmentReference;ht.segments.push(...Ti.segments),ht.nextSegmentBeyondManifest=Ti.nextSegmentBeyondManifest}else r[Rt].push(ne)}}return{duration:v,streams:r,baseUrls:n,live:S}};var Ld=require("@vkontakte/videoplayer-shared/es2015"),oe=(s,e)=>(0,Ld.isNonNullable)(s)&&(0,Ld.isNonNullable)(e)&&s.readyState==="open"&&XM(s,e);function XM(s,e){for(let t=0;t<s.activeSourceBuffers.length;++t)if(s.activeSourceBuffers[t]===e)return!0;return!1}var Sn=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new R.ValueSubject(0);this.currentLowLatencySegmentLength$=new R.ValueSubject(0);this.currentSegmentLength$=new R.ValueSubject(0);this.onLastSegment$=new R.ValueSubject(!1);this.fullyBuffered$=new R.ValueSubject(!1);this.playingRepresentation$=new R.ValueSubject(void 0);this.playingRepresentationInit$=new R.ValueSubject(void 0);this.error$=new R.Subject;this.gaps=[];this.subscription=new R.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new Te;this.switchAbortController=new Te;this.destroyAbortController=new Te;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,R.abortable)(this.destroyAbortController.signal,function(e){return pe(this,null,function*(){let t=this.representations.get(e);(0,R.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 Mv(this.sourceBuffer),this.subscription.add((0,R.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:R.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o!=null||(o={id:"SegmentEjection",category:R.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),this.error$.next(o)})),this.subscription.add((0,R.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:R.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!oe(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,us(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=this.getForwardBufferDuration(o),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<d).catch(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,R.assertNonNullable)(i,"No init buffer for starting representation"),(0,R.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,R.abortable)(this.destroyAbortController.signal,function(e,t=!1){return pe(this,null,function*(){if(!oe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,R.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,R.isNullable)(a)||(0,R.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,R.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!oe(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,R.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,yield new hr(this.pruneBuffer(n,1/0,!0))),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}})}.bind(this));this.switchToOld=(0,R.abortable)(this.destroyAbortController.signal,function(e,t=!1){return pe(this,null,function*(){if(!oe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,R.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,R.isNullable)(a)||(0,R.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,R.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!oe(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,R.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,yield new hr(this.pruneBuffer(n,1/0,!0))),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}})}.bind(this));this.seekLive=(0,R.abortable)(this.destroyAbortController.signal,function(e){return pe(this,null,function*(){var u,l;let t=(u=(0,bu.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||!It(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,R.assertNonNullable)(r);let a=this.segments.get(i);(0,R.assertNonNullable)(a,"No segments for starting representation");let n=this.initData.get(i);if((0,R.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){!oe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new Te,(0,R.abortable)(this.switchAbortController.signal,function(i,r=!1){return pe(this,null,function*(){this.switchingToRepresentationId=i;let a=this.representations.get(i);(0,R.assertNonNullable)(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,R.isNullable)(o)||(0,R.isNullable)(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,R.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!oe(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,R.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,R.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 Te,this.abortBuffer()})}maintain(e=this.getCurrentPosition()){if((0,R.isNullable)(e)||(0,R.isNullable)(this.downloadingRepresentationId)||(0,R.isNullable)(this.playingRepresentationId)||(0,R.isNullable)(this.sourceBuffer)||!oe(this.mediaSource,this.sourceBuffer)||(0,R.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,R.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(d=>e>=d.time.from&&e<d.time.to);(0,R.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=this.getForwardBufferDuration(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)&&us(this.sourceBuffer.buffered)>=this.bufferLimit){let d=this.getForwardBufferDuration(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=[];if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u.length)){let d="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,mu.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.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,ps.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-this.getForwardBufferDuration(e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let a of e)Math.trunc(a.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:a.time.from+r}),i=a.time.to;(0,R.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,bu.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,bu.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||!It(o.segmentReference))return;let u=o.segmentReference.segments.map(p=>N(k({},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,R.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 a=r.segmentReference;if(!It(a))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*a.timescale/1e3).toString(10),d=Fi(a.segmentTemplateUrl,{segmentTime:l});n.push({status:"none",time:{from:e.time.to,to:1/0},url:d})}}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&&gi&&gi(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&gi&&gi(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:c,time:{from:h,to:p}},f)=>{let b=h<=i&&p>=i,S=h>i||b||f===0&&i===0,v=Math.min(this.forwardBufferTarget,this.bufferLimit),y=this.preloadOnly&&h<=i+v||p<=i+v;return(c==="none"||c==="partially_ejected"&&S&&y&&this.sourceBuffer&&oe(this.mediaSource,this.sourceBuffer)&&!(dt(this.sourceBuffer.buffered,h)&&dt(this.sourceBuffer.buffered,p)))&&S&&y});if(r===-1)return[];if(t!=="byteRange")return e.slice(r,r+1);let a=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,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 A(this,null,function*(){It(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:a,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(yield(0,R.abortable)(o,function(){return pe(this,null,function*(){let d=(0,R.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,R.now)(),!d)return;let c=new DataView(d),h=mn(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=h.getChunkEndTime(c,b)}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]),bn(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())It(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:a,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(yield(0,R.abortable)(n,function(){return pe(this,null,function*(){let u=(0,R.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,R.fromEvent)(window,"online").pipe((0,R.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,R.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),bn(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}prepareByteRangeFetchSegmentParams(e,t){if(It(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)=>A(this,null,function*(){if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,R.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:R.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}})}}prepareTemplateFetchSegmentParams(e,t){if(!It(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,R.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:R.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,mu.default)(e,t.segment)&&this.abortSegment(t.segment)}onSomeTemplateDataLoaded(n){return A(this,arguments,function*({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!oe(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=mn(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 A(this,arguments,function*({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!oe(this.mediaSource,this.sourceBuffer))return;let u=this.representations.get(t);if(u)for(let l of this.activeSegments){let{segment:d}=l;if(l.representationId!==t)continue;if(a.aborted){yield n();continue}let c=d.byte.from-i,h=d.byte.to-i,p=h-c+1,f=c<r,b=h<=r;if(!f)continue;let S=mn(u.mime);if(d.status==="downloading"&&b){d.status="downloaded";let v=new DataView(e.buffer,e.byteOffset+c,p);(yield this.sourceBufferTaskQueue.append(v,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 v=new DataView(e.buffer,e.byteOffset+c+l.feedingBytes,l.loadedBytes-l.feedingBytes),y=l.loadedBytes===p?v:S.parseFeedableSegmentChunk(v);y!=null&&y.byteLength&&(d.status="partially_fed",l.feedingBytes+=y.byteLength,(yield this.sourceBufferTaskQueue.append(y,a))&&!a.aborted?(l.fedBytes+=y.byteLength,l.fedBytes===p&&this.onSegmentFullyAppended(l,t)):yield n())}}})}onSegmentFullyAppended(e,t){var i;if(!((0,R.isNullable)(this.sourceBuffer)||!oe(this.mediaSource,this.sourceBuffer))){!this.isLive&&te.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(dt(this.sourceBuffer.buffered,e.segment.time.from,100)&&dt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:R.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",Pd(e.segment)&&(e.segment.size=e.fedBytes);for(let r of this.representations.values())if(r.id!==t)for(let a of(i=this.segments.get(r.id))!=null?i:[])a.status==="fed"&&Math.round(a.time.from)===Math.round(e.segment.time.from)&&Math.round(a.time.to)===Math.round(e.segment.time.to)&&(a.status="none");this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,[e.segment])}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[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=os(()=>(0,My.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,R.abortable)(this.destroyAbortController.signal,function(){return pe(this,null,function*(){let o=(0,R.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))})}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,mn(e.mime),r)).then(o=>A(this,null,function*(){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&&It(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:R.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||!oe(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,R.isNullable)(e))return!1;let r=[],a=0,n=u=>{u.sort((d,c)=>d.from-c.from);let l=[u[0]];for(let d=1;d<u.length;d++){let{from:c,to:h}=u[d],p=l[l.length-1];p.to>=c?p.to=Math.max(p.to,h):l.push(u[d])}return l},o=u=>{var d;if(a>=t)return r;r.push(k({},u.time)),r=n(r);let l=Pd(u)?(d=u.size)!=null?d:0:u.byte.to-u.byte.from;a+=l};for(let u of this.segments.values())for(let l of u){let d=l.time.to<=e-this.tuning.dash.bufferPruningSafeZone,c=l.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(d||c)&&l.status==="fed"&&o(l)}for(let u=0;u<this.sourceBuffer.buffered.length;u++){let l=this.sourceBuffer.buffered.start(u)*1e3,d=this.sourceBuffer.buffered.end(u)*1e3,c=0;for(let h of this.segments.values())for(let p of h)(0,mu.default)(["none","partially_ejected"],p.status)&&Math.round(p.time.from)<=Math.round(l)&&Math.round(p.time.to)>=Math.round(d)&&c++;if(c===this.segments.size){let h={time:{from:l,to:d},url:"",status:"none"};o(h)}}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 d of l)d.time.from>=e+u&&d.status==="fed"&&o(d)}return r.length?(yield Promise.all(r.map(l=>this.sourceBufferTaskQueue.remove(l.from,l.to)))).reduce((l,d)=>l||d,!1):!1})}abortBuffer(){return A(this,null,function*(){if(!this.sourceBuffer||!oe(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||!oe(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||!oe(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,R.isNullable)(e)?0:tt(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!oe(this.mediaSource,this.sourceBuffer))){if(this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));for(let i of t){let r={representation:e,from:i.time.from,to:i.time.to};for(let a=0;a<this.sourceBuffer.buffered.length;a++){let n=this.sourceBuffer.buffered.start(a)*1e3,o=this.sourceBuffer.buffered.end(a)*1e3;if(!(o<=i.time.from||n>=i.time.to)){if(n<=i.time.from&&o>=i.time.to){r=void 0;break}o>i.time.from&&o<i.time.to&&(r.from=o),n<i.time.to&&n>i.time.from&&(r.to=n)}}r&&r.to-r.from>1&&!this.gaps.some(a=>r&&a.from===r.from&&a.to===r.to)&&this.gaps.push(r)}}}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!oe(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=os(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:R.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,R.isNullable)(this.sourceBuffer)||!oe(this.mediaSource,this.sourceBuffer)||(0,R.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:R.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var sr=s=>{let e=new URL(s);return e.searchParams.set("quic","1"),e.toString()};var gu=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 se=require("@vkontakte/videoplayer-shared/es2015");var Su=s=>{let e=new URL(s);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var yu=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 Te;this.subscription=new se.Subscription;this.fetchManifest=(0,se.abortable)(this.abortAllController.signal,function(e){return pe(this,null,function*(){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=sr(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Su(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(vu);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 pe(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 _,Z;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 Q=new URL(d,location.href);Q.searchParams.append("bytes",`${i.from}-${i.to}`),d=Q.toString();break}default:(0,se.assertNever)(t)}this.requestQuic&&(d=sr(d));let p=this.abortAllController.signal,f;if(n){let Q=new Te;if(f=(0,se.merge)((0,se.fromEvent)(this.abortAllController.signal,"abort"),(0,se.fromEvent)(n,"abort")).subscribe(()=>{try{Q.abort()}catch(de){vu(de)}}),this.subscription.add(f),this.abortAllController.signal.aborted||n.aborted)try{Q.abort()}catch(de){vu(de)}p=Q.signal}let b=(0,se.now)();h.log("startRequest",(0,se.flattenObject)({url:d,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:b}));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(),f==null||f.unsubscribe(),null;if((_=this.throughputEstimator)==null||_.addRawRtt(v-b),!S.ok||!S.body){f==null||f.unsubscribe();let Q=`Fetch error ${S.status}: ${S.statusText}`;return h.error("error",{message:Q}),h.end(),Promise.reject(new Error(`Fetch error ${S.status}: ${S.statusText}`))}if(this.onHeadersReceived(S.headers),!r&&!o){f==null||f.unsubscribe();let Q=(0,se.now)(),de={requestStartedAt:b,requestEndedAt:Q,duration:Q-b};return h.log("endRequest",(0,se.flattenObject)(de)),h.end(),S.arrayBuffer()}let[y,x]=S.body.tee(),E=y.getReader();o&&((Z=this.throughputEstimator)==null||Z.trackStream(x,u));let P=0,D=new Uint8Array(0),j=!1,U=Q=>{f==null||f.unsubscribe(),j=!0,vu(Q)},G=(0,se.abortable)(p,function($){return pe(this,arguments,function*({done:Q,value:de}){if(P===0&&this.lastRequestFirstBytes$.next((0,se.now)()-b),p.aborted){f==null||f.unsubscribe();return}if(!Q&&de){let F=new Uint8Array(D.length+de.length);F.set(D),F.set(de,D.length),D=F,P+=de.byteLength,r==null||r(new DataView(D.buffer),P),yield E==null?void 0:E.read().then(G,U)}})}.bind(this));yield E==null?void 0:E.read().then(G,U),f==null||f.unsubscribe();let B=(0,se.now)(),z={failed:j,requestStartedAt:b,requestEndedAt:B,duration:B-b};return j?(h.error("endRequest",(0,se.flattenObject)(z)),h.end(),null):(h.log("endRequest",(0,se.flattenObject)(z)),h.end(),D.buffer)})}.bind(this));this.fetchByteRangeRepresentation=(0,se.abortable)(this.abortAllController.signal,function(e,t,i){return pe(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 b;if(u)b=new DataView(c,f.from-n,f.to-f.from+1);else{let y=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!y)return null;b=new DataView(y)}let S=t.parseSegments(b,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 pe(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(k({},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}=gu(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}fetchRepresentation(e,t,i="auto"){return A(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.subscription.unsubscribe(),this.tracer.end()}doFetch(e,t){return A(this,null,function*(){let i=yield Gt(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})}})}},vu=s=>{if(!bn(s))throw s};var Ni=(s,e,t)=>t*e+(1-t)*s,Md=(s,e)=>s.reduce((t,i)=>t+i,0)/e,$y=(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 vn=require("@vkontakte/videoplayer-shared/es2015");var ar=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 vn.ValueSubject(e.initial),this.debounced$=new vn.ValueSubject(e.initial);let t=(i=e.label)!=null?i:"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new yt(`raw_${t}`),this.smoothedSeries$=new yt(`smoothed_${t}`),this.reportedSeries$=new yt(`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+=St(this.pastMeasures[o]-this.smoothed,2),i++);this.takenMeasures=i,t/=i;let r=Math.sqrt(t),a=this.smoothed+this.params.deviationFactor*r,n=this.smoothed-this.params.deviationFactor*r;this.pastMeasures[this.measuresCursor]=e,this.measuresCursor=(this.measuresCursor+1)%this.pastMeasures.length,this.rawSeries$.next(e),this.updateSmoothedValue(e),this.smoothed$.next(this.smoothed),this.smoothedSeries$.next(this.smoothed),!(this.smoothed>a||this.smoothed<n)&&((0,vn.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 Tu=class extends ar{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=Ni(this.slow,e,this.params.emaAlphaSlow),this.fast=Ni(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var Iu=class extends ar{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=Md(this.pastMeasures,this.takenMeasures);this.emaSmoothed=Ni(this.emaSmoothed,e,this.params.emaAlpha);let i=$y(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var xu=class extends ar{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?Ni(this.smoothed,t,this.params.emaAlpha):t}};var Ui=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new Tu({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new Iu({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 xu(k({initial:e,label:"liveEdgeDelay"},t))}};var hs=(s,e)=>{s&&s.playbackRate!==e&&(s.playbackRate=e)};var Eu=require("@vkontakte/videoplayer-shared/es2015");var yn=class s{constructor(e,t){this.currentRepresentation$=new Eu.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,Eu.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(k({},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&&It(t.segmentReference))}};var Pu=K(si(),1);var Tn=require("@vkontakte/videoplayer-shared/es2015");var By=(s,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:r,protocols:a,codecs:n,nativeHlsSupported:o}=te.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,Tn.assertNever)(d)}})},wu=s=>{let{webmDecodingInfo:e}=te.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,Tn.assertNever)(s)}return[t,i]},Dy=({webmCodec:s,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...wu(s),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],r=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(te.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",...wu(s),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...wu(s),"MPEG",...r,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...wu(s),...r,"HLS","HLS_ONDEMAND"];default:(0,Tn.assertNever)(e)}return te.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},Cy=({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=te.device.isMac&&te.browser.isSafari;if(te.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,Tn.assertNever)(s)}else te.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"]},$d=s=>s?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],Au=s=>{if(s.size===0)return;if(s.size===1){let t=s.values().next();return(0,Pu.default)(t.value.split("."),0)}for(let t of s){let i=(0,Pu.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=s.values().next();return(0,Pu.default)(e.value.split("."),0)};var i$=["timeupdate","progress","play","seeked","stalled","waiting"],r$=["timeupdate","progress","loadeddata","playing","seeked"];var ku=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new I.Subscription;this.representationSubscription=new I.Subscription;this.state$=new re("none");this.currentVideoRepresentation$=new I.ValueSubject(void 0);this.currentVideoRepresentationInit$=new I.ValueSubject(void 0);this.currentAudioRepresentation$=new I.ValueSubject(void 0);this.currentVideoSegmentLength$=new I.ValueSubject(0);this.currentAudioSegmentLength$=new I.ValueSubject(0);this.error$=new I.Subject;this.lastConnectionType$=new I.ValueSubject(void 0);this.lastConnectionReused$=new I.ValueSubject(void 0);this.lastRequestFirstBytes$=new I.ValueSubject(void 0);this.currentLiveTextRepresentation$=new I.ValueSubject(null);this.isLive$=new I.ValueSubject(!1);this.isActiveLive$=new I.ValueSubject(!1);this.isLowLatency$=new I.ValueSubject(!1);this.liveDuration$=new I.ValueSubject(0);this.liveSeekableDuration$=new I.ValueSubject(0);this.liveAvailabilityStartTime$=new I.ValueSubject(0);this.liveStreamStatus$=new I.ValueSubject(void 0);this.bufferLength$=new I.ValueSubject(0);this.liveLatency$=new I.ValueSubject(void 0);this.liveLoadBufferLength$=new I.ValueSubject(0);this.livePositionFromPlayer$=new I.ValueSubject(0);this.currentStallDuration$=new I.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new I.ValueSubject(0);this.fetcherRecoverableError$=new I.Subject;this.fetcherError$=new I.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new I.Subject;this.gapWatchdogActive=!1;this.destroyController=new Te;this.initManifest=(0,I.abortable)(this.destroyController.signal,function(e,t,i){return pe(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:I.ErrorCategory.PARSER,message:"No playable video representations"})})}.bind(this));this.updateManifest=(0,I.abortable)(this.destroyController.signal,function(){return pe(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:I.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=Ly(e!=null?e:"",this.manifestUrlString)}catch(u){let l=(n=hu(e))!=null?n:{id:"ManifestParsing",category:I.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=Nt())==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=Au(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),b=r.video.some(S=>!S.hdr);te.display.isHDR&&p&&f?r.video=r.video.filter(S=>S.hdr):b&&(r.video=r.video.filter(S=>!S.hdr))}}let a=N(k({},t),{streams:r});return this.tracer.log("updateManifestEnd",(0,I.flattenObject)(a)),a})}.bind(this));this.initRepresentations=(0,I.abortable)(this.destroyController.signal,function(e,t,i){return pe(this,null,function*(){var h;this.tracer.log("initRepresentationsStart",(0,I.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,I.assertNonNullable)(this.manifest),(0,I.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let r=p=>{this.representationSubscription.add((0,I.fromEvent)(p,"error").pipe((0,I.filter)(f=>{var b;return!!((b=this.element)!=null&&b.played.length)})).subscribe(f=>{this.error$.next({id:"VideoSource",category:I.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:f})}))};this.source=this.tuning.useManagedMediaSource?Jo():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&es())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 Sn("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,I.isNonNullable)(t)){let p=this.manifest.streams.audio.reduce((f,b)=>[...f,...b.representations],[]);this.audioBufferManager=new Sn("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}yn.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new yn(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,I.merge)(...r$.map(p=>(0,I.fromEvent)(this.element,p))).pipe((0,I.map)(p=>this.element?tt(this.element.buffered,this.element.currentTime*1e3):0),(0,I.filterChanged)(),(0,I.tap)(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,I.merge)((0,I.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,I.filterChanged)()).subscribe(f=>this.liveStreamEndTimestamp=(0,I.now)())),this.subscription.add((0,I.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,I.interval)(1e3).subscribe(f=>{let b=Ji(this.manifestUrlString,2);this.manifestUrlString=_e(this.manifestUrlString,b+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,I.fromEvent)(this.element,"play").subscribe(f=>{var b;return(b=this.livePauseWatchdogSubscription)==null?void 0:b.unsubscribe()})),this.representationSubscription.add((0,I.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,I.map)(({isActiveLive:f,isLowLatency:b})=>f&&b),(0,I.filterChanged)()).subscribe(f=>{this.isManualDecreasePlaybackInLive()||hs(this.element,1)})),this.representationSubscription.add((0,I.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,I.filter)(({bufferLength:f,isActiveLive:b,isLowLatency:S})=>b&&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 b=this.liveSeekableDuration$.getValue()-f/1e3;this.liveSeekableDuration$.next(Math.max(b,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+f/1e3)})),this.representationSubscription.add((0,I.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,I.filter)(({isLive:f})=>f),(0,I.filterChanged)((f,b)=>b.bufferLength<f.bufferLength),(0,I.map)(({rtt:f,bufferLength:b,segmentServerLatency:S})=>{let v=Ji(this.manifestUrlString,2);return(f/2+b+S+v)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,I.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:f,isActiveLive:b,isLowLatency:S})=>{if(!S||!b)return;let v=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,y=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,x=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,E=f-v;if(this.isManualDecreasePlaybackInLive())return;let P=1;Math.abs(E)>y&&(P=1+Math.sign(E)*x),hs(this.element,P)})),this.representationSubscription.add(this.bufferLength$.subscribe(f=>{var S,v;let b=0;if(f){let y=((v=(S=this.element)==null?void 0:S.currentTime)!=null?v:0)*1e3;b=Math.min(...this.bufferManagers.map(E=>{var P,D;return(D=(P=E.getLiveSegmentsToLoadState(this.manifest))==null?void 0:P.to)!=null?D:y}))-y}this.liveLoadBufferLength$.getValue()!==b&&this.liveLoadBufferLength$.next(b)}));let p=0;this.representationSubscription.add((0,I.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,I.throttle)(1e3)).subscribe(S=>A(this,[S],function*({liveLoadBufferLength:f,bufferLength:b}){if(!this.element||this.isUpdatingLive)return;let v=this.element.playbackRate,y=Ji(this.manifestUrlString,2),x=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,E=Math.min(x,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*v),P=this.tuning.dashCmafLive.normalizedActualBufferOffset*v,D=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*v,j=isFinite(f)?f:b,U=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),G=x<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(G);let B="none";if(U?B="active_low_latency":this.isLowLatency$.getValue()&&G?(this.bufferManagers.forEach(z=>z.proceedLowLatencyLive()),B="active_low_latency"):y!==0&&j<E?B="live_forward_buffering":j<E+D&&(B="live_with_target_offset"),isFinite(f)&&(p=f>p?f:p),B==="live_forward_buffering"||B==="live_with_target_offset"){let z=p-(E+P),_=this.normolizeLiveOffset(Math.trunc(y+z/v)),Z=Math.abs(_-y),Q=0;!f||Z<=this.tuning.dashCmafLive.offsetCalculationError?Q=y:_>0&&Z>this.tuning.dashCmafLive.offsetCalculationError&&(Q=_),this.manifestUrlString=_e(this.manifestUrlString,Q,2)}(B==="live_with_target_offset"||B==="live_forward_buffering")&&(p=0,yield this.updateLive())}),f=>{this.error$.next({id:"updateLive",category:I.ErrorCategory.VIDEO_PIPELINE,thrown:f,message:"Failed to update live with subscription"})}))}let l=(0,I.merge)(...this.bufferManagers.map(p=>p.fullyBuffered$)).pipe((0,I.map)(()=>this.bufferManagers.every(p=>p.fullyBuffered$.getValue()))),d=(0,I.merge)(...this.bufferManagers.map(p=>p.onLastSegment$)).pipe((0,I.map)(()=>this.bufferManagers.some(p=>p.onLastSegment$.getValue()))),c=(0,I.combine)({allBuffersFull:l,someBufferEnded:d}).pipe((0,I.filterChanged)(),(0,I.map)(({allBuffersFull:p,someBufferEnded:f})=>p&&f),(0,I.filter)(p=>p));if(this.representationSubscription.add((0,I.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:I.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:f})}})),this.representationSubscription.add((0,I.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,b)=>{var S;p&&(this.timeoutSourceOpenId=setTimeout(()=>{var v;if(((v=this.source)==null?void 0:v.readyState)==="open"){f();return}this.tuning.dash.rejectOnSourceOpenTimeout?b(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 b=[];return f.duration&&b.push(f.duration),It(f.segmentReference)&&f.segmentReference.totalSegmentsDurationMs&&b.push(f.segmentReference.totalSegmentsDurationMs),b})];this.source.duration=Math.max(...p)/1e3}this.audioBufferManager&&(0,I.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,I.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),n=>{this.error$.next({id:"GapWatchdog",category:I.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 yu({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=Ui.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,k({},e.tuning.dashCmafLive.lowLatency.bufferEstimator)),this.initTracerSubscription()}seekLive(e){return A(this,null,function*(){var r,a,n;(0,I.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,I.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(a=this.audioBufferManager)==null?void 0:a.seekLive(this.manifest.streams.audio),(n=this.liveTextManager)==null||n.seekLive(this.manifest.streams.text))})}initBuffer(){(0,I.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,I.merge)(...i$.map(e=>(0,I.fromEvent)(this.element,e)),(0,I.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:I.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,I.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,I.fromEvent)(this.element,"waiting").subscribe(()=>{var t;this.element&&this.element.readyState===2&&!this.element.seeking&&dt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{var p,f,b,S,v,y,x,E,P,D,j;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,I.now)(),n=100,o=(b=(f=this.videoBufferManager)==null?void 0:f.lastDataObtainedTimestamp)!=null?b:0;this.videoLastDataObtainedTimestamp$.next(o);let u=(v=(S=this.audioBufferManager)==null?void 0:S.lastDataObtainedTimestamp)!=null?v:0,l=(x=(y=this.videoBufferManager)==null?void 0:y.getForwardBufferDuration())!=null?x:0,d=(P=(E=this.audioBufferManager)==null?void 0:E.getForwardBufferDuration())!=null?P: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 U=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(U).catch(G=>{this.error$.next({id:"stallIntervalCallback",category:I.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:G})}),r.liveLastOffset=U}else{let U=this.element.currentTime*1e3;(D=this.videoBufferManager)==null||D.maintain(U),(j=this.audioBufferManager)==null||j.maintain(U),r.position=U}this.tracer.log("stallIntervalCallback",(0,I.flattenObject)(r))};(t=this.stallWatchdogSubscription)==null||t.unsubscribe(),this.stallWatchdogSubscription=(0,I.interval)(50).subscribe(e,i=>{this.error$.next({id:"StallWatchdogCallback",category:I.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,a,n,o,u;(0,I.assertNonNullable)(this.element),(0,I.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),dt(this.element.buffered,i)||(yield Promise.all([this.videoBufferManager.abort(),(o=this.audioBufferManager)==null?void 0:o.abort()])),!((0,I.isNullable)(this.element)||(0,I.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),(u=this.audioBufferManager)==null||u.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,I.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))})}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){var i;(0,I.isNonNullable)(this.element)&&(0,I.isNonNullable)(this.source)&&(0,I.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,I.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,a=[],n=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let o of this.bufferManagers)for(let u of o.gaps)o.playingRepresentation$.getValue()===u.representation&&u.from-n<=r&&u.to+n>r&&(this.element.duration*1e3-u.to<this.tuning.endGapTolerance?a.push(1/0):a.push(u.to));if(a.length){let o=Math.max(...a)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,o===1/0?this.forceEnded$.next():(this.element.currentTime=o/1e3,i=N(k({},i),{gapEnds:a,jumpTo:o,resultCurrentTime:this.element.currentTime}),this.tracer.log("jumpGap",(0,I.flattenObject)(i)))}}};var Ru=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/St(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=k({},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*St(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 _y=`attribute vec2 a_vertex;
71
125
  attribute vec2 a_texel;
72
126
 
73
127
  varying vec2 v_texel;
@@ -78,7 +132,7 @@ void main(void) {
78
132
  // save texel vector to pass to fragment shader
79
133
  v_texel = a_texel;
80
134
  }
81
- `;var uS=`#ifdef GL_ES
135
+ `;var Fy=`#ifdef GL_ES
82
136
  precision highp float;
83
137
  precision highp int;
84
138
  #else
@@ -121,6 +175,13 @@ void main(void) {
121
175
  // sample using new coordinates
122
176
  gl_FragColor = texture2D(u_texture, tc);
123
177
  }
124
- `;var Tn=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 Sn(this.params.fov,this.params.orientation),this.cameraRotationManager=new yn(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(oS,this.gl.VERTEX_SHADER),i=this.createShader(uS,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"),Tl=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()}},lS=Tl;var Qe=require("@vkontakte/videoplayer-shared/es2015"),In=class{constructor(){this.subscription=new Qe.Subscription;this.pipSize$=new Qe.ValueSubject(void 0);this.videoSize$=new Qe.ValueSubject(void 0);this.elementSize$=new Qe.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=Qe.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,Qe.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,Qe.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,Qe.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 lS;this.elementSizeManager=new In;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new zr;this.audioTrackSwitchHistory=new zr;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 Tn(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=Fe(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 vn({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params,i=He(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(Ue(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(),d=this.player.getCodecs();if((0,j.assertNonNullable)(c,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let h=[];for(let f of c.audio){h.push(ul(f));let g=[];for(let y of f.representations){let S=Fv(y);g.push(S),this.audioTracksMap.set(S,{stream:f,representation:y})}this.audioStreamsMap.set(f,g)}this.params.output.availableAudioStreams$.next(h)}let m=[];for(let h of c.video){m.push(ll(h));let f=[];for(let g of h.representations){let y=Nv(U(L({},g),{streamId:h.id}));y&&(f.push(y),this.videoTracksMap.set(y,{stream:h,representation:g}))}this.videoStreamsMap.set(h,f)}this.params.output.availableVideoStreams$.next(m);for(let h of c.text)for(let f of h.representations){let g=qv(h,f);this.textTracksMap.set(g,{stream:h,representation:f})}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),d!=null&&d.video&&this.params.output.availableVideoCodecs$.next(d.video),d!=null&&d.audio&&this.params.output.availableAudioCodecs$.next(d.audio),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else l==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},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,cS.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(y=>{var S;return((S=this.videoTracksMap.get(y))==null?void 0:S.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 y=!!t.audioStream.getTransition();yield this.player.switchRepresentation("audio",h.id,y)}}),r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,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(ll(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(ul(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 Z,ee,ne,k,te,B,ie,X,ue,C,Q,oe,$;if(this.player.isStreamEnded)return;let{desiredState:e,output:t}=this.params,i=e.autoVideoTrackSwitching.getState(),r=(Z=e.videoTrack.getState())==null?void 0:Z.id,n=[...this.videoTracksMap.keys()].find(({id:N})=>N===r),o=t.currentVideoTrack$.getValue(),u=((k=(ne=e.videoStream.getState())!=null?ne:n&&((ee=this.videoTracksMap.get(n))==null?void 0:ee.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,y=(B=[...this.audioStreamsMap.keys()].find(({id:N})=>N===(g==null?void 0:g.id)))!=null?B:this.audioStreamsMap.keys().next().value,S=0;if(y){if(n&&!i){let N=en(n,c,(ie=this.audioStreamsMap.get(y))!=null?ie:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);S=Math.max(S,(X=N==null?void 0:N.bitrate)!=null?X:-1/0)}if(o){let N=en(o,c,(ue=this.audioStreamsMap.get(y))!=null?ue:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);S=Math.max(S,(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:S,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=y&&Hb(x,c,(Q=this.audioStreamsMap.get(y))!=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(){je(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),qe(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 Na=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=Uv(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 dS=G(Hs(),1);var J=require("@vkontakte/videoplayer-shared/es2015");var pt={};var cr=(a,e)=>new J.Observable(t=>{let i=(r,s)=>t.next(s);return a.on(e,i),()=>a.off(e,i)}),Fa=class{constructor(e){this.subscription=new J.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,J.assertNever)(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:(0,J.assertNever)(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:(0,J.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,J.assertNever)(e)}break;default:(0,J.assertNever)(t)}};this.textTracksManager=new et(e.source.url),this.video=Fe(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),qe(this.video)}loadHlsJs(){let e=!1,t=r=>{e||this.params.output.error$.next({id:r==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:J.ErrorCategory.NETWORK,message:"Failed to load Hls.js",thrown:r}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,dS.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,J.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,J.assertNonNullable)(pt.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:J.ErrorCategory.WTF,message:"HlsJsProvider internal logic error",thrown:l})},r=He(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(Ue(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,J.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:J.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,J.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,J.videoSizeToQuality)({width:h,height:f});if(!g)return c;let y=d.attrs["FRAME-RATE"]?parseFloat(d.attrs["FRAME-RATE"]):void 0,S={id:m.toString(),quality:g,bitrate:d.bitrate/1e3,size:{width:h,height:f},fps:y};return this.trackLevels.set(m,{track:S,level:d}),c.push(S),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,J.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,J.map)(({level:l})=>n(this.hls.levels[l])));o.pipe((0,J.filter)(J.isNonNullable)).subscribe(t.currentVideoTrack$,i),this.subscription.add(Kt(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{var f;if((0,J.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,J.merge)(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,J.observableFrom)(["init"])).pipe((0,J.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 je(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).catch(t=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:J.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 pS="X-Playback-Duration",Il=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(pS)?parseInt(e.headers.get(pS),10):void 0});var K=require("@vkontakte/videoplayer-shared/es2015");var xl=G(No(),1);var En=require("@vkontakte/videoplayer-shared/es2015");var v$=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,En.videoSizeToQuality)({width:t,height:i})}return e!=null?e:null},S$=(a,e)=>{var s,n;let t=a.split(`
125
- `),i=[],r=[];for(let o=0;o<t.length;o++){let u=t[o],l=u.match(/^#EXT-X-STREAM-INF:(.+)/),c=u.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!l&&!c)){if(l){let d=(0,xl.default)(l[1].split(",").map(I=>I.split("="))),m=(s=d.QUALITY)!=null?s:`stream-${d.BANDWIDTH}`,h=v$(d),f;d.BANDWIDTH&&(f=parseInt(d.BANDWIDTH,10)/1e3||void 0),!f&&d["AVERAGE-BANDWIDTH"]&&(f=parseInt(d["AVERAGE-BANDWIDTH"],10)/1e3||void 0);let g=d["FRAME-RATE"]?parseFloat(d["FRAME-RATE"]):void 0,y;if(d.RESOLUTION){let[I,x]=d.RESOLUTION.split("x").map(w=>parseInt(w,10));I&&x&&(y={width:I,height:x})}let S=new URL(t[++o],e).toString();h&&i.push({id:m,quality:h,url:S,bandwidth:f,size:y,fps:g})}if(c){let d=(0,xl.default)(c[1].split(",").map(g=>{let y=g.indexOf("=");return[g.substring(0,y),g.substring(y+1)]}).map(([g,y])=>[g,y.replace(/^"|"$/g,"")])),m=(n=d.URI)==null?void 0:n.replace(/playlist$/,"subtitles.vtt"),h=d.LANGUAGE,f=d.NAME;m&&h&&r.push({type:"internal",id:h,label:f,language:h,url:m,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:r}},y$=a=>new Promise(e=>{setTimeout(()=>{e()},a)}),El=0,hS=(r,...s)=>A(void 0,[r,...s],function*(a,e=a,t,i){let o=yield(yield Et(a,i)).text();El+=1;try{let{qualityManifests:u,textTracks:l}=S$(o,e);return{qualityManifests:u,textTracks:l}}catch(u){if(El<=t.manifestRetryMaxCount)return yield y$((0,En.getExponentialDelay)(El-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),hS(a,e,t)}return{qualityManifests:[],textTracks:[]}}),xn=hS;var Xe=require("@vkontakte/videoplayer-shared/es2015");var Pn=class{constructor(e,t,i,r,s){this.subscription=new Xe.Subscription;this.abortControllers={destroy:new Le,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new Xe.ValueSubject(null);this.getCurrentTime$=new Xe.ValueSubject(null);this.error$=new Xe.Subject;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:s},this.subscription.add(e.pipe((0,Xe.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 A(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 A(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 A(this,null,function*(){for(let i of e){let r=new URL(i.url,t).toString(),n=yield(yield Et(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(`
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,Xe.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:Xe.ErrorCategory.WTF,thrown:t,message:e})}};var qa=class{constructor(e){this.subscription=new K.Subscription;this.videoState=new Y("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new K.ValueSubject([]);this.liveOffset=new Ti;this.manifestStartTime$=new K.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,K.assertNever)(t)}};var i;this.params=e,this.video=Fe(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:K.VideoQuality.INVARIANT,url:this.params.source.url};let t=(r,s)=>xn(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 Pn(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:K.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:K.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 K.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:K.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=He(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(Ue(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,K.filterChanged)(),(0,K.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,K.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,K.combine)({startTime:this.manifestStartTime$.pipe((0,K.filter)(K.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,K.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,K.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,K.observableFrom)(["init"])).pipe((0,K.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),qe(this.video)}prepare(){var o,u,l;let e=this.selectManifest();if((0,K.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(),Il(n).then(c=>{var d;if(!(0,K.isNullable)(c))this.maxSeekBackTime$.next(c);else{let m=(d=this.params.source.maxSeekBackTime)!=null?d:this.maxSeekBackTime$.getValue();((0,K.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 y=new URL(f,n).toString();Il(y).then(S=>{(0,K.isNullable)(S)||this.maxSeekBackTime$.next(S)})}}).catch(()=>{})}})}playIfAllowed(){je(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:K.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 Ua=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=Fe(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),xn($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=He(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(Ue(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(y=>y.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)),!z.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),qe(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(){je(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 mS=G(Qi(),1),Pl=G(tr(),1),fS=G(Jt(),1);var he=require("@vkontakte/videoplayer-shared/es2015");var Ha=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=Fe(e.container,e.tuning),this.params.output.element$.next(this.video),(0,mS.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,Pl.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=He(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(Ue(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),qe(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=Da(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(Pe(t))}playIfAllowed(){je(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,Pl.default)(this.trackUrls).map(d=>d.track);if(!r||!s||Yr({limits:e,lowestAvailableQuality:(c=(0,fS.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 gS=require("@vkontakte/videoplayer-shared/es2015");var bS=["stun:videostun.mycdn.me:80"],T$=1e3,I$=3,wl=()=>null,wn=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=wl;this.externalStopCallback=wl;this.externalErrorCallback=wl;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:bS}]};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:gS.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),T$)}normalizeOptions(e={}){let t={stunServerList:bS,maxRetryNumber:I$,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var ja=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=Fe(e.container,e.tuning),this.liveStreamClient=new wn(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),qe(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=He(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(Ue(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(){je(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 dr=class{constructor(e){this.length=e.length,this.iterator=e[Symbol.iterator](),this.next()}next(){this.current=this.iterator.next(),this.index=this.index===void 0?0:this.index+1}getValue(){if(this.current.done)throw new Error("Iterable is completed");return this.current.value}isCompleted(){return!!this.current.done}isLast(){return this.index===this.length-1}};var T=require("@vkontakte/videoplayer-shared/es2015");var Ot=require("@vkontakte/videoplayer-shared/es2015"),vS=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 SS(){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){z.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=SS();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 pr=Qa;var E$={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),availableVideoCodecs$:new T.ValueSubject([]),availableAudioStreams$:new T.ValueSubject([]),currentAudioStream$:new T.ValueSubject(void 0),availableAudioTracks$:new T.ValueSubject([]),availableAudioCodecs$: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=Zv([...tS(this.params.tuning),...eS(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,Al.default)(r,l)),...t.filter(l=>(0,Al.default)(r,l))]:s=t,this.log({message:`Selected formats: ${s.join(" > ")}`}),this.tracer.log("Selected formats",(0,T.flattenObject)(s)),this.screenFormatsIterator=new dr(s);let n=[...vl(!0),...vl(!1)];this.chromecastFormatsIterator=new dr(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&&pr.isSupported()&&(this.volumeMultiplierManager=new pr(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){this.subscription.add(this.initProviderErrorHandling()).add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()})).add(this.providerOutput.availableVideoCodecs$.subscribe(e=>{!this.videoCodecsIterator&&e.length>1&&(this.videoCodecsIterator=new dr(e))}))}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()}switchToNextVideoCodec(){this.params.tuning.dash.codecsPrioritizeEnabled&&!this.videoCodecsIterator.isLast()&&(this.tracer.log("switchToNextVideoCodec"),this.destroyProvider(),this.videoCodecsIterator.next(),this.initProvider())}destroyProvider(){let e=this.current$.getValue().provider;if(!e)return;this.log({message:"destroyProvider"}),this.tracer.log("destroyProvider");let t=this.providerOutput.position$.getValue()*1e3,i=this.params.desiredState.seekState.getState(),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){var u;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 l=this.applyFailoverHost(t[e]),c=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);return(0,T.assertNonNullable)(l),new Ba(U(L({},o),{source:l,sourceHls:c,forceVideoCodec:(u=this.videoCodecsIterator)==null?void 0:u.getValue()}))}case"DASH_LIVE_CMAF":{let l=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(l),new Na(U(L({},o),{source:l}))}case"HLS":case"HLS_ONDEMAND":{let l=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(l),z.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new Ua(U(L({},o),{source:l})):new Fa(U(L({},o),{source:l}))}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let l=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(l),new qa(U(L({},o),{source:l,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e}))}case"MPEG":{let l=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(l),new Ha(U(L({},o),{source:l}))}case"DASH_LIVE":{let l=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(l),new Zb(U(L({},o),{source:l,config:U(L({},E$),{maxPausedTime:this.params.tuning.live.maxPausedTime})}))}case"WEB_RTC_LIVE":{let l=this.applyFailoverHost(t[e]);return(0,T.assertNonNullable)(l),new ja({container:i,source:l,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 Gr({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,TS.default)((0,yS.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))),vS({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=this.videoCodecsIterator&&!this.videoCodecsIterator.isLast()&&this.params.tuning.dash.codecsPrioritizeEnabled,m=l&&!u&&(o&&t||!c);n=U(L({},n),{isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:m,canReinitProvider:c}),c?(i++,this.reinitProvider()):m?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):d?this.switchToNextVideoCodec():(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 x$=5e3,IS="one_video_throughput",ES="one_video_rtt",_t=window.navigator.connection,xS=()=>{let a=_t==null?void 0:_t.downlink;if((0,q.isNonNullable)(a)&&a!==10)return a*1e3},PS=()=>{let a=_t==null?void 0:_t.rtt;if((0,q.isNonNullable)(a)&&a!==3e3)return a},wS=(a,e,t)=>{let i=t*8,r=i/a;return i/(r+e)},kl=class a{constructor(e){this.subscription=new q.Subscription;this.concurrentDownloads=new Set;var r,s;this.tuningConfig=e;let t=a.load(IS)||(e.useBrowserEstimation?xS():void 0)||x$,i=(s=(r=a.load(ES))!=null?r:e.useBrowserEstimation?PS():void 0)!=null?s:0;if(this.throughput$=new q.ValueSubject(t),this.rtt$=new q.ValueSubject(i),this.rttAdjustedThroughput$=new q.ValueSubject(wS(t,i,e.rttPenaltyRequestSize)),this.throughput=Pi.getSmoothedValue(t,-1,e),this.rtt=Pi.getSmoothedValue(i,1,e),e.useBrowserEstimation){let n=()=>{let u=xS();u&&this.throughput.next(u);let l=PS();(0,q.isNonNullable)(l)&&this.rtt.next(l)};_t&&"onchange"in _t&&this.subscription.add((0,q.fromEvent)(_t,"change").subscribe(n)),n()}this.subscription.add(this.throughput.smoothed$.subscribe(n=>{q.safeStorage.set(IS,n.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(n=>{q.safeStorage.set(ES,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})=>wS(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}},AS=kl;var Ai=require("@vkontakte/videoplayer-shared/es2015");var kS={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,codecsPrioritizeEnabled:!1},dashCmafLive:{maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,lowLatency:{maxTargetOffset:3e3,maxTargetOffsetDeviation:250,playbackCatchupSpeedup:.05,isActiveOnDefault:!1,bufferEstimator:{emaAlpha:.45,changeThreshold:.05,deviationDepth:20,deviationFactor:.5,extremumInterval:5}}},live:{minBuffer:3e3,minBufferSegments:3,lowLatencyMinBuffer:1e3,lowLatencyMinBufferSegments:1,isLiveCatchUpMode:!1,lowLatencyActiveLiveDelay:3e3,activeLiveDelay:5e3,maxPausedTime:5e3},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:"07A4434E",useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:3*60*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useManagedMediaSource:!0,useNewSwitchTo:!1,useSafariEndlessRequestBugfix:!0,useRefactoredSearchGap:!1,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,dynamicImportTimeout:5e3,maxPlaybackTransitionInterval:2e4,providerErrorLimit:3,manifestRetryInterval:300,manifestRetryMaxInterval:1e4,manifestRetryMaxCount:10,audioVideoSyncRate:20,webrtc:{connectionRetryMaxNumber:3},spherical:{enabled:!1,fov:{x:135,y:76},rotationSpeed:45,maxYawAngle:175,rotationSpeedCorrection:10,degreeToPixelCorrection:5,speedFadeTime:2e3,speedFadeThreshold:50},useVolumeMultiplier:!1,ignoreAudioRendererError:!1,useEnableSubtitlesParam:!1,useOldMSEDetection:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1},RS=a=>{var e;return U(L({},(0,Ai.fillWithDefault)(a,kS)),{configName:[...(e=a.configName)!=null?e:[],...kS.configName]})};var p=require("@vkontakte/videoplayer-shared/es2015");var Bt=require("@vkontakte/videoplayer-shared/es2015"),Rl=({seekState:a,position$:e})=>(0,Bt.merge)(a.stateChangeEnded$.pipe((0,Bt.map)(({to:t})=>{var i;return t.state==="none"?void 0:((i=t.position)!=null?i:NaN)/1e3}),(0,Bt.filter)(Bt.isNonNullable)),e.pipe((0,Bt.filter)(()=>a.getState().state==="none")));var $S=require("@vkontakte/videoplayer-shared/es2015"),LS=a=>{let e=typeof a.container=="string"?document.getElementById(a.container):a.container;return(0,$S.assertNonNullable)(e,`Wrong container or containerId {${a.container}}`),e};var An=require("@vkontakte/videoplayer-shared/es2015"),MS=(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,An.filter)(r=>r.length>0),(0,An.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:Ob,getCurrentTime$:new p.ValueSubject(null)};if(this.initLogs(),this.tuning=RS(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 AS(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,CS.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=bc(u,["container"]);this.tracer.log("initVideo",(0,p.flattenObject)(o)),this.domContainer=LS(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?z.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;MS(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(Vu({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:Rl({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(Rl({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),Vb(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(i=>Db(i)),this.providerContainer.current$.subscribe(({type:i})=>Wr("provider",i)),e.duration$.subscribe(i=>Wr("duration",i)),e.availableVideoTracks$.pipe((0,p.filter)(i=>!!i.length),(0,p.once)()).subscribe(i=>Wr("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)),Wr("codecs",z.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&&!Zr()}};var xt=require("@vkontakte/videoplayer-shared/es2015"),P$=`@vkontakte/videoplayer-core@${Dn}`;
178
+ `;var fs=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 Ru(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(_y,this.gl.VERTEX_SHADER),i=this.createShader(Fy,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 $e=require("@vkontakte/videoplayer-shared/es2015");var Mu="stalls_manager_metrics",Ny="stalls_manager_abr_params",Cd=class{constructor(){this.isSeeked$=new $e.ValueSubject(!1);this.isBuffering$=new $e.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 $e.Subscription;this.severeStallOccurred$=new $e.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 k(k({},this.abrParams),this.getStoredData(Ny))}set lastVideoTrackSelected(e){var t;((t=this.lastUniqueVideoTrackSelected)==null?void 0:t.id)!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=(0,$e.now)(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=((0,$e.now)()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}updateStoredAbrParams(){let e=[],t=this.getStoredData(Mu,"[]");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(Mu,[]),this.setStoredData(Ny,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=$e.safeStorage.get(e))!=null?i:t)}setStoredData(e,t){$e.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(Mu,"[]"),r=t/e,a=i.length?Ni(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(Mu,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,$e.once)()).subscribe(t=>this.providerStartWatchingTimestamp=(0,$e.now)())),this.subscription.add(this.currentStallDuration$.pipe((0,$e.filterChanged)()).subscribe(t=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:a,ignoreStallsOnSeek:n}=this.tuning;if((0,$e.isNullable)(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),d=(0,$e.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,$e.isNonNullable)(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!t&&(0,$e.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}))}},$u=Cd;var At=require("@vkontakte/videoplayer-shared/es2015"),Bu=class{constructor(){this.subscription=new At.Subscription;this.pipSize$=new At.ValueSubject(void 0);this.videoSize$=new At.ValueSubject(void 0);this.elementSize$=new At.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=At.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,At.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,At.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,At.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 Rr=class{constructor(e){this.subscription=new ue.Subscription;this.videoState=new re("stopped");this.droppedFramesManager=new ss;this.stallsManager=new $u;this.elementSizeManager=new Bu;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new tr;this.audioTrackSwitchHistory=new tr;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"),O(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"),O(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&O(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"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;default:return(0,ue.assertNever)(e)}}};this.init3DScene=e=>{var i,r,a;if(this.scene3D)return;this.scene3D=new fs(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 wt(e.source.url),this.params=e,this.video=nt(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(ze(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 ku({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=lt(this.video);this.subscription.add(()=>i.destroy());let r=this.constructor.name,a=o=>{e.error$.next({id:r,category:ue.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,ue.filter)(l=>!!l.length),(0,ue.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,ue.map)(l=>l.to.state!=="none"),(0,ue.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,ue.filter)(ue.isNonNullable),(0,ue.once)()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe((0,ue.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(Ht(this.video,t.isLooped,r)),this.subscription.add(ut(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(Et(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(Pt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),O(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),O(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,ue.assertNonNullable)(d,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let h=[];for(let p of d.audio){h.push(Ed(p));let f=[];for(let b of p.representations){let S=xy(b);f.push(S),this.audioTracksMap.set(S,{stream:p,representation:b})}this.audioStreamsMap.set(p,f)}this.params.output.availableAudioStreams$.next(h)}let c=[];for(let h of d.video){c.push(wd(h));let p=[];for(let f of h.representations){let b=Iy(N(k({},f),{streamId:h.id}));b&&(p.push(b),this.videoTracksMap.set(b,{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=Ey(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,ue.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,ue.fromEvent)(this.video,"progress")).pipe((0,ue.filter)(()=>this.videoTracksMap.size>0)).subscribe(()=>A(this,null,function*(){let l=this.player.state$.getState(),d=this.player.state$.getTransition();if(!(0,Uy.default)(["manifest_ready","running"],l)||d)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let c=this.selectVideoAudioRepresentations();if(!c)return;let[h,p]=c,f=[...this.videoTracksMap.keys()].find(S=>{var v;return((v=this.videoTracksMap.get(S))==null?void 0:v.representation.id)===h.id});(0,ue.isNonNullable)(f)&&(this.stallsManager.lastVideoTrackSelected=f);let b=this.params.desiredState.autoVideoTrackLimits.getTransition();if(b&&this.params.output.autoVideoTrackLimits$.next(b.to),l==="manifest_ready")yield this.player.initRepresentations(h.id,p==null?void 0:p.id,this.params.sourceHls);else if(yield this.player.switchRepresentation("video",h.id),p){let S=!!t.audioStream.getTransition();yield this.player.switchRepresentation("audio",p.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,ue.filterChanged)()).subscribe(l=>{let d=[...this.videoTracksMap.entries()].find(([,{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(wd(h))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,ue.filterChanged)()).subscribe(l=>{let d=[...this.audioTracksMap.entries()].find(([,{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(Ed(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,ue.map)(({to:l})=>l==="ready"),(0,ue.filterChanged)());this.subscription.add((0,ue.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,ue.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,ue.merge)(o,this.player.state$.stateChangeEnded$,(0,ue.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,ue.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ue.observableFrom)(["init"])).pipe((0,ue.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var B,z,_,Z,Q,de,$,F,V,M,H,we,it;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ba:$a,t=this.params.tuning.useNewAutoSelectVideoTrack?uu:ou,i=this.params.tuning.useNewAutoSelectVideoTrack?mi:nu,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=(B=r.videoTrack.getState())==null?void 0:B.id,l=[...this.videoTracksMap.keys()].find(({id:ye})=>ye===o),d=a.currentVideoTrack$.getValue(),c=((Z=(_=r.videoStream.getState())!=null?_:l&&((z=this.videoTracksMap.get(l))==null?void 0:z.stream))!=null?Z:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!c)return;let h=[...this.videoStreamsMap.keys()].find(({id:ye})=>ye===c.id),p=h&&this.videoStreamsMap.get(h);if(!p)return;let f=tt(this.video.buffered,this.video.currentTime*1e3),b;this.player.isActiveLive$.getValue()?b=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?b=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:b=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let S=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,v=Math.min(f/Math.min(b,S||1/0),1),y=(Q=r.audioStream.getState())!=null?Q:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,x=(de=[...this.audioStreamsMap.keys()].find(({id:ye})=>ye===(y==null?void 0:y.id)))!=null?de:this.audioStreamsMap.keys().next().value,E=0;if(x){if(l&&!n){let ye=e(l,p,($=this.audioStreamsMap.get(x))!=null?$:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);E=Math.max(E,(F=ye==null?void 0:ye.bitrate)!=null?F:-1/0)}if(d){let ye=e(d,p,(V=this.audioStreamsMap.get(x))!=null?V:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);E=Math.max(E,(M=ye==null?void 0:ye.bitrate)!=null?M:-1/0)}}let P=i(p,{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:E,forwardBufferHealth:v,current:d,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}),D=n?P!=null?P:l:l!=null?l:P,j=x&&t(D,p,(H=this.audioStreamsMap.get(x))!=null?H:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:v,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),U=(we=this.videoTracksMap.get(D))==null?void 0:we.representation,G=j&&((it=this.audioTracksMap.get(j))==null?void 0:it.representation);if(U&&G)return[U,G];if(U&&!G&&this.audioTracksMap.size===0)return[U,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ue.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),ot(this.video),this.tracer.end()}};var In=class extends Rr{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 xn=class extends Rr{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=wy(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 ce=require("@vkontakte/videoplayer-shared/es2015");var Qd=K(Ua(),1);var T=require("@vkontakte/videoplayer-shared/es2015");var Du=K(_t(),1),bs=K(si(),1),Cu=K(Ua(),1);var lT=K(Ra(),1);var nr=require("@vkontakte/videoplayer-shared/es2015");var o$=18,qy=!1;try{qy=te.browser.isSafari&&!!te.browser.safariVersion&&te.browser.safariVersion<=o$}catch(s){console.error(s)}var Vd=class{constructor(e){this.bufferFull$=new nr.Subject;this.error$=new nr.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:nr.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 a={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(a),this.pull()})})}abort(e){return A(this,null,function*(){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};qy&&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:nr.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,nr.assertNever)(t)}}},jy=Vd;var L=require("@vkontakte/videoplayer-shared/es2015");var ge=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 ms=class extends ge{};var En=class extends ge{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 wn=class extends ge{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 Pn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ae=class extends ge{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var An=class extends Ae{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 kn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Rn=class extends ge{constructor(e,t){super(e,t),this.data=this.content}};var Lr=class extends Ae{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 Ln=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Mn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var $n=class extends Ae{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 Bn=class extends Ae{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Dn=class extends Ae{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var Cn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Vn=class extends Ae{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 On=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var _n=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Fn=class extends Ae{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var Nn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Un=class extends Ae{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 qn=class extends Ae{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 jn=class extends Ae{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 Hn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Gn=class extends Ae{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 zn=class extends ge{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var l$={ftyp:wn,moov:Pn,mvhd:An,moof:kn,mdat:Rn,sidx:Lr,trak:Ln,mdia:Cn,mfhd:Fn,tkhd:Vn,traf:Nn,tfhd:Un,tfdt:qn,trun:jn,minf:On,sv3d:Mn,st3d:$n,prhd:Bn,proj:_n,equi:Dn,uuid:En,stbl:Hn,stsd:Gn,avc1:zn,unknown:ms},qi=class s{constructor(e={}){this.options=k({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=l$[e];return i?new i(t,new s):new ms(t,new s)}};var or=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 d$=new TextDecoder("ascii"),p$=s=>d$.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",h$=s=>{let e=new Lr(s,new qi),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})},f$=(s,e)=>{let i=new qi().parse(s),r=new or(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)},m$=s=>{let t=new qi().parse(s),i=new or(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},b$=s=>{var r;let t=new qi().parse(s);return(r=new or(t).find("sidx"))==null?void 0:r.timescale},g$=(s,e)=>{let i=new qi().parse(s),a=new or(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},S$=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 qi().parse(s),r=new or(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},Hy={validateData:p$,parseInit:S$,getIndexRange:()=>{},parseSegments:h$,parseFeedableSegmentChunk:f$,getChunkEndTime:g$,getServerLatencyTimestamps:m$,getTimescaleFromIndex:b$};var Wn=K(_t(),1),ji=require("@vkontakte/videoplayer-shared/es2015");var zy=require("@vkontakte/videoplayer-shared/es2015");var Gy={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=Qn(s,t),r=i in Gy,a=r?Gy[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=Qn(u),c=l*St(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}},Qn=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*St(2,16)+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*St(2,32)+s.getUint32(1);case 6:return s.getUint16(0)*St(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},ni=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return Qn(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,zy.assertNever)(e)}},Mr=(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"&&Mr(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},Wy=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=Qy(s);return Mr(r.value,({tag:a,type:n,value:o})=>(a===17143?e=ni(o,n):a===17026?t=ni(o,n):a===17029&&(i=ni(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var Yy=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],v$=[231,22612,22743,167,171,163,160,175],y$=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,d=!1,c=0;return Mr(s,({tag:h,type:p,value:f,valueSize:b})=>{if(h===21419){let S=ni(f,p);l=Qn(S)}else h!==21420&&(l=void 0);return h===408125543?(e=f.byteOffset,t=f.byteOffset+b):h===357149030?a=!0:h===290298740?n=!0:h===2807729?i=ni(f,p):h===17545?r=ni(f,p):h===21420&&l===475249515?u=ni(f,p):h===374648427?Mr(f,({tag:S,type:v,value:y})=>S===30321?(d=ni(y,v)===1,!1):!0):a&&n&&(0,Wn.default)(Yy,h)&&(o=!0),!o}),(0,ji.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,ji.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,ji.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}}}},T$=s=>{if((0,ji.isNullable)(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},I$=(s,e)=>{let t=!1,i=!1,r=o=>(0,ji.isNonNullable)(o.time)&&(0,ji.isNonNullable)(o.position),a=[],n;return Mr(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=ni(l,u));break;case 183:break;case 241:n&&(n.position=ni(l,u));break;default:t&&(0,Wn.default)(Yy,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}}})},x$=s=>{let e=0,t=!1;try{Mr(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,Wn.default)(v$,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||(t=(0,Wn.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},Ky={validateData:Wy,parseInit:y$,getIndexRange:T$,parseSegments:I$,parseFeedableSegmentChunk:x$};var Yn=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return Ky;case"mp4":return Hy}}throw new ReferenceError(`Unsupported mime type ${s}`)};var jd=K(yd(),1),aT=K(Sr(),1),nT=K(Td(),1),oT=K(si(),1),Hd=K(Er(),1);var Xn=require("@vkontakte/videoplayer-shared/es2015");var Xy=s=>{var e;try{let t=E$(),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 E$(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",d=`^(?:(?<langtag>${`
179
+ (?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
180
+ (-(?<script>[a-z]{4}))?
181
+ (-(?<region>(?:[a-z]{2}|[0-9]{3})))?
182
+ (?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
183
+ (?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
184
+ (?:-(?<privateuse>(?:${e})))?
185
+ `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(d,"i")}var Fd=K(si(),1);var Jy=require("@vkontakte/videoplayer-shared/es2015"),Zy=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{var u;let o=(u=a?fi(a):void 0)!=null?u:(0,Jy.videoSizeToQuality)({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},eT=({id:s,bitrate:e})=>({id:s,bitrate:e}),tT=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),iT=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Nd=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,Fd.default)(i.split("."),0),isDefault:r}),Ud=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,Fd.default)(r.split("."),0)}),qd=s=>"url"in s,xt=s=>s.type==="template",Kn=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var rT=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},$r=(s,e)=>{for(let t of s)if(e(t))return t;return null};var sT=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},Hi=(s,e)=>{let t=s;t=(0,jd.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,aT.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,jd.default)(t,n,(o,u)=>(0,Xn.isNullable)(a)?o:(0,Xn.isNullable)(u)?a:(0,nT.default)(a,parseInt(u,10),"0"))}return t},uT=(s,e)=>{var G,B,z,_,Z,Q,de,$,F,V,M,H,we,it,ye,me,Ne,Ue,qe,rt,jt,Qt,ui,vi,Wi,vs,ys,Ts,Is,xs,Es,ws,Ps,As,ks,Rs,Ls,Ms,$s,Bs,Ds,Cs,Vs,Os,_s,Fs,Ns,Us,qs,js,Hs,Gs,zs,Qs,Ws,Ys,Ks,Xs,Js,Zs,ea;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(Re=>{var Y,pt;return(pt=(Y=Re.textContent)==null?void 0:Y.trim())!=null?pt:""}),o=(G=(0,oT.default)(n,0))!=null?G:"",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,b=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,y=a.getAttribute("mediaPresentationDuration"),x=[...a.getElementsByTagName("Period")],E=x.reduce((Re,Y)=>N(k({},Re),{[Y.id]:Y.children}),{}),P=x.reduce((Re,Y)=>N(k({},Re),{[Y.id]:Y.getAttribute("duration")}),{});y?v=sT(y):(0,Hd.default)(P).filter(Re=>Re).length&&!u?v=(0,Hd.default)(P).reduce((Re,Y)=>{var pt;return Re+((pt=sT(Y))!=null?pt:0)},0):b&&(v=parseInt(b,10));let D=0,j=(z=(B=a.getAttribute("profiles"))==null?void 0:B.split(","))!=null?z:[];for(let Re of x.map(Y=>Y.id))for(let Y of E[Re]){let pt=(_=Y.getAttribute("id"))!=null?_:"id"+(D++).toString(10),Wt=(Z=Y.getAttribute("mimeType"))!=null?Z:"",ur=(Q=Y.getAttribute("codecs"))!=null?Q:"",lr=(de=Y.getAttribute("contentType"))!=null?de:Wt==null?void 0:Wt.split("/")[0],zu=(F=($=Y.getAttribute("profiles"))==null?void 0:$.split(","))!=null?F:[],ta=(M=Xy((V=Y.getAttribute("lang"))!=null?V:""))!=null?M:{},yi=(it=(we=(H=Y.querySelector("Label"))==null?void 0:H.textContent)==null?void 0:we.trim())!=null?it:void 0,Qu=Y.querySelectorAll("Representation"),Wu=Y.querySelector("SegmentTemplate"),Yu=(me=(ye=Y.querySelector("Role"))==null?void 0:ye.getAttribute("value"))!=null?me:void 0,Rt=lr,ne={id:pt,language:ta.language,isDefault:Yu==="main",label:yi,codecs:ur,hdr:Rt==="video"&&ds(ur),mime:Wt,representations:[]};for(let W of Qu){let Qe=(Ne=W.getAttribute("lang"))!=null?Ne:void 0,Yt=(qe=(Ue=yi!=null?yi:Y.getAttribute("label"))!=null?Ue:W.getAttribute("label"))!=null?qe:void 0,Ti=(Qt=(jt=(rt=W.querySelector("BaseURL"))==null?void 0:rt.textContent)==null?void 0:jt.trim())!=null?Qt:"",ht=new URL(Ti||o,e).toString(),We=(ui=W.getAttribute("mimeType"))!=null?ui:Wt,Ii=(Wi=(vi=W.getAttribute("codecs"))!=null?vi:ur)!=null?Wi:"",xi;if(lr==="text"){let Ye=W.getAttribute("id")||"",Ei=((vs=ta.privateuse)==null?void 0:vs.includes("x-auto"))||Ye.includes("_auto"),ft=W.querySelector("SegmentTemplate");if(ft){let Kt={representationId:(ys=W.getAttribute("id"))!=null?ys:void 0,bandwidth:(Ts=W.getAttribute("bandwidth"))!=null?Ts:void 0},wi=parseInt((Is=W.getAttribute("bandwidth"))!=null?Is:"",10)/1e3,Pi=(Es=parseInt((xs=ft.getAttribute("startNumber"))!=null?xs:"",10))!=null?Es:1,Lt=parseInt((ws=ft.getAttribute("timescale"))!=null?ws:"",10),cr=(Ps=ft.querySelectorAll("SegmentTimeline S"))!=null?Ps:[],Mt=ft.getAttribute("media");if(!Mt)continue;let Ai=[],ki=0,Ri="",$t=0,Xt=Pi,Se=0;for(let Le of cr){let mt=parseInt((As=Le.getAttribute("d"))!=null?As:"",10),Ie=parseInt((ks=Le.getAttribute("r"))!=null?ks:"",10)||0,Ke=parseInt((Rs=Le.getAttribute("t"))!=null?Rs:"",10);Se=Number.isFinite(Ke)?Ke:Se;let bt=mt/Lt*1e3,Xe=Se/Lt*1e3;for(let Ce=0;Ce<Ie+1;Ce++){let Je=Hi(Mt,N(k({},Kt),{segmentNumber:Xt.toString(10),segmentTime:(Se+Ce*mt).toString(10)})),Bt=(Xe!=null?Xe:0)+Ce*bt,Zt=Bt+bt;Xt++,Ai.push({time:{from:Bt,to:Zt},url:Je})}Se+=(Ie+1)*mt,ki+=(Ie+1)*bt}$t=Se/Lt*1e3,Ri=Hi(Mt,N(k({},Kt),{segmentNumber:Xt.toString(10),segmentTime:Se.toString(10)}));let Jt={time:{from:$t,to:1/0},url:Ri},je={type:"template",baseUrl:ht,segmentTemplateUrl:Mt,initUrl:"",totalSegmentsDurationMs:ki,segments:Ai,nextSegmentBeyondManifest:Jt,timescale:Lt};xi={id:Ye,kind:"text",segmentReference:je,profiles:[],duration:v,bitrate:wi,mime:"",codecs:"",width:0,height:0,isAuto:Ei}}else xi={id:Ye,isAuto:Ei,kind:"text",url:ht}}else{let Ye=(Ms=(Ls=W.getAttribute("contentType"))!=null?Ls:We==null?void 0:We.split("/")[0])!=null?Ms:lr,Ei=(Bs=($s=Y.getAttribute("profiles"))==null?void 0:$s.split(","))!=null?Bs:[],ft=parseInt((Ds=W.getAttribute("width"))!=null?Ds:"",10),Kt=parseInt((Cs=W.getAttribute("height"))!=null?Cs:"",10),wi=parseInt((Vs=W.getAttribute("bandwidth"))!=null?Vs:"",10)/1e3,Pi=(Os=W.getAttribute("frameRate"))!=null?Os:"",Lt=(_s=W.getAttribute("quality"))!=null?_s:void 0,cr=Pi?fu(Pi):void 0,Mt=(Fs=W.getAttribute("id"))!=null?Fs:"id"+(D++).toString(10),Ai=Ye==="video"?`${Kt}p`:Ye==="audio"?`${wi}Kbps`:Ii,ki=`${Mt}@${Ai}`,Ri=[...j,...zu,...Ei],$t,Xt=W.querySelector("SegmentBase"),Se=(Ns=W.querySelector("SegmentTemplate"))!=null?Ns:Wu;if(Xt){let je=(qs=(Us=W.querySelector("SegmentBase Initialization"))==null?void 0:Us.getAttribute("range"))!=null?qs:"",[Le,mt]=je.split("-").map(Je=>parseInt(Je,10)),Ie={from:Le,to:mt},Ke=(js=W.querySelector("SegmentBase"))==null?void 0:js.getAttribute("indexRange"),[bt,Xe]=Ke?Ke.split("-").map(Je=>parseInt(Je,10)):[],Ce=Ke?{from:bt,to:Xe}:void 0;$t={type:"byteRange",url:ht,initRange:Ie,indexRange:Ce}}else if(Se){let je={representationId:(Hs=W.getAttribute("id"))!=null?Hs:void 0,bandwidth:(Gs=W.getAttribute("bandwidth"))!=null?Gs:void 0},Le=parseInt((zs=Se.getAttribute("timescale"))!=null?zs:"",10),mt=(Qs=Se.getAttribute("initialization"))!=null?Qs:"",Ie=Se.getAttribute("media"),Ke=(Ys=parseInt((Ws=Se.getAttribute("startNumber"))!=null?Ws:"",10))!=null?Ys:1,bt=Hi(mt,je);if(!Ie)throw new ReferenceError("No media attribute in SegmentTemplate");let Xe=(Ks=Se.querySelectorAll("SegmentTimeline S"))!=null?Ks:[],Ce=[],Je=0,Bt="",Zt=0;if(Xe.length){let Li=Ke,Me=0;for(let Dt of Xe){let Ve=parseInt((Xs=Dt.getAttribute("d"))!=null?Xs:"",10),gt=parseInt((Js=Dt.getAttribute("r"))!=null?Js:"",10)||0,Mi=parseInt((Zs=Dt.getAttribute("t"))!=null?Zs:"",10);Me=Number.isFinite(Mi)?Mi:Me;let dr=Ve/Le*1e3,pr=Me/Le*1e3;for(let $i=0;$i<gt+1;$i++){let Xu=Hi(Ie,N(k({},je),{segmentNumber:Li.toString(10),segmentTime:(Me+$i*Ve).toString(10)})),ia=(pr!=null?pr:0)+$i*dr,Ju=ia+dr;Li++,Ce.push({time:{from:ia,to:Ju},url:Xu})}Me+=(gt+1)*Ve,Je+=(gt+1)*dr}Zt=Me/Le*1e3,Bt=Hi(Ie,N(k({},je),{segmentNumber:Li.toString(10),segmentTime:Me.toString(10)}))}else if((0,Xn.isNonNullable)(v)){let Me=parseInt((ea=Se.getAttribute("duration"))!=null?ea:"",10)/Le*1e3,Dt=Math.ceil(v/Me),Ve=0;for(let gt=1;gt<Dt;gt++){let Mi=Hi(Ie,N(k({},je),{segmentNumber:gt.toString(10),segmentTime:Ve.toString(10)}));Ce.push({time:{from:Ve,to:Ve+Me},url:Mi}),Ve+=Me}Zt=Ve,Bt=Hi(Ie,N(k({},je),{segmentNumber:Dt.toString(10),segmentTime:Ve.toString(10)}))}let Ku={time:{from:Zt,to:1/0},url:Bt};$t={type:"template",baseUrl:ht,segmentTemplateUrl:Ie,initUrl:bt,totalSegmentsDurationMs:Je,segments:Ce,nextSegmentBeyondManifest:Ku,timescale:Le}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Ye||!We)continue;let Jt={video:"video",audio:"audio",text:"text"}[Ye];if(!Jt)continue;Rt||(Rt=Jt),xi={id:ki,kind:Jt,segmentReference:$t,profiles:Ri,duration:v,bitrate:wi,mime:We,codecs:Ii,width:ft,height:Kt,fps:cr,quality:Lt}}ne.language||(ne.language=Qe),ne.label||(ne.label=Yt),ne.mime||(ne.mime=We),ne.codecs||(ne.codecs=Ii),ne.hdr||(ne.hdr=Rt==="video"&&ds(Ii)),ne.representations.push(xi)}if(Rt){let W=r[Rt].find(Qe=>Qe.id===ne.id);if(W&&ne.representations.every(Qe=>xt(Qe.segmentReference)))for(let Qe of W.representations){let Yt=ne.representations.find(We=>We.id===Qe.id),Ti=Yt==null?void 0:Yt.segmentReference,ht=Qe.segmentReference;ht.segments.push(...Ti.segments),ht.nextSegmentBeyondManifest=Ti.nextSegmentBeyondManifest}else r[Rt].push(ne)}}return{duration:v,streams:r,baseUrls:n,live:S}};var Jn=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new L.ValueSubject(0);this.currentLowLatencySegmentLength$=new L.ValueSubject(0);this.currentSegmentLength$=new L.ValueSubject(0);this.onLastSegment$=new L.ValueSubject(!1);this.fullyBuffered$=new L.ValueSubject(!1);this.playingRepresentation$=new L.ValueSubject(void 0);this.playingRepresentationInit$=new L.ValueSubject(void 0);this.error$=new L.Subject;this.gaps=[];this.subscription=new L.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new Te;this.switchAbortController=new Te;this.destroyAbortController=new Te;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,L.abortable)(this.destroyAbortController.signal,function(e){return pe(this,null,function*(){let t=this.representations.get(e);(0,L.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 jy(this.sourceBuffer),this.subscription.add((0,L.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:L.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o!=null||(o={id:"SegmentEjection",category:L.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),this.error$.next(o)})),this.subscription.add((0,L.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:L.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!oe(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,us(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=tt(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,L.assertNonNullable)(i,"No init buffer for starting representation"),(0,L.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,L.abortable)(this.destroyAbortController.signal,function(e,t=!1){return pe(this,null,function*(){if(!oe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,L.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,L.isNullable)(a)||(0,L.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,L.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!oe(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,L.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,yield new hr(this.pruneBuffer(n,1/0,!0))),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}})}.bind(this));this.switchToOld=(0,L.abortable)(this.destroyAbortController.signal,function(e,t=!1){return pe(this,null,function*(){if(!oe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,L.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,L.isNullable)(a)||(0,L.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,L.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!oe(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,L.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,yield new hr(this.pruneBuffer(n,1/0,!0))),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}})}.bind(this));this.seekLive=(0,L.abortable)(this.destroyAbortController.signal,function(e){return pe(this,null,function*(){var u,l;let t=(u=(0,Cu.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||!xt(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,L.assertNonNullable)(r);let a=this.segments.get(i);(0,L.assertNonNullable)(a,"No segments for starting representation");let n=this.initData.get(i);if((0,L.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){!oe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new Te,(0,L.abortable)(this.switchAbortController.signal,function(i,r=!1){return pe(this,null,function*(){this.switchingToRepresentationId=i;let a=this.representations.get(i);(0,L.assertNonNullable)(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,L.isNullable)(o)||(0,L.isNullable)(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,L.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!oe(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,L.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,L.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 Te,this.abortBuffer()})}maintain(e=this.getCurrentPosition()){if((0,L.isNullable)(e)||(0,L.isNullable)(this.downloadingRepresentationId)||(0,L.isNullable)(this.playingRepresentationId)||(0,L.isNullable)(this.sourceBuffer)||!oe(this.mediaSource,this.sourceBuffer)||(0,L.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,L.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(d=>e>=d.time.from&&e<d.time.to);(0,L.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=tt(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)&&us(this.sourceBuffer.buffered)>=this.bufferLimit){let d=tt(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,Du.default)(u,r))d="high";else{let c=(0,bs.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)&&tt(this.sourceBuffer.buffered,e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,bs.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-tt(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,L.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,Cu.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,Cu.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||!xt(o.segmentReference))return;let u=o.segmentReference.segments.map(p=>N(k({},p),{status:"none",size:void 0})),l=100,d=(r=this.segments.get(o.id))!=null?r:[],c=(n=(a=(0,bs.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,L.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(!xt(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=Hi(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&&gi&&gi(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&gi&&gi(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 b=h<=i&&p>=i,S=h>i||b||f===0&&i===0,v=Math.min(this.forwardBufferTarget,this.bufferLimit),y=this.preloadOnly&&h<=i+v||p<=i+v;return(c==="none"||c==="partially_ejected"&&S&&y&&this.sourceBuffer&&oe(this.mediaSource,this.sourceBuffer)&&!(dt(this.sourceBuffer.buffered,h)&&dt(this.sourceBuffer.buffered,p)))&&S&&y});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 A(this,null,function*(){xt(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:a,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(yield(0,L.abortable)(o,function(){return pe(this,null,function*(){let d=(0,L.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,L.now)(),!d)return;let c=new DataView(d),h=Yn(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=h.getChunkEndTime(c,b)}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]),Kn(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())xt(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:a,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(yield(0,L.abortable)(n,function(){return pe(this,null,function*(){let u=(0,L.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,L.fromEvent)(window,"online").pipe((0,L.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,L.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),Kn(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}prepareByteRangeFetchSegmentParams(e,t){if(xt(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,bs.default)(e,0).byte.from,to:(0,bs.default)(e,-1).byte.to},{signal:a}=this.downloadAbortController;return{url:i,range:r,signal:a,onProgress:(o,u)=>A(this,null,function*(){if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,L.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:L.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}})}}prepareTemplateFetchSegmentParams(e,t){if(!xt(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,L.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:L.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,Du.default)(e,t.segment)&&this.abortSegment(t.segment)}onSomeTemplateDataLoaded(n){return A(this,arguments,function*({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!oe(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=Yn(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 A(this,arguments,function*({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!oe(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,b=h<=r;if(f){if(d.status==="downloading"&&b){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:Yn(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,L.isNullable)(this.sourceBuffer)||!oe(this.mediaSource,this.sourceBuffer))){!this.isLive&&te.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(dt(this.sourceBuffer.buffered,e.segment.time.from,100)&&dt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:L.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",qd(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=os(()=>(0,lT.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,L.abortable)(this.destroyAbortController.signal,function(){return pe(this,null,function*(){let o=(0,L.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))})}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Yn(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&&xt(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:L.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||!oe(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,L.isNullable)(e))return!1;let r=[],a=0,n=o=>{var l;if(a>=t)return;r.push(k({},o.time));let u=qd(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,Du.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=rT(r),(yield Promise.all(r.map(u=>this.sourceBufferTaskQueue.remove(u.from,u.to)))).reduce((u,l)=>u||l,!1)):!1})}abortBuffer(){return A(this,null,function*(){if(!this.sourceBuffer||!oe(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||!oe(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||!oe(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||!oe(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,L.isNullable)(e)?0:tt(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!this.sourceBuffer||!oe(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||!oe(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=os(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:L.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,L.isNullable)(this.sourceBuffer)||!oe(this.mediaSource,this.sourceBuffer)||(0,L.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:L.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var ae=require("@vkontakte/videoplayer-shared/es2015");var Ou=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new ae.ValueSubject(void 0);this.lastConnectionReused$=new ae.ValueSubject(void 0);this.lastRequestFirstBytes$=new ae.ValueSubject(void 0);this.recoverableError$=new ae.Subject;this.error$=new ae.Subject;this.abortAllController=new Te;this.subscription=new ae.SubscriptionRemovable;this.fetchManifest=(0,ae.abortable)(this.abortAllController.signal,function(e){return pe(this,null,function*(){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=sr(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Su(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Vu);return r?(t.log("success",(0,ae.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,ae.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)})}.bind(this));this.fetch=(0,ae.abortable)(this.abortAllController.signal,function(l){return pe(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 Z,Q,de;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 $=new URL(d,location.href);$.searchParams.append("bytes",`${i.from}-${i.to}`),d=$.toString();break}default:(0,ae.assertNever)(t)}this.requestQuic&&(d=sr(d));let p=this.abortAllController.signal,f;if(n){let $=new Te;if(f=(0,ae.merge)((0,ae.fromEvent)(this.abortAllController.signal,"abort"),(0,ae.fromEvent)(n,"abort")).subscribe(()=>{try{$.abort()}catch(F){Vu(F)}}),this.abortAllController.signal.aborted||n.aborted)try{$.abort()}catch(F){Vu(F)}p=$.signal}let b=(0,ae.now)();h.log("startRequest",(0,ae.flattenObject)({url:d,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:b}));let S=yield this.doFetch(d,{priority:a,headers:c,signal:p}),v=(0,ae.now)();if(!S)return h.error("error",{message:"No response in request"}),h.end(),this.unsubscribeAbortSubscription(f),null;if((Z=this.throughputEstimator)==null||Z.addRawRtt(v-b),!S.ok||!S.body){this.unsubscribeAbortSubscription(f);let $=`Fetch error ${S.status}: ${S.statusText}`;return h.error("error",{message:$}),h.end(),Promise.reject(new Error(`Fetch error ${S.status}: ${S.statusText}`))}if(this.onHeadersReceived(S.headers),!r&&!o){this.unsubscribeAbortSubscription(f);let $=(0,ae.now)(),F={requestStartedAt:b,requestEndedAt:$,duration:$-b};return h.log("endRequest",(0,ae.flattenObject)(F)),h.end(),S.arrayBuffer()}let y=S.body;if(o){let $;[y,$]=S.body.tee(),(Q=this.throughputEstimator)==null||Q.trackStream($,u)}let x=y.getReader(),E,P=parseInt((de=S.headers.get("content-length"))!=null?de:"",10);Number.isFinite(P)&&(E=P),!E&&i&&(E=i.to-i.from+1);let D=0,j=E?new Uint8Array(E):new Uint8Array(0),U=!1,G=$=>{this.unsubscribeAbortSubscription(f),U=!0,Vu($)},B=(0,ae.abortable)(p,function(V){return pe(this,arguments,function*({done:$,value:F}){if(D===0&&this.lastRequestFirstBytes$.next((0,ae.now)()-b),p.aborted){this.unsubscribeAbortSubscription(f);return}if(!$&&F){if(E)j.set(F,D),D+=F.byteLength;else{let M=new Uint8Array(j.length+F.length);M.set(j),M.set(F,j.length),j=M,D+=F.byteLength}r==null||r(new DataView(j.buffer),D),yield x==null?void 0:x.read().then(B,G)}})}.bind(this));yield x==null?void 0:x.read().then(B,G),this.unsubscribeAbortSubscription(f);let z=(0,ae.now)(),_={failed:U,requestStartedAt:b,requestEndedAt:z,duration:z-b};return U?(h.error("endRequest",(0,ae.flattenObject)(_)),h.end(),null):(h.log("endRequest",(0,ae.flattenObject)(_)),h.end(),j.buffer)})}.bind(this));this.fetchByteRangeRepresentation=(0,ae.abortable)(this.abortAllController.signal,function(e,t,i){return pe(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 b;if(u)b=new DataView(c,f.from-n,f.to-f.from+1);else{let y=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!y)return null;b=new DataView(y)}let S=t.parseSegments(b,p,f);return{init:p,dataView:new DataView(c),segments:S}})}.bind(this));this.fetchTemplateRepresentation=(0,ae.abortable)(this.abortAllController.signal,function(e,t){return pe(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(k({},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}=gu(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}fetchRepresentation(e,t,i="auto"){return A(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,ae.assertNever)(r)}})}destroy(){this.abortAllController.abort(),this.tracer.end(),this.subscription.unsubscribe()}doFetch(e,t){return A(this,null,function*(){let i=yield Gt(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:ae.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:ae.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:ae.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:ae.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:ae.ErrorCategory.FATAL})}})}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}},Vu=s=>{if(!Kn(s))throw s};var _u=require("@vkontakte/videoplayer-shared/es2015");var Zn=class s{constructor(e,t){this.currentRepresentation$=new _u.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,_u.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(k({},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&&xt(t.segmentReference))}};var A$=["timeupdate","progress","play","seeked","stalled","waiting"],k$=["timeupdate","progress","loadeddata","playing","seeked"];var Fu=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 re("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 Te;this.initManifest=(0,T.abortable)(this.destroyController.signal,function(e,t,i){return pe(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:T.ErrorCategory.PARSER,message:"No playable video representations"})})}.bind(this));this.updateManifest=(0,T.abortable)(this.destroyController.signal,function(){return pe(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:T.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=uT(e!=null?e:"",this.manifestUrlString)}catch(u){let l=(n=hu(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=Nt())==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=Au(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),b=r.video.some(S=>!S.hdr);te.display.isHDR&&p&&f?r.video=r.video.filter(S=>S.hdr):b&&(r.video=r.video.filter(S=>!S.hdr))}}let a=N(k({},t),{streams:r});return this.tracer.log("updateManifestEnd",(0,T.flattenObject)(a)),a})}.bind(this));this.initRepresentations=(0,T.abortable)(this.destroyController.signal,function(e,t,i){return pe(this,null,function*(){var h;this.tracer.log("initRepresentationsStart",(0,T.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(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 b;return!!((b=this.element)!=null&&b.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?Jo():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&es())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 Jn("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,T.isNonNullable)(t)){let p=this.manifest.streams.audio.reduce((f,b)=>[...f,...b.representations],[]);this.audioBufferManager=new Jn("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}Zn.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Zn(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)(...k$.map(p=>(0,T.fromEvent)(this.element,p))).pipe((0,T.map)(p=>this.element?tt(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 b=Ji(this.manifestUrlString,2);this.manifestUrlString=_e(this.manifestUrlString,b+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,T.fromEvent)(this.element,"play").subscribe(f=>{var b;return(b=this.livePauseWatchdogSubscription)==null?void 0:b.unsubscribe()})),this.representationSubscription.add((0,T.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,T.map)(({isActiveLive:f,isLowLatency:b})=>f&&b),(0,T.filterChanged)()).subscribe(f=>{this.isManualDecreasePlaybackInLive()||hs(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:b,isLowLatency:S})=>b&&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 b=this.liveSeekableDuration$.getValue()-f/1e3;this.liveSeekableDuration$.next(Math.max(b,-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,b)=>b.bufferLength<f.bufferLength),(0,T.map)(({rtt:f,bufferLength:b,segmentServerLatency:S})=>{let v=Ji(this.manifestUrlString,2);return(f/2+b+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:b,isLowLatency:S})=>{if(!S||!b)return;let v=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,y=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,x=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,E=f-v;if(this.isManualDecreasePlaybackInLive())return;let P=1;Math.abs(E)>y&&(P=1+Math.sign(E)*x),hs(this.element,P)})),this.representationSubscription.add(this.bufferLength$.subscribe(f=>{var S,v;let b=0;if(f){let y=((v=(S=this.element)==null?void 0:S.currentTime)!=null?v:0)*1e3;b=Math.min(...this.bufferManagers.map(E=>{var P,D;return(D=(P=E.getLiveSegmentsToLoadState(this.manifest))==null?void 0:P.to)!=null?D:y}))-y}this.liveLoadBufferLength$.getValue()!==b&&this.liveLoadBufferLength$.next(b)}));let p=0;this.representationSubscription.add((0,T.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,T.throttle)(1e3)).subscribe(S=>A(this,[S],function*({liveLoadBufferLength:f,bufferLength:b}){if(!this.element||this.isUpdatingLive)return;let v=this.element.playbackRate,y=Ji(this.manifestUrlString,2),x=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,E=Math.min(x,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*v),P=this.tuning.dashCmafLive.normalizedActualBufferOffset*v,D=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*v,j=isFinite(f)?f:b,U=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),G=x<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(G);let B="none";if(U?B="active_low_latency":this.isLowLatency$.getValue()&&G?(this.bufferManagers.forEach(z=>z.proceedLowLatencyLive()),B="active_low_latency"):y!==0&&j<E?B="live_forward_buffering":j<E+D&&(B="live_with_target_offset"),isFinite(f)&&(p=f>p?f:p),B==="live_forward_buffering"||B==="live_with_target_offset"){let z=p-(E+P),_=this.normolizeLiveOffset(Math.trunc(y+z/v)),Z=Math.abs(_-y),Q=0;!f||Z<=this.tuning.dashCmafLive.offsetCalculationError?Q=y:_>0&&Z>this.tuning.dashCmafLive.offsetCalculationError&&(Q=_),this.manifestUrlString=_e(this.manifestUrlString,Q,2)}(B==="live_with_target_offset"||B==="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,b)=>{var S;p&&(this.timeoutSourceOpenId=setTimeout(()=>{var v;if(((v=this.source)==null?void 0:v.readyState)==="open"){f();return}this.tuning.dash.rejectOnSourceOpenTimeout?b(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,Qd.default)((0,Qd.default)([...this.manifest.streams.audio,...this.manifest.streams.video],f=>f.representations),f=>{let b=[];return f.duration&&b.push(f.duration),xt(f.segmentReference)&&f.segmentReference.totalSegmentsDurationMs&&b.push(f.segmentReference.totalSegmentsDurationMs),b})];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"),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,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.tracer=e.tracer.createComponentTracer(this.constructor.name),this.fetcher=new Ou({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=Ui.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,k({},e.tuning.dashCmafLive.lowLatency.bufferEstimator)),this.initTracerSubscription()}seekLive(e){return A(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=_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(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)(...A$.map(e=>(0,T.fromEvent)(this.element,e)),(0,T.fromEvent)(window,"online")).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&&dt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{var p,f,b,S,v,y,x,E,P,D,j;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=(b=(f=this.videoBufferManager)==null?void 0:f.lastDataObtainedTimestamp)!=null?b:0;this.videoLastDataObtainedTimestamp$.next(o);let u=(v=(S=this.audioBufferManager)==null?void 0:S.lastDataObtainedTimestamp)!=null?v:0,l=(x=(y=this.videoBufferManager)==null?void 0:y.getForwardBufferDuration())!=null?x:0,d=(P=(E=this.audioBufferManager)==null?void 0:E.getForwardBufferDuration())!=null?P: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 U=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(U).catch(G=>{this.error$.next({id:"stallIntervalCallback",category:T.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:G})}),r.liveLastOffset=U}else{let U=this.element.currentTime*1e3;(D=this.videoBufferManager)==null||D.maintain(U),(j=this.audioBufferManager)==null||j.maintain(U),r.position=U}this.tracer.log("stallIntervalCallback",(0,T.flattenObject)(r))};(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 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,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),dt(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,this.tracer.log("seek",(0,T.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))})}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;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,T.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.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,T.flattenObject)({isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime,jumpTo:n,resultCurrentTime:this.element.currentTime})))}}};var kt=require("@vkontakte/videoplayer-shared/es2015"),Nu=class{constructor(){this.subscription=new kt.Subscription;this.pipSize$=new kt.ValueSubject(void 0);this.videoSize$=new kt.ValueSubject(void 0);this.elementSize$=new kt.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=kt.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,kt.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,kt.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,kt.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 Br=class{constructor(e){this.subscription=new ce.Subscription;this.videoState=new re("stopped");this.droppedFramesManager=new ss;this.stallsManager=new $u;this.elementSizeManager=new Nu;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new tr;this.audioTrackSwitchHistory=new tr;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"),O(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"),O(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&O(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"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;default:return(0,ce.assertNever)(e)}}};this.init3DScene=e=>{var i,r,a;if(this.scene3D)return;this.scene3D=new fs(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 wt(e.source.url),this.params=e,this.video=nt(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(ze(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 Fu({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=lt(this.video);this.subscription.add(()=>i.destroy());let r=this.constructor.name,a=o=>{e.error$.next({id:r,category:ce.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,ce.filter)(l=>!!l.length),(0,ce.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,ce.map)(l=>l.to.state!=="none"),(0,ce.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,ce.filter)(ce.isNonNullable),(0,ce.once)()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe((0,ce.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(Ht(this.video,t.isLooped,r)),this.subscription.add(ut(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(Et(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(Pt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),O(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),O(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,ce.assertNonNullable)(d,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let h=[];for(let p of d.audio){h.push(Nd(p));let f=[];for(let b of p.representations){let S=eT(b);f.push(S),this.audioTracksMap.set(S,{stream:p,representation:b})}this.audioStreamsMap.set(p,f)}this.params.output.availableAudioStreams$.next(h)}let c=[];for(let h of d.video){c.push(Ud(h));let p=[];for(let f of h.representations){let b=Zy(N(k({},f),{streamId:h.id}));b&&(p.push(b),this.videoTracksMap.set(b,{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=tT(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,ce.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,ce.fromEvent)(this.video,"progress")).subscribe(()=>A(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=$r(this.videoTracksMap.keys(),b=>{var S;return((S=this.videoTracksMap.get(b))==null?void 0:S.representation.id)===c.id});(0,ce.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 b=!!t.audioStream.getTransition();yield this.player.switchRepresentation("audio",h.id,b)}}),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,ce.filterChanged)()).subscribe(l=>{let d=$r(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(Ud(h))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,ce.filterChanged)()).subscribe(l=>{let d=$r(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(Nd(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,ce.map)(({to:l})=>l==="ready"),(0,ce.filterChanged)());this.subscription.add((0,ce.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,ce.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,ce.merge)(o,this.player.state$.stateChangeEnded$,(0,ce.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,ce.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ce.observableFrom)(["init"])).pipe((0,ce.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var U,G,B,z,_,Z,Q,de,$,F,V,M;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ba:$a,t=this.params.tuning.useNewAutoSelectVideoTrack?uu:ou,i=this.params.tuning.useNewAutoSelectVideoTrack?mi:nu,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=(U=r.videoTrack.getState())==null?void 0:U.id,u=$r(this.videoTracksMap.keys(),H=>H.id===o),l=a.currentVideoTrack$.getValue(),d=((z=(B=r.videoStream.getState())!=null?B:u&&((G=this.videoTracksMap.get(u))==null?void 0:G.stream))!=null?z:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!d)return;let c=$r(this.videoStreamsMap.keys(),H=>H.id===d.id),h=c&&this.videoStreamsMap.get(c);if(!h)return;let p=tt(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 b=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,S=Math.min(p/Math.min(f,b||1/0),1),v=(_=r.audioStream.getState())!=null?_:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,y=(v==null?void 0:v.id)&&$r(this.audioStreamsMap.keys(),H=>H.id===v.id)||this.audioStreamsMap.keys().next().value,x=0;if(y){if(u&&!n){let H=e(u,h,(Z=this.audioStreamsMap.get(y))!=null?Z:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,(Q=H==null?void 0:H.bitrate)!=null?Q:-1/0)}if(l){let H=e(l,h,(de=this.audioStreamsMap.get(y))!=null?de:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,($=H==null?void 0:H.bitrate)!=null?$:-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:x,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,abrLogger:this.params.dependencies.abrLogger}));let P=y&&t(E,h,(F=this.audioStreamsMap.get(y))!=null?F:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:S,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),D=(V=this.videoTracksMap.get(E))==null?void 0:V.representation,j=P&&((M=this.audioTracksMap.get(P))==null?void 0:M.representation);D&&j?(this.selectedRepresentations.video=D,this.selectedRepresentations.audio=j):D&&!j&&this.audioTracksMap.size===0&&(this.selectedRepresentations.video=D,this.selectedRepresentations.audio=null)}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ce.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),ot(this.video),this.tracer.end()}};var eo=class extends Br{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 Ee=require("@vkontakte/videoplayer-shared/es2015");var to=class extends Br{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 Ee.ValueSubject(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe((0,Ee.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,Ee.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,Ee.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,Ee.filter)(o=>(0,Ee.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,Ee.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,Ee.merge)(i.playbackRateState$,new Ee.ValueSubject(1))}).pipe((0,Ee.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,Ee.isNullable)(l)||(e=o-l)})).add((0,Ee.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,Ee.merge)(i.playbackRateState$,new Ee.ValueSubject(1))}).pipe((0,Ee.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,Ee.isNullable)(o)||(0,Ee.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=iT(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 dT=K(Ra(),1);var fe=require("@vkontakte/videoplayer-shared/es2015");var oi={};var gs=(s,e)=>new fe.Observable(t=>{let i=(r,a)=>t.next(a);return s.on(e,i),()=>s.off(e,i)}),io=class{constructor(e){this.subscription=new fe.Subscription;this.videoState=new re("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,fe.assertNever)(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:(0,fe.assertNever)(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:(0,fe.assertNever)(e)}break;case"paused":switch(e){case"paused":break;case"stopped":this.prepare();break;case"ready":this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused");break;case"playing":this.pause();break;default:(0,fe.assertNever)(e)}break;default:(0,fe.assertNever)(t)}};this.textTracksManager=new wt(e.source.url),this.video=nt(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(ze(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),ot(this.video)}loadHlsJs(){let e=!1,t=r=>{e||this.params.output.error$.next({id:r==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:fe.ErrorCategory.NETWORK,message:"Failed to load Hls.js",thrown:r}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,dT.default)(import("hls.js").then(r=>{e||(oi.Hls=r.default,oi.Events=r.default.Events,this.init())},t),()=>{window.clearTimeout(i),e=!0})}init(){(0,fe.assertNonNullable)(oi.Hls,"hls.js not loaded"),this.hls=new oi.Hls({fragLoadingMaxRetry:5,levelLoadingMaxRetry:2,manifestLoadingMaxRetry:2,fragLoadingMaxRetryTimeout:16e3,manifestLoadingMaxRetryTimeout:2e3,levelLoadingMaxRetryTimeout:2e3}),this.subscribe(),this.videoState.setState("stopped")}subscribe(){(0,fe.assertNonNullable)(oi.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:fe.ErrorCategory.WTF,message:"HlsJsProvider internal logic error",thrown:l})},r=lt(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(Ht(this.video,e.isLooped,i)),this.subscription.add(ut(this.video,e.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$)),this.subscription.add(Et(this.video,e.playbackRate,r.playbackRateState$,i)),a(Pt(this.video),t.elementVisible$),a(this.videoState.stateChangeEnded$.pipe((0,fe.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(gs(this.hls,oi.Events.ERROR).subscribe(l=>{var d;l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:fe.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"),O(e.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),O(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(gs(this.hls,oi.Events.MANIFEST_PARSED).pipe((0,fe.map)(({levels:l})=>l.reduce((d,c)=>{var y,x;let h=c.name||c.height.toString(10),{width:p,height:f}=c,b=(x=fi((y=c.attrs.QUALITY)!=null?y:""))!=null?x:(0,fe.videoSizeToQuality)({width:p,height:f});if(!b)return d;let S=c.attrs["FRAME-RATE"]?parseFloat(c.attrs["FRAME-RATE"]):void 0,v={id:h.toString(),quality:b,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(gs(this.hls,oi.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(gs(this.hls,oi.Events.LEVEL_LOADING).pipe((0,fe.map)(({url:l})=>ze(l))),t.hostname$),a(gs(this.hls,oi.Events.FRAG_CHANGED),l=>{var h,p,f,b;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)-((b=c==null?void 0:c.startPTS)!=null?b:0))*1e3)}),this.subscription.add(er(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=gs(this.hls,oi.Events.LEVEL_SWITCHED).pipe((0,fe.map)(({level:l})=>n(this.hls.levels[l])));o.pipe((0,fe.filter)(fe.isNonNullable)).subscribe(t.currentVideoTrack$,i),this.subscription.add(er(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{var f;if((0,fe.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,fe.merge)(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,fe.observableFrom)(["init"])).pipe((0,fe.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 ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).catch(t=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:fe.ErrorCategory.DOM,thrown:t})))||(this.videoState.setState("paused"),O(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"),O(this.params.desiredState.playbackState,"stopped",!0)}};var pT="X-Playback-Duration",Wd=s=>A(void 0,null,function*(){var r;let e=yield Gt(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(pT)?parseInt(e.headers.get(pT),10):void 0});var he=require("@vkontakte/videoplayer-shared/es2015");var Kd=K(sc(),1);var Uu=require("@vkontakte/videoplayer-shared/es2015");var L$=s=>{let e=null;if(s.QUALITY&&(e=fi(s.QUALITY)),!e&&s.RESOLUTION){let[t,i]=s.RESOLUTION.split("x").map(r=>parseInt(r,10));e=(0,Uu.videoSizeToQuality)({width:t,height:i})}return e!=null?e:null},M$=(s,e)=>{var a,n;let t=s.split(`
186
+ `),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,Kd.default)(l[1].split(",").map(y=>y.split("="))),h=(a=c.QUALITY)!=null?a:`stream-${c.BANDWIDTH}`,p=L$(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 b=c["FRAME-RATE"]?parseFloat(c["FRAME-RATE"]):void 0,S;if(c.RESOLUTION){let[y,x]=c.RESOLUTION.split("x").map(E=>parseInt(E,10));y&&x&&(S={width:y,height:x})}let v=new URL(t[++o],e).toString();p&&i.push({id:h,quality:p,url:v,bandwidth:f,size:S,fps:b})}if(d){let c=(0,Kd.default)(d[1].split(",").map(b=>{let S=b.indexOf("=");return[b.substring(0,S),b.substring(S+1)]}).map(([b,S])=>[b,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}},$$=s=>new Promise(e=>{setTimeout(()=>{e()},s)}),Yd=0,hT=(r,...a)=>A(void 0,[r,...a],function*(s,e=s,t,i){let o=yield(yield Gt(s,i)).text();Yd+=1;try{let{qualityManifests:u,textTracks:l}=M$(o,e);return{qualityManifests:u,textTracks:l}}catch(u){if(Yd<=t.manifestRetryMaxCount)return yield $$((0,Uu.getExponentialDelay)(Yd-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),hT(s,e,t)}return{qualityManifests:[],textTracks:[]}}),qu=hT;var qt=require("@vkontakte/videoplayer-shared/es2015");var ju=class{constructor(e,t,i,r,a){this.subscription=new qt.Subscription;this.abortControllers={destroy:new Te,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new qt.ValueSubject(null);this.getCurrentTime$=new qt.ValueSubject(null);this.error$=new qt.Subject;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:a},this.subscription.add(e.pipe((0,qt.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 A(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 A(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 A(this,null,function*(){for(let i of e){let r=new URL(i.url,t).toString(),n=yield(yield Gt(r,{signal:this.abortControllers.destroy.signal})).text(),o=this.parsePlaylist(n,r);return{textTrack:i,playlist:o}}})}parsePlaylist(e,t){let i={mediaSequence:0,programDateTime:"",segments:[],targetDuration:0,vkPlaybackDuration:0,segmentStartTime:0,vkStartTime:""},r=e.split(`
187
+ `),a=0;for(let n=0;n<r.length;++n){let o=r[n];switch(!0){case o.startsWith("#EXTINF:"):{let u=r[++n],l=new URL(u,t).toString(),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,qt.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(k({},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 Te;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:qt.ErrorCategory.WTF,thrown:t,message:e})}};var ro=class{constructor(e){this.subscription=new he.Subscription;this.videoState=new re("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new he.ValueSubject([]);this.liveOffset=new wr;this.manifestStartTime$=new he.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"),O(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"?O(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),O(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"&&O(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"&&(O(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return(0,he.assertNever)(t)}};var i;this.params=e,this.video=nt(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:he.VideoQuality.INVARIANT,url:this.params.source.url};let t=(r,a)=>qu(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 wt(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:he.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:he.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(ze(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new he.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:he.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=lt(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(ut(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Et(this.video,t.playbackRate,r.playbackRateState$,i)),a(Pt(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"),O(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),O(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,he.filterChanged)(),(0,he.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,he.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(ze(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,he.combine)({startTime:this.manifestStartTime$.pipe((0,he.filter)(he.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,he.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,he.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,he.observableFrom)(["init"])).pipe((0,he.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),ot(this.video)}prepare(){var o,u,l;let e=this.selectManifest();if((0,he.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=_e(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,he.isNullable)(d))this.maxSeekBackTime$.next(d);else{let h=(c=this.params.source.maxSeekBackTime)!=null?c:this.maxSeekBackTime$.getValue();((0,he.isNullable)(h)||!isFinite(h))&&Gt(n).then(p=>p.text()).then(p=>{var b;let f=(b=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(p))==null?void 0:b[1];if(f){let S=new URL(f,n).toString();Wd(S).then(v=>{(0,he.isNullable)(v)||this.maxSeekBackTime$.next(v)})}}).catch(()=>{})}})}playIfAllowed(){ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),O(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();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 ve=require("@vkontakte/videoplayer-shared/es2015");var so=class{constructor(e){this.subscription=new ve.Subscription;this.videoState=new re("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"),O(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"?O(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),O(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"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(r==null?void 0:r.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return(0,ve.assertNever)(t)}};this.textTracksManager=new wt(e.source.url),this.params=e,this.video=nt(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(ze(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),qu(_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: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=lt(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(Ht(this.video,t.isLooped,i)),this.subscription.add(ut(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Et(this.video,t.playbackRate,r.playbackRateState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),O(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),O(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 b=this.manifests$.getValue().find(S=>S.id===f);b&&(this.params.output.currentVideoTrack$.next(b),this.params.output.hostname$.next(ze(b.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)),!te.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),ot(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(){ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(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 fT=K(Sr(),1),Xd=K(Er(),1),mT=K(si(),1);var ke=require("@vkontakte/videoplayer-shared/es2015");var ao=class{constructor(e){this.subscription=new ke.Subscription;this.videoState=new re("stopped");this.trackUrls={};this.textTracksManager=new wt;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"),O(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"?O(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),O(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"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;default:return(0,ke.assertNever)(e)}};this.params=e,this.video=nt(e.container,e.tuning),this.params.output.element$.next(this.video),(0,fT.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,Xd.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:ke.ErrorCategory.WTF,message:"MpegProvider internal logic error",thrown:o})},r=lt(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,ke.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(Ht(this.video,t.isLooped,i)),this.subscription.add(ut(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Et(this.video,t.playbackRate,r.playbackRateState$,i)),a(Pt(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),O(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),O(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,ke.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,ke.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,ke.observableFrom)(["init"])).pipe((0,ke.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),ot(this.video)}prepare(){var i;let e=(i=this.params.desiredState.videoTrack.getState())==null?void 0:i.id;(0,ke.assertNonNullable)(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];(0,ke.assertNonNullable)(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=sr(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(ze(t))}playIfAllowed(){ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ke.ErrorCategory.DOM,thrown:e}))}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=mi(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,abrLogger:this.params.dependencies.abrLogger});t(h)},r=(l=this.params.output.currentVideoTrack$.getValue())==null?void 0:l.quality,a=!!(e.max||e.min),n=(0,Xd.default)(this.trackUrls).map(c=>c.track);if(!r||!a||ts(e,n[0].quality,(d=(0,mT.default)(n,-1))==null?void 0:d.quality)){i();return}let o=e.max?(0,ke.isLowerOrEqual)(r,e.max):!0,u=e.min?(0,ke.isHigherOrEqual)(r,e.min):!0;o&&u||i(e)}};var Be=require("@vkontakte/videoplayer-shared/es2015");var gT=require("@vkontakte/videoplayer-shared/es2015");var bT=["stun:videostun.mycdn.me:80"],B$=1e3,D$=3,Jd=()=>null,Hu=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=Jd;this.externalStopCallback=Jd;this.externalErrorCallback=Jd;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:bT}]};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:gT.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),B$)}normalizeOptions(e={}){let t={stunServerList:bT,maxRetryNumber:D$,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var no=class{constructor(e){this.videoState=new re("stopped");this.maxSeekBackTime$=new Be.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"),O(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"),O(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"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;default:return(0,Be.assertNever)(e)}};this.subscription=new Be.Subscription,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=nt(e.container,e.tuning),this.liveStreamClient=new Hu(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),ot(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:Be.ErrorCategory.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add((0,Be.merge)(this.videoState.stateChangeStarted$.pipe((0,Be.map)(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,Be.map)(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let r=lt(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(Pt(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(ut(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,Be.assertNever)(n.to)}},i)).add((0,Be.merge)(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,Be.observableFrom)(["init"])).pipe((0,Be.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(ze(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:Be.VideoQuality.INVARIANT}),this.video.srcObject=e,O(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:Be.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){ct(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:Be.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var oo=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 Gi=require("@vkontakte/videoplayer-shared/es2015"),ST=s=>new Gi.Observable(e=>{let t=new Gi.Subscription,i=s.desiredPlaybackState$.stateChangeStarted$.pipe((0,Gi.map)(({from:l,to:d})=>`${l}-${d}`)),r=s.desiredPlaybackState$.stateChangeEnded$,a=s.providerChanged$.pipe((0,Gi.map)(({type:l})=>l!==void 0)),n=new Gi.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 zt=require("@vkontakte/videoplayer-shared/es2015");function vT(){return new(window.AudioContext||window.webkitAudioContext)}var uo=class uo{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new Te;this.subscriptions=new zt.Subscription;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe((0,zt.filter)(a=>!!a.type),(0,zt.once)()).subscribe(({type:a})=>this.subscribe(a)))}subscribe(e){te.browser.isSafari&&e!=="MPEG"||this.subscriptions.add((0,zt.combine)({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe((0,zt.filter)(({playbackState:t,video:i,volume:{muted:r,volume:a}})=>t==="playing"&&!!i&&!r&&!!a),(0,zt.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=vT();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:uo.errorId,category:zt.ErrorCategory.VIDEO_PIPELINE,message:(t=e==null?void 0:e.message)!=null?t:`${uo.errorId} exception`,thrown:e})}};uo.errorId="VolumeMultiplierManager";var Ss=uo;var C$={chunkDuration:5e3,maxParallelRequests:5},lo=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,this.log=this.params.dependencies.logger.createComponentLog("ProviderContainer"),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name);let t=By([...Cy(this.params.tuning),...Dy(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,Zd.default)(r,l)),...t.filter(l=>(0,Zd.default)(r,l))]:a=t,this.log({message:`Selected formats: ${a.join(" > ")}`}),this.tracer.log("Selected formats",(0,w.flattenObject)(a)),this.screenFormatsIterator=new oo(a);let n=[...$d(!0),...$d(!1)];this.chromecastFormatsIterator=new oo(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&&Ss.isSupported()&&(this.volumeMultiplierManager=new Ss(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,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.tracer.log("reinitProvider"),this.destroyProvider(),this.initProvider()}switchToNextProvider(e){this.tracer.log("switchToNextProvider",{destination:e}),this.destroyProvider(),this.failoverIndex=void 0,this.skipFormat(e),this.initProvider()}destroyProvider(){let e=this.current$.getValue().provider;if(!e)return;this.log({message:"destroyProvider"}),this.tracer.log("destroyProvider"),e.destroy();let t=this.providerOutput.position$.getValue()*1e3,i=this.params.desiredState.seekState.getState(),r=i.state!=="none";if(this.params.desiredState.seekState.setState({state:"requested",position:r?i.position:t,forcePrecise:r?i.forcePrecise:!1}),e.scene3D){let n=e.scene3D.getCameraRotation();this.params.desiredState.cameraOrientation.setState({x:n.x,y:n.y})}let a=this.providerOutput.isBuffering$;a.getValue()||a.next(!0)}createProvider(e,t){switch(this.log({message:`createProvider: ${e}:${t}`}),this.tracer.log("createProvider",{destination:e,format:t}),e){case"SCREEN":return this.createScreenProvider(t);case"CHROMECAST":return this.createChromecastProvider(t);default:return(0,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 eo(N(k({},o),{source:u,sourceHls:l})):new In(N(k({},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 to(N(k({},o),{source:u})):new xn(N(k({},o),{source:u}))}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),te.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new so(N(k({},o),{source:u})):new io(N(k({},o),{source:u}))}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),new ro(N(k({},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 ao(N(k({},o),{source:u}))}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),new NS(N(k({},o),{source:u,config:N(k({},C$),{maxPausedTime:this.params.tuning.live.maxPausedTime})}))}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,w.assertNonNullable)(u),new no({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 La({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(k({},e),{url:i(e.url)})}return(0,TT.default)((0,yT.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))),ST({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,n={error:r,currentDestination:a};if(a==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("SCREEN"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let o=r.category===w.ErrorCategory.NETWORK,u=r.category===w.ErrorCategory.FATAL,l=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),d=i<this.params.tuning.providerErrorLimit&&!u,c=l&&!u&&(o&&t||!d);n=N(k({},n),{isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:c,canReinitProvider:d}),d?(i++,this.reinitProvider()):c?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(a!=null?a:"SCREEN"))}this.tracer.error("providerError",(0,w.flattenObject)(n))})),e}};var ie=require("@vkontakte/videoplayer-shared/es2015");var V$=5e3,IT="one_video_throughput",xT="one_video_rtt",zi=window.navigator.connection,ET=()=>{let s=zi==null?void 0:zi.downlink;if((0,ie.isNonNullable)(s)&&s!==10)return s*1e3},wT=()=>{let s=zi==null?void 0:zi.rtt;if((0,ie.isNonNullable)(s)&&s!==3e3)return s},PT=(s,e,t)=>{let i=t*8,r=i/s;return i/(r+e)},ep=class s{constructor(e){this.subscription=new ie.Subscription;this.concurrentDownloads=new Set;var r,a;this.tuningConfig=e;let t=s.load(IT)||(e.useBrowserEstimation?ET():void 0)||V$,i=(a=(r=s.load(xT))!=null?r:e.useBrowserEstimation?wT():void 0)!=null?a:0;if(this.throughput$=new ie.ValueSubject(t),this.rtt$=new ie.ValueSubject(i),this.rttAdjustedThroughput$=new ie.ValueSubject(PT(t,i,e.rttPenaltyRequestSize)),this.throughput=Ui.getSmoothedValue(t,-1,e),this.rtt=Ui.getSmoothedValue(i,1,e),e.useBrowserEstimation){let n=()=>{let u=ET();u&&this.throughput.next(u);let l=wT();(0,ie.isNonNullable)(l)&&this.rtt.next(l)};zi&&"onchange"in zi&&this.subscription.add((0,ie.fromEvent)(zi,"change").subscribe(n)),n()}this.subscription.add(this.throughput.smoothed$.subscribe(n=>{ie.safeStorage.set(IT,n.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(n=>{ie.safeStorage.set(xT,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,ie.combine)({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe((0,ie.map)(({throughput:n,rtt:o})=>PT(n,o,e.rttPenaltyRequestSize)),(0,ie.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,ie.now)(),r=new ie.Subscription;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add((0,ie.fromEvent)(e,"progress").pipe((0,ie.once)()).subscribe(a=>{t=a.loaded,i=(0,ie.now)()}));break;case 1:case 0:r.add((0,ie.fromEvent)(e,"loadstart").subscribe(()=>{t=0,i=(0,ie.now)()}));break}r.add((0,ie.fromEvent)(e,"loadend").subscribe(a=>{if(e.status===200){let n=a.loaded,o=(0,ie.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,ie.now)(),n=0,o=(0,ie.now)(),u=d=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${d}`).catch(()=>{})},l=h=>A(this,[h],function*({done:d,value:c}){if(d)!t&&this.addRawSpeed(r,(0,ie.now)()-a,1),this.concurrentDownloads.delete(e);else if(c){if(t){let p=(0,ie.now)();if(p-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||p-a>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let b=o-a;b&&this.addRawSpeed(n,b,1,t),n=c.byteLength,a=(0,ie.now)()}else n+=c.byteLength;o=(0,ie.now)()}else r+=c.byteLength,n+=c.byteLength,n>=this.tuningConfig.streamMinSampleSize&&(0,ie.now)()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,(0,ie.now)()-o,this.concurrentDownloads.size),n=0,o=(0,ie.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=ie.safeStorage.get(e);if((0,ie.isNonNullable)(t))return(i=parseInt(t,10))!=null?i:void 0}},AT=ep;var Dr=require("@vkontakte/videoplayer-shared/es2015");var kT={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:Dr.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Dr.VideoQuality.Q_720P,trafficSavingLimit:Dr.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:Dr.VideoQuality.Q_480P},dash:{forwardBufferTarget:6e4,forwardBufferTargetAuto:6e4,forwardBufferTargetManual:5*6e4,forwardBufferTargetPreload:5e3,seekBiasInTheEnd:2e3,maxSegmentDurationLeftToSelectNextSegment:3e3,minSafeBufferThreshold:.5,bufferPruningSafeZone:1e3,segmentRequestSize:1*1024*1024,representationSwitchForwardBufferGap:3e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useFetchPriorityHints:!0,enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,rejectOnSourceOpenTimeout:!1},dashCmafLive:{maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,lowLatency:{maxTargetOffset:3e3,maxTargetOffsetDeviation:250,playbackCatchupSpeedup:.05,isActiveOnDefault:!1,bufferEstimator:{emaAlpha:.45,changeThreshold:.05,deviationDepth:20,deviationFactor:.5,extremumInterval:5}}},live:{minBuffer:3e3,minBufferSegments:3,lowLatencyMinBuffer:1e3,lowLatencyMinBufferSegments:1,isLiveCatchUpMode:!1,lowLatencyActiveLiveDelay:3e3,activeLiveDelay:5e3,maxPausedTime:5e3},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:"07A4434E",useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:3*60*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useManagedMediaSource:!0,useNewSwitchTo:!1,useNewDashProvider:!1,useNewAutoSelectVideoTrack:!1,useSafariEndlessRequestBugfix:!0,useRefactoredSearchGap:!1,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,dynamicImportTimeout:5e3,maxPlaybackTransitionInterval:2e4,providerErrorLimit:3,manifestRetryInterval:300,manifestRetryMaxInterval:1e4,manifestRetryMaxCount:10,audioVideoSyncRate:20,webrtc:{connectionRetryMaxNumber:3},spherical:{enabled:!1,fov:{x:135,y:76},rotationSpeed:45,maxYawAngle:175,rotationSpeedCorrection:10,degreeToPixelCorrection:5,speedFadeTime:2e3,speedFadeThreshold:50},useVolumeMultiplier:!1,ignoreAudioRendererError:!1,useEnableSubtitlesParam:!1,useOldMSEDetection:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1},RT=s=>{var e;return N(k({},(0,Dr.fillWithDefault)(s,kT)),{configName:[...(e=s.configName)!=null?e:[],...kT.configName]})};var m=require("@vkontakte/videoplayer-shared/es2015");var Qi=require("@vkontakte/videoplayer-shared/es2015"),tp=({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 LT=require("@vkontakte/videoplayer-shared/es2015"),MT=s=>{let e=typeof s.container=="string"?document.getElementById(s.container):s.container;return(0,LT.assertNonNullable)(e,`Wrong container or containerId {${s.container}}`),e};var Gu=require("@vkontakte/videoplayer-shared/es2015"),$T=(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,Gu.filter)(r=>r.length>0),(0,Gu.once)()).subscribe(r=>{r.find(i)&&e.startTransitionTo(s)}):(s===void 0||t!=null&&t.getValue().find(i))&&e.startTransitionTo(s)};var co=class{constructor(e={configName:[]},t=m.Tracer.createRootTracer(!1)){this.subscription=new m.Subscription;this.logger=new m.Logger;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new m.ValueSubject(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new m.ValueSubject(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new re("stopped"),seekState:new re({state:"none"}),volume:new re({volume:1,muted:!1}),videoTrack:new re(void 0),videoStream:new re(void 0),audioStream:new re(void 0),autoVideoTrackSwitching:new re(!0),autoVideoTrackLimits:new re({}),isLooped:new re(!1),isLowLatency:new re(!1),playbackRate:new re(1),externalTextTracks:new re([]),internalTextTracks:new re([]),currentTextTrack:new re(void 0),textTrackCuesSettings:new re({}),cameraOrientation:new re({x:0,y:0})};this.info={playbackState$:new m.ValueSubject(void 0),position$:new m.ValueSubject(0),duration$:new m.ValueSubject(1/0),muted$:new m.ValueSubject(!1),volume$:new m.ValueSubject(1),availableVideoStreams$:new m.ValueSubject([]),currentVideoStream$:new m.ValueSubject(void 0),availableQualities$:new m.ValueSubject([]),availableQualitiesFps$:new m.ValueSubject({}),currentQuality$:new m.ValueSubject(void 0),isAutoQualityEnabled$:new m.ValueSubject(!0),autoQualityLimitingAvailable$:new m.ValueSubject(!1),autoQualityLimits$:new m.ValueSubject({}),predefinedQualityLimitType$:new m.ValueSubject("unknown"),availableAudioStreams$:new m.ValueSubject([]),currentAudioStream$:new m.ValueSubject(void 0),availableAudioTracks$:new m.ValueSubject([]),isAudioAvailable$:new m.ValueSubject(!0),currentPlaybackRate$:new m.ValueSubject(1),currentBuffer$:new m.ValueSubject({start:0,end:0}),isBuffering$:new m.ValueSubject(!0),isStalled$:new m.ValueSubject(!1),isEnded$:new m.ValueSubject(!1),isLooped$:new m.ValueSubject(!1),isLive$:new m.ValueSubject(void 0),isLiveEnded$:new m.ValueSubject(null),canChangePlaybackSpeed$:new m.ValueSubject(void 0),atLiveEdge$:new m.ValueSubject(void 0),atLiveDurationEdge$:new m.ValueSubject(void 0),liveTime$:new m.ValueSubject(void 0),liveBufferTime$:new m.ValueSubject(void 0),liveLatency$:new m.ValueSubject(void 0),currentFormat$:new m.ValueSubject(void 0),availableTextTracks$:new m.ValueSubject([]),currentTextTrack$:new m.ValueSubject(void 0),throughputEstimation$:new m.ValueSubject(void 0),rttEstimation$:new m.ValueSubject(void 0),videoBitrate$:new m.ValueSubject(void 0),hostname$:new m.ValueSubject(void 0),httpConnectionType$:new m.ValueSubject(void 0),httpConnectionReused$:new m.ValueSubject(void 0),surface$:new m.ValueSubject("none"),chromecastState$:new m.ValueSubject("NOT_AVAILABLE"),chromecastDeviceName$:new m.ValueSubject(void 0),intrinsicVideoSize$:new m.ValueSubject(void 0),availableSources$:new m.ValueSubject(void 0),is3DVideo$:new m.ValueSubject(!1),currentVideoSegmentLength$:new m.ValueSubject(0),currentAudioSegmentLength$:new m.ValueSubject(0)};this.events={inited$:new m.Subject,ready$:new m.Subject,started$:new m.Subject,playing$:new m.Subject,paused$:new m.Subject,stopped$:new m.Subject,willStart$:new m.Subject,willResume$:new m.Subject,willPause$:new m.Subject,willStop$:new m.Subject,willDestruct$:new m.Subject,watchCoverageRecord$:new m.Subject,watchCoverageLive$:new m.Subject,managedError$:new m.Subject,fatalError$:new m.Subject,fetcherRecoverableError$:new m.Subject,ended$:new m.Subject,looped$:new m.Subject,seeked$:new m.Subject,willSeek$:new m.Subject,autoplaySoundProhibited$:new m.Subject,firstBytes$:new m.Subject,loadedMetadata$:new m.Subject,firstFrame$:new m.Subject,canplay$:new m.Subject,log$:new m.Subject,fetcherError$:new m.Subject,severeStallOccured$:new m.Subject};this.experimental={element$:new m.ValueSubject(void 0),tuningConfigName$:new m.ValueSubject([]),enableDebugTelemetry$:new m.ValueSubject(!1),dumpTelemetry:xS,getCurrentTime$:new m.ValueSubject(null)};if(this.initLogs(),this.tuning=RT(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new vo({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new AT(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new m.InternalsExposure("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return new Proxy(this,{get:(i,r,a)=>{let n=Reflect.get(i,r,a);return typeof n!="function"?n:(...o)=>{try{return n.apply(i,o)}catch(u){let l=o.map(h=>JSON.stringify(h,(p,f)=>{let b=typeof f;return(0,BT.default)(["number","string","boolean"],b)?f:f===null?null:`<${b}>`})),d=`Player.${String(r)}`,c=`Exception calling ${d} (${l.join(", ")})`;throw this.events.fatalError$.next({id:d,category:m.ErrorCategory.WTF,message:c,thrown:u}),u}}}})}initVideo(e){var a;this.config=e,(a=this.internalsExposure)==null||a.expose({config:e,logger:this.logger,tuning:this.tuning}),this.setMuted(this.tuning.isAudioDisabled);let t=()=>{var l,d,c;let u=e,{container:n}=u,o=sp(u,["container"]);this.tracer.log("initVideo",(0,m.flattenObject)(o)),this.domContainer=MT(e),this.chromecastInitializer.contentId=(l=e.meta)==null?void 0:l.videoId,this.providerContainer=new lo({sources:e.sources,meta:(d=e.meta)!=null?d:{},failoverHosts:(c=e.failoverHosts)!=null?c:[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0)},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?te.isInited$.pipe((0,m.filter)(n=>!!n),(0,m.once)()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),(0,m.fromEvent)(document,"visibilitychange").pipe((0,m.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,m.filter)(e=>!!e),(0,m.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,m.filter)(e=>!!e),(0,m.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,m.filter)(e=>!!e),(0,m.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,m.filter)(e=>!!e),(0,m.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,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{let i=this.info.duration$.getValue(),r=this.info.isLive$.getValue(),a=e;e>=i&&!r&&(a=i-this.tuning.seekNearDurationBias),this.tracer.log("seekTime",{duration:i,isLive:r,time:e,calculatedTime:a,forcePrecise:t}),Number.isFinite(a)&&(this.events.willSeek$.next({from:this.getExactTime(),to:a}),this.desiredState.seekState.setState({state:"requested",position:a*1e3,forcePrecise:t}))})),this}seekPercent(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.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,m.filter)(i=>!!i),(0,m.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.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,m.filter)(t=>!!t),(0,m.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.tracer.log("setMuted",{isMuted:e,nextMuted:i,volume:a,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setMuted(i):t.startTransitionTo({volume:a,muted:i})})),this}setVideoStream(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.desiredState.videoStream.startTransitionTo(e)})),this}setAudioStream(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.desiredState.audioStream.startTransitionTo(e)})),this}setQuality(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{(0,m.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,m.filter)(i=>i.length>0),(0,m.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,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)})),this}setAutoQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.tracer.log("setAutoQualityLimits",(0,m.flattenObject)(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)})),this}setPredefinedQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.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,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{var i;(0,m.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,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{e.length&&this.tracer.log("setExternalTextTracks",(0,m.flattenObject)(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>k({type:"external"},t)))})),this}selectTextTrack(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{var t;$T(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,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.tracer.log("setTextTrackCueSettings",k({},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,m.filter)(t=>!!t),(0,m.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,m.filter)(i=>!!i),(0,m.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,m.filter)(t=>!!t),(0,m.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,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{let i=this.getScene3D();if(this.tracer.log("moveCameraFocusPX",{isScene3DAvailable:!!i,dxpx:e,dypx:t}),i){let r=i.getCameraRotation(),a=i.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:r.x+a.x,y:r.y+a.y})}})),this}holdCamera(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>e),(0,m.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.holdCamera()})),this}releaseCamera(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.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,m.isNullable)(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return(0,m.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,m.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,m.map)(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(ed(e,t,i))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe((0,m.filter)(({from:e})=>e==="stopped"),(0,m.once)()).subscribe(()=>{this.initedAt=(0,m.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,m.flattenObject)(n)),n.state==="requested"?this.desiredState.seekState.setState(N(k({},n),{state:"applying"})):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:m.ErrorCategory.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe((0,m.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,m.flattenObject)(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe((0,m.map)(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe((0,m.map)(n=>n.destination),(0,m.filterChanged)()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add((0,m.combine)({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe((0,m.map)(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>(0,m.isInvariantQuality)(u)?1:(0,m.isInvariantQuality)(l)?-1:(0,m.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,m.filterChanged)()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe((0,m.filter)(n=>(0,m.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,m.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe((0,m.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe((0,m.filterChanged)()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe((0,m.filterChanged)()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe((0,m.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,m.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,m.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,m.combine)({hasLiveOffsetByPaused:(0,m.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,m.map)(n=>n.to),(0,m.filterChanged)(),(0,m.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,m.combine)({atLiveEdge:(0,m.combine)({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:tp({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe((0,m.map)(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),(0,m.filterChanged)(),(0,m.tap)(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe((0,m.map)(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add((0,m.combine)({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe((0,m.map)(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),(0,m.filterChanged)(),(0,m.tap)(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe((0,m.map)(n=>n.muted),(0,m.filterChanged)()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe((0,m.map)(n=>n.volume),(0,m.filterChanged)()).subscribe(this.info.volume$)).add(tp({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add((0,m.merge)(e.providerOutput.endedEvent$.pipe((0,m.mapTo)(!0)),e.providerOutput.seekedEvent$.pipe((0,m.mapTo)(!1))).pipe((0,m.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,m.map)(n=>({id:n?`No${n}`:"NoProviders",category:m.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,m.once)(),(0,m.map)(n=>n!=null?n:(0,m.now)()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe((0,m.once)(),(0,m.map)(()=>(0,m.now)()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe((0,m.once)(),(0,m.map)(()=>(0,m.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 m.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new m.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe((0,m.filter)(({to:n})=>n==="playing"),(0,m.once)()).subscribe(()=>i.next(!1)));let r=0,a=(0,m.merge)(e.providerOutput.isBuffering$,t,i).pipe((0,m.map)(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),(0,m.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,m.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,m.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,m.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 m.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe((0,m.filterChanged)((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe((0,m.filter)(i=>i.length>0),(0,m.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=mi(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,m.merge)(this.desiredState.videoTrack.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe((0,m.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,m.assertNonNullable)(this.providerContainer),(0,m.assertNonNullable)(e),IS(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(i=>TS(i)),this.providerContainer.current$.subscribe(({type:i})=>Ma("provider",i)),e.duration$.subscribe(i=>Ma("duration",i)),e.availableVideoTracks$.pipe((0,m.filter)(i=>!!i.length),(0,m.once)()).subscribe(i=>Ma("tracks",i)),this.events.fatalError$.subscribe(new yt("fatalError")),this.events.managedError$.subscribe(new yt("managedError")),e.position$.subscribe(new yt("position")),e.currentVideoTrack$.pipe((0,m.map)(i=>i==null?void 0:i.quality)).subscribe(new yt("quality")),this.info.currentBuffer$.subscribe(new yt("buffer")),e.isBuffering$.subscribe(new yt("isBuffering"))].forEach(i=>this.subscription.add(i)),Ma("codecs",te.video.supportedCodecs)}initTracerSubscription(){let e=(0,m.getTraceSubscriptionMethod)(this.tracer.log.bind(this.tracer)),t=(0,m.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,m.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,m.combine)({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe((0,m.filter)(({currentQuality:i,videoBitrate:r})=>!!i&&!!r),(0,m.filterChanged)((i,r)=>i.currentQuality===r.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe((0,m.filter)(i=>i>0),(0,m.filterChanged)()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe((0,m.filter)(i=>i>0),(0,m.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,m.combine)({currentBuffer:this.info.currentBuffer$.pipe((0,m.filter)(i=>i.end>0),(0,m.filterChanged)((i,r)=>i.end===r.end&&i.start===r.start)),position:this.info.position$.pipe((0,m.filterChanged)())}).pipe((0,m.throttle)(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe((0,m.filterChanged)()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe((0,m.filterChanged)()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe((0,m.filterChanged)()).subscribe(e("canChangePlaybackSpeed"))).add((0,m.combine)({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe((0,m.filter)(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),(0,m.throttle)(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe((0,m.filterChanged)(),(0,m.filter)(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe((0,m.filterChanged)(),(0,m.filter)(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe((0,m.filterChanged)()).subscribe(e("muted"))).add(this.info.volume$.pipe((0,m.filterChanged)()).subscribe(e("volume"))).add(this.info.isEnded$.pipe((0,m.filterChanged)(),(0,m.filter)(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add((0,m.combine)({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe((0,m.filter)(({throughputEstimation:i,rtt:r})=>!!i&&!!r),(0,m.throttle)(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe((0,m.filterChanged)(),(0,m.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:m.ErrorCategory.DOM,message:String(r)})})});this.subscription.add((0,m.merge)((0,m.fromEvent)(document,"visibilitychange"),(0,m.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);this.tracer.log("setVideoTrackIdByQuality",(0,m.flattenObject)({quality:t,availableTracks:(0,m.flattenObject)(e),track:(0,m.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&&!Oa()}};var Si=require("@vkontakte/videoplayer-shared/es2015"),O$=`@vkontakte/videoplayer-core@${el}`;