rx-player 4.0.0-dev.202402213 → 4.0.0-dev.2024022300
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/VERSION +1 -1
- package/dist/commonjs/__GENERATED_CODE/embedded_dash_wasm.js +1 -1
- package/dist/commonjs/__GENERATED_CODE/embedded_worker.js +1 -1
- package/dist/commonjs/core/main/worker/worker_main.js +8 -9
- package/dist/commonjs/features/features_object.js +1 -1
- package/dist/commonjs/features/list/dash.js +2 -2
- package/dist/commonjs/features/types.d.ts +8 -3
- package/dist/commonjs/main_thread/api/public_api.js +2 -7
- package/dist/commonjs/multithread_types.d.ts +1 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.d.ts +4 -3
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.js +11 -4
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.d.ts +2 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.js +12 -3
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.d.ts +3 -2
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.js +22 -11
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/parse_s_element.d.ts +11 -2
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/parse_s_element.js +74 -3
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.d.ts +2 -1
- package/dist/commonjs/parsers/manifest/dash/common/parse_periods.js +3 -1
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/index.d.ts +17 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/index.js +19 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/AdaptationSet.d.ts +24 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/AdaptationSet.js +400 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/BaseURL.d.ts +24 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/BaseURL.js +33 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/ContentComponent.d.ts +23 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/ContentComponent.js +70 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/ContentProtection.d.ts +22 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/ContentProtection.js +118 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/EventStream.d.ts +23 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/EventStream.js +154 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/Initialization.d.ts +22 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/Initialization.js +70 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/MPD.d.ts +23 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/MPD.js +221 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/Period.d.ts +23 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/Period.js +179 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/Representation.d.ts +22 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/Representation.js +256 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentBase.d.ts +23 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentBase.js +152 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentList.d.ts +22 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentList.js +60 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentTemplate.d.ts +24 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentTemplate.js +125 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentTimeline.d.ts +22 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentTimeline.js +36 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentURL.d.ts +24 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentURL.js +82 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/utils.d.ts +176 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/node_parsers/utils.js +382 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/parse_from_xml_string.d.ts +24 -0
- package/dist/commonjs/parsers/manifest/dash/fast-js-parser/parse_from_xml_string.js +142 -0
- package/dist/commonjs/parsers/manifest/dash/node_parser_types.d.ts +5 -3
- package/dist/commonjs/public_types.d.ts +1 -1
- package/dist/commonjs/transports/dash/manifest_parser.js +33 -4
- package/dist/commonjs/utils/xml-parser.d.ts +70 -0
- package/dist/commonjs/utils/xml-parser.js +357 -0
- package/dist/es2017/__GENERATED_CODE/embedded_dash_wasm.js +1 -1
- package/dist/es2017/__GENERATED_CODE/embedded_worker.js +1 -1
- package/dist/es2017/core/main/worker/worker_main.js +8 -9
- package/dist/es2017/features/features_object.js +1 -1
- package/dist/es2017/features/list/dash.js +2 -2
- package/dist/es2017/features/types.d.ts +8 -3
- package/dist/es2017/main_thread/api/public_api.js +2 -7
- package/dist/es2017/multithread_types.d.ts +1 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.d.ts +4 -3
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.js +12 -5
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.d.ts +2 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.js +13 -4
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.d.ts +3 -2
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.js +22 -11
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/parse_s_element.d.ts +11 -2
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/parse_s_element.js +49 -2
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.d.ts +2 -1
- package/dist/es2017/parsers/manifest/dash/common/parse_periods.js +3 -1
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/index.d.ts +17 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/index.js +17 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/AdaptationSet.d.ts +24 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/AdaptationSet.js +358 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/BaseURL.d.ts +24 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/BaseURL.js +30 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/ContentComponent.d.ts +23 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/ContentComponent.js +45 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/ContentProtection.d.ts +22 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/ContentProtection.js +77 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/EventStream.d.ts +23 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/EventStream.js +101 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/Initialization.d.ts +22 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/Initialization.js +45 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/MPD.d.ts +23 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/MPD.js +179 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/Period.d.ts +23 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/Period.js +137 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/Representation.d.ts +22 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/Representation.js +214 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentBase.d.ts +23 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentBase.js +111 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentList.d.ts +22 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentList.js +41 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentTemplate.d.ts +24 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentTemplate.js +84 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentTimeline.d.ts +22 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentTimeline.js +33 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentURL.d.ts +24 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/SegmentURL.js +57 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/utils.d.ts +176 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/node_parsers/utils.js +310 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/parse_from_xml_string.d.ts +24 -0
- package/dist/es2017/parsers/manifest/dash/fast-js-parser/parse_from_xml_string.js +114 -0
- package/dist/es2017/parsers/manifest/dash/node_parser_types.d.ts +5 -3
- package/dist/es2017/public_types.d.ts +1 -1
- package/dist/es2017/transports/dash/manifest_parser.js +33 -4
- package/dist/es2017/utils/xml-parser.d.ts +70 -0
- package/dist/es2017/utils/xml-parser.js +322 -0
- package/dist/mpd-parser.wasm +0 -0
- package/dist/rx-player.js +141 -65
- package/dist/rx-player.min.js +1 -1
- package/dist/worker.js +8 -3
- package/package.json +1 -1
- package/.vscode/settings.json +0 -9
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/index.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/index.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/AdaptationSet.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/AdaptationSet.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/BaseURL.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/BaseURL.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/ContentComponent.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/ContentComponent.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/ContentProtection.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/ContentProtection.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/EventStream.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/EventStream.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/Initialization.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/Initialization.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/MPD.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/MPD.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/Period.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/Period.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/Representation.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/Representation.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentBase.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentBase.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentList.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentList.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentTemplate.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentTemplate.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentTimeline.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentTimeline.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentURL.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentURL.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/utils.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/utils.js +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/parse_from_document.d.ts +0 -0
- /package/dist/commonjs/parsers/manifest/dash/{js-parser → native-parser}/parse_from_document.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/index.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/index.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/AdaptationSet.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/AdaptationSet.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/BaseURL.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/BaseURL.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/ContentComponent.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/ContentComponent.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/ContentProtection.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/ContentProtection.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/EventStream.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/EventStream.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/Initialization.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/Initialization.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/MPD.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/MPD.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/Period.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/Period.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/Representation.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/Representation.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentBase.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentBase.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentList.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentList.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentTemplate.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentTemplate.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentTimeline.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentTimeline.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentURL.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/SegmentURL.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/utils.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/node_parsers/utils.js +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/parse_from_document.d.ts +0 -0
- /package/dist/es2017/parsers/manifest/dash/{js-parser → native-parser}/parse_from_document.js +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.EMBEDDED_WORKER = void 0;
|
|
4
|
-
var blob = new Blob(["(function(){" + "\"use strict\";(()=>{var ds=Object.defineProperty,ls=Object.defineProperties;var fs=Object.getOwnPropertyDescriptors;var ma=Object.getOwnPropertySymbols;var ms=Object.prototype.hasOwnProperty,cs=Object.prototype.propertyIsEnumerable;var ca=(n,e,t)=>e in n?ds(n,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):n[e]=t,Se=(n,e)=>{for(var t in e||(e={}))ms.call(e,t)&&ca(n,t,e[t]);if(ma)for(var t of ma(e))cs.call(e,t)&&ca(n,t,e[t]);return n},Me=(n,e)=>ls(n,fs(e));var b={PRODUCTION:0,DEV:1,CURRENT_ENV:0};var gs={DEFAULT_REQUEST_TIMEOUT:3e4,DEFAULT_CONNECTION_TIMEOUT:15e3,DEFAULT_TEXT_TRACK_MODE:\"native\",DEFAULT_ENABLE_FAST_SWITCHING:!0,DELTA_POSITION_AFTER_RELOAD:{bitrateSwitch:-.1,trackSwitch:{audio:0,video:0,other:0}},DEFAULT_CODEC_SWITCHING_BEHAVIOR:\"continue\",DEFAULT_AUTO_PLAY:!1,DEFAULT_WANTED_BUFFER_AHEAD:30,DEFAULT_MAX_BUFFER_AHEAD:1/0,DEFAULT_MAX_BUFFER_BEHIND:1/0,DEFAULT_MAX_VIDEO_BUFFER_SIZE:1/0,MAXIMUM_MAX_BUFFER_AHEAD:{text:18e3},MINIMUM_MAX_BUFFER_AHEAD:{text:120},MAXIMUM_MAX_BUFFER_BEHIND:{text:18e3},DEFAULT_BASE_BANDWIDTH:0,INACTIVITY_DELAY:6e4,DEFAULT_THROTTLE_VIDEO_BITRATE_WHEN_HIDDEN:!1,DEFAULT_VIDEO_RESOLUTION_LIMIT:\"none\",DEFAULT_LIVE_GAP:{DEFAULT:10,LOW_LATENCY:3.5},BUFFER_DISCONTINUITY_THRESHOLD:.2,BITRATE_REBUFFERING_RATIO:1.5,DEFAULT_MAX_MANIFEST_REQUEST_RETRY:4,DEFAULT_CDN_DOWNGRADE_TIME:60,DEFAULT_MAX_REQUESTS_RETRY_ON_ERROR:4,INITIAL_BACKOFF_DELAY_BASE:{REGULAR:200,LOW_LATENCY:50},MAX_BACKOFF_DELAY_BASE:{REGULAR:3e3,LOW_LATENCY:1e3},SAMPLING_INTERVAL_MEDIASOURCE:1e3,SAMPLING_INTERVAL_LOW_LATENCY:500,SAMPLING_INTERVAL_NO_MEDIASOURCE:500,ABR_ENTER_BUFFER_BASED_ALGO:10,ABR_EXIT_BUFFER_BASED_ALGO:5,ABR_MINIMUM_TOTAL_BYTES:15e4,ABR_MINIMUM_CHUNK_SIZE:16e3,ABR_STARVATION_FACTOR:{DEFAULT:.72,LOW_LATENCY:.72},ABR_REGULAR_FACTOR:{DEFAULT:.72,LOW_LATENCY:.72},ABR_STARVATION_GAP:{DEFAULT:5,LOW_LATENCY:5},OUT_OF_STARVATION_GAP:{DEFAULT:7,LOW_LATENCY:7},ABR_STARVATION_DURATION_DELTA:.1,ABR_FAST_EMA:2,ABR_SLOW_EMA:10,RESUME_GAP_AFTER_SEEKING:{DEFAULT:1.5,LOW_LATENCY:.5},RESUME_GAP_AFTER_NOT_ENOUGH_DATA:{DEFAULT:.5,LOW_LATENCY:.5},RESUME_GAP_AFTER_BUFFERING:{DEFAULT:5,LOW_LATENCY:.5},REBUFFERING_GAP:{DEFAULT:.5,LOW_LATENCY:.2},MINIMUM_BUFFER_AMOUNT_BEFORE_FREEZING:2,UNFREEZING_SEEK_DELAY:6e3,FREEZING_STALLED_DELAY:600,UNFREEZING_DELTA_POSITION:.001,SEGMENT_SYNCHRONIZATION_DELAY:1500,MISSING_DATA_TRIGGER_SYNC_DELAY:.1,MAX_TIME_MISSING_FROM_COMPLETE_SEGMENT:.15,MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE:.4,MAX_MANIFEST_BUFFERED_DURATION_DIFFERENCE:.3,MINIMUM_SEGMENT_SIZE:.005,APPEND_WINDOW_SECURITIES:{START:.2,END:.1},MAXIMUM_HTML_TEXT_TRACK_UPDATE_INTERVAL:50,TEXT_TRACK_SIZE_CHECKS_INTERVAL:250,BUFFER_PADDING:{audio:1,video:3,other:1},SEGMENT_PRIORITIES_STEPS:[2,4,8,12,18,25],MAX_HIGH_PRIORITY_LEVEL:1,MIN_CANCELABLE_PRIORITY:3,EME_DEFAULT_VIDEO_CODECS:['video/mp4;codecs=\"avc1.4d401e\"','video/mp4;codecs=\"avc1.42e01e\"','video/webm;codecs=\"vp8\"'],EME_DEFAULT_AUDIO_CODECS:['audio/mp4;codecs=\"mp4a.40.2\"',\"audio/webm;codecs=opus\"],EME_DEFAULT_WIDEVINE_ROBUSTNESSES:[\"HW_SECURE_ALL\",\"HW_SECURE_DECODE\",\"HW_SECURE_CRYPTO\",\"SW_SECURE_DECODE\",\"SW_SECURE_CRYPTO\"],EME_DEFAULT_PLAYREADY_RECOMMENDATION_ROBUSTNESSES:[\"3000\",\"2000\"],EME_KEY_SYSTEMS:{clearkey:[\"webkit-org.w3.clearkey\",\"org.w3.clearkey\"],widevine:[\"com.widevine.alpha\"],playready:[\"com.microsoft.playready.recommendation\",\"com.microsoft.playready\",\"com.chromecast.playready\",\"com.youtube.playready\"],fairplay:[\"com.apple.fps.1_0\"]},MAX_CONSECUTIVE_MANIFEST_PARSING_IN_UNSAFE_MODE:10,MIN_MANIFEST_PARSING_TIME_TO_ENTER_UNSAFE_MODE:200,MIN_DASH_S_ELEMENTS_TO_PARSE_UNSAFELY:300,OUT_OF_SYNC_MANIFEST_REFRESH_DELAY:3e3,FAILED_PARTIAL_UPDATE_MANIFEST_REFRESH_DELAY:3e3,DASH_FALLBACK_LIFETIME_WHEN_MINIMUM_UPDATE_PERIOD_EQUAL_0:3,EME_DEFAULT_MAX_SIMULTANEOUS_MEDIA_KEY_SESSIONS:15,EME_MAX_STORED_PERSISTENT_SESSION_INFORMATION:1e3,EME_WAITING_DELAY_LOADED_SESSION_EMPTY_KEYSTATUSES:100,FORCED_ENDED_THRESHOLD:8e-4,ADAP_REP_SWITCH_BUFFER_PADDINGS:{video:{before:5,after:5},audio:{before:2,after:2.5},text:{before:0,after:0}},SOURCE_BUFFER_FLUSHING_INTERVAL:500,CONTENT_REPLACEMENT_PADDING:1.2,CACHE_LOAD_DURATION_THRESHOLDS:{video:50,audio:10},STREAM_EVENT_EMITTER_POLL_INTERVAL:250,DEFAULT_MAXIMUM_TIME_ROUNDING_ERROR:.001,BUFFERED_HISTORY_RETENTION_TIME:6e4,BUFFERED_HISTORY_MAXIMUM_ENTRIES:200,MIN_BUFFER_AHEAD:5,UPTO_CURRENT_POSITION_CLEANUP:5,DEFAULT_VIDEO_REPRESENTATIONS_SWITCHING_MODE:\"seamless\",DEFAULT_AUDIO_REPRESENTATIONS_SWITCHING_MODE:\"seamless\",DEFAULT_VIDEO_TRACK_SWITCHING_MODE:\"reload\",DEFAULT_AUDIO_TRACK_SWITCHING_MODE:\"seamless\"},pa=gs;function hs(n,...e){if(n==null)throw new TypeError(\"Cannot convert undefined or null to object\");let t=Object(n);for(let r=0;r<e.length;r++){let i=e[r];for(let a in i)Object.prototype.hasOwnProperty.call(i,a)&&(t[a]=i[a])}return t}var G=typeof Object.assign==\"function\"?Object.assign:hs;function yr(n){return n!=null&&!Array.isArray(n)&&typeof n==\"object\"}function Dt(n,...e){if(e.length===0)return n;let t=e.shift();if(yr(n)&&yr(t))for(let r in t)if(yr(t[r])){let i=n[r];i===void 0&&(i={},n[r]=i),Dt(i,t[r])}else G(n,{[r]:t[r]});return Dt(n,...e)}var _r=class{constructor(){this._config=pa}update(e){let t=Dt(this._config,e);this._config=t}getCurrent(){return this._config}},Is=new _r,L=Is;var Le=class n extends Error{constructor(e,t,r){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"CustomLoaderError\",this.message=e,this.canRetry=t,this.xhr=r}};function C(n){return n==null}var re=class{constructor(){this._listeners={}}addEventListener(e,t,r){let i=this._listeners[e];Array.isArray(i)?i.push(t):this._listeners[e]=[t],r!==void 0&&r.register(()=>{this.removeEventListener(e,t)})}removeEventListener(e,t){if(C(e)){this._listeners={};return}let r=this._listeners[e];if(!Array.isArray(r))return;if(C(t)){delete this._listeners[e];return}let i=r.indexOf(t);i!==-1&&r.splice(i,1),r.length===0&&delete this._listeners[e]}trigger(e,t){let r=this._listeners[e];Array.isArray(r)&&r.slice().forEach(i=>{try{i(t)}catch(a){if(b.CURRENT_ENV===b.DEV)throw a instanceof Error?a:new Error(\"EventEmitter: listener error\");console.error(\"RxPlayer: EventEmitter error\",a instanceof Error?a:null)}})}};function B(){}var bs=\"NONE\",Bt=class extends re{constructor(){super(),this.error=B,this.warn=B,this.info=B,this.debug=B,this._levels={NONE:0,ERROR:1,WARNING:2,INFO:3,DEBUG:4},this._currentLevel=bs}setLevel(e,t){let r,i=this._levels[e];typeof i==\"number\"?(r=i,this._currentLevel=e):(r=0,this._currentLevel=\"NONE\"),t===void 0?(this.error=r>=this._levels.ERROR?console.error.bind(console):B,this.warn=r>=this._levels.WARNING?console.warn.bind(console):B,this.info=r>=this._levels.INFO?console.info.bind(console):B,this.debug=r>=this._levels.DEBUG?console.log.bind(console):B):(this.error=r>=this._levels.ERROR?(...a)=>t(\"ERROR\",a):B,this.warn=r>=this._levels.WARNING?(...a)=>t(\"WARNING\",a):B,this.info=r>=this._levels.INFO?(...a)=>t(\"INFO\",a):B,this.debug=r>=this._levels.DEBUG?(...a)=>t(\"DEBUG\",a):B),this.trigger(\"onLogLevelChange\",this._currentLevel)}getLevel(){return this._currentLevel}hasLevel(e){return this._levels[e]>=this._levels[this._currentLevel]}};var Ss=new Bt,c=Ss;var $e=typeof WorkerGlobalScope!=\"undefined\"&&self instanceof WorkerGlobalScope;var ys=typeof window==\"undefined\"&&!$e,Un=ys;var Ln;$e?Ln=self:Un?Ln=global:Ln=window;var ye=Ln;function ee(n,e,t){if(typeof Array.prototype.findIndex==\"function\")return n.findIndex(e,t);let r=n.length>>>0;for(let i=0;i<r;i++)if(e.call(t,n[i],i,n))return i;return-1}var Nn=class{constructor(e,t){this._value=e,this._listeners=[],this._isFinished=!1,this._onFinishCbs=[],t!==void 0&&(this._deregisterCancellation=t.register(()=>this.finish()))}getValue(){return this._value}setValue(e){if(this._isFinished){b.CURRENT_ENV===b.DEV&&console.error(\"Finished shared references cannot be updated\");return}if(this._value=e,this._listeners.length===0)return;let t=this._listeners.slice();for(let r of t)try{r.hasBeenCleared||r.trigger(e,r.complete)}catch(i){}}setValueIfChanged(e){e!==this._value&&this.setValue(e)}onUpdate(e,t){let r=()=>{if((t==null?void 0:t.clearSignal)!==void 0&&t.clearSignal.deregister(r),i.hasBeenCleared)return;i.hasBeenCleared=!0;let a=this._listeners.indexOf(i);a>=0&&this._listeners.splice(a,1)},i={trigger:e,complete:r,hasBeenCleared:!1};if(this._listeners.push(i),(t==null?void 0:t.emitCurrentValue)===!0&&e(this._value,r),this._isFinished||i.hasBeenCleared){r();return}(t==null?void 0:t.clearSignal)!==void 0&&t.clearSignal.register(r)}waitUntilDefined(e,t){this.onUpdate((r,i)=>{r!==void 0&&(i(),e(this._value))},{clearSignal:t==null?void 0:t.clearSignal,emitCurrentValue:!0})}_onFinished(e,t){if(t.isCancelled())return B;let r=()=>{let o=ee(this._onFinishCbs,s=>s.trigger===i);o>=0&&(this._onFinishCbs[o].hasBeenCleared=!0,this._onFinishCbs.splice(o,1))},i=()=>{r(),e()},a=t.register(r);return this._onFinishCbs.push({trigger:i,hasBeenCleared:!1}),a}finish(){this._deregisterCancellation!==void 0&&this._deregisterCancellation(),this._isFinished=!0;let e=this._listeners.slice();for(let t of e)try{t.hasBeenCleared||(t.complete(),t.hasBeenCleared=!0)}catch(r){}if(this._listeners.length=0,this._onFinishCbs.length>0){let t=this._onFinishCbs.slice();for(let r of t)try{r.hasBeenCleared||(r.trigger(),r.hasBeenCleared=!0)}catch(i){}this._onFinishCbs.length=0}}};function Ut(n,e,t){let r=new Nn(e(n.getValue()),t);return n.onUpdate(function(a){r.setValue(e(a))},{clearSignal:t}),n._onFinished(()=>{r.finish()},t),r}var H=Nn;var Er=new H(0);function N(){return performance.now()+Er.getValue()}var te=class n extends Error{constructor(e,t,r){switch(super(),Object.setPrototypeOf(this,n.prototype),this.name=\"RequestError\",this.url=e,this.status=t,this.type=r,r){case\"TIMEOUT\":this.message=\"The request timed out\";break;case\"ERROR_EVENT\":this.message=\"An error prevented the request to be performed successfully\";break;case\"PARSE_ERROR\":this.message=\"An error happened while formatting the response data\";break;case\"ERROR_HTTP_CODE\":this.message=\"An HTTP status code indicating failure was received: \"+String(this.status);break}}serialize(){return{url:this.url,status:this.status,type:this.type}}},Ie={TIMEOUT:\"TIMEOUT\",ERROR_EVENT:\"ERROR_EVENT\",ERROR_HTTP_CODE:\"ERROR_HTTP_CODE\",PARSE_ERROR:\"PARSE_ERROR\"};var Tr=typeof Headers==\"function\"?Headers:null,Rr=typeof AbortController==\"function\"?AbortController:null;function Fn(n){let e;if(!C(n.headers))if(C(Tr))e=n.headers;else{e=new Tr;let l=Object.keys(n.headers);for(let p=0;p<l.length;p++){let g=l[p];e.append(g,n.headers[g])}}c.debug(\"Fetch: Called with URL\",n.url);let t=null,r=!1,i=!1,a=N(),o=C(Rr)?null:new Rr;function s(){if(C(o)){c.warn(\"Fetch: AbortController API not available.\");return}o.abort()}let u;n.timeout!==void 0&&(u=setTimeout(()=>{r=!0,d!==void 0&&clearTimeout(d),s()},n.timeout));let d;n.connectionTimeout!==void 0&&(d=setTimeout(()=>{i=!0,u!==void 0&&clearTimeout(u),s()},n.connectionTimeout));let m=n.cancelSignal.register(function(p){t=p,s()}),f={method:\"GET\"};return e!==void 0&&(f.headers=e),f.signal=C(o)?null:o.signal,fetch(n.url,f).then(l=>{if(d!==void 0&&clearTimeout(d),l.status>=300)throw c.warn(\"Fetch: Request HTTP Error\",l.status,l.url),new te(l.url,l.status,Ie.ERROR_HTTP_CODE);if(C(l.body))throw new te(l.url,l.status,Ie.PARSE_ERROR);let p=l.headers.get(\"Content-Length\"),g=!C(p)&&!isNaN(+p)?+p:void 0,h=l.body.getReader(),I=0;return y();async function y(){let T=await h.read();if(!T.done&&!C(T.value)){I+=T.value.byteLength;let P=N(),E={url:l.url,currentTime:P,duration:P-a,sendingTime:a,chunkSize:T.value.byteLength,chunk:T.value.buffer,size:I,totalSize:g};return n.onData(E),y()}else if(T.done){u!==void 0&&clearTimeout(u),m();let P=N();return{requestDuration:P-a,receivedTime:P,sendingTime:a,size:I,status:l.status,url:l.url}}return y()}}).catch(l=>{throw t!==null?t:(m(),r?(c.warn(\"Fetch: Request timed out.\"),new te(n.url,0,Ie.TIMEOUT)):i?(c.warn(\"Fetch: Request connection timed out.\"),new te(n.url,0,Ie.TIMEOUT)):l instanceof te?l:(c.warn(\"Fetch: Request Error\",l instanceof Error?l.toString():\"\"),new te(n.url,0,Ie.ERROR_EVENT)))})}function Lt(){return typeof ye.fetch==\"function\"&&!C(Rr)&&!C(Tr)}function ie(n){return typeof n==\"string\"&&n.length>0}var _s=\"json\";function Pr(n){let e={url:n.url,headers:n.headers,responseType:C(n.responseType)?_s:n.responseType,timeout:n.timeout,connectionTimeout:n.connectionTimeout};return new Promise((t,r)=>{let{onProgress:i,cancelSignal:a}=n,{url:o,headers:s,responseType:u,timeout:d,connectionTimeout:m}=e,f=new XMLHttpRequest;f.open(\"GET\",o,!0);let l;d!==void 0&&(f.timeout=d,l=setTimeout(()=>{I(),r(new te(o,f.status,Ie.TIMEOUT))},d+3e3));let p;if(m!==void 0&&(p=setTimeout(()=>{I(),f.readyState!==XMLHttpRequest.DONE&&f.abort(),r(new te(o,f.status,Ie.TIMEOUT))},m)),f.responseType=u,f.responseType===\"document\"&&f.overrideMimeType(\"text/xml\"),!C(s)){let y=s;for(let T in y)y.hasOwnProperty(T)&&f.setRequestHeader(T,y[T])}let g=N(),h=null;if(a!==void 0&&(h=a.register(function(T){I(),f.readyState!==XMLHttpRequest.DONE&&f.abort(),r(T)}),a.isCancelled()))return;f.onerror=function(){I(),r(new te(o,f.status,Ie.ERROR_EVENT))},f.ontimeout=function(){I(),r(new te(o,f.status,Ie.TIMEOUT))},m!==void 0&&(f.onreadystatechange=function(){f.readyState>=XMLHttpRequest.HEADERS_RECEIVED&&clearTimeout(p)}),i!==void 0&&(f.onprogress=function(T){let P=N();i({url:o,duration:P-g,sendingTime:g,currentTime:P,size:T.loaded,totalSize:T.total})}),f.onload=function(T){if(f.readyState===XMLHttpRequest.DONE)if(I(),f.status>=200&&f.status<300){let P=N(),E=f.response instanceof ArrayBuffer?f.response.byteLength:T.total,v=f.status,R=f.responseType,M=ie(f.responseURL)?f.responseURL:o,_;if(R===\"json\"?_=typeof f.response==\"object\"?f.response:Es(f.responseText):_=f.response,C(_)){r(new te(o,f.status,Ie.PARSE_ERROR));return}t({status:v,url:M,responseType:R,sendingTime:g,receivedTime:P,requestDuration:P-g,size:E,responseData:_})}else r(new te(o,f.status,Ie.ERROR_HTTP_CODE))},f.send();function I(){l!==void 0&&clearTimeout(l),p!==void 0&&clearTimeout(p),h!==null&&h()}})}function Es(n){try{return JSON.parse(n)}catch(e){return null}}var de=Pr;var st=Ie,Oe={NETWORK_ERROR:\"NETWORK_ERROR\",MEDIA_ERROR:\"MEDIA_ERROR\",ENCRYPTED_MEDIA_ERROR:\"ENCRYPTED_MEDIA_ERROR\",OTHER_ERROR:\"OTHER_ERROR\"};function ze(n,e){return`${n}: ${e}`}var Nt=class n extends Error{constructor(e,t,r){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"EncryptedMediaError\",this.type=Oe.ENCRYPTED_MEDIA_ERROR,this.code=e,this._originalMessage=t,this.message=ze(this.code,t),this.fatal=!1,typeof(r==null?void 0:r.keyStatuses)==\"string\"&&(this.keyStatuses=r.keyStatuses)}serialize(){return{name:this.name,code:this.code,reason:this._originalMessage,keyStatuses:this.keyStatuses}}};var Y=class n extends Error{constructor(e,t,r){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"MediaError\",this.type=Oe.MEDIA_ERROR,this._originalMessage=t,this.code=e,this.message=ze(this.code,t),this.fatal=!1,(r==null?void 0:r.tracks)!==void 0&&(r==null?void 0:r.tracks.length)>0&&(this.tracksInfo=r.tracks)}serialize(){return{name:this.name,code:this.code,reason:this._originalMessage,tracks:this.tracksInfo}}};var Ne=class n extends Error{constructor(e,t){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"NetworkError\",this.type=Oe.NETWORK_ERROR,this.url=t.url,this.status=t.status,this.errorType=t.type,this._baseError=t,this.code=e,this.message=ze(this.code,t.message),this.fatal=!1}isHttpError(e){return this.errorType===st.ERROR_HTTP_CODE&&this.status===e}serialize(){return{name:this.name,code:this.code,baseError:this._baseError.serialize()}}};var _e=class n extends Error{constructor(e,t){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"OtherError\",this.type=Oe.OTHER_ERROR,this.code=e,this.message=ze(this.code,t),this.fatal=!1,this._originalMessage=t}serialize(){return{name:this.name,code:this.code,reason:this._originalMessage}}};function bt(n){return(n instanceof Nt||n instanceof Y||n instanceof _e||n instanceof Ne)&&Object.keys(Oe).indexOf(n.type)>=0}function ce(n,{defaultCode:e,defaultReason:t}){if(bt(n))return n;let r=n instanceof Error?n.toString():t;return new _e(e,r)}var Te=class n extends Error{constructor(e,t,r){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"SourceBufferError\",this.errorName=e,this.message=t,this.isBufferFull=r}serialize(){return{errorName:this.name,message:this.message,isBufferFull:this.isBufferFull}}toString(){return`${this.errorName}: ${this.message}`}};var Ts={dashParsers:{wasm:null,js:null},codecSupportProber:null,createDebugElement:null,directfile:null,decrypt:null,htmlTextDisplayer:null,htmlTextTracksParsers:{},mainThreadMediaSourceInit:null,multithread:null,nativeTextDisplayer:null,nativeTextTracksParsers:{},transports:{}},ga=Ts;var ae=ga;function j(n,e,t){if(typeof Array.prototype.find==\"function\")return n.find(e,t);let r=n.length>>>0;for(let i=0;i<r;i++){let a=n[i];if(e.call(t,a,i,n))return a}}var Rs={aa:\"aar\",ab:\"abk\",ae:\"ave\",af:\"afr\",ak:\"aka\",am:\"amh\",an:\"arg\",ar:\"ara\",as:\"asm\",av:\"ava\",ay:\"aym\",az:\"aze\",ba:\"bak\",be:\"bel\",bg:\"bul\",bi:\"bis\",bm:\"bam\",bn:\"ben\",bo:\"bod\",br:\"bre\",bs:\"bos\",ca:\"cat\",ce:\"che\",ch:\"cha\",co:\"cos\",cr:\"cre\",cs:\"ces\",cu:\"chu\",cv:\"chv\",cy:\"cym\",da:\"dan\",de:\"deu\",dv:\"div\",dz:\"dzo\",ee:\"ewe\",el:\"ell\",en:\"eng\",eo:\"epo\",es:\"spa\",et:\"est\",eu:\"eus\",fa:\"fas\",ff:\"ful\",fi:\"fin\",fj:\"fij\",fo:\"fao\",fr:\"fra\",fy:\"fry\",ga:\"gle\",gd:\"gla\",gl:\"glg\",gn:\"grn\",gu:\"guj\",gv:\"glv\",ha:\"hau\",he:\"heb\",hi:\"hin\",ho:\"hmo\",hr:\"hrv\",ht:\"hat\",hu:\"hun\",hy:\"hye\",hz:\"her\",ia:\"ina\",id:\"ind\",ie:\"ile\",ig:\"ibo\",ii:\"iii\",ik:\"ipk\",io:\"ido\",is:\"isl\",it:\"ita\",iu:\"iku\",ja:\"jpn\",jv:\"jav\",ka:\"kat\",kg:\"kon\",ki:\"kik\",kj:\"kua\",kk:\"kaz\",kl:\"kal\",km:\"khm\",kn:\"kan\",ko:\"kor\",kr:\"kau\",ks:\"kas\",ku:\"kur\",kv:\"kom\",kw:\"cor\",ky:\"kir\",la:\"lat\",lb:\"ltz\",lg:\"lug\",li:\"lim\",ln:\"lin\",lo:\"lao\",lt:\"lit\",lu:\"lub\",lv:\"lav\",mg:\"mlg\",mh:\"mah\",mi:\"mri\",mk:\"mkd\",ml:\"mal\",mn:\"mon\",mr:\"mar\",ms:\"msa\",mt:\"mlt\",my:\"mya\",na:\"nau\",nb:\"nob\",nd:\"nde\",ne:\"nep\",ng:\"ndo\",nl:\"nld\",nn:\"nno\",no:\"nor\",nr:\"nbl\",nv:\"nav\",ny:\"nya\",oc:\"oci\",oj:\"oji\",om:\"orm\",or:\"ori\",os:\"oss\",pa:\"pan\",pi:\"pli\",pl:\"pol\",ps:\"pus\",pt:\"por\",qu:\"que\",rm:\"roh\",rn:\"run\",ro:\"ron\",ru:\"rus\",rw:\"kin\",sa:\"san\",sc:\"srd\",sd:\"snd\",se:\"sme\",sg:\"sag\",si:\"sin\",sk:\"slk\",sl:\"slv\",sm:\"smo\",sn:\"sna\",so:\"som\",sq:\"sqi\",sr:\"srp\",ss:\"ssw\",st:\"sot\",su:\"sun\",sv:\"swe\",sw:\"swa\",ta:\"tam\",te:\"tel\",tg:\"tgk\",th:\"tha\",ti:\"tir\",tk:\"tuk\",tl:\"tgl\",tn:\"tsn\",to:\"ton\",tr:\"tur\",ts:\"tso\",tt:\"tat\",tw:\"twi\",ty:\"tah\",ug:\"uig\",uk:\"ukr\",ur:\"urd\",uz:\"uzb\",ve:\"ven\",vi:\"vie\",vo:\"vol\",wa:\"wln\",wo:\"wol\",xh:\"xho\",yi:\"yid\",yo:\"yor\",za:\"zha\",zh:\"zho\",zu:\"zul\"},ha=Rs;var Ps={alb:\"sqi\",arm:\"hye\",baq:\"eus\",bur:\"mya\",chi:\"zho\",cze:\"ces\",dut:\"nld\",fre:\"fra\",geo:\"kat\",ger:\"deu\",gre:\"ell\",ice:\"isl\",mac:\"mkd\",mao:\"mri\",may:\"msa\",per:\"fas\",slo:\"slk\",rum:\"ron\",tib:\"bod\",wel:\"cym\"},Ia=Ps;function vs(n){if(C(n)||n===\"\")return\"\";let t=(\"\"+n).toLowerCase().split(\"-\")[0],r=Cs(t);return ie(r)?r:n}function Cs(n){let e;switch(n.length){case 2:e=ha[n];break;case 3:e=Ia[n];break}return e}var ba=vs;var Sa=ba;function zn(n,e){if(n.length!==e.length)return!1;if(n===e)return!0;for(let t=n.length-1;t>=0;t--)if(n[t]!==e[t])return!1;return!0}function Re(){let n=\"\",e=-1;return function(){return e++,e>=Number.MAX_SAFE_INTEGER&&(n+=\"0\",e=0),n+String(e)}}var As=Re(),vr=class{constructor(e,t){var r,i,a,o,s;if(this.id=e.id,this.uniqueId=As(),this.bitrate=e.bitrate,this.codecs=[],e.isSpatialAudio!==void 0&&(this.isSpatialAudio=e.isSpatialAudio),e.height!==void 0&&(this.height=e.height),e.width!==void 0&&(this.width=e.width),e.mimeType!==void 0&&(this.mimeType=e.mimeType),e.contentProtections!==void 0&&(this.contentProtections=e.contentProtections),e.frameRate!==void 0&&(this.frameRate=e.frameRate),e.hdrInfo!==void 0&&(this.hdrInfo=e.hdrInfo),this.cdnMetadata=e.cdnMetadata,this.index=e.index,t===\"audio\"||t===\"video\")if(ae.codecSupportProber!==null){if(e.supplementalCodecs!==void 0){let u=ae.codecSupportProber.isSupported((r=this.mimeType)!=null?r:\"\",(i=e.supplementalCodecs)!=null?i:\"\");u!==!1&&(this.codecs=[e.supplementalCodecs],u===!0&&(this.isSupported=!0))}this.isSupported!==!0&&(this.codecs.length>0?this.codecs.push((a=e.codecs)!=null?a:\"\"):(this.codecs=e.codecs===void 0?[]:[e.codecs],this.isSupported=ae.codecSupportProber.isSupported((o=this.mimeType)!=null?o:\"\",(s=e.codecs)!=null?s:\"\")))}else e.supplementalCodecs!==void 0&&this.codecs.push(e.supplementalCodecs),e.codecs!==void 0&&this.codecs.push(e.codecs);else e.codecs!==void 0&&this.codecs.push(e.codecs),this.isSupported=!0}refreshCodecSupport(e){var i;let t=(i=this.mimeType)!=null?i:\"\",r=this.codecs;r.length===0&&(r=[\"\"]);for(let a=0;a<r.length;a++)for(let o of e){let s=r[a];if(o.codec===s&&o.mimeType===t){if(o.result){this.isSupported=!0,this.codecs=[s];return}else if(a===r.length){this.isSupported=!1,this.codecs=[s];return}}}}getMimeTypeString(){var e,t,r;return`${(e=this.mimeType)!=null?e:\"\"};codecs=\"${(r=(t=this.codecs)==null?void 0:t[0])!=null?r:\"\"}\"`}getEncryptionData(e){var i,a;let t=this.getAllEncryptionData(),r=[];for(let o=0;o<t.length;o++){let s=!1,u=t[o];for(let d=0;d<u.values.length;d++)if(u.values[d].systemId.toLowerCase()===e.toLowerCase())if(s)r[r.length-1].values.push(u.values[d]);else{let m=(a=(i=this.contentProtections)==null?void 0:i.keyIds)==null?void 0:a.map(f=>f.keyId);r.push({type:u.type,keyIds:m,values:[u.values[d]]}),s=!0}}return r}getAllEncryptionData(){var t,r;if(this.contentProtections===void 0||this.contentProtections.initData.length===0)return[];let e=(r=(t=this.contentProtections)==null?void 0:t.keyIds)==null?void 0:r.map(i=>i.keyId);return this.contentProtections.initData.map(i=>({type:i.type,keyIds:e,values:i.values}))}addProtectionData(e,t,r){let i=!1;if(this.contentProtections===void 0)return this.contentProtections={keyIds:t!==void 0?[{keyId:t}]:[],initData:[{type:e,values:r}]},!0;if(t!==void 0){let o=this.contentProtections.keyIds;if(o===void 0)this.contentProtections.keyIds=[{keyId:t}];else{let s=!1;for(let u of o)zn(u.keyId,t)&&(s=!0);s||(c.warn(\"Manifest: found unanounced key id.\"),o.push({keyId:t}))}}let a=this.contentProtections.initData;for(let o=0;o<a.length;o++)if(a[o].type===e){let s=a[o].values;for(let u=0;u<r.length;u++){let d=r[u],m;for(m=0;m<s.length;m++)if(d.systemId===s[m].systemId){if(zn(d.data,s[m].data))break;c.warn(\"Manifest: different init data for the same system ID\")}m===s.length&&(s.push(d),i=!0)}return i}return this.contentProtections.initData.push({type:e,values:r}),!0}getMetadataSnapshot(){return{id:this.id,uniqueId:this.uniqueId,bitrate:this.bitrate,codecs:this.codecs,mimeType:this.mimeType,width:this.width,height:this.height,frameRate:this.frameRate,isSupported:this.isSupported,hdrInfo:this.hdrInfo,contentProtections:this.contentProtections,decipherable:this.decipherable}}},Ft=vr;var Ze=class n{constructor(e,t={}){let{trickModeTracks:r}=e,{representationFilter:i,isManuallyAdded:a}=t;this.id=e.id,this.type=e.type,e.isTrickModeTrack!==void 0&&(this.isTrickModeTrack=e.isTrickModeTrack),e.language!==void 0&&(this.language=e.language,this.normalizedLanguage=Sa(e.language)),e.closedCaption!==void 0&&(this.isClosedCaption=e.closedCaption),e.audioDescription!==void 0&&(this.isAudioDescription=e.audioDescription),e.isDub!==void 0&&(this.isDub=e.isDub),e.forcedSubtitles!==void 0&&(this.isForcedSubtitles=e.forcedSubtitles),e.isSignInterpreted!==void 0&&(this.isSignInterpreted=e.isSignInterpreted),e.label!==void 0&&(this.label=e.label),r!==void 0&&r.length>0&&(this.trickModeTracks=r.map(d=>new n(d)));let o=e.representations,s=[],u;for(let d=0;d<o.length;d++){let m=new Ft(o[d],this.type),f=!0;if(!C(i)){let l={id:m.id,bitrate:m.bitrate,codecs:m.codecs,height:m.height,width:m.width,frameRate:m.frameRate,hdrInfo:m.hdrInfo};if(m.contentProtections!==void 0&&(l.contentProtections={},m.contentProtections.keyIds!==void 0)){let p=m.contentProtections.keyIds.map(({keyId:g})=>g);l.contentProtections.keyIds=p}f=i(l,{trackType:this.type,language:this.language,normalizedLanguage:this.normalizedLanguage,isClosedCaption:this.isClosedCaption,isDub:this.isDub,isAudioDescription:this.isAudioDescription,isSignInterpreted:this.isSignInterpreted})}f?(s.push(m),u===void 0&&(m.isSupported===!0?u=!0:m.isSupported===!1&&(u=!1))):c.debug(\"Filtering Representation due to representationFilter\",this.type,`Adaptation: ${this.id}`,`Representation: ${m.id}`,`(${m.bitrate})`)}s.sort((d,m)=>d.bitrate-m.bitrate),this.representations=s,this.isSupported=u,this.manuallyAdded=a===!0}refreshCodecSupport(e){for(let t of this.representations)t.isSupported===void 0&&(t.refreshCodecSupport(e),this.isSupported!==!0&&t.isSupported===!0?this.isSupported=!0:this.isSupported===void 0&&t.isSupported===!1&&(this.isSupported=!1))}getRepresentation(e){return j(this.representations,({id:t})=>e===t)}getMetadataSnapshot(){let e=[],t=this.representations;for(let r of t)e.push(r.getMetadataSnapshot());return{id:this.id,type:this.type,isSupported:this.isSupported,language:this.language,isForcedSubtitles:this.isForcedSubtitles,isClosedCaption:this.isClosedCaption,isAudioDescription:this.isAudioDescription,isSignInterpreted:this.isSignInterpreted,normalizedLanguage:this.normalizedLanguage,representations:e,label:this.label,isDub:this.isDub}}};function oe(n,e,t){if(typeof Array.prototype.includes==\"function\")return n.includes(e,t);let r=n.length>>>0;if(r===0)return!1;let i=t|0,a=i>=0?Math.min(i,r-1):Math.max(r+i,0),o=(s,u)=>s===u||typeof s==\"number\"&&typeof u==\"number\"&&isNaN(s)&&isNaN(u);for(;a<r;){if(o(n[a],e))return!0;a++}return!1}var ya=[];function We(n){oe(ya,n)||(console.warn(n),ya.push(n))}function Cr(n){return Object.keys(n).map(e=>n[e])}var Wn=typeof Object.values==\"function\"?Object.values:Cr;var St=[\"audio\",\"video\",\"text\"];function Ea(n){var a,o;let e=n.timeBounds;if(e.timeshiftDepth===null)return(a=e.minimumSafePosition)!=null?a:0;let{maximumTimeData:t}=e,r;if(!e.maximumTimeData.isLinear)r=t.maximumSafePosition;else{let s=N()-t.time;r=t.maximumSafePosition+s/1e3}let i=r-e.timeshiftDepth;return Math.max((o=e.minimumSafePosition)!=null?o:0,i)}function Ta(n){let{maximumTimeData:e}=n.timeBounds;if(!n.isLive||e.livePosition===void 0)return;if(!e.isLinear)return e.livePosition;let t=N()-e.time;return e.livePosition+t/1e3}function Ra(n){let{maximumTimeData:e}=n.timeBounds;if(!e.isLinear)return e.maximumSafePosition;let t=N()-e.time;return e.maximumSafePosition+t/1e3}function Pa(n,e){if(e===void 0)return xr(n).filter(r=>r.isSupported===!0);let t=n.adaptations[e];return t===void 0?[]:t.filter(r=>r.isSupported===!0)}function va(n,e){let t=null;for(let r=n.periods.length-1;r>=0;r--){let i=n.periods[r];if(Ar(i,e,t))return i;t=i}}function Ca(n,e){let t=e.end;if(t===void 0)return null;let r=j(n.periods,i=>i.end===void 0||t<i.end);return r===void 0?null:r}function Ar(n,e,t){return e>=n.start&&(n.end===void 0||e<n.end)?!0:e===n.end&&(t===null||t.start>n.end)}function xr(n){let e=n.adaptations;return Cr(e).reduce((t,r)=>C(r)?t:t.concat(r),[])}function xs(n,e){var r,i;let t={language:(r=n.language)!=null?r:\"\",normalized:(i=n.normalizedLanguage)!=null?i:\"\",audioDescription:n.isAudioDescription===!0,id:n.id,representations:(e?n.representations.filter(a=>a.isSupported===!0&&a.decipherable!==!1):n.representations).map(Os),label:n.label};return n.isDub===!0&&(t.dub=!0),t}function ks(n){var e,t;return{language:(e=n.language)!=null?e:\"\",normalized:(t=n.normalizedLanguage)!=null?t:\"\",closedCaption:n.isClosedCaption===!0,id:n.id,label:n.label,forced:n.isForcedSubtitles}}function Ms(n,e){let t=n.trickModeTracks!==void 0?n.trickModeTracks.map(i=>{let a=(e?i.representations.filter(s=>s.isSupported===!0&&s.decipherable!==!1):i.representations).map(_a),o={id:i.id,representations:a,isTrickModeTrack:!0};return i.isSignInterpreted===!0&&(o.signInterpreted=!0),o}):void 0,r={id:n.id,representations:(e?n.representations.filter(i=>i.isSupported===!0&&i.decipherable!==!1):n.representations).map(_a),label:n.label};return n.isSignInterpreted===!0&&(r.signInterpreted=!0),n.isTrickModeTrack===!0&&(r.isTrickModeTrack=!0),t!==void 0&&(r.trickModeTracks=t),r}function Os(n){let{id:e,bitrate:t,codecs:r,isSpatialAudio:i,isSupported:a,decipherable:o}=n;return{id:e,bitrate:t,codec:r==null?void 0:r[0],isSpatialAudio:i,isCodecSupported:a,decipherable:o}}function _a(n){let{id:e,bitrate:t,frameRate:r,width:i,height:a,codecs:o,hdrInfo:s,isSupported:u,decipherable:d}=n;return{id:e,bitrate:t,frameRate:r,width:i,height:a,codec:o==null?void 0:o[0],hdrInfo:s,isCodecSupported:u,decipherable:d}}function Je(n){switch(n.type){case\"audio\":return{type:\"audio\",track:xs(n,!1)};case\"video\":return{type:\"video\",track:Ms(n,!1)};case\"text\":return{type:\"text\",track:ks(n)}}}function Aa(n){return new Function(`return (${n}(arguments[0], arguments[1]))`)}var et=class{constructor(e,t,r){if(this.id=e.id,this.adaptations=Object.keys(e.adaptations).reduce((i,a)=>{let o=e.adaptations[a];if(C(o))return i;let s=o.map(u=>{let d=new Ze(u,{representationFilter:r});return d.representations.length>0&&d.isSupported===!1&&t.push(d),d}).filter(u=>u.representations.length>0);if(s.every(u=>u.isSupported===!1)&&o.length>0&&(a===\"video\"||a===\"audio\"))throw new Y(\"MANIFEST_INCOMPATIBLE_CODECS_ERROR\",\"No supported \"+a+\" adaptations\",{tracks:void 0});return s.length>0&&(i[a]=s),i},{}),!Array.isArray(this.adaptations.video)&&!Array.isArray(this.adaptations.audio))throw new Y(\"MANIFEST_PARSE_ERROR\",\"No supported audio and video tracks.\");this.duration=e.duration,this.start=e.start,!C(this.duration)&&!C(this.start)&&(this.end=this.start+this.duration),this.streamEvents=e.streamEvents===void 0?[]:e.streamEvents}refreshCodecSupport(e,t){Object.keys(this.adaptations).forEach(r=>{let i=this.adaptations[r];if(i===void 0)return;let a=!1;for(let o of i){let s=o.isSupported;o.refreshCodecSupport(e),s!==!1&&o.isSupported===!1&&t.push(o),a===!1?a=o.isSupported:a===void 0&&o.isSupported===!0&&(a=!0)}if((r===\"video\"||r===\"audio\")&&a===!1)throw new Y(\"MANIFEST_INCOMPATIBLE_CODECS_ERROR\",\"No supported \"+r+\" adaptations\",{tracks:void 0})},{})}getAdaptations(){return xr(this)}getAdaptationsForType(e){let t=this.adaptations[e];return t!=null?t:[]}getAdaptation(e){return j(this.getAdaptations(),({id:t})=>e===t)}getSupportedAdaptations(e){return Pa(this,e)}containsTime(e,t){return Ar(this,e,t)}getMetadataSnapshot(){let e={},t=this.getAdaptations();for(let r of t){let i=e[r.type];i===void 0&&(i=[],e[r.type]=i),i.push(r.getMetadataSnapshot())}return{start:this.start,end:this.end,id:this.id,streamEvents:this.streamEvents,adaptations:e}}};function zt(n,e,t){let r={updatedAdaptations:[],removedAdaptations:[],addedAdaptations:[]};n.start=e.start,n.end=e.end,n.duration=e.duration,n.streamEvents=e.streamEvents;let i=n.getAdaptations(),a=e.getAdaptations();for(let o=0;o<i.length;o++){let s=i[o],u=ee(a,d=>d.id===s.id);if(u===-1){c.warn('Manifest: Adaptation \"'+i[o].id+'\" not found when merging.');let[d]=i.splice(o,1);o--,r.removedAdaptations.push({id:d.id,trackType:d.type})}else{let[d]=a.splice(u,1),m=[],f=[],l=[];r.updatedAdaptations.push({adaptation:s.id,trackType:s.type,updatedRepresentations:m,addedRepresentations:f,removedRepresentations:l});let p=s.representations,g=d.representations.slice();for(let h=0;h<p.length;h++){let I=p[h],y=ee(g,T=>T.id===I.id);if(y===-1){c.warn(`Manifest: Representation \"${p[h].id}\" not found when merging.`);let[T]=p.splice(h,1);h--,l.push(T.id)}else{let[T]=g.splice(y,1);m.push(I.getMetadataSnapshot()),I.cdnMetadata=T.cdnMetadata,t===0?I.index._replace(T.index):I.index._update(T.index)}}g.length>0&&(c.warn(`Manifest: ${g.length} new Representations found when merging.`),s.representations.push(...g),f.push(...g.map(h=>h.getMetadataSnapshot())))}}if(a.length>0){c.warn(`Manifest: ${a.length} new Adaptations found when merging.`);for(let o of a){let s=n.adaptations[o.type];s===void 0?n.adaptations[o.type]=[o]:s.push(o),r.addedAdaptations.push(o.getMetadataSnapshot())}}return r}function xa(n,e){let t={updatedPeriods:[],addedPeriods:[],removedPeriods:[]},r=0;for(let a=0;a<e.length;a++){let o=e[a],s=r,u=n[s];for(;u!==void 0&&u.id!==o.id;)s++,u=n[s];if(u!==void 0){let d=zt(u,o,0);t.updatedPeriods.push({period:{id:u.id,start:u.start,end:u.end,duration:u.duration,streamEvents:u.streamEvents},result:d});let m=e.slice(r,a),f=s-r,l=n.splice(r,f,...m);t.removedPeriods.push(...l.map(p=>({id:p.id,start:p.start,end:p.end}))),t.addedPeriods.push(...m.map(p=>p.getMetadataSnapshot())),r=a+1}}if(r>n.length)return c.error(\"Manifest: error when updating Periods\"),t;if(r<n.length){let a=n.splice(r,n.length-r);t.removedPeriods.push(...a.map(o=>({id:o.id,start:o.start,end:o.end})))}let i=e.slice(r,e.length);return i.length>0&&(n.push(...i),t.addedPeriods.push(...i.map(a=>a.getMetadataSnapshot()))),t}function ka(n,e){let t={updatedPeriods:[],addedPeriods:[],removedPeriods:[]};if(n.length===0)return n.splice(0,0,...e),t.addedPeriods.push(...e.map(s=>s.getMetadataSnapshot())),t;if(e.length===0)return t;let r=n[n.length-1];if(r.start<e[0].start){if(r.end!==e[0].start)throw new Y(\"MANIFEST_UPDATE_ERROR\",\"Cannot perform partial update: not enough data\");return n.push(...e),t.addedPeriods.push(...e.map(s=>s.getMetadataSnapshot())),t}let i=ee(n,({id:s})=>s===e[0].id);if(i<0)throw new Y(\"MANIFEST_UPDATE_ERROR\",\"Cannot perform partial update: incoherent data\");let a=zt(n[i],e[0],1);t.updatedPeriods.push({period:G(n[i].getMetadataSnapshot(),{adaptations:void 0}),result:a});let o=i+1;for(let s=1;s<e.length;s++){let u=e[s],d=-1;for(let m=o;m<n.length;m++)if(u.id===n[m].id){d=m;break}if(d<0){let m=-1;for(let p=o;p<n.length;p++)if(u.start<n[p].start){m=p;break}let f=m-o,l=n.splice(o,f,u);t.addedPeriods.push(u.getMetadataSnapshot()),t.removedPeriods.push(...l.map(p=>({id:p.id,start:p.start,end:p.end})))}else{if(d>o){c.warn(\"Manifest: old Periods not found in new when updating, removing\");let f=n.splice(o,d-o);t.removedPeriods.push(...f.map(l=>({id:l.id,start:l.start,end:l.end}))),d=o}let m=zt(n[d],u,0);t.updatedPeriods.push({period:G(n[d].getMetadataSnapshot(),{adaptations:void 0}),result:m})}o++}if(o<n.length){c.warn(\"Manifest: Ending Periods not found in new when updating, removing\");let s=n.splice(o,n.length-o);t.removedPeriods.push(...s.map(u=>({id:u.id,start:u.start,end:u.end})))}return t}var ws=Re(),Wt=class extends re{constructor(e,t,r){var s;super();let{representationFilter:i,manifestUpdateUrl:a}=t;this.manifestFormat=0,this.id=ws(),this.expired=(s=e.expired)!=null?s:null,this.transport=e.transportType,this.clockOffset=e.clockOffset;let o=[];if(this.periods=e.periods.map(u=>new et(u,o,i)).sort((u,d)=>u.start-d.start),o.length>0){let u=new Y(\"MANIFEST_INCOMPATIBLE_CODECS_ERROR\",\"An Adaptation contains only incompatible codecs.\",{tracks:o.map(Je)});r.push(u)}this.adaptations=this.periods[0]===void 0?{}:this.periods[0].adaptations,this.timeBounds=e.timeBounds,this.isDynamic=e.isDynamic,this.isLive=e.isLive,this.isLastPeriodKnown=e.isLastPeriodKnown,this.uris=e.uris===void 0?[]:e.uris,this.updateUrl=a,this.lifetime=e.lifetime,this.clockOffset=e.clockOffset,this.suggestedPresentationDelay=e.suggestedPresentationDelay,this.availabilityStartTime=e.availabilityStartTime,this.publishTime=e.publishTime}refreshCodecSupport(e){let t=[];for(let r of this.periods)r.refreshCodecSupport(e,t);return t.length>0?new Y(\"MANIFEST_INCOMPATIBLE_CODECS_ERROR\",\"An Adaptation contains only incompatible codecs.\",{tracks:t.map(Je)}):null}getPeriod(e){return j(this.periods,t=>e===t.id)}getPeriodForTime(e){return va(this,e)}getNextPeriod(e){return j(this.periods,t=>t.start>e)}getPeriodAfter(e){return Ca(this,e)}getUrls(){return this.uris}replace(e){this._performUpdate(e,0)}update(e){this._performUpdate(e,1)}getMinimumSafePosition(){return Ea(this)}getLivePosition(){return Ta(this)}getMaximumSafePosition(){return Ra(this)}updateRepresentationsDeciperability(e){let t=Ds(this,e);t.length>0&&this.trigger(\"decipherabilityUpdate\",t)}getAdaptations(){We(\"manifest.getAdaptations() is deprecated. Please use manifest.period[].getAdaptations() instead\");let e=this.periods[0];if(e===void 0)return[];let t=e.adaptations,r=[];for(let i in t)if(t.hasOwnProperty(i)){let a=t[i];r.push(...a)}return r}getAdaptationsForType(e){We(\"manifest.getAdaptationsForType(type) is deprecated. Please use manifest.period[].getAdaptationsForType(type) instead\");let t=this.periods[0];if(t===void 0)return[];let r=t.adaptations[e];return r===void 0?[]:r}getAdaptation(e){return We(\"manifest.getAdaptation(id) is deprecated. Please use manifest.period[].getAdaptation(id) instead\"),j(this.getAdaptations(),({id:t})=>e===t)}getMetadataSnapshot(){let e=[];for(let t of this.periods)e.push(t.getMetadataSnapshot());return{manifestFormat:1,id:this.id,periods:e,isDynamic:this.isDynamic,isLive:this.isLive,isLastPeriodKnown:this.isLastPeriodKnown,suggestedPresentationDelay:this.suggestedPresentationDelay,clockOffset:this.clockOffset,uris:this.uris,availabilityStartTime:this.availabilityStartTime,timeBounds:this.timeBounds}}_performUpdate(e,t){this.availabilityStartTime=e.availabilityStartTime,this.expired=e.expired,this.isDynamic=e.isDynamic,this.isLive=e.isLive,this.isLastPeriodKnown=e.isLastPeriodKnown,this.lifetime=e.lifetime,this.clockOffset=e.clockOffset,this.suggestedPresentationDelay=e.suggestedPresentationDelay,this.transport=e.transport,this.publishTime=e.publishTime;let r;if(t===0)this.timeBounds=e.timeBounds,this.uris=e.uris,r=xa(this.periods,e.periods);else{this.timeBounds.maximumTimeData=e.timeBounds.maximumTimeData,this.updateUrl=e.uris[0],r=ka(this.periods,e.periods);let i=this.getMinimumSafePosition();for(;this.periods.length>0;){let a=this.periods[0];if(a.end===void 0||a.end>i)break;this.periods.shift()}}this.adaptations=this.periods[0]===void 0?{}:this.periods[0].adaptations,this.trigger(\"manifestUpdate\",r)}};function Ds(n,e){let t=[];for(let r of n.periods)for(let i of r.getAdaptations())for(let a of i.representations){let o={manifest:n,period:r,adaptation:i,representation:a},s=e(o);s!==a.decipherable&&(t.push(o),a.decipherable=s,c.debug(`Decipherability changed for \"${a.id}\"`,`(${a.bitrate})`,String(a.decipherable)))}return t}function Ve(n,e){return n.segment.id===e.segment.id&&n.representation.uniqueId===e.representation.uniqueId}function ut(n){if(C(n))return\"\";let{period:e,adaptation:t,representation:r,segment:i}=n,a;return i.isInit?a=\"init\":i.complete?a=`${i.time}-${i.duration}`:a=`${i.time}`,`${t.type} P: ${e.id} A: ${t.id} R: ${r.id} S: ${a}`}var yt=Wt;var tt=ye,dt=tt===void 0?void 0:C(tt.MediaSource)?C(tt.MozMediaSource)?C(tt.WebKitMediaSource)?tt.MSMediaSource:tt.WebKitMediaSource:tt.MozMediaSource:tt.MediaSource;var Bs=200,Vn=new Map;function kr(n){if(C(dt))return $e&&c.error(\"Compat: Cannot request codec support in a worker without MSE.\"),!1;if(typeof dt.isTypeSupported==\"function\"){let e=Vn.get(n);if(e!==void 0)return e;{let t=dt.isTypeSupported(n);return Vn.size>=Bs&&Vn.clear(),Vn.set(n,t),t}}return!0}var Us=50,Mr=class{constructor(){this._cachedCodecSupport=new Map}isSupported(e,t){let r=`${e!=null?e:\"\"};codecs=\"${t!=null?t:\"\"}\"`,i=this._cachedCodecSupport.get(r);if(i!==void 0)return i;this._cachedCodecSupport.size>=Us&&this._cachedCodecSupport.clear();let a=kr(r);return this._cachedCodecSupport.set(r,a),a}},Ls=new Mr,Ma=Ls;var Or=class{constructor(){this._currentCacheSize=0,this._cachedCodecSupport=new Map}isSupported(e,t){var i;let r=(i=this._cachedCodecSupport.get(e))==null?void 0:i.get(t);if(r!==void 0)return r}updateCache(e,t,r){this._currentCacheSize>=50&&(this._cachedCodecSupport.clear(),this._currentCacheSize=0);let i=this._cachedCodecSupport.get(e);if(i!==void 0)i.set(t,r);else{let a=new Map;a.set(t,r),this._cachedCodecSupport.set(e,a)}}},Oa=new Or;var Ns=typeof WebAssembly==\"object\"&&typeof WebAssembly.instantiate==\"function\",wa=Ns;var qn=class n extends Error{constructor(e){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"AssertionError\",this.message=e}};function pe(n,e){if(b.DEV===b.CURRENT_ENV&&!n)throw new qn(e===void 0?\"invalid assertion\":e)}function qe(n){throw new qn(\"Unreachable path taken\")}function wr(n,e,t){let{repeatCount:r}=n;if(r>=0)return r;let i;return C(e)?t!==void 0?i=t:i=Number.MAX_VALUE:i=e.start,Math.ceil((i-n.start)/n.duration)-1}function Ae(n,e,t){let{start:r,duration:i}=n;if(i<=0)return r;let a=wr(n,e,t);return r+(a+1)*i}function Ee(n,e){var t;return n*e.timescale+((t=e.indexTimeOffset)!=null?t:0)}function Fe(n,e){var t;return(n-((t=e.indexTimeOffset)!=null?t:0))/e.timescale}function Da(n,e,t){return[n*t,(n+e)*t]}function Fs(n,e){let t=0,r=n.length;for(;t<r;){let i=t+r>>>1;n[i].start<=e?t=i+1:r=i}return t-1}function Ba(n,e,t){let{timeline:r}=n,i=Ee(e,n);if(i<0)return null;let a=Fs(r,i);if(a<0||a>=r.length-1)return null;let o=r[a];if(o.duration<=0)return null;let s=r[a+1];if(s===void 0)return null;let u=s.start,d=Ae(o,s,t);return i>=d&&i<u?Fe(u,n):null}function Ge(n,e){var i;let{initialization:t}=n,r={};return e!==void 0&&(r.isEMSGWhitelisted=e),{id:\"init\",isInit:!0,time:0,end:0,duration:0,timescale:1,range:C(t)?void 0:t.range,indexRange:n.indexRange,url:(i=t==null?void 0:t.url)!=null?i:null,complete:!0,privateInfos:r,timestampOffset:-(n.indexTimeOffset/n.timescale)}}function zs(n,e){let t=n.toString();return t.length>=e?t:(new Array(e+1).join(\"0\")+t).slice(-e)}function Dr(n){return(e,t,r)=>{let i=ie(r)?parseInt(r,10):1;return zs(String(n),i)}}function xe(n,e,t){return Ws(n,e,t)}function Ws(n,e,t){return n.indexOf(\"$\")===-1?n:n.replace(/\\$\\$/g,\"$\").replace(/\\$RepresentationID\\$/g,String(e)).replace(/\\$Bandwidth(\\%0(\\d+)d)?\\$/g,Dr(t===void 0?0:t))}function Gn(n,e){return function(r){return r.indexOf(\"$\")===-1?r:r.replace(/\\$\\$/g,\"$\").replace(/\\$Number(\\%0(\\d+)d)?\\$/g,(i,a,o)=>{if(e===void 0)throw new Error(\"Segment number not defined in a $Number$ scheme\");return Dr(e)(i,a,o)}).replace(/\\$Time(\\%0(\\d+)d)?\\$/g,(i,a,o)=>{if(n===void 0)throw new Error(\"Segment time not defined in a $Time$ scheme\");return Dr(n)(i,a,o)})}}function Vs(n,e,t){let r=t-n;return r>0?Math.floor(r/e):0}function Vt(n,e,t,r,i,a){var T;let o=r.getEstimatedMaximumPosition((T=n.availabilityTimeOffset)!=null?T:0),s=Math.min(e+t,o!=null?o:1/0),u=Ee(e,n),d=Ee(s,n),{timeline:m,timescale:f,segmentUrlTemplate:l,startNumber:p,endNumber:g}=n,h=p!=null?p:1,I=[],y=m.length;for(let P=0;P<y;P++){let E=m[P],{duration:v,start:R,range:M}=E,_;o===void 0?_=i:_=Math.min(o*f,i!=null?i:1/0);let A=wr(E,m[P+1],_),k=n.availabilityTimeComplete!==!1||P!==y-1&&A!==0,x=Vs(R,v,u),D=R+x*v;for(;D<d&&x<=A;){let w=h+x;if(g!==void 0&&w>g)break;let O=l===null?null:Gn(D,w)(l),U=D-n.indexTimeOffset,z=v;U<0&&(z=v+U,U=0);let q={id:String(D),time:U/f,end:(U+z)/f,duration:z/f,isInit:!1,range:M,timescale:1,url:O,number:w,timestampOffset:-(n.indexTimeOffset/f),complete:k,privateInfos:{isEMSGWhitelisted:a}};I.push(q),x++,D=R+x*v}if(D>=d||(h+=A+1,g!==void 0&&h>g))return I}return I}function qs(n,e){if(e.timescale!==n.timescale){let{timescale:t}=n;n.timeline.push({start:e.time/e.timescale*t,duration:e.duration/e.timescale*t,repeatCount:e.count===void 0?0:e.count,range:e.range})}else n.timeline.push({start:e.time,duration:e.duration,repeatCount:e.count===void 0?0:e.count,range:e.range});return!0}var lt=class{constructor(e,t){var g,h,I,y;let{periodStart:r,periodEnd:i,representationId:a,representationBitrate:o,isEMSGWhitelisted:s}=t,u=(g=e.timescale)!=null?g:1,m=((h=e.presentationTimeOffset)!=null?h:0)-r*u,f=((I=e.initialization)==null?void 0:I.media)===void 0?null:xe(e.initialization.media,a,o),l=e.media===void 0?null:xe(e.media,a,o),p;e.initialization!==void 0?p=e.initialization.range:e.indexRange!==void 0&&(p=[0,e.indexRange[0]-1]),this._index={indexRange:e.indexRange,indexTimeOffset:m,initialization:{url:f,range:p},segmentUrlTemplate:l,startNumber:e.startNumber,endNumber:e.endNumber,timeline:(y=e.timeline)!=null?y:[],timescale:u},this._manifestBoundsCalculator=t.manifestBoundsCalculator,this._scaledPeriodStart=Ee(r,this._index),this._scaledPeriodEnd=C(i)?void 0:Ee(i,this._index),this._isInitialized=this._index.timeline.length>0,this._isEMSGWhitelisted=s}getInitSegment(){return Ge(this._index,this._isEMSGWhitelisted)}getSegments(e,t){return Vt(this._index,e,t,this._manifestBoundsCalculator,this._scaledPeriodEnd,this._isEMSGWhitelisted)}shouldRefresh(){return!1}getFirstAvailablePosition(){let e=this._index;return e.timeline.length===0?null:Fe(Math.max(this._scaledPeriodStart,e.timeline[0].start),e)}getLastAvailablePosition(){var i;let{timeline:e}=this._index;if(e.length===0)return null;let t=e[e.length-1],r=Math.min(Ae(t,null,this._scaledPeriodEnd),(i=this._scaledPeriodEnd)!=null?i:1/0);return Fe(r,this._index)}getEnd(){return this.getLastAvailablePosition()}awaitSegmentBetween(){return!1}isSegmentStillAvailable(){return!0}checkDiscontinuity(){return null}canBeOutOfSyncError(){return!1}isStillAwaitingFutureSegments(){return!1}isInitialized(){return this._isInitialized}initialize(e){if(!this._isInitialized){for(let t=0;t<e.length;t++)qs(this._index,e[t]);this._isInitialized=!0}}addPredictedSegments(){c.warn(\"Cannot add predicted segments to a `BaseRepresentationIndex`\")}_replace(e){this._index=e._index,this._isInitialized=e._isInitialized,this._scaledPeriodEnd=e._scaledPeriodEnd,this._isEMSGWhitelisted=e._isEMSGWhitelisted}_update(){c.error(\"Base RepresentationIndex: Cannot update a SegmentList\")}};var ft=class{constructor(e,t){var p,g,h;if(e.duration===void 0)throw new Error(\"Invalid SegmentList: no duration\");let{periodStart:r,periodEnd:i,representationId:a,representationBitrate:o,isEMSGWhitelisted:s}=t;this._isEMSGWhitelisted=s,this._periodStart=r,this._periodEnd=i;let u=(p=e.presentationTimeOffset)!=null?p:0,d=(g=e.timescale)!=null?g:1,m=u-r*d,f=((h=e.initialization)==null?void 0:h.media)===void 0?null:xe(e.initialization.media,a,o),l=e.list.map(I=>({url:I.media===void 0?null:xe(I.media,a,o),mediaRange:I.mediaRange}));this._index={list:l,timescale:d,duration:e.duration,indexTimeOffset:m,indexRange:e.indexRange,initialization:C(e.initialization)?void 0:{url:f,range:e.initialization.range}}}getInitSegment(){let e=Ge(this._index);return e.privateInfos===void 0&&(e.privateInfos={}),e.privateInfos.isEMSGWhitelisted=this._isEMSGWhitelisted,e}getSegments(e,t){let r=this._index,{duration:i,list:a,timescale:o}=r,s=i/o,u=e-this._periodStart,[d,m]=Da(u,t,o),f=Math.min(a.length-1,Math.floor(m/i)),l=[],p=Math.floor(d/i);for(;p<=f;){let g=a[p].mediaRange,h=a[p].url,I=p*s+this._periodStart,y={id:String(p),time:I,isInit:!1,range:g,duration:s,timescale:1,end:I+s,url:h,timestampOffset:-(r.indexTimeOffset/o),complete:!0,privateInfos:{isEMSGWhitelisted:this._isEMSGWhitelisted}};l.push(y),p++}return l}shouldRefresh(e,t){return!1}getFirstAvailablePosition(){return this._periodStart}getLastAvailablePosition(){var i;let e=this._index,{duration:t,list:r}=e;return Math.min(r.length*t/e.timescale+this._periodStart,(i=this._periodEnd)!=null?i:1/0)}getEnd(){return this.getLastAvailablePosition()}awaitSegmentBetween(){return!1}isSegmentStillAvailable(){return!0}checkDiscontinuity(){return null}canBeOutOfSyncError(){return!1}isStillAwaitingFutureSegments(){return!1}isInitialized(){return!0}initialize(){c.error(\"A `ListRepresentationIndex` does not need to be initialized\")}addPredictedSegments(){c.warn(\"Cannot add predicted segments to a `ListRepresentationIndex`\")}_replace(e){this._index=e._index}_update(){c.error(\"A `ListRepresentationIndex` cannot be updated\")}};function _t(n){return L.getCurrent().DEFAULT_MAXIMUM_TIME_ROUNDING_ERROR*n}var mt=class{constructor(e,t){var y,T,P;let{availabilityTimeOffset:r,manifestBoundsCalculator:i,isDynamic:a,periodEnd:o,periodStart:s,representationId:u,representationBitrate:d,isEMSGWhitelisted:m}=t,f=(y=e.timescale)!=null?y:1;this._availabilityTimeOffset=r,this._manifestBoundsCalculator=i;let l=(T=e.presentationTimeOffset)!=null?T:0,p=s*f,g=l-p;if(e.duration===void 0)throw new Error(\"Invalid SegmentTemplate: no duration\");let h=((P=e.initialization)==null?void 0:P.media)===void 0?null:xe(e.initialization.media,u,d),I=e.media===void 0?null:xe(e.media,u,d);this._index={duration:e.duration,timescale:f,indexRange:e.indexRange,indexTimeOffset:g,initialization:C(e.initialization)?void 0:{url:h,range:e.initialization.range},url:I,presentationTimeOffset:l,startNumber:e.startNumber,endNumber:e.endNumber},this._isDynamic=a,this._periodStart=s,this._scaledRelativePeriodEnd=o===void 0?void 0:(o-s)*f,this._isEMSGWhitelisted=m}getInitSegment(){return Ge(this._index,this._isEMSGWhitelisted)}getSegments(e,t){let r=this._index,{duration:i,startNumber:a,endNumber:o,timescale:s,url:u}=r,d=this._periodStart*s,m=this._scaledRelativePeriodEnd,f=e*s-d,l=(e+t)*s-d,p=this._getFirstSegmentStart(),g=this._getLastSegmentStart();if(C(p)||C(g))return[];let h=Math.max(p,f),I=Math.min(g,l);if(I+i<=h)return[];let y=[],T=a!=null?a:1,P=Math.floor(h/i);for(let E=P*i;E<=I;E+=i){let v=P+T;if(o!==void 0&&v>o)return y;let R=!C(m)&&E+i>m?m-E:i,M=E+d,_=E+this._index.presentationTimeOffset,A=u===null?null:Gn(_,v)(u),k={id:String(v),number:v,time:M/s,end:(M+R)/s,duration:R/s,timescale:1,isInit:!1,scaledDuration:R/s,url:A,timestampOffset:-(r.indexTimeOffset/s),complete:!0,privateInfos:{isEMSGWhitelisted:this._isEMSGWhitelisted}};y.push(k),P++}return y}getFirstAvailablePosition(){let e=this._getFirstSegmentStart();return C(e)?e:e/this._index.timescale+this._periodStart}getLastAvailablePosition(){let e=this._getLastSegmentStart();if(C(e))return e;let t=this._estimateRelativeScaledEnd();return Math.min(e+this._index.duration,t!=null?t:1/0)/this._index.timescale+this._periodStart}getEnd(){if(!this._isDynamic)return this.getLastAvailablePosition();let e=this._estimateRelativeScaledEnd();if(e===void 0)return;let{timescale:t}=this._index;return(e+this._periodStart*t)/t}awaitSegmentBetween(e,t){if(pe(e<=t),!this._isDynamic)return!1;let{timescale:r}=this._index,i=_t(r),a=this._periodStart*r,o=e*r-a,s=t*r-a,u=this._getLastSegmentStart();if(C(u)){let f=this._estimateRelativeScaledEnd();return f===void 0?s+i>=0:s+i>=0&&o<f-i}let d=u+this._index.duration,m=this._estimateRelativeScaledEnd();return m===void 0?s>d-i:s>d-i&&o<m-i}shouldRefresh(){return!1}checkDiscontinuity(){return null}isSegmentStillAvailable(e){if(e.isInit)return!0;let t=this.getSegments(e.time,.1);return t.length===0?!1:t[0].time===e.time&&t[0].end===e.end&&t[0].number===e.number}canBeOutOfSyncError(){return!1}isStillAwaitingFutureSegments(){if(!this._isDynamic)return!1;let e=this._estimateRelativeScaledEnd();if(e===void 0)return!0;let{timescale:t}=this._index,r=this._getLastSegmentStart();if(C(r))return!0;let i=r+this._index.duration,a=_t(t);return i+a<e}isInitialized(){return!0}initialize(){c.error(\"A `TemplateRepresentationIndex` does not need to be initialized\")}addPredictedSegments(){c.warn(\"Cannot add predicted segments to a `TemplateRepresentationIndex`\")}_replace(e){this._index=e._index,this._isDynamic=e._isDynamic,this._periodStart=e._periodStart,this._scaledRelativePeriodEnd=e._scaledRelativePeriodEnd,this._manifestBoundsCalculator=e._manifestBoundsCalculator}_update(e){this._replace(e)}_getFirstSegmentStart(){var o;if(!this._isDynamic)return 0;if(this._scaledRelativePeriodEnd===0||this._scaledRelativePeriodEnd===void 0){let s=this._manifestBoundsCalculator.getEstimatedMaximumPosition((o=this._availabilityTimeOffset)!=null?o:0);if(s!==void 0&&s<this._periodStart)return null}let{duration:e,timescale:t}=this._index,r=this._manifestBoundsCalculator.getEstimatedMinimumSegmentTime();if(r===void 0)return;let i=r>this._periodStart?(r-this._periodStart)*t:0;return Math.floor(i/e)*e}_getLastSegmentStart(){var a,o;let{duration:e,timescale:t,endNumber:r,startNumber:i=1}=this._index;if(this._isDynamic){let s=this._manifestBoundsCalculator.getEstimatedLiveEdge();if(s!==void 0&&this._scaledRelativePeriodEnd!==void 0&&this._scaledRelativePeriodEnd<s-this._periodStart*this._index.timescale){let f=Math.ceil(this._scaledRelativePeriodEnd/e);return r!==void 0&&r-i+1<f&&(f=r-i+1),(f-1)*e}let u=this._manifestBoundsCalculator.getEstimatedMaximumPosition((a=this._availabilityTimeOffset)!=null?a:0);if(u===void 0)return;let d=(u-this._periodStart)*t;if(d<0)return null;let m=Math.floor(d/e);return r!==void 0&&r-i+1<m&&(m=r-i+1),m<=0?null:(m-1)*e}else{let s=(o=this._scaledRelativePeriodEnd)!=null?o:0,u=Math.ceil(s/e);r!==void 0&&r-i+1<u&&(u=r-i+1);let d=(u-1)*e,m=L.getCurrent().MINIMUM_SEGMENT_SIZE*t;return r!==void 0||s-d>m||u<2?d:(u-2)*e}}_estimateRelativeScaledEnd(){var e,t;if(this._index.endNumber!==void 0){let r=this._index.endNumber-((e=this._index.startNumber)!=null?e:1)+1;return Math.max(Math.min(r*this._index.duration,(t=this._scaledRelativePeriodEnd)!=null?t:1/0),0)}if(this._scaledRelativePeriodEnd!==void 0)return Math.max(this._scaledRelativePeriodEnd,0)}};function Br(n,e){let t=0;for(;n.length>0;){let r=n[0];if(r.start>=e||r.repeatCount===-1)return t;if(r.repeatCount===0)n.shift(),t+=1;else{let i=n[1];if(i!==void 0&&i.start<=e)n.shift(),t+=1;else{if(r.duration<=0)return t;let a=r.start+r.duration,o=1;for(;a<e&&o<=r.repeatCount;)a+=r.duration,o++;if(o>r.repeatCount)n.shift(),t=r.repeatCount+1;else{let s=r.repeatCount-o;return r.start=a,r.repeatCount=s,t+=o,t}}}}return t}function Ur(n,e){if(n.length===0)return n.push(...e),!0;if(e.length===0)return!1;let t=n.length,r=e[0].start,i=n[t-1];if(Ae(i,e[0])<r)throw new Y(\"MANIFEST_UPDATE_ERROR\",\"Cannot perform partial update: not enough data\");for(let m=t-1;m>=0;m--){let f=n[m].start;if(f===r){let l=t-m;return n.splice(m,l,...e),!1}else if(f<r){let l=n[m];if(l.start+l.duration>r)return c.warn(\"RepresentationIndex: Manifest update removed all previous segments\"),n.splice(0,t,...e),!0;if(l.repeatCount===void 0||l.repeatCount<=0)return l.repeatCount<0&&(l.repeatCount=Math.floor((r-l.start)/l.duration)-1),n.splice(m+1,t-(m+1),...e),!1;if(l.start+l.duration*(l.repeatCount+1)<=r)return n.splice(m+1,t-(m+1),...e),!1;let g=(r-l.start)/l.duration-1;if(g%1===0&&l.duration===e[0].duration){let h=e[0].repeatCount<0?-1:e[0].repeatCount+g+1;return n.splice(m,t-m,...e),n[m].start=l.start,n[m].repeatCount=h,!1}return c.warn(\"RepresentationIndex: Manifest update removed previous segments\"),n[m].repeatCount=Math.floor(g),n.splice(m+1,t-(m+1),...e),!1}}let o=n[n.length-1],s=e[e.length-1];if(o.repeatCount!==void 0&&o.repeatCount<0)return o.start>s.start?(c.warn(\"RepresentationIndex: The new index is older than the previous one\"),!1):(c.warn('RepresentationIndex: The new index is \"bigger\" than the previous one'),n.splice(0,t,...e),!0);let u=o.start+o.duration*(o.repeatCount+1),d=s.start+s.duration*(s.repeatCount+1);return u>=d?(c.warn(\"RepresentationIndex: The new index is older than the previous one\"),!1):(c.warn('RepresentationIndex: The new index is \"bigger\" than the previous one'),n.splice(0,t,...e),!0)}function qt(n,e,t){let r=n.start,i=n.duration,a=n.repeatCount;return r===void 0&&(e===null?r=0:C(e.duration)||(r=e.start+e.duration*(e.repeatCount+1))),(i===void 0||isNaN(i))&&t!==null&&t.start!==void 0&&!isNaN(t.start)&&r!==void 0&&!isNaN(r)&&(i=t.start-r),r!==void 0&&!isNaN(r)&&i!==void 0&&!isNaN(i)&&(a===void 0||!isNaN(a))?{start:r,duration:i,repeatCount:a===void 0?0:a}:(c.warn('DASH: A \"S\" Element could not have been parsed.'),null)}function Et(n){let e={};for(let t=0;t<n.attributes.length;t++){let r=n.attributes[t];switch(r.name){case\"t\":let i=parseInt(r.value,10);isNaN(i)?c.warn(`DASH: invalid t (\"${r.value}\")`):e.start=i;break;case\"d\":let a=parseInt(r.value,10);isNaN(a)?c.warn(`DASH: invalid d (\"${r.value}\")`):e.duration=a;break;case\"r\":let o=parseInt(r.value,10);isNaN(o)?c.warn(`DASH: invalid r (\"${r.value}\")`):e.repeatCount=o;break}}return e}function nt(n){let e=[];for(let r=0;r<n.length;r++)e.push(Et(n[r]));let t=[];for(let r=0;r<e.length;r++){let i=e[r],a=t[t.length-1]===void 0?null:t[t.length-1],o=e[r+1]===void 0?null:e[r+1],s=qt(i,a,o);s!==null&&t.push(s)}return t}function Lr(n,e){if(n.length===0||e.length===0)return null;let t=n[0].start,r=e[0].getAttribute(\"t\"),i=r===null?null:parseInt(r,10);if(i===null||Number.isNaN(i))return null;if(t===i)return{prevSegmentsIdx:0,newElementsIdx:0,repeatNumberInPrevSegments:0,repeatNumberInNewElements:0};if(t<i){let a=n[0],o=0;for(;;){if(a.repeatCount>0){let s=i-a.start;if(s%a.duration===0&&s/a.duration<=a.repeatCount)return{repeatNumberInPrevSegments:s/a.duration,prevSegmentsIdx:o,newElementsIdx:0,repeatNumberInNewElements:0}}if(o++,o>=n.length)return null;if(a=n[o],a.start===i)return{prevSegmentsIdx:o,newElementsIdx:0,repeatNumberInPrevSegments:0,repeatNumberInNewElements:0};if(a.start>i)return null}}else{let a=0,o=e[0],s=i;for(;;){let u=o.getAttribute(\"d\"),d=u===null?null:parseInt(u,10);if(d===null||Number.isNaN(d))return null;let m=o.getAttribute(\"r\"),f=m===null?null:parseInt(m,10);if(f!==null){if(Number.isNaN(f)||f<0)return null;if(f>0){let g=t-s;if(g%d===0&&g/d<=f)return{repeatNumberInPrevSegments:0,repeatNumberInNewElements:g/d,prevSegmentsIdx:0,newElementsIdx:a}}s+=d*(f+1)}else s+=d;if(a++,a>=e.length)return null;o=e[a];let l=o.getAttribute(\"t\"),p=l===null?null:parseInt(l,10);if(p!==null){if(Number.isNaN(p))return null;s=p}if(s===t)return{newElementsIdx:a,prevSegmentsIdx:0,repeatNumberInPrevSegments:0,repeatNumberInNewElements:0};if(s>i)return null}}}function Nr(n,e){var h;let t=Lr(e,n);if(t===null)return c.warn('DASH: Cannot perform \"based\" update. Common segment not found.'),nt(n);let{prevSegmentsIdx:r,newElementsIdx:i,repeatNumberInPrevSegments:a,repeatNumberInNewElements:o}=t,u=e.length-r+i-1;if(u>=n.length)return c.info('DASH: Cannot perform \"based\" update. New timeline too short'),nt(n);let d=e.slice(r);if(a>0){let I=d[0];I.start+=I.duration*a,d[0].repeatCount-=a}if(o>0&&i!==0)return c.info('DASH: Cannot perform \"based\" update. The new timeline has a different form.'),nt(n);let m=d[d.length-1],f=Et(n[u]),l=((h=f.repeatCount)!=null?h:0)-o;if(f.duration!==m.duration||m.repeatCount>l)return c.info('DASH: Cannot perform \"based\" update. The new timeline has a different form at the beginning.'),nt(n);f.repeatCount!==void 0&&f.repeatCount>m.repeatCount&&(m.repeatCount=f.repeatCount);let p=[],g=[];for(let I=u+1;I<n.length;I++)g.push(Et(n[I]));for(let I=0;I<g.length;I++){let y=g[I],T=p[p.length-1]===void 0?m:p[p.length-1],P=g[I+1]===void 0?null:g[I+1],E=qt(y,T,P);E!==null&&p.push(E)}return d.concat(p)}var Gt=class n{constructor(e,t){var E,v,R,M,_;if(!n.isTimelineIndexArgument(e))throw new Error(\"The given index is not compatible with a TimelineRepresentationIndex.\");let{availabilityTimeComplete:r,availabilityTimeOffset:i,manifestBoundsCalculator:a,isDynamic:o,isLastPeriod:s,representationId:u,representationBitrate:d,periodStart:m,periodEnd:f,isEMSGWhitelisted:l}=t,p=(E=e.timescale)!=null?E:1,g=(v=e.presentationTimeOffset)!=null?v:0,h=m*p,I=g-h;this._manifestBoundsCalculator=a,this._isEMSGWhitelisted=l,this._isLastPeriod=s,this._lastUpdate=(R=t.receivedTime)!=null?R:N(),this._unsafelyBaseOnPreviousIndex=null,t.unsafelyBaseOnPreviousRepresentation!==null&&t.unsafelyBaseOnPreviousRepresentation.index instanceof n&&(t.unsafelyBaseOnPreviousRepresentation.index._unsafelyBaseOnPreviousIndex=null,this._unsafelyBaseOnPreviousIndex=t.unsafelyBaseOnPreviousRepresentation.index),this._isDynamic=o,this._parseTimeline=(M=e.timelineParser)!=null?M:null;let y=((_=e.initialization)==null?void 0:_.media)===void 0?null:xe(e.initialization.media,u,d),T=e.media===void 0?null:xe(e.media,u,d),P;i===void 0&&r===void 0?P=1/0:P=i!=null?i:0,this._index={availabilityTimeComplete:r!=null?r:!0,availabilityTimeOffset:P,indexRange:e.indexRange,indexTimeOffset:I,initialization:C(e.initialization)?void 0:{url:y,range:e.initialization.range},segmentUrlTemplate:T,startNumber:e.startNumber,endNumber:e.endNumber,timeline:e.timeline===void 0?null:Fr(e.timeline,e.startNumber,e.endNumber),timescale:p},this._scaledPeriodStart=Ee(m,this._index),this._scaledPeriodEnd=f===void 0?void 0:Ee(f,this._index)}getInitSegment(){return Ge(this._index,this._isEMSGWhitelisted)}getSegments(e,t){this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline());let{segmentUrlTemplate:r,startNumber:i,endNumber:a,timeline:o,timescale:s,indexTimeOffset:u}=this._index;return Vt({segmentUrlTemplate:r,startNumber:i,endNumber:a,timeline:o,timescale:s,indexTimeOffset:u},e,t,this._manifestBoundsCalculator,this._scaledPeriodEnd,this._isEMSGWhitelisted)}shouldRefresh(){return!1}getFirstAvailablePosition(){this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline());let e=this._index.timeline;return e.length===0?null:Fe(Math.max(this._scaledPeriodStart,e[0].start),this._index)}getLastAvailablePosition(){var r;this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline());let e=Hn(this._index,this._manifestBoundsCalculator,this._scaledPeriodEnd);if(e===null)return null;let t=Math.min(e.end,(r=this._scaledPeriodEnd)!=null?r:1/0);return Fe(t,this._index)}getEnd(){var r;if(this._isDynamic&&!this._isLastPeriod)return;if(this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline()),this._index.timeline.length<=0)return null;let e=this._index.timeline[this._index.timeline.length-1],t=Math.min(Ae(e,null,this._scaledPeriodEnd),(r=this._scaledPeriodEnd)!=null?r:1/0);return Fe(t,this._index)}awaitSegmentBetween(e,t){var d,m;if(pe(e<=t),!this._isDynamic)return!1;this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline());let{timescale:r,timeline:i}=this._index,a=_t(r),o=Ee(t,this._index),s=Hn(this._index,this._manifestBoundsCalculator,this._scaledPeriodEnd);if(s!==null&&Math.min(s.end,(d=this._scaledPeriodEnd)!=null?d:1/0)+a>=Math.min(o,(m=this._scaledPeriodEnd)!=null?m:1/0))return!1;let u=Ee(e,this._index);if(i.length>0&&s!==null&&!s.isLastOfTimeline){let f=i[i.length-1],p=Ae(f,null,this._scaledPeriodEnd)+a;if(u<p+a)return!0}return this._isLastPeriod?this._scaledPeriodEnd===void 0?o+a>this._scaledPeriodStart?void 0:!1:u-a<this._scaledPeriodEnd&&o+a>this._scaledPeriodStart:!1}isSegmentStillAvailable(e){return e.isInit?!0:(this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline()),Gs(e,this._index,this._manifestBoundsCalculator,this._scaledPeriodEnd))}checkDiscontinuity(e){this._refreshTimeline();let t=this._index.timeline;return t===null&&(t=this._getTimeline(),this._index.timeline=t),Ba({timeline:t,timescale:this._index.timescale,indexTimeOffset:this._index.indexTimeOffset},e,this._scaledPeriodEnd)}canBeOutOfSyncError(e){return this._isDynamic?e instanceof Ne&&e.isHttpError(404):!1}_replace(e){this._parseTimeline=e._parseTimeline,this._index=e._index,this._isDynamic=e._isDynamic,this._scaledPeriodStart=e._scaledPeriodStart,this._scaledPeriodEnd=e._scaledPeriodEnd,this._lastUpdate=e._lastUpdate,this._manifestBoundsCalculator=e._manifestBoundsCalculator,this._isLastPeriod=e._isLastPeriod}_update(e){this._index.timeline===null&&(this._index.timeline=this._getTimeline()),e._index.timeline===null&&(e._index.timeline=e._getTimeline()),Ur(this._index.timeline,e._index.timeline)&&(this._index.startNumber=e._index.startNumber),this._index.availabilityTimeOffset=e._index.availabilityTimeOffset,this._index.availabilityTimeComplete=e._index.availabilityTimeComplete,this._index.endNumber=e._index.endNumber,this._isDynamic=e._isDynamic,this._scaledPeriodStart=e._scaledPeriodStart,this._scaledPeriodEnd=e._scaledPeriodEnd,this._lastUpdate=e._lastUpdate,this._isLastPeriod=e._isLastPeriod}isStillAwaitingFutureSegments(){var o;if(!this._isDynamic)return!1;this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline());let{timeline:e}=this._index;if(e.length===0){if(this._scaledPeriodEnd!==void 0){let s=this._manifestBoundsCalculator.getEstimatedLiveEdge();if(s!==void 0&&Ee(s,this._index)>this._scaledPeriodEnd)return!1}return this._isLastPeriod}let t=_t(this._index.timescale),r=Hn(this._index,this._manifestBoundsCalculator,this._scaledPeriodEnd);if(r!==null&&!r.isLastOfTimeline){let s=Math.min(r.end,(o=this._scaledPeriodEnd)!=null?o:1/0);return!(this._scaledPeriodEnd!==void 0&&s+t>=this._scaledPeriodEnd)}if(!this._isLastPeriod)return!1;if(this._scaledPeriodEnd===void 0)return!0;let i=e[e.length-1];return Ae(i,null,this._scaledPeriodEnd)+t<this._scaledPeriodEnd}isInitialized(){return!0}initialize(){c.error(\"A `TimelineRepresentationIndex` does not need to be initialized\")}addPredictedSegments(){c.warn(\"Cannot add predicted segments to a `TimelineRepresentationIndex`\")}static isTimelineIndexArgument(e){return typeof e.timelineParser==\"function\"||Array.isArray(e.timeline)}_refreshTimeline(){if(this._index.timeline===null&&(this._index.timeline=this._getTimeline()),!this._isDynamic)return;let e=this._manifestBoundsCalculator.getEstimatedMinimumSegmentTime();if(C(e))return;let t=Ee(e,this._index),r=Br(this._index.timeline,t);this._index.startNumber!==void 0?this._index.startNumber+=r:this._index.endNumber!==void 0&&(this._index.startNumber=r+1)}_getTimeline(){if(this._parseTimeline===null)return this._index.timeline!==null?this._index.timeline:(c.error(\"DASH: Timeline already lazily parsed.\"),[]);let e=this._parseTimeline();this._parseTimeline=null;let{MIN_DASH_S_ELEMENTS_TO_PARSE_UNSAFELY:t}=L.getCurrent();if(this._unsafelyBaseOnPreviousIndex===null||e.length<t)return Fr(nt(e),this._index.startNumber,this._index.endNumber);let r;return this._unsafelyBaseOnPreviousIndex._index.timeline===null?(r=this._unsafelyBaseOnPreviousIndex._getTimeline(),this._unsafelyBaseOnPreviousIndex._index.timeline=r):r=this._unsafelyBaseOnPreviousIndex._index.timeline,this._unsafelyBaseOnPreviousIndex=null,Fr(Nr(e,r),this._index.startNumber,this._index.endNumber)}};function Fr(n,e,t){if(t===void 0)return n;let r=e!=null?e:1;for(let i=0;i<n.length;i++){let a=n[i];if(r+=a.repeatCount+1,r>t){if(r===t+1)return n.slice(0,i+1);{let o=n.slice(0,i),s=Se({},a),u=r-a.repeatCount-1;return s.repeatCount=Math.max(0,t-u),o.push(s),o}}}return n}function Gs(n,e,t,r){let i=Hn(e,t,r);if(i===null)return!1;for(let a=0;a<e.timeline.length;a++){if(i.timelineIdx<a)return!1;let o=e.timeline[a],s=(o.start-e.indexTimeOffset)/e.timescale;if(s>n.time)return!1;if(s===n.time)return o.range===void 0?n.range===void 0:!C(n.range)&&o.range[0]===n.range[0]&&o.range[1]===n.range[1];if(o.repeatCount>=0&&o.duration!==void 0){let d=(s-o.start)/o.duration-1;return d%1===0&&d<=i.newRepeatCount}}return!1}function Hn(n,e,t){if(n.timeline.length<=0)return null;if(n.availabilityTimeOffset===1/0){let i=n.timeline.length-1,a=n.timeline[i];return{isLastOfTimeline:!0,timelineIdx:i,newRepeatCount:a.repeatCount,end:Ae(a,null,t)}}let r=e.getEstimatedMaximumPosition(n.availabilityTimeOffset);if(r===void 0){let i=n.timeline.length-1,a=n.timeline[i];return{isLastOfTimeline:!0,timelineIdx:i,newRepeatCount:a.repeatCount,end:Ae(a,null,t)}}for(let i=n.timeline.length-1;i>=n.timeline.length;i--){let a=n.timeline[i],o=a.start+a.duration;if(Fe(o,n)<=r){let s=Ae(a,n.timeline[i+1],t);if(Fe(s,n)<=r)return{isLastOfTimeline:i===n.timeline.length-1,timelineIdx:i,newRepeatCount:a.repeatCount,end:o};{let d=Ee(r,n)-a.start,m=Math.floor(d/a.duration);return pe(m>=1),{isLastOfTimeline:!1,timelineIdx:i,newRepeatCount:m-1,end:a.start+m*a.duration}}}}return null}var jn=Gt;var Ua=/^(?:[a-z]+:)?\\/\\//i,Hs=/\\/\\.{1,2}\\//;function js(n){if(!Hs.test(n))return n;let e=[],t=n.split(\"/\");for(let r=0,i=t.length;r<i;r++)if(t[r]===\"..\")e.pop();else{if(t[r]===\".\")continue;e.push(t[r])}return e.join(\"/\")}function Ht(...n){let e=n.length;if(e===0)return\"\";let t=\"\";for(let r=0;r<e;r++){let i=n[r];typeof i!=\"string\"||i===\"\"||(Ua.test(i)?t=i:(i[0]===\"/\"&&(i=i.substring(1)),t[t.length-1]===\"/\"&&(t=t.substring(0,t.length-1)),t=t+\"/\"+i))}return js(t)}function zr(n){let e=n.lastIndexOf(\"/\");if(e<0)return n.length;if(Ua.test(n)){let r=n.indexOf(\"/\");if(r>=0&&e===r+1)return n.length}let t=n.indexOf(\"?\");return t>=0&&t<e?zr(n.substring(0,t)):e+1}function Yn(n){let e=Date.parse(n)-N();if(isNaN(e)){c.warn(\"DASH Parser: Invalid clock received: \",n);return}return e}function Wr(n){let e=n.children.utcTimings.filter(t=>(t.schemeIdUri===\"urn:mpeg:dash:utc:http-iso:2014\"||t.schemeIdUri===\"urn:mpeg:dash:utc:http-xsdate:2014\")&&t.value!==void 0);return e.length>0?e[0].value:void 0}function Kn(n){let{representations:e}=n,t=null;for(let r=0;r<e.length;r++){let i=e[r].index.getLastAvailablePosition();if(i===void 0)return;i!==null&&(t=t===null?i:Math.min(t,i))}return t===null?null:t}function Vr(n){for(let e=n.length-1;e>=0;e--){let t=n[e].adaptations,r=t.audio===void 0?void 0:t.audio[0],i=t.video===void 0?void 0:t.video[0];if(r!==void 0||i!==void 0){let a=null,o=null;if(r!==void 0){let s=Kn(r);if(s===void 0)return{safe:void 0,unsafe:void 0};a=s}if(i!==void 0){let s=Kn(i);if(s===void 0)return{safe:void 0,unsafe:void 0};o=s}if(r!==void 0&&a===null||i!==void 0&&o===null)return c.info(\"Parser utils: found Period with no segment. \",\"Going to previous one to calculate last position\"),{safe:void 0,unsafe:void 0};if(o!==null)return a!==null?{safe:Math.min(a,o),unsafe:Math.max(a,o)}:{safe:o,unsafe:o};if(a!==null)return{safe:a,unsafe:a}}}return{safe:void 0,unsafe:void 0}}function Qn(n){let{representations:e}=n,t=null;for(let r=0;r<e.length;r++){let i=e[r].index.getFirstAvailablePosition();if(i===void 0)return;i!==null&&(t=t===null?i:Math.max(t,i))}return t===null?null:t}function qr(n){for(let e=0;e<=n.length-1;e++){let t=n[e].adaptations,r=t.audio===void 0?void 0:t.audio[0],i=t.video===void 0?void 0:t.video[0];if(r!==void 0||i!==void 0){let a=null,o=null;if(r!==void 0){let s=Qn(r);if(s===void 0)return;a=s}if(i!==void 0){let s=Qn(i);if(s===void 0)return;o=s}if(r!==void 0&&a===null||i!==void 0&&o===null){c.info(\"Parser utils: found Period with no segment. \",\"Going to next one to calculate first position\");return}if(o!==null)return a!==null?Math.max(a,o):o;if(a!==null)return a}}}function Gr(n){if(n.length===0)throw new Error(\"DASH Parser: no period available for a dynamic content\");let e=qr(n),t=Vr(n);return{minimumSafePosition:e,maximumSafePosition:t.safe,maximumUnsafePosition:t.unsafe}}var jt=class{constructor(e){this._isDynamic=e.isDynamic,this._timeShiftBufferDepth=!e.isDynamic||e.timeShiftBufferDepth===void 0?null:e.timeShiftBufferDepth,this._serverTimestampOffset=e.serverTimestampOffset,this._availabilityStartTime=e.availabilityStartTime}setLastPosition(e,t){this._lastPosition=e,this._positionTime=t}lastPositionIsKnown(){return this._isDynamic?this._positionTime!==void 0&&this._lastPosition!==void 0:this._lastPosition!==void 0}getEstimatedMinimumSegmentTime(){var r;if(!this._isDynamic||this._timeShiftBufferDepth===null)return 0;let e=(r=this.getEstimatedLiveEdge())!=null?r:this.getEstimatedMaximumPosition(0);return e===void 0?void 0:e-this._timeShiftBufferDepth}getEstimatedLiveEdge(){if(!(!this._isDynamic||this._serverTimestampOffset===void 0))return(N()+this._serverTimestampOffset)/1e3-this._availabilityStartTime}getEstimatedMaximumPosition(e){if(!this._isDynamic)return this._lastPosition;let t=this.getEstimatedLiveEdge();return t!==void 0&&e!==1/0?t+e:this._positionTime!==void 0&&this._lastPosition!==void 0?Math.max(this._lastPosition-this._positionTime+N()/1e3,0):this._lastPosition}};function Hr(n,e){return n.type!==\"dynamic\"?0:C(n.availabilityStartTime)?e!=null?e:0:n.availabilityStartTime}function jr(n,e){return typeof Array.prototype.flatMap==\"function\"?n.flatMap(e):n.reduce((t,r)=>{let i=e(r);return Array.isArray(i)?(t.push(...i),t):(t.push(i),t)},[])}var Ys=typeof ye==\"object\"&&typeof ye.TextDecoder==\"function\",Ks=typeof ye==\"object\"&&typeof ye.TextEncoder==\"function\";function Yt(n){if(Ks)try{return new TextEncoder().encode(n)}catch(i){let a=i instanceof Error?i:\"\";c.warn(\"Utils: could not use TextEncoder to encode string into UTF-8, fallbacking to another implementation\",a)}let e,t=encodeURIComponent(n);if(typeof unescape==\"function\")e=unescape(t);else{let i=/[0-9a-fA-F]/,a=t.length;e=\"\";for(let o=0;o<t.length;o++){let s=!1;if(t[o]===\"%\"){if(o<=a-6&&t[o+1]===\"u\"&&i.test(t[o+2])&&i.test(t[o+3])&&i.test(t[o+4])&&i.test(t[o+5])){let u=parseInt(t.substring(o+1,o+6),16);e+=String.fromCharCode(u),s=!0,o+=5}else if(o<=a-3&&i.test(t[o+1])&&i.test(t[o+2])){let u=parseInt(t.substring(o+1,o+3),16);e+=String.fromCharCode(u),s=!0,o+=2}}s||(e+=t[o])}}let r=new Uint8Array(e.length);for(let i=0;i<e.length;i++)r[i]=e.charCodeAt(i)&255;return r}function Qs(n){let t=\"\";for(let r=0;r<n.length;r+=16e3){let i=n.subarray(r,r+16e3);t+=String.fromCharCode.apply(null,i)}return t}function La(n,e){let t=n.toString(16);return t.length>=e?t:new Array(e-t.length+1).join(\"0\")+t}function we(n){if(Ys)try{return new TextDecoder().decode(n)}catch(i){let a=i instanceof Error?i:\"\";c.warn(\"Utils: could not use TextDecoder to parse UTF-8, fallbacking to another implementation\",a)}let e=n;e[0]===239&&e[1]===187&&e[2]===191&&(e=e.subarray(3));let t=Qs(e),r;if(typeof escape==\"function\")r=escape(t);else{let i=/[A-Za-z0-9*_\\+-\\.\\/]/;r=\"\";for(let a=0;a<t.length;a++)if(i.test(t[a]))r+=t[a];else{let o=t.charCodeAt(a);r+=o>=256?\"%u\"+La(o,4):\"%\"+La(o,2)}}return decodeURIComponent(r)}function Yr(n){let e=n.length,t=new Uint8Array(e/2);for(let r=0,i=0;r<e;r+=2,i++)t[i]=parseInt(n.substring(r,r+2),16)&255;return t}function Na(n,e=\"\"){let t=\"\";for(let r=0;r<n.byteLength;r++)t+=(n[r]>>>4).toString(16),t+=(n[r]&15).toString(16),e.length>0&&r<n.byteLength-1&&(t+=e);return t}function Kr(n,e){let t=e;for(;t<n.length&&n[t]!==0;)t+=1;let r=n.subarray(e,t);return{end:t+1,string:we(r)}}function Qr(n){if(n.length===0)return[];let e=[n[0]];for(let t=1;t<n.length;t++){let r=n[t],i=e[e.length-1];for(;(i.duration===void 0||i.start+i.duration>r.start)&&(c.warn(\"DASH: Updating overlapping Periods.\",i==null?void 0:i.start,r.start),i.duration=r.start-i.start,i.end=r.start,!(i.duration>0));){if(e.pop(),e.length===0)break;i=e[e.length-1]}e.push(r)}return e}function Xr(n,e){let t=[];return n.forEach((r,i)=>{let a;if(!C(r.attributes.start))a=r.attributes.start;else if(i===0)a=!e.isDynamic||C(e.availabilityStartTime)?0:e.availabilityStartTime;else{let d=t[t.length-1];if(!C(d)&&!C(d.periodEnd))a=d.periodEnd;else throw new Error(\"Missing start time when parsing periods.\")}let o,s=n[i+1];C(r.attributes.duration)?i===n.length-1?o=e.duration:C(s.attributes.start)||(o=s.attributes.start-a):o=r.attributes.duration;let u=C(o)?void 0:a+o;t.push({periodStart:a,periodDuration:o,periodEnd:u})}),t}function Xs(n,e){for(let t of e){let{adaptation:r,trickModeAttachedAdaptationIds:i}=t;for(let a of i)for(let o of St){let s=n[o];if(s!==void 0)for(let u of s)u.id===a&&(u.trickModeTracks===void 0&&(u.trickModeTracks=[]),u.trickModeTracks.push(r))}}}var Fa=Xs;var $s=[\"subtitle\",\"caption\"];function $r(n,e,t,r){function i(o,s){let u=o.split(\"/\")[0];if(oe(St,u))return u;if(o===\"application/ttml+xml\")return\"text\";if(o===\"application/mp4\")return s!==null&&j(s,d=>d.schemeIdUri===\"urn:mpeg:dash:role:2011\"&&oe($s,d.value))!==void 0?\"text\":void 0}function a(o){switch(o.substring(0,3)){case\"avc\":case\"hev\":case\"hvc\":case\"vp8\":case\"vp9\":case\"av1\":return\"video\";case\"vtt\":return\"text\"}switch(o.substring(0,4)){case\"mp4a\":return\"audio\";case\"wvtt\":case\"stpp\":return\"text\"}}if(e!==null){let o=i(e,r);if(o!==void 0)return o}if(t!==null){let o=a(t);if(o!==void 0)return o}for(let o=0;o<n.length;o++){let s=n[o],{mimeType:u,codecs:d}=s.attributes;if(u!==void 0){let m=i(u,r);if(m!==void 0)return m}if(d!==void 0){let m=a(d);if(m!==void 0)return m}}}var Zs=/[, ]+/g;function za(n){return ie(n)?n.trim().replace(Zs,\", \"):\"\"}function Wa(n){let[e,t,r,i,a,o,s,u]=n.split(\".\");if(e!==\"vp08\"&&e!==\"vp09\"&&e!==\"vp10\")return;let d,m,f;if((i!==void 0&&i===\"10\"||i===\"12\")&&(d=parseInt(i,10)),s!==void 0&&(s===\"16\"?m=\"pq\":s===\"18\"&&(m=\"hlg\")),o!==void 0&&u!==void 0&&o===\"09\"&&u===\"09\"&&(f=\"rec2020\"),!(d===void 0||m===void 0))return{colorDepth:d,eotf:m,colorSpace:f}}function Zr(n,e){var g,h;let{availabilityTimeOffset:t,manifestBoundsCalculator:r,isDynamic:i,end:a,start:o,receivedTime:s,unsafelyBaseOnPreviousRepresentation:u,inbandEventStreams:d,isLastPeriod:m}=e,l={availabilityTimeComplete:void 0,availabilityTimeOffset:t,unsafelyBaseOnPreviousRepresentation:u,isEMSGWhitelisted:I=>d===void 0?!1:d.some(({schemeIdUri:y})=>y===I.schemeIdUri),isLastPeriod:m,manifestBoundsCalculator:r,isDynamic:i,periodEnd:a,periodStart:o,receivedTime:s,representationBitrate:n.attributes.bitrate,representationId:n.attributes.id},p;if(n.children.segmentBase!==void 0){let{segmentBase:I}=n.children;p=new lt(I,l)}else if(n.children.segmentList!==void 0){let{segmentList:I}=n.children;p=new ft(I,l)}else if(n.children.segmentTemplate!==void 0||e.parentSegmentTemplates.length>0){let I=e.parentSegmentTemplates.slice(),y=n.children.segmentTemplate;y!==void 0&&I.push(y);let T=G({},...I);(T.availabilityTimeOffset!==void 0||e.availabilityTimeOffset!==void 0)&&(l.availabilityTimeOffset=((g=T.availabilityTimeOffset)!=null?g:0)+((h=e.availabilityTimeOffset)!=null?h:0)),p=jn.isTimelineIndexArgument(T)?new jn(T,l):new mt(T,l)}else{let I=e.adaptation.children;if(I.segmentBase!==void 0){let{segmentBase:y}=I;p=new lt(y,l)}else if(I.segmentList!==void 0){let{segmentList:y}=I;p=new ft(y,l)}else p=new mt({duration:Number.MAX_VALUE,timescale:1,startNumber:0,media:\"\"},l)}return p}function He(n,e){var i;if(e.length===0)return n;let t=e.map(a=>({url:a.value}));if(n.length===0)return t;let r=[];for(let a=0;a<n.length;a++){let o=n[a];for(let s=0;s<t.length;s++){let u=t[s],d=Ht(o.url,u.url);r.push({url:d,serviceLocation:(i=u.serviceLocation)!=null?i:o.serviceLocation})}}return r}function Js(n,e){let t=[];if(n.children.inbandEventStreams!==void 0&&t.push(...n.children.inbandEventStreams),e.children.inbandEventStreams!==void 0&&t.push(...e.children.inbandEventStreams),t.length!==0)return t}function eu({adaptationProfiles:n,essentialProperties:e,supplementalProperties:t,manifestProfiles:r,codecs:i}){if(((n!=null?n:\"\")+(r!=null?r:\"\")).indexOf(\"http://dashif.org/guidelines/dash-if-uhd#hevc-hdr-pq10\")!==-1&&(i===\"hvc1.2.4.L153.B0\"||i===\"hev1.2.4.L153.B0\"))return{colorDepth:10,eotf:\"pq\",colorSpace:\"rec2020\"};let o=j([...e!=null?e:[],...t!=null?t:[]],s=>s.schemeIdUri===\"urn:mpeg:mpegB:cicp:TransferCharacteristics\");if(o!==void 0)switch(o.value){case\"15\":return;case\"16\":return{eotf:\"pq\"};case\"18\":return{eotf:\"hlg\"}}if(i!==void 0&&/^vp(08|09|10)/.exec(i))return Wa(i)}function Jr(n,e,t){var i,a,o,s,u;let r=[];for(let d of n){let m=d.attributes.id!==void 0?d.attributes.id:String(d.attributes.bitrate)+(d.attributes.height!==void 0?`-${d.attributes.height}`:\"\")+(d.attributes.width!==void 0?`-${d.attributes.width}`:\"\")+(d.attributes.mimeType!==void 0?`-${d.attributes.mimeType}`:\"\")+(d.attributes.codecs!==void 0?`-${d.attributes.codecs}`:\"\");for(;r.some(_=>_.id===m);)m+=\"-dup\";let f=(a=(i=t.unsafelyBaseOnPreviousAdaptation)==null?void 0:i.getRepresentation(m))!=null?a:null,l=Js(d,e),p=(o=d.attributes.availabilityTimeComplete)!=null?o:t.availabilityTimeComplete,g;(d.attributes.availabilityTimeOffset!==void 0||t.availabilityTimeOffset!==void 0)&&(g=((s=d.attributes.availabilityTimeOffset)!=null?s:0)+((u=t.availabilityTimeOffset)!=null?u:0));let h=G({},t,{availabilityTimeOffset:g,availabilityTimeComplete:p,unsafelyBaseOnPreviousRepresentation:f,adaptation:e,inbandEventStreams:l}),I=Zr(d,h),y;d.attributes.bitrate===void 0?(c.warn(\"DASH: No usable bitrate found in the Representation.\"),y=0):y=d.attributes.bitrate;let T=He(t.baseURLs,d.children.baseURLs),P=T.length===0?[{baseUrl:\"\",id:void 0}]:T.map(_=>({baseUrl:_.url,id:_.serviceLocation})),E={bitrate:y,cdnMetadata:P,index:I,id:m};d.children.supplementalProperties!==void 0&&j(d.children.supplementalProperties,_=>_.schemeIdUri===\"tag:dolby.com,2018:dash:EC3_ExtensionType:2018\"&&_.value===\"JOC\")&&(E.isSpatialAudio=!0);let v;d.attributes.codecs!==void 0?v=d.attributes.codecs:e.attributes.codecs!==void 0&&(v=e.attributes.codecs),v!==void 0&&(v=v===\"mp4a.40.02\"?\"mp4a.40.2\":v,E.codecs=v);let R;d.attributes.supplementalCodecs!==void 0?R=d.attributes.supplementalCodecs:e.attributes.supplementalCodecs!==void 0&&(R=e.attributes.supplementalCodecs),R!==void 0&&(E.supplementalCodecs=za(R)),d.attributes.frameRate!==void 0?E.frameRate=d.attributes.frameRate:e.attributes.frameRate!==void 0&&(E.frameRate=e.attributes.frameRate),d.attributes.height!==void 0?E.height=d.attributes.height:e.attributes.height!==void 0&&(E.height=e.attributes.height),d.attributes.mimeType!==void 0?E.mimeType=d.attributes.mimeType:e.attributes.mimeType!==void 0&&(E.mimeType=e.attributes.mimeType),d.attributes.width!==void 0?E.width=d.attributes.width:e.attributes.width!==void 0&&(E.width=e.attributes.width);let M=e.children.contentProtections!==void 0?e.children.contentProtections:[];if(d.children.contentProtections!==void 0&&M.push(...d.children.contentProtections),M.length>0){let _=M.reduce((A,k)=>{let x;if(k.attributes.schemeIdUri!==void 0&&k.attributes.schemeIdUri.substring(0,9)===\"urn:uuid:\"&&(x=k.attributes.schemeIdUri.substring(9).replace(/-/g,\"\").toLowerCase()),k.attributes.keyId!==void 0&&k.attributes.keyId.length>0){let D={keyId:k.attributes.keyId,systemId:x};A.keyIds===void 0?A.keyIds=[D]:A.keyIds.push(D)}if(x!==void 0){let{cencPssh:D}=k.children,w=[];for(let O of D)w.push({systemId:x,data:O});if(w.length>0){let O=j(A.initData,U=>U.type===\"cenc\");O===void 0?A.initData.push({type:\"cenc\",values:w}):O.values.push(...w)}}return A},{keyIds:void 0,initData:[]});(Object.keys(_.initData).length>0||_.keyIds!==void 0&&_.keyIds.length>0)&&(E.contentProtections=_)}E.hdrInfo=eu({adaptationProfiles:e.attributes.profiles,supplementalProperties:e.children.supplementalProperties,essentialProperties:e.children.essentialProperties,manifestProfiles:t.manifestProfiles,codecs:v}),r.push(E)}return r}function tu(n){if(n===void 0)return!1;let e=n.schemeIdUri===\"urn:tva:metadata:cs:AudioPurposeCS:2007\"&&n.value===\"1\",t=n.schemeIdUri===\"urn:mpeg:dash:role:2011\"&&n.value===\"description\";return e||t}function nu(n,e){return!!(n!==void 0&&n.some(r=>r.schemeIdUri===\"urn:tva:metadata:cs:AudioPurposeCS:2007\"&&r.value===\"2\")||e!==void 0&&e.some(r=>r.schemeIdUri===\"urn:mpeg:dash:role:2011\"&&r.value===\"caption\"))}function ru(n){return n===void 0?!1:n.schemeIdUri===\"urn:mpeg:dash:role:2011\"&&n.value===\"sign\"}function iu(n,e){if(ie(n.attributes.id))return n.attributes.id;let{isClosedCaption:t,isForcedSubtitle:r,isAudioDescription:i,isSignInterpreted:a,isTrickModeTrack:o,type:s}=e,u=s;return ie(n.attributes.language)&&(u+=`-${n.attributes.language}`),t===!0&&(u+=\"-cc\"),r===!0&&(u+=\"-cc\"),i===!0&&(u+=\"-ad\"),a===!0&&(u+=\"-si\"),o&&(u+=\"-trickMode\"),ie(n.attributes.contentType)&&(u+=`-${n.attributes.contentType}`),ie(n.attributes.codecs)&&(u+=`-${n.attributes.codecs}`),ie(n.attributes.mimeType)&&(u+=`-${n.attributes.mimeType}`),n.attributes.frameRate!==void 0&&(u+=`-${String(n.attributes.frameRate)}`),u}function au(n){if(!C(n.children.supplementalProperties)){let{supplementalProperties:e}=n.children;for(let t of e)if(t.schemeIdUri===\"urn:mpeg:dash:adaptation-set-switching:2016\"&&!C(t.value))return t.value.split(\",\").map(r=>r.trim()).filter(r=>r)}return[]}function ei(n,e){var s,u,d,m,f,l,p;let t={video:[],audio:[],text:[]},r=[],i={},a=[];for(let g=0;g<n.length;g++){let h=n[g],I=h.children,{essentialProperties:y,roles:T,label:P}=I,E=Array.isArray(T)&&T.some(he=>he.value===\"main\")&&T.some(he=>he.schemeIdUri===\"urn:mpeg:dash:role:2011\"),v=h.children.representations,R=(s=h.attributes.availabilityTimeComplete)!=null?s:e.availabilityTimeComplete,M;(h.attributes.availabilityTimeOffset!==void 0||e.availabilityTimeOffset!==void 0)&&(M=((u=h.attributes.availabilityTimeOffset)!=null?u:0)+((d=e.availabilityTimeOffset)!=null?d:0));let _=h.attributes.mimeType,A=h.attributes.codecs,k=$r(v,ie(_)?_:null,ie(A)?A:null,C(I.roles)?null:I.roles);if(k===void 0)continue;let x=(m=h.attributes.selectionPriority)!=null?m:1,D=h.attributes.id,w=au(h),O=[];e.segmentTemplate!==void 0&&O.push(e.segmentTemplate),h.children.segmentTemplate!==void 0&&O.push(h.children.segmentTemplate);let U={availabilityTimeComplete:R,availabilityTimeOffset:M,baseURLs:He(e.baseURLs,I.baseURLs),manifestBoundsCalculator:e.manifestBoundsCalculator,end:e.end,isDynamic:e.isDynamic,isLastPeriod:e.isLastPeriod,manifestProfiles:e.manifestProfiles,parentSegmentTemplates:O,receivedTime:e.receivedTime,start:e.start,unsafelyBaseOnPreviousAdaptation:null},z=Array.isArray(y)?j(y,he=>he.schemeIdUri===\"http://dashif.org/guidelines/trickmode\"):void 0,q=(f=z==null?void 0:z.value)==null?void 0:f.split(\" \"),Z=q!==void 0,{accessibilities:X}=I,V;T!==void 0&&T.some(he=>he.value===\"dub\")&&(V=!0);let Q;k!==\"text\"?Q=!1:Q=nu(X,T);let $;k===\"text\"&&T!==void 0&&T.some(he=>he.value===\"forced-subtitle\"||he.value===\"forced_subtitle\")&&($=!0);let le;k!==\"audio\"?le=!1:X!==void 0&&(le=X.some(tu));let fe;k!==\"video\"?fe=!1:X!==void 0&&(fe=X.some(ru));let ue=iu(h,{isAudioDescription:le,isForcedSubtitle:$,isClosedCaption:Q,isSignInterpreted:fe,isTrickModeTrack:Z,type:k});for(;oe(a,ue);)ue+=\"-dup\";let ge=ue;a.push(ue),U.unsafelyBaseOnPreviousAdaptation=(p=(l=e.unsafelyBaseOnPreviousPeriod)==null?void 0:l.getAdaptation(ue))!=null?p:null;let Bn=Jr(v,h,U),me={id:ue,representations:Bn,type:k,isTrickModeTrack:Z};if(C(h.attributes.language)||(me.language=h.attributes.language),C(Q)||(me.closedCaption=Q),C(le)||(me.audioDescription=le),V===!0&&(me.isDub=!0),$!==void 0&&(me.forcedSubtitles=$),fe===!0&&(me.isSignInterpreted=!0),P!==void 0&&(me.label=P),q!==void 0)r.push({adaptation:me,trickModeAttachedAdaptationIds:q});else{let he=-1;for(let wt of w){let Ue=i[wt];if(Ue!==void 0&&Ue.newID!==ge&&oe(Ue.adaptationSetSwitchingIDs,D)){he=ee(t[k],It=>It[0].id===wt);let Pe=t[k][he];if(Pe!==void 0&&Pe[0].audioDescription===me.audioDescription&&Pe[0].closedCaption===me.closedCaption&&Pe[0].language===me.language){c.info('DASH Parser: merging \"switchable\" AdaptationSets',D,wt),Pe[0].representations.push(...me.representations),Pe[1]={priority:Math.max(x,Pe[1].priority),isMainAdaptation:E||Pe[1].isMainAdaptation,indexInMpd:Math.min(g,Pe[1].indexInMpd)};break}}}he<0&&t[k].push([me,{priority:x,isMainAdaptation:E,indexInMpd:g}])}!C(D)&&C(i[D])&&(i[D]={newID:ge,adaptationSetSwitchingIDs:w})}let o=St.reduce((g,h)=>{let I=t[h];return I.length>0&&(I.sort(Va),g[h]=I.map(([y])=>y)),g},{});return t.video.sort(Va),Fa(o,r),o}function Va(n,e){let t=e[1].priority-n[1].priority;return t!==0?t:n[1].isMainAdaptation!==e[1].isMainAdaptation?n[1].isMainAdaptation?-1:1:n[1].indexInMpd-e[1].indexInMpd}var ou=Re();function ti(n,e){var o,s,u,d;let t=[],r=Xr(n,e);if(r.length!==n.length)throw new Error(\"MPD parsing error: the time information are incoherent.\");let{isDynamic:i,manifestBoundsCalculator:a}=e;!i&&!C(e.duration)&&a.setLastPosition(e.duration);for(let m=n.length-1;m>=0;m--){let f=m===n.length-1,l=n[m],p=e.xlinkInfos.get(l),g=He(e.baseURLs,l.children.baseURLs),{periodStart:h,periodDuration:I,periodEnd:y}=r[m],T;for(C(l.attributes.id)?(c.warn(\"DASH: No usable id found in the Period. Generating one.\"),T=\"gen-dash-period-\"+ou()):T=l.attributes.id;t.some(O=>O.id===T);)T+=\"-dup\";let P=p!==void 0?p.receivedTime:e.receivedTime,E=(s=(o=e.unsafelyBaseOnPreviousManifest)==null?void 0:o.getPeriod(T))!=null?s:null,v=l.attributes.availabilityTimeComplete,R=l.attributes.availabilityTimeOffset,{manifestProfiles:M}=e,{segmentTemplate:_}=l.children,A={availabilityTimeComplete:v,availabilityTimeOffset:R,baseURLs:g,manifestBoundsCalculator:a,end:y,isDynamic:i,isLastPeriod:f,manifestProfiles:M,receivedTime:P,segmentTemplate:_,start:h,unsafelyBaseOnPreviousPeriod:E},k=ei(l.children.adaptations,A),x=((u=e.xmlNamespaces)!=null?u:[]).concat((d=l.attributes.namespaces)!=null?d:[]),D=uu(l.children.eventStreams,h,x),w={id:T,start:h,end:y,duration:I,adaptations:k,streamEvents:D};if(t.unshift(w),!a.lastPositionIsKnown()){let O=su(k);if(!i)typeof O==\"number\"&&a.setLastPosition(O);else if(typeof O==\"number\"){let U=N()/1e3;a.setLastPosition(O,U)}else{let U=qa(e,h);if(U!==void 0){let[z,q]=U;a.setLastPosition(z,q)}}}}if(e.isDynamic&&!a.lastPositionIsKnown()){let m=qa(e,0);if(m!==void 0){let[f,l]=m;a.setLastPosition(f,l)}}return Qr(t)}function qa(n,e){if(C(n.clockOffset)){let t=Date.now()/1e3;if(t>=e){c.warn(\"DASH Parser: no clock synchronization mechanism found. Using the system clock instead.\");let r=t-n.availabilityStartTime,i=N()/1e3;return[r,i]}}else{let t=n.clockOffset/1e3-n.availabilityStartTime,r=N()/1e3,i=r+t;if(i>=e)return[i,r]}}function su(n){let e=null,t=!0,r=Wn(n).filter(a=>!C(a)),i=jr(r,a=>a);for(let a of i){let o=a.representations;for(let s of o){let u=s.index.getLastAvailablePosition();u!==null&&(t=!1,typeof u==\"number\"&&(e=C(e)?u:Math.max(e,u)))}}if(C(e)){if(t)return null}else return e}function uu(n,e,t){var i,a;let r=[];for(let o of n){let{schemeIdUri:s=\"\",timescale:u=1}=o.attributes,d=t.concat((i=o.attributes.namespaces)!=null?i:[]);for(let m of o.children.events)if(m.eventStreamData!==void 0){let f=((a=m.presentationTime)!=null?a:0)/u+e,l=m.duration===void 0?void 0:f+m.duration/u,p,g;if(!$e&&m.eventStreamData instanceof Element)p=m.eventStreamData;else try{g={namespaces:d,data:we(new Uint8Array(m.eventStreamData))}}catch(h){c.error(\"DASH: Error while parsing event-stream:\",h instanceof Error?h.message:\"Unknown error\")}r.push({start:f,end:l,id:m.id,data:{type:\"dash-event-stream\",value:{schemeIdUri:s,timescale:u,element:p,xmlData:g}}})}}return r}function Tt(n,e,t,r,i=new WeakMap){let{children:a,attributes:o}=n;if(C(e.externalClockOffset)){let u=o.type===\"dynamic\",d=j(a.utcTimings,l=>l.schemeIdUri===\"urn:mpeg:dash:utc:direct:2014\"&&!C(l.value)),m=!C(d)&&!C(d.value)?Yn(d.value):void 0,f=!C(m)&&!isNaN(m)?m:void 0;if(!C(f)&&r!==!0)e.externalClockOffset=f;else if(u&&r!==!0){let l=Wr(n);if(!C(l)&&l.length>0)return{type:\"needs-clock\",value:{url:l,continue:function(g){return g.success?(e.externalClockOffset=Yn(g.data),Tt(n,e,t,!0)):(t.push(g.error),c.warn(\"DASH Parser: Error on fetching the clock ressource\",g.error),Tt(n,e,t,!0))}}}}}let s=[];for(let u=0;u<a.periods.length;u++){let{xlinkHref:d,xlinkActuate:m}=a.periods[u].attributes;!C(d)&&m===\"onLoad\"&&s.push({index:u,ressource:d})}return s.length===0?du(n,e,t,i):{type:\"needs-xlinks\",value:{xlinksUrls:s.map(({ressource:u})=>u),continue:function(d){if(d.length!==s.length)throw new Error(\"DASH parser: wrong number of loaded ressources.\");for(let m=d.length-1;m>=0;m--){let f=s[m].index,{parsed:l,warnings:p,receivedTime:g,sendingTime:h,url:I}=d[m];p.length>0&&t.push(...p);for(let y of l)i.set(y,{receivedTime:g,sendingTime:h,url:I});a.periods.splice(f,1,...l)}return Tt(n,e,t,r,i)}}}}function du(n,e,t,r){var D,w,O,U;let{children:i,attributes:a}=n,o=a.type===\"dynamic\",s=e.url!==void 0?[{url:e.url.substring(0,zr(e.url))}]:[],u=He(s,i.baseURLs),d=Hr(a,e.referenceDateTime),m=a.timeShiftBufferDepth,{externalClockOffset:f,unsafelyBaseOnPreviousManifest:l}=e,{externalClockOffset:p}=e,g=new jt({availabilityStartTime:d,isDynamic:o,timeShiftBufferDepth:m,serverTimestampOffset:p}),h={availabilityStartTime:d,baseURLs:u,clockOffset:f,duration:a.duration,isDynamic:o,manifestBoundsCalculator:g,manifestProfiles:n.attributes.profiles,receivedTime:e.manifestReceivedTime,timeShiftBufferDepth:m,unsafelyBaseOnPreviousManifest:l,xlinkInfos:r,xmlNamespaces:n.attributes.namespaces},I=ti(i.periods,h),y=a.duration,T,P,E=null,v;a.minimumUpdatePeriod!==void 0&&a.minimumUpdatePeriod>=0&&(T=a.minimumUpdatePeriod===0?L.getCurrent().DASH_FALLBACK_LIFETIME_WHEN_MINIMUM_UPDATE_PERIOD_EQUAL_0:a.minimumUpdatePeriod);let{minimumSafePosition:R,maximumSafePosition:M,maximumUnsafePosition:_}=Gr(I),A=N();if(o){let z;M!==void 0?z=M:p===void 0?(c.warn(\"DASH Parser: use system clock to define maximum position\"),z=Date.now()/1e3-d):z=(N()+p)/1e3-d;let q=g.getEstimatedLiveEdge();q===void 0&&(_!==void 0?q=_:q=z),v={isLinear:!0,maximumSafePosition:z,livePosition:q,time:A},P=R,E=m!=null?m:null,E!==null&&P!==void 0&&q-P>E&&(E=q-P)}else{P=R,P===void 0&&(P=(w=(D=I[0])==null?void 0:D.start)!=null?w:0);let z=y!=null?y:1/0;if(I[I.length-1]!==void 0){let q=I[I.length-1],Z=(O=q.end)!=null?O:q.duration!==void 0?q.start+q.duration:void 0;Z!==void 0&&Z<z&&(z=Z)}M!==void 0&&M<z&&(z=M),v={isLinear:!1,maximumSafePosition:z,livePosition:void 0,time:A}}let k=!o||n.attributes.minimumUpdatePeriod===void 0&&(((U=I[I.length-1])==null?void 0:U.end)!==void 0||n.attributes.duration!==void 0);return{type:\"done\",value:{parsed:{availabilityStartTime:d,clockOffset:e.externalClockOffset,isDynamic:o,isLive:o,isLastPeriodKnown:k,periods:I,publishTime:a.publishTime,suggestedPresentationDelay:a.suggestedPresentationDelay,transportType:\"dash\",timeBounds:{minimumSafePosition:P,timeshiftDepth:E,maximumTimeData:v},lifetime:T,uris:C(e.url)?i.locations:[e.url,...i.locations]},warnings:t}}}var Ga=Tt;function F(n,e,t,r){let i=new Uint8Array(e,t,r);return n.decode(i)}function ni(n){return n===1/0?!0:n===-1/0?!1:n}function rt(n,e){let t=new TextDecoder;return function(i,a,o){i===64&&(n.value=F(t,e.buffer,a,o))}}function Ha(n,e){let t=new TextDecoder;return function(i,a,o){switch(i){case 0:n.id=F(t,e.buffer,a,o);break;case 60:n.language=F(t,e.buffer,a,o);break;case 61:n.contentType=F(t,e.buffer,a,o);break;case 62:n.par=F(t,e.buffer,a,o);break}}}var ja=[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,62,255,255,255,63,52,53,54,55,56,57,58,59,60,61,255,255,255,0,255,255,255,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,255,255,255,255,255,255,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51];function Xn(n){if(n>=ja.length)throw new Error(\"Unable to parse base64 string.\");let e=ja[n];if(e===255)throw new Error(\"Unable to parse base64 string.\");return e}function Ya(n){let e=n.length%4,t=n;e!==0&&(c.warn(\"base64ToBytes: base64 given miss padding\"),t+=e===3?\"=\":e===2?\"==\":\"===\");let r=t.indexOf(\"=\");if(r!==-1&&r<t.length-2)throw new Error(\"Unable to parse base64 string.\");let i=t.endsWith(\"==\")?2:t.endsWith(\"=\")?1:0,a=t.length,o=new Uint8Array(a/4*3),s;for(let u=0,d=0;u<a;u+=4,d+=3)s=Xn(t.charCodeAt(u))<<18|Xn(t.charCodeAt(u+1))<<12|Xn(t.charCodeAt(u+2))<<6|Xn(t.charCodeAt(u+3)),o[d]=s>>16,o[d+1]=s>>8&255,o[d+2]=s&255;return o.subarray(0,o.length-i)}function $n(n,e){let t=n.attributes,r=n.children,i=new TextDecoder;return function(o,s,u){switch(o){case 16:t.schemeIdUri=F(i,e.buffer,s,u);break;case 13:t.value=F(i,e.buffer,s,u);break;case 14:let d=F(i,e.buffer,s,u);t.keyId=Yr(d.replace(/-/g,\"\"));break;case 15:try{let m=F(i,e.buffer,s,u);r.cencPssh.push(Ya(m))}catch(m){}break}}}function De(n,e){let t=new TextDecoder;return function(i,a,o){switch(i){case 16:n.schemeIdUri=F(t,e.buffer,a,o);break;case 17:n.value=F(t,e.buffer,a,o);break}}}function Rt(n,e){let t=new TextDecoder;return function(i,a,o){switch(i){case 29:{let s=new DataView(e.buffer);n.initialization===void 0&&(n.initialization={}),n.initialization.range=[s.getFloat64(a,!0),s.getFloat64(a+8,!0)];break}case 67:n.initialization===void 0&&(n.initialization={}),n.initialization.media=F(t,e.buffer,a,o);break;case 43:{let s=new DataView(e.buffer);n.availabilityTimeOffset=s.getFloat64(a,!0);break}case 22:{n.availabilityTimeComplete=new DataView(e.buffer).getUint8(0)===0;break}case 24:{let s=new DataView(e.buffer);n.presentationTimeOffset=s.getFloat64(a,!0);break}case 27:{let s=new DataView(e.buffer);n.timescale=s.getFloat64(a,!0);break}case 31:{let s=new DataView(e.buffer);n.indexRange=[s.getFloat64(a,!0),s.getFloat64(a+8,!0)];break}case 23:{n.indexRangeExact=new DataView(e.buffer).getUint8(0)===0;break}case 1:{let s=new DataView(e.buffer);n.duration=s.getFloat64(a,!0);break}case 20:{let s=new DataView(e.buffer);n.startNumber=s.getFloat64(a,!0);break}case 76:{let s=new DataView(e.buffer);n.endNumber=s.getFloat64(a,!0);break}}}}function Ka(n,e){let t=new TextDecoder;return function(i,a,o){switch(i){case 28:n.index=F(t,e.buffer,a,o);break;case 31:{let s=new DataView(e.buffer);n.indexRange=[s.getFloat64(a,!0),s.getFloat64(a+8,!0)];break}case 30:n.media=F(t,e.buffer,a,o);break;case 18:{let s=new DataView(e.buffer);n.mediaRange=[s.getFloat64(a,!0),s.getFloat64(a+8,!0)];break}}}}function Zn(n,e,t){return function(i){switch(i){case 20:{let a={};n.list===void 0&&(n.list=[]),n.list.push(a);let o=Ka(a,e);t.pushParsers(i,B,o);break}default:t.pushParsers(i,B,B);break}}}function Pt(n,e){let t=new TextDecoder;return function(i,a,o){switch(i){case 19:{let s=new DataView(e.buffer);n.timeline=[];let u=a;for(let d=0;d<o/24;d++)n.timeline.push({start:s.getFloat64(u,!0),duration:s.getFloat64(u+8,!0),repeatCount:s.getFloat64(u+16,!0)}),u+=24;break}case 67:n.initialization={media:F(t,e.buffer,a,o)};break;case 28:n.index=F(t,e.buffer,a,o);break;case 43:{let s=new DataView(e.buffer);n.availabilityTimeOffset=s.getFloat64(a,!0);break}case 22:{n.availabilityTimeComplete=new DataView(e.buffer).getUint8(0)===0;break}case 24:{let s=new DataView(e.buffer);n.presentationTimeOffset=s.getFloat64(a,!0);break}case 27:{let s=new DataView(e.buffer);n.timescale=s.getFloat64(a,!0);break}case 31:{let s=new DataView(e.buffer);n.indexRange=[s.getFloat64(a,!0),s.getFloat64(a+8,!0)];break}case 23:{n.indexRangeExact=new DataView(e.buffer).getUint8(0)===0;break}case 30:n.media=F(t,e.buffer,a,o);break;case 32:{n.bitstreamSwitching=new DataView(e.buffer).getUint8(0)===0;break}case 1:{let s=new DataView(e.buffer);n.duration=s.getFloat64(a,!0);break}case 20:{let s=new DataView(e.buffer);n.startNumber=s.getFloat64(a,!0);break}case 76:{let s=new DataView(e.buffer);n.endNumber=s.getFloat64(a,!0);break}}}}function Qa(n,e,t){return function(i){switch(i){case 15:{let a={value:\"\",attributes:{}};n.baseURLs.push(a),t.pushParsers(i,B,rt(a,e));break}case 10:{let a={children:{cencPssh:[]},attributes:{}};n.contentProtections===void 0&&(n.contentProtections=[]),n.contentProtections.push(a);let o=$n(a,e);t.pushParsers(i,B,o);break}case 19:{let a={};n.inbandEventStreams===void 0&&(n.inbandEventStreams=[]),n.inbandEventStreams.push(a),t.pushParsers(i,B,De(a,e));break}case 13:{let a={};n.supplementalProperties===void 0&&(n.supplementalProperties=[]),n.supplementalProperties.push(a);let o=De(a,e);t.pushParsers(i,B,o);break}case 17:{let a={};n.segmentBase=a;let o=Rt(a,e);t.pushParsers(i,B,o);break}case 18:{let a={list:[]};n.segmentList=a;let o=Zn(a,e,t),s=Rt(a,e);t.pushParsers(i,o,s);break}case 16:{let a={};n.segmentTemplate=a,t.pushParsers(i,B,Pt(a,e));break}default:t.pushParsers(i,B,B);break}}}function Xa(n,e){let t=new TextDecoder;return function(i,a,o){let s=new DataView(e.buffer);switch(i){case 0:n.id=F(t,e.buffer,a,o);break;case 3:n.audioSamplingRate=F(t,e.buffer,a,o);break;case 63:n.bitrate=s.getFloat64(a,!0);break;case 4:n.codecs=F(t,e.buffer,a,o);break;case 77:n.supplementalCodecs=F(t,e.buffer,a,o);break;case 5:n.codingDependency=new DataView(e.buffer).getUint8(0)===0;break;case 6:n.frameRate=s.getFloat64(a,!0);break;case 7:n.height=s.getFloat64(a,!0);break;case 8:n.width=s.getFloat64(a,!0);break;case 9:n.maxPlayoutRate=s.getFloat64(a,!0);break;case 10:n.maximumSAPPeriod=s.getFloat64(a,!0);break;case 11:n.mimeType=F(t,e.buffer,a,o);break;case 2:n.profiles=F(t,e.buffer,a,o);break;case 65:n.qualityRanking=s.getFloat64(a,!0);break;case 12:n.segmentProfiles=F(t,e.buffer,a,o);break;case 43:n.availabilityTimeOffset=s.getFloat64(a,!0);break;case 22:n.availabilityTimeComplete=s.getUint8(0)===0;break}}}function $a(n,e,t){return function(i){switch(i){case 8:{let a={};n.accessibilities===void 0&&(n.accessibilities=[]),n.accessibilities.push(a);let o=De(a,e);t.pushParsers(i,B,o);break}case 15:{let a={value:\"\",attributes:{}};n.baseURLs.push(a);let o=rt(a,e);t.pushParsers(i,B,o);break}case 9:{let a={};n.contentComponent=a,t.pushParsers(i,B,Ha(a,e));break}case 10:{let a={children:{cencPssh:[]},attributes:{}};n.contentProtections===void 0&&(n.contentProtections=[]),n.contentProtections.push(a);let o=$n(a,e);t.pushParsers(i,B,o);break}case 11:{let a={};n.essentialProperties===void 0&&(n.essentialProperties=[]),n.essentialProperties.push(a);let o=B,s=De(a,e);t.pushParsers(i,o,s);break}case 19:{let a={};n.inbandEventStreams===void 0&&(n.inbandEventStreams=[]),n.inbandEventStreams.push(a);let o=B,s=De(a,e);t.pushParsers(i,o,s);break}case 7:{let a={children:{baseURLs:[]},attributes:{}};n.representations.push(a);let o=Qa(a.children,e,t),s=Xa(a.attributes,e);t.pushParsers(i,o,s);break}case 12:{let a={};n.roles===void 0&&(n.roles=[]),n.roles.push(a);let o=De(a,e);t.pushParsers(i,B,o);break}case 13:{let a={};n.supplementalProperties===void 0&&(n.supplementalProperties=[]),n.supplementalProperties.push(a);let o=De(a,e);t.pushParsers(i,B,o);break}case 17:{let a={};n.segmentBase=a;let o=Rt(a,e);t.pushParsers(i,B,o);break}case 18:{let a={list:[]};n.segmentList=a;let o=Zn(a,e,t),s=Rt(a,e);t.pushParsers(i,o,s);break}case 16:{let a={};n.segmentTemplate=a,t.pushParsers(i,B,Pt(a,e));break}default:t.pushParsers(i,B,B);break}}}function Za(n,e){let t=new TextDecoder;return function(i,a,o){let s=new DataView(e.buffer);switch(i){case 0:n.id=F(t,e.buffer,a,o);break;case 48:n.group=s.getFloat64(a,!0);break;case 60:n.language=F(t,e.buffer,a,o);break;case 61:n.contentType=F(t,e.buffer,a,o);break;case 62:n.par=F(t,e.buffer,a,o);break;case 53:n.minBitrate=s.getFloat64(a,!0);break;case 49:n.maxBitrate=s.getFloat64(a,!0);break;case 56:n.minWidth=s.getFloat64(a,!0);break;case 52:n.maxWidth=s.getFloat64(a,!0);break;case 55:n.minHeight=s.getFloat64(a,!0);break;case 51:n.maxHeight=s.getFloat64(a,!0);break;case 54:n.minFrameRate=s.getFloat64(a,!0);break;case 50:n.maxFrameRate=s.getFloat64(a,!0);break;case 57:n.selectionPriority=s.getFloat64(a,!0);break;case 58:n.segmentAlignment=ni(s.getFloat64(a,!0));break;case 59:n.subsegmentAlignment=ni(s.getFloat64(a,!0));break;case 32:n.bitstreamSwitching=s.getFloat64(a,!0)!==0;break;case 3:n.audioSamplingRate=F(t,e.buffer,a,o);break;case 4:n.codecs=F(t,e.buffer,a,o);break;case 77:n.supplementalCodecs=F(t,e.buffer,a,o);break;case 2:n.profiles=F(t,e.buffer,a,o);break;case 12:n.segmentProfiles=F(t,e.buffer,a,o);break;case 11:n.mimeType=F(t,e.buffer,a,o);break;case 5:n.codingDependency=s.getFloat64(a,!0)!==0;break;case 6:n.frameRate=s.getFloat64(a,!0);break;case 7:n.height=s.getFloat64(a,!0);break;case 8:n.width=s.getFloat64(a,!0);break;case 9:n.maxPlayoutRate=s.getFloat64(a,!0);break;case 10:n.maximumSAPPeriod=s.getFloat64(a,!0);break;case 43:n.availabilityTimeOffset=s.getFloat64(a,!0);break;case 22:n.availabilityTimeComplete=s.getUint8(0)===0;break;case 71:let u=F(t,e.buffer,a,o);n.label=u;break}}}function Ja(n,e,t,r){return function(a){switch(a){case 6:{let o={};n.events.push(o);let s=lu(o,e,r);t.pushParsers(a,B,s);break}default:t.pushParsers(a,B,B);break}}}function eo(n,e){let t=new TextDecoder;return function(i,a,o){let s=new DataView(e.buffer);switch(i){case 16:n.schemeIdUri=F(t,e.buffer,a,o);break;case 17:n.value=F(t,e.buffer,a,o);break;case 27:n.timescale=s.getFloat64(a,!0);break;case 70:let u={key:\"\",value:\"\"},d=a,m=s.getUint32(d);d+=4,u.key=F(t,e.buffer,d,m),d+=m;let f=s.getUint32(d);d+=4,u.value=F(t,e.buffer,d,f),n.namespaces===void 0?n.namespaces=[u]:n.namespaces.push(u);break}}}function lu(n,e,t){let r=new TextDecoder;return function(a,o,s){let u=new DataView(e.buffer);switch(a){case 25:n.presentationTime=u.getFloat64(o,!0);break;case 1:n.duration=u.getFloat64(o,!0);break;case 0:n.id=F(r,e.buffer,o,s);break;case 69:let d=u.getFloat64(o,!0),m=u.getFloat64(o+8,!0);n.eventStreamData=t.slice(d,m);break}}}function Jn(n,e,t,r){return function(a){switch(a){case 4:{let o={children:{baseURLs:[],representations:[]},attributes:{}};n.adaptations.push(o);let s=$a(o.children,e,t),u=Za(o.attributes,e);t.pushParsers(a,s,u);break}case 15:{let o={value:\"\",attributes:{}};n.baseURLs.push(o);let s=B,u=rt(o,e);t.pushParsers(a,s,u);break}case 5:{let o={children:{events:[]},attributes:{}};n.eventStreams.push(o);let s=Ja(o.children,e,t,r),u=eo(o.attributes,e);t.pushParsers(a,s,u);break}case 16:{let o={};n.segmentTemplate=o,t.pushParsers(a,B,Pt(o,e));break}default:t.pushParsers(a,B,B);break}}}function er(n,e){let t=new TextDecoder;return function(i,a,o){switch(i){case 0:n.id=F(t,e.buffer,a,o);break;case 45:n.start=new DataView(e.buffer).getFloat64(a,!0);break;case 1:n.duration=new DataView(e.buffer).getFloat64(a,!0);break;case 32:n.bitstreamSwitching=new DataView(e.buffer).getUint8(0)===0;break;case 46:n.xlinkHref=F(t,e.buffer,a,o);break;case 47:n.xlinkActuate=F(t,e.buffer,a,o);break;case 43:n.availabilityTimeOffset=new DataView(e.buffer).getFloat64(a,!0);break;case 22:n.availabilityTimeComplete=new DataView(e.buffer).getUint8(0)===0;break;case 70:let s={key:\"\",value:\"\"},u=new DataView(e.buffer),d=a,m=u.getUint32(d);d+=4,s.key=F(t,e.buffer,d,m),d+=m;let f=u.getUint32(d);d+=4,s.value=F(t,e.buffer,d,f),n.namespaces===void 0?n.namespaces=[s]:n.namespaces.push(s);break}}}function to(n,e,t,r){return function(a){switch(a){case 15:{let o={value:\"\",attributes:{}};n.baseURLs.push(o);let s=B,u=rt(o,e);t.pushParsers(a,s,u);break}case 2:{let o={children:{adaptations:[],baseURLs:[],eventStreams:[]},attributes:{}};n.periods.push(o);let s=Jn(o.children,e,t,r),u=er(o.attributes,e);t.pushParsers(a,s,u);break}case 3:{let o={};n.utcTimings.push(o);let s=B,u=De(o,e);t.pushParsers(a,s,u);break}default:t.pushParsers(a,B,B);break}}}function no(n,e,t){let r,i=new TextDecoder;return function(o,s,u){switch(o){case 0:e.id=F(i,t.buffer,s,u);break;case 2:e.profiles=F(i,t.buffer,s,u);break;case 33:e.type=F(i,t.buffer,s,u);break;case 34:let d=F(i,t.buffer,s,u);e.availabilityStartTime=new Date(d).getTime()/1e3;break;case 35:let m=F(i,t.buffer,s,u);e.availabilityEndTime=new Date(m).getTime()/1e3;break;case 36:let f=F(i,t.buffer,s,u);e.publishTime=new Date(f).getTime()/1e3;break;case 68:r=new DataView(t.buffer),e.duration=r.getFloat64(s,!0);break;case 37:r=new DataView(t.buffer),e.minimumUpdatePeriod=r.getFloat64(s,!0);break;case 38:r=new DataView(t.buffer),e.minBufferTime=r.getFloat64(s,!0);break;case 39:r=new DataView(t.buffer),e.timeShiftBufferDepth=r.getFloat64(s,!0);break;case 40:r=new DataView(t.buffer),e.suggestedPresentationDelay=r.getFloat64(s,!0);break;case 41:r=new DataView(t.buffer),e.maxSegmentDuration=r.getFloat64(s,!0);break;case 42:r=new DataView(t.buffer),e.maxSubsegmentDuration=r.getFloat64(s,!0);break;case 66:let l=F(i,t.buffer,s,u);n.locations.push(l);break;case 70:let p={key:\"\",value:\"\"};r=new DataView(t.buffer);let g=s,h=r.getUint32(g);g+=4,p.key=F(i,t.buffer,g,h),g+=h;let I=r.getUint32(g);g+=4,p.value=F(i,t.buffer,g,I),e.namespaces===void 0?e.namespaces=[p]:e.namespaces.push(p);break}}}function ri(n,e,t,r){return function(a){switch(a){case 1:n.mpd={children:{baseURLs:[],locations:[],periods:[],utcTimings:[]},attributes:{}};let o=to(n.mpd.children,e,t,r),s=no(n.mpd.children,n.mpd.attributes,e);t.pushParsers(a,o,s);break;default:t.pushParsers(a,B,B);break}}}function ro(n,e,t,r){return function(a){switch(a){case 2:{let o={children:{adaptations:[],baseURLs:[],eventStreams:[]},attributes:{}};n.periods.push(o);let s=Jn(o.children,e,t,r),u=er(o.attributes,e);t.pushParsers(a,s,u);break}default:t.pushParsers(a,B,B);break}}}var Kt=class{constructor(){this._currentNodeId=null,this.childrenParser=B,this.attributeParser=B,this._stack=[{nodeId:null,children:B,attribute:B}]}pushParsers(e,t,r){this._currentNodeId=e,this.childrenParser=t,this.attributeParser=r,this._stack.push({nodeId:e,attribute:r,children:t})}popIfCurrent(e){if(this._currentNodeId!==e)return;this._stack.pop();let{nodeId:t,children:r,attribute:i}=this._stack[this._stack.length-1];this._currentNodeId=t,this.attributeParser=i,this.childrenParser=r}reset(){this.childrenParser=B,this.attributeParser=B,this._stack=[{nodeId:null,children:B,attribute:B}]}};var fu=15e3,Qt=class{constructor(){this._parsersStack=new Kt,this._instance=null,this._mpdData=null,this._linearMemory=null,this.status=\"uninitialized\",this._initProm=null,this._warnings=[],this._isParsing=!1}waitForInitialization(){var e;return(e=this._initProm)!=null?e:Promise.reject(\"No initialization performed yet.\")}async initialize(e){if(this.status!==\"uninitialized\")return Promise.reject(new Error(\"DashWasmParser already initialized.\"));if(!this.isCompatible())return this.status=\"failure\",Promise.reject(new Error(\"Target not compatible with WebAssembly.\"));this.status=\"initializing\";let t=this._parsersStack,r=new TextDecoder,i=this,a={env:{memoryBase:0,tableBase:0,memory:new WebAssembly.Memory({initial:10}),table:new WebAssembly.Table({initial:1,element:\"anyfunc\"}),onTagOpen:d,onCustomEvent:l,onAttribute:f,readNext:p,onTagClose:m}},o=null,s;typeof e.wasmUrl==\"string\"?s=fetch(e.wasmUrl):(o=URL.createObjectURL(new Blob([e.wasmUrl],{type:\"application/wasm\"})),s=fetch(o));let u=typeof WebAssembly.instantiateStreaming==\"function\"?WebAssembly.instantiateStreaming(s,a):Promise.reject(\"`WebAssembly.instantiateStreaming` API not available\");return this._initProm=u.catch(async g=>{o!==null&&(URL.revokeObjectURL(o),o=null),c.warn(\"Unable to call `instantiateStreaming` on WASM\",g instanceof Error?g:\"\");let h=await s;if(h.status<200||h.status>=300)throw new Error(\"WebAssembly request failed. status: \"+String(h.status));let I=await h.arrayBuffer();return WebAssembly.instantiate(I,a)}).then(g=>{o!==null&&(URL.revokeObjectURL(o),o=null),this._instance=g,this._linearMemory=this._instance.instance.exports.memory,this.status=\"initialized\"}).catch(g=>{let h=g instanceof Error?g.toString():\"Unknown error\";throw c.warn(\"DW: Could not create DASH-WASM parser:\",h),this.status=\"failure\",g}),this._initProm;function d(g){return t.childrenParser(g)}function m(g){return t.popIfCurrent(g)}function f(g,h,I){return t.attributeParser(g,h,I)}function l(g,h,I){let y=i._linearMemory,T=new Uint8Array(y.buffer,h,I);if(g===1){let P=r.decode(T);c.warn(\"WASM Error Event:\",P),i._warnings.push(new Error(P))}else if(g===0){let P=r.decode(T);c.warn(\"WASM Log Event:\",P)}}function p(g,h){if(i._mpdData===null)throw new Error(\"DashWasmParser Error: No MPD to read.\");let I=i._linearMemory,{mpd:y,cursor:T}=i._mpdData,P=Math.min(h,fu,y.byteLength-T);return new Uint8Array(I.buffer,g,P).set(new Uint8Array(y,T,P)),i._mpdData.cursor+=P,P}}runWasmParser(e,t){let[r,i]=this._parseMpd(e);if(r===null)throw new Error(\"DASH Parser: Unknown error while parsing the MPD\");let a=Ga(r,t,i);return this._processParserReturnValue(a)}isCompatible(){return wa&&typeof ye.TextDecoder==\"function\"}_parseMpd(e){var s;if(this._instance===null)throw new Error(\"DashWasmParser not initialized\");if(this._isParsing)throw new Error(\"Parsing operation already pending.\");this._isParsing=!0,this._mpdData={mpd:e,cursor:0};let t={},r=this._linearMemory,i=ri(t,r,this._parsersStack,e);this._parsersStack.pushParsers(null,i,B),this._warnings=[];try{this._instance.instance.exports.parse()}catch(u){throw this._parsersStack.reset(),this._warnings=[],this._isParsing=!1,u}let a=(s=t.mpd)!=null?s:null,o=this._warnings;return this._parsersStack.reset(),this._warnings=[],this._isParsing=!1,[a,o]}_parseXlink(e){if(this._instance===null)throw new Error(\"DashWasmParser not initialized\");if(this._isParsing)throw new Error(\"Parsing operation already pending.\");this._isParsing=!0,this._mpdData={mpd:e,cursor:0};let t={periods:[]},r=this._linearMemory,i=ro(t,r,this._parsersStack,e);this._parsersStack.pushParsers(null,i,B),this._warnings=[];try{this._instance.instance.exports.parse()}catch(s){throw this._parsersStack.reset(),this._warnings=[],this._isParsing=!1,s}let{periods:a}=t,o=this._warnings;return this._parsersStack.reset(),this._warnings=[],this._isParsing=!1,[a,o]}_processParserReturnValue(e){if(e.type===\"done\")return e;if(e.type===\"needs-clock\"){let t=r=>{if(r.length!==1)throw new Error(\"DASH parser: wrong number of loaded ressources.\");let i=e.value.continue(r[0].responseData);return this._processParserReturnValue(i)};return{type:\"needs-resources\",value:{urls:[e.value.url],format:\"string\",continue:t}}}else if(e.type===\"needs-xlinks\"){let t=r=>{let i=[];for(let o=0;o<r.length;o++){let{responseData:s,receivedTime:u,sendingTime:d,url:m}=r[o];if(!s.success)throw s.error;let[f,l]=this._parseXlink(s.data);i.push({url:m,receivedTime:u,sendingTime:d,parsed:f,warnings:l})}let a=e.value.continue(i);return this._processParserReturnValue(a)};return{type:\"needs-resources\",value:{urls:e.value.xlinksUrls,format:\"arraybuffer\",continue:t}}}else qe(e)}};var io=Qt;var ct=class{constructor(e,t){this._last=e,this._wanted=t}serialize(){return[this._last,this._wanted]}getPolled(){return this._last}getWanted(){var e;return(e=this._wanted)!=null?e:this._last}forceWantedPosition(e){this._wanted=e}isAwaitingFuturePosition(){return this._wanted!==null}};function tr(n,e,t){let r=e(n.getReference(),t);return{getCurrentTime(){return n.getCurrentTime()},getReadyState(){return n.getReadyState()},getPlaybackRate(){return n.getPlaybackRate()},getIsPaused(){return n.getIsPaused()},getReference(){return r},listen(i,a){var o;t.isCancelled()||((o=a==null?void 0:a.clearSignal)==null?void 0:o.isCancelled())===!0||r.onUpdate(i,{clearSignal:a==null?void 0:a.clearSignal,emitCurrentValue:a==null?void 0:a.includeLastObservation})},deriveReadOnlyObserver(i){return tr(this,i,t)}}}var Xt=class{constructor(e,t,r,i){this._src=e,this._contentId=t,this._messageSender=r,this._cancelSignal=i}getCurrentTime(){}getReadyState(){}getIsPaused(){}getReference(){return this._src}setPlaybackRate(e){this._messageSender({type:\"update-playback-rate\",contentId:this._contentId,value:e})}getPlaybackRate(){}listen(e,t){var r;this._cancelSignal.isCancelled()||((r=t==null?void 0:t.clearSignal)==null?void 0:r.isCancelled())===!0||this._src.onUpdate(e,{clearSignal:t==null?void 0:t.clearSignal,emitCurrentValue:t==null?void 0:t.includeLastObservation})}deriveReadOnlyObserver(e){return tr(this,e,this._cancelSignal)}};function ii(n,e){return(t,r,i)=>new Promise((a,o)=>{let s=Date.now()-N(),u=!1,l={reject:h=>{var P,E;if(u||i.isCancelled())return;u=!0,i.deregister(g);let I=h,y=(P=I==null?void 0:I.message)!=null?P:\"Unknown error when fetching the Manifest through a custom manifestLoader.\",T=new Le(y,(E=I==null?void 0:I.canRetry)!=null?E:!1,I==null?void 0:I.xhr);o(T)},resolve:h=>{if(u||i.isCancelled())return;u=!0,i.deregister(g);let I=h.receivingTime!==void 0?h.receivingTime-s:void 0,y=h.sendingTime!==void 0?h.sendingTime-s:void 0;a({responseData:h.data,size:h.size,requestDuration:h.duration,url:h.url,receivedTime:I,sendingTime:y})},fallback:()=>{u||i.isCancelled()||(u=!0,i.deregister(g),e(t,r,i).then(a,o))}},p=n({url:t,timeout:r.timeout},l);i.register(g);function g(h){u||(u=!0,typeof p==\"function\"&&p(),o(h))}})}function mu(n){return function(t,r,i){if(t===void 0)throw new Error(\"Cannot perform HTTP(s) request. URL not known\");switch(n){case\"arraybuffer\":return de({url:t,responseType:\"arraybuffer\",timeout:r.timeout,connectionTimeout:r.connectionTimeout,cancelSignal:i});case\"text\":return de({url:t,responseType:\"text\",timeout:r.timeout,connectionTimeout:r.connectionTimeout,cancelSignal:i});case\"document\":return de({url:t,responseType:\"document\",timeout:r.timeout,connectionTimeout:r.connectionTimeout,cancelSignal:i});default:qe(n)}}}function ai({customManifestLoader:n},e){let t=mu(e);return typeof n!=\"function\"?t:ii(n,t)}function oi(n){let{referenceDateTime:e}=n,t=n.serverSyncInfos!==void 0?n.serverSyncInfos.serverTimestamp-n.serverSyncInfos.clientTime:void 0;return function(i,a,o,s,u){var T;let{responseData:d}=i,m=a.externalClockOffset,f=(T=i.url)!=null?T:a.originalUrl,l=t!=null?t:m,g={unsafelyBaseOnPreviousManifest:a.unsafeMode?a.previousManifest:null,url:f,referenceDateTime:e,externalClockOffset:l},h=ae.dashParsers;if(h.wasm===null||h.wasm.status===\"uninitialized\"||h.wasm.status===\"failure\")return c.debug(\"DASH: WASM MPD Parser not initialized. Running JS one.\"),I();{let P=hu(d);if(!Iu(P))return c.info(\"DASH: MPD doesn't seem to be UTF-8-encoded. Running JS parser instead of the WASM one.\"),I();if(h.wasm.status===\"initialized\"){c.debug(\"DASH: Running WASM MPD Parser.\");let E=h.wasm.runWasmParser(P,g);return y(E)}else return c.debug(\"DASH: Awaiting WASM initialization before parsing the MPD.\"),h.wasm.waitForInitialization().catch(()=>{}).then(()=>{if(h.wasm===null||h.wasm.status!==\"initialized\")return c.warn(\"DASH: WASM MPD parser initialization failed. Running JS parser instead\"),I();c.debug(\"DASH: Running WASM MPD Parser.\");let v=h.wasm.runWasmParser(P,g);return y(v)})}function I(){if(h.js===null)throw new Error(\"No MPD parser is imported\");let P=gu(d),E=h.js(P,g);return y(E)}function y(P){if(P.type===\"done\"){if(P.value.warnings.length>0&&o(P.value.warnings),s.isCancelled())return Promise.reject(s.cancellationError);let R=[];return{manifest:new yt(P.value.parsed,n,R),url:f,warnings:R}}let{value:E}=P,v=E.urls.map(R=>u(()=>{let M=L.getCurrent().DEFAULT_REQUEST_TIMEOUT,_=L.getCurrent().DEFAULT_CONNECTION_TIMEOUT;return E.format===\"string\"?de({url:R,responseType:\"text\",timeout:M,connectionTimeout:_,cancelSignal:s}):de({url:R,responseType:\"arraybuffer\",timeout:M,connectionTimeout:_,cancelSignal:s})}).then(M=>{if(E.format===\"string\"){if(typeof M.responseData!=\"string\")throw new Error(\"External DASH resources should have been a string\");return G(M,{responseData:{success:!0,data:M.responseData}})}else{if(!(M.responseData instanceof ArrayBuffer))throw new Error(\"External DASH resources should have been ArrayBuffers\");return G(M,{responseData:{success:!0,data:M.responseData}})}},M=>{let _=ce(M,{defaultCode:\"PIPELINE_PARSE_ERROR\",defaultReason:\"An unknown error occured when parsing ressources.\"});return G({},{size:void 0,requestDuration:void 0,responseData:{success:!1,error:_}})}));return Promise.all(v).then(R=>E.format===\"string\"?(cu(R),y(E.continue(R))):(pu(R),y(E.continue(R))))}}}function cu(n){b.CURRENT_ENV!==b.PRODUCTION&&n.forEach(e=>{let{responseData:t}=e;if(!(t.success&&typeof t.data==\"string\")&&t.success)throw new Error(\"Invalid data given to the LoadedRessource\")})}function pu(n){b.CURRENT_ENV!==b.PRODUCTION&&n.forEach(e=>{let{responseData:t}=e;if(!(t.success&&t.data instanceof ArrayBuffer)&&t.success)throw new Error(\"Invalid data given to the LoadedRessource\")})}function gu(n){if(n instanceof ArrayBuffer)return new DOMParser().parseFromString(we(new Uint8Array(n)),\"text/xml\");if(typeof n==\"string\")return new DOMParser().parseFromString(n,\"text/xml\");if(n instanceof Document)return n;throw new Error(\"DASH Manifest Parser: Unrecognized Manifest format\")}function hu(n){if(n instanceof ArrayBuffer)return n;if(typeof n==\"string\")return Yt(n).buffer;if(n instanceof Document)return Yt(n.documentElement.innerHTML).buffer;throw new Error(\"DASH Manifest Parser: Unrecognized Manifest format\")}function Iu(n){let e=new DataView(n);return e.getUint16(0)===61371&&e.getUint8(2)===191?!0:!(e.getUint16(0)===65279||e.getUint16(0)===65534)}function ve([n,e]){return e===1/0?`bytes=${n}-`:`bytes=${n}-${e}`}function Be(n,e){if(n===\"audio\"||n===\"video\")return e===\"video/mp4\"||e===\"audio/mp4\"?\"mp4\":e===\"video/webm\"||e===\"audio/webm\"?\"webm\":void 0;if(n===\"text\")return e===\"application/mp4\"?\"mp4\":void 0}var W=class{constructor(){let[e,t]=bu();this._isUsed=!1,this._trigger=e,this.signal=new si(t)}isUsed(){return this._isUsed}linkToSignal(e){let t=e.register(()=>{this.cancel()});return this.signal.register(t),t}cancel(e){if(this._isUsed)return;this._isUsed=!0;let t=e!=null?e:new ne;this._trigger(t)}static isCancellationError(e){return e instanceof ne}},si=class{constructor(e){this._isCancelled=!1,this.cancellationError=null,this._listeners=[],e(t=>{for(this.cancellationError=t,this._isCancelled=!0;this._listeners.length>0;)try{let r=this._listeners.pop();r==null||r(t)}catch(r){c.error(\"Error while calling clean up listener\",r instanceof Error?r.toString():\"Unknown error\")}})}isCancelled(){return this._isCancelled}register(e){return this._isCancelled?(pe(this.cancellationError!==null),e(this.cancellationError),B):(this._listeners.push(e),()=>this.deregister(e))}deregister(e){for(let t=this._listeners.length-1;t>=0;t--)this._listeners[t]===e&&this._listeners.splice(t,1)}},ne=class n extends Error{constructor(){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"CancellationError\",this.message=\"This task was cancelled.\"}};function bu(){let n=B;return[function(t){n(t)},function(t){n=t}]}function je(...n){let e=n.length,t=-1,r=0,i;for(;++t<e;)i=n[t],r+=typeof i==\"number\"?i:i.length;let a=new Uint8Array(r),o=0;for(t=-1;++t<e;)i=n[t],typeof i==\"number\"?o+=i:i.length>0&&(a.set(i,o),o+=i.length);return a}function ao(n,e){return(n[e+0]<<8)+(n[e+1]<<0)}function ui(n,e){return n[e+0]*65536+n[e+1]*256+n[e+2]}function J(n,e){return n[e+0]*16777216+n[e+1]*65536+n[e+2]*256+n[e+3]}function it(n,e){return(n[e+0]*16777216+n[e+1]*65536+n[e+2]*256+n[e+3])*4294967296+n[e+4]*16777216+n[e+5]*65536+n[e+6]*256+n[e+7]}function Ye(n,e){let t=n.length,r=0;for(;r+8<=t;){let i=J(n,r);if(i===0)i=t-r;else if(i===1){if(r+16>t)return-1;i=it(n,r+8)}if(isNaN(i)||i<=0)return-1;if(J(n,r+4)===e)return r+i<=t?r:-1;r+=i}return-1}function di(n,e){if(e){if(Ye(n,1718909296)<0)throw new _e(\"INTEGRITY_ERROR\",\"Incomplete `ftyp` box\");if(Ye(n,1836019574)<0)throw new _e(\"INTEGRITY_ERROR\",\"Incomplete `moov` box\")}else{if(Ye(n,1836019558)<0)throw new _e(\"INTEGRITY_ERROR\",\"Incomplete `moof` box\");if(Ye(n,1835295092)<0)throw new _e(\"INTEGRITY_ERROR\",\"Incomplete `mdat` box\")}}function $t(n){return(e,t,r,i,a)=>{return new Promise((s,u)=>{let d=new W,m=d.linkToSignal(i);d.signal.register(u),n(e,t,r,d.signal,Me(Se({},a),{onNewChunk(l){try{o(l),a.onNewChunk(l)}catch(p){f(),d.cancel(),u(p)}}})).then(l=>{if(f(),!d.isUsed()){if(l.resultType===\"segment-loaded\")try{o(l.resultData.responseData)}catch(p){u(p);return}s(l)}},l=>{f(),u(l)});function f(){d.signal.deregister(u),m()}});function o(s){!(s instanceof ArrayBuffer)&&!(s instanceof Uint8Array)||Be(t.type,t.mimeType)!==\"mp4\"||di(new Uint8Array(s),t.segment.isInit)}}}function Zt(n,e){return n===null?null:e.url===null?n.baseUrl:Ht(n.baseUrl,e.url)}function Jt(n,e,t,r,i){if(e.range===void 0)return de({url:n,responseType:\"arraybuffer\",timeout:t.timeout,connectionTimeout:t.connectionTimeout,cancelSignal:r,onProgress:i.onProgress}).then(s=>({resultType:\"segment-loaded\",resultData:s}));if(e.indexRange===void 0)return de({url:n,headers:{Range:ve(e.range)},responseType:\"arraybuffer\",timeout:t.timeout,connectionTimeout:t.connectionTimeout,cancelSignal:r,onProgress:i.onProgress}).then(s=>({resultType:\"segment-loaded\",resultData:s}));if(e.range[1]+1===e.indexRange[0])return de({url:n,headers:{Range:ve([e.range[0],e.indexRange[1]])},responseType:\"arraybuffer\",timeout:t.timeout,connectionTimeout:t.connectionTimeout,cancelSignal:r,onProgress:i.onProgress}).then(s=>({resultType:\"segment-loaded\",resultData:s}));let a=de({url:n,headers:{Range:ve(e.range)},responseType:\"arraybuffer\",timeout:t.timeout,connectionTimeout:t.connectionTimeout,cancelSignal:r,onProgress:i.onProgress}),o=de({url:n,headers:{Range:ve(e.indexRange)},responseType:\"arraybuffer\",timeout:t.timeout,connectionTimeout:t.connectionTimeout,cancelSignal:r,onProgress:i.onProgress});return Promise.all([a,o]).then(([s,u])=>{let d=je(new Uint8Array(s.responseData),new Uint8Array(u.responseData)),m=Math.min(s.sendingTime,u.sendingTime),f=Math.max(s.receivedTime,u.receivedTime);return{resultType:\"segment-loaded\",resultData:{url:n,responseData:d,size:s.size+u.size,requestDuration:f-m,sendingTime:m,receivedTime:f}}})}function li(n){let e=0,t=[],r=null;for(;e<n.length;){r=n.subarray(e,1/0);let i=Ye(r,1836019558);if(i<0)break;let a=J(n,i+e),o=e+i+a;if(o>n.length)break;let s=Ye(r,1835295092);if(s<0)break;let u=J(n,s+e),d=e+s+u;if(d>n.length)break;let m=Math.max(o,d),f=n.subarray(e,m);t.push(f),e=m}return t.length===0?[null,r]:[je(...t),r]}function en(n,e,t,r,i){let{segment:a}=e,o=a.range!==void 0?{Range:ve(a.range)}:void 0,s=null;function u(d){let m=new Uint8Array(d.chunk),f=s!==null?je(s,m):m,l=li(f),p=l[0];s=l[1],!(p!==null&&(r.onNewChunk(p),i.isCancelled()))&&(r.onProgress({duration:d.duration,size:d.size,totalSize:d.totalSize}),i.isCancelled())}return Fn({url:n,headers:o,onData:u,timeout:t.timeout,cancelSignal:i}).then(d=>({resultType:\"chunk-complete\",resultData:d}))}function oo(n,e,t,r,i,a){if(e.segment.isInit)return Jt(n,e.segment,r,a,i);let o=Be(e.type,e.mimeType);if(t&&(o===\"mp4\"||o===void 0)){if(Lt())return en(n,e,r,i,a);We(\"DASH: Your browser does not have the fetch API. You will have a higher chance of rebuffering when playing close to the live edge\")}let{segment:s}=e;return de({url:n,responseType:\"arraybuffer\",headers:s.range!==void 0?{Range:ve(s.range)}:void 0,timeout:r.timeout,connectionTimeout:r.connectionTimeout,cancelSignal:a,onProgress:i.onProgress}).then(u=>({resultType:\"segment-loaded\",resultData:u}))}function fi({lowLatencyMode:n,segmentLoader:e,checkMediaSegmentIntegrity:t}){return t!==!0?r:$t(r);function r(i,a,o,s,u){let d=Zt(i,a.segment);return d===null?Promise.resolve({resultType:\"segment-created\",resultData:null}):n||e===void 0?oo(d,a,n,o,u,s):new Promise((m,f)=>{let l=!1,y={reject:R=>{var k,x;if(l||s.isCancelled())return;l=!0,s.deregister(v);let M=R,_=(k=M==null?void 0:M.message)!=null?k:\"Unknown error when fetching a DASH segment through a custom segmentLoader.\",A=new Le(_,(x=M==null?void 0:M.canRetry)!=null?x:!1,M==null?void 0:M.xhr);f(A)},resolve:R=>{l||s.isCancelled()||(l=!0,s.deregister(v),m({resultType:\"segment-loaded\",resultData:{responseData:R.data,size:R.size,requestDuration:R.duration}}))},progress:R=>{l||s.isCancelled()||u.onProgress({duration:R.duration,size:R.size,totalSize:R.totalSize})},fallback:()=>{l||s.isCancelled()||(l=!0,s.deregister(v),oo(d,a,n,o,u,s).then(m,f))}},T;a.segment.range!==void 0&&(T=[a.segment.range],a.segment.indexRange!==void 0&&T.push(a.segment.indexRange));let P={isInit:a.segment.isInit,timeout:o.timeout,byteRanges:T,trackType:a.type,url:d},E=e(P,y);s.register(v);function v(R){l||(l=!0,typeof E==\"function\"&&E(),f(R))}})}}function Su(n,e,t){return new Uint8Array(Array.prototype.slice.call(n,e,t))}function yu(n,e,t){return n.slice(e,t)}var mi=typeof Uint8Array.prototype.slice==\"function\"?yu:Su;function ci(n,e){let t=n;for(let r of e){let i=se(t,r);if(i===null)return null;t=i}return t}function se(n,e){let t=vt(n,e);return t!==null?n.subarray(t[1],t[2]):null}function so(n,e){let t=[],r=n;for(;;){let i=vt(r,e);if(i===null)return t;pe(i[2]!==0&&r.length!==0),t.push(r.subarray(i[1],i[2])),r=r.subarray(i[2])}}function vt(n,e){let t=n.length,r=0,i,a=0,o;for(;r+8<=t;){if(o=r,a=J(n,o),o+=4,i=J(n,o),o+=4,a===0)a=t-r;else if(a===1){if(o+8>t)return null;a=it(n,o),o+=8}if(a<0)throw new Error(\"ISOBMFF: Size out of range\");if(i===e)return e===1970628964&&(o+=16),[r,o,r+a];r+=a}return null}function nr(n){let e=0,t=se(n,1836019574);if(t===null)return[];let r=[];for(;e<t.length;){let i;try{i=vt(t,1886614376)}catch(s){let u=s instanceof Error?s:\"\";return c.warn(\"Error while removing PSSH from ISOBMFF\",u),r}if(i===null)return r;let a=mi(t,i[0],i[2]),o=uo(a,i[1]-i[0]);o!==void 0&&r.push({systemId:o,data:a}),t[i[0]+4]=102,t[i[0]+5]=114,t[i[0]+6]=101,t[i[0]+7]=101,e=i[2]}return r}function uo(n,e){if(n[e]>1){c.warn(\"ISOBMFF: un-handled PSSH version\");return}let t=e+4;if(t+16>n.length)return;let r=mi(n,t,t+16);return Na(r)}function pi(n){let e=se(n,1836019558);return e===null?null:se(e,1953653094)}function lo(n){return so(n,1836019558).reduce((t,r)=>{let i=se(r,1953653094);return i!==null&&t.push(i),t},[])}function gi(n){return se(n,1835295092)}function hi(n){let e=se(n,1836019574);if(e===null)return null;let t=se(e,1953653099);return t===null?null:se(t,1835297121)}function fo(n,e=0){return se(n.subarray(e),1701671783)}function tn(n,e){let t=vt(n,1936286840);if(t===null)return null;let r=e,i=t[2]-t[0],a=t[1],o=n[a];a+=8;let s=J(n,a);a+=4;let u;if(o===0)u=J(n,a),a+=4,r+=J(n,a)+i,a+=4;else if(o===1)u=it(n,a),a+=8,r+=it(n,a)+i,a+=8;else return null;let d=[];a+=2;let m=ao(n,a);for(a+=2;--m>=0;){let f=J(n,a);a+=4;let l=(f&2147483648)>>>31,p=f&2147483647;if(l===1)throw new Error(\"sidx with reference_type `1` not yet implemented\");let g=J(n,a);a+=4,a+=4,d.push({time:u,duration:g,timescale:s,range:[r,r+p-1]}),u+=g,r+=p}return d}function Ii(n){let e=pi(n);if(e===null)return;let t=se(e,1952867444);if(t===null)return;let r=t[0];if(r===1)return it(t,4);if(r===0)return J(t,4)}function _u(n){let e=se(n,1952868452);if(e===null)return;let t=1,r=ui(e,t);t+=3;let i=(r&1)>0,a=(r&2)>0;return(r&8)>0?(t+=4,i&&(t+=8),a&&(t+=4),J(e,t)):void 0}function bi(n){let e=lo(n);if(e.length===0)return;let t=0;for(let r of e){let i=se(r,1953658222);if(i===null)return;let a=0,o=i[a];if(a+=1,o>1)return;let s=ui(i,a);a+=3;let u=(s&256)>0,d=0;if(!u&&(d=_u(r),d===void 0))return;let m=(s&1)>0,f=(s&4)>0,l=(s&512)>0,p=(s&1024)>0,g=(s&2048)>0,h=J(i,a);a+=4,m&&(a+=4),f&&(a+=4);let I=h,y=0;for(;I-- >0;)u?(y+=J(i,a),a+=4):y+=d,l&&(a+=4),p&&(a+=4),g&&(a+=4);t+=y}return t}function nn(n){let e=hi(n);if(e===null)return;let t=se(e,1835296868);if(t===null)return;let r=0,i=t[r];if(r+=4,i===1)return J(t,r+16);if(i===0)return J(t,r+8)}function mo(n){let e=[],t=0;for(;t<n.length;){let r=fo(n,t);if(r===null)break;let i=r.length;t+=i;let a=r[0];if(a!==0)c.warn(\"ISOBMFF: EMSG version \"+a.toString()+\" not supported.\");else{let o=4,{end:s,string:u}=Kr(r,o);o=s;let{end:d,string:m}=Kr(r,o);o=d;let f=J(r,o);o+=4;let l=J(r,o);o+=4;let p=J(r,o);o+=4;let g=J(r,o);o+=4;let h=r.subarray(o,i),I={schemeIdUri:u,value:m,timescale:f,presentationTimeDelta:l,eventDuration:p,id:g,messageData:h};e.push(I)}}if(e.length!==0)return e}function co(n){let e=ci(n,[1836019574,1953653099,1835297121,1835626086,1937007212,1937011556]);if(e===null)return null;let t=e.subarray(8),r=se(t,1701733238),i=0;if(r===null?(i=28,r=se(t,1701733217)):i=78,r===null)return null;let a=ci(r.subarray(i),[1936289382,1935894633,1952804451]);return a===null||a.byteLength<24?null:a.subarray(8,24)}var yi=408125543,po=357149030,Eu=2807729,Tu=17545,Ru=475249515,Pu=187,vu=179,Cu=183,Au=241;function at(n,e,t,[r,i]){let a=r;for(;a<i;){let o=ku(t,a);if(o===null)return null;let{value:s,length:u}=o,d=a+u,m=Mu(t,d);if(m===null)return null;let{length:f,value:l}=m,p=d+f,g=p+l;if(s===n)return[p,g];if(e.length>0){for(let h=0;h<e.length;h++)if(s===e[h]){let I=e.slice(h+1,e.length);return at(n,I,t,[p,g])}}a=g}return null}function rr(n,e){let t=at(Eu,[yi,po],n,[e,n.length]);if(t===null)return null;let r=t[1]-t[0];return 1e9/Si(n,t[0],r)}function xu(n,e){let t=at(Tu,[yi,po],n,[e,n.length]);if(t===null)return null;let r=t[1]-t[0];return r===4?Ou(n,t[0]):r===8?wu(n,t[0]):null}function _i(n,e){let t=at(yi,[],n,[e,n.length]);if(t===null)return null;let[r,i]=t,a=rr(n,r);if(a===null)return null;let o=xu(n,r);if(o===null)return null;let s=at(Ru,[],n,[r,i]);if(s===null)return null;let u=[],d=s[0];for(;d<s[1];){let f=at(Pu,[],n,[d,s[1]]);if(f===null)break;let l=at(vu,[],n,[f[0],f[1]]);if(l===null)return null;let p=Si(n,l[0],l[1]-l[0]),g=at(Au,[Cu],n,[f[0],f[1]]);if(g===null)return null;let h=Si(n,g[0],g[1]-g[0])+r;u.push({time:p,rangeStart:h}),d=f[1]}let m=[];for(let f=0;f<u.length;f++){let l=u[f];f===u.length-1?m.push({time:l.time,timescale:a,duration:f===0?o:o-l.time,range:[l.rangeStart,1/0]}):m.push({time:l.time,timescale:a,duration:u[f+1].time-l.time,range:[l.rangeStart,u[f+1].rangeStart-1]})}return m}function go(n,e){for(let t=1;t<=8;t++)if(n[e]>=Math.pow(2,8-t))return t}function ku(n,e){let t=go(n,e);if(t===void 0)return c.warn(\"webm: unrepresentable length\"),null;if(e+t>n.length)return c.warn(\"webm: impossible length\"),null;let r=0;for(let i=0;i<t;i++)r=n[e+i]*Math.pow(2,(t-i-1)*8)+r;return{length:t,value:r}}function Mu(n,e){let t=go(n,e);if(t===void 0)return c.warn(\"webm: unrepresentable length\"),null;if(e+t>n.length)return c.warn(\"webm: impossible length\"),null;let r=(n[e]&(1<<8-t)-1)*Math.pow(2,(t-1)*8);for(let i=1;i<t;i++)r=n[e+i]*Math.pow(2,(t-i-1)*8)+r;return{length:t,value:r}}function Ou(n,e){return new DataView(n.buffer).getFloat32(e)}function wu(n,e){return new DataView(n.buffer).getFloat64(e)}function Si(n,e,t){let r=0;for(let i=0;i<t;i++)r=n[e+i]*Math.pow(2,(t-i-1)*8)+r;return r}function rn(n,e,t,r){let i=Ii(n);if(i===void 0||r===void 0)return null;let a=t.timestampOffset!==void 0?i+t.timestampOffset*r:i,o=bi(n);if(a<0&&(o!==void 0&&(o+=a),a=0),e||!t.complete)return o===void 0&&c.warn(\"DASH: Chunked segments should indicate a duration through their trun boxes\"),{time:a/r,duration:o!==void 0?o/r:void 0};let s,u=t.duration*r,d=Math.min(r*.9,u/4);return o!==void 0&&Math.abs(o-u)<=d&&(s=o),{time:a/r,duration:s!==void 0?s/r:s}}function Du(n,e){if(n.length<=0)return!1;let t=n.length;for(let r=0;r<t;r++){let i=n[r],a=e,{messageData:o}=i,s=we(o),u=Date.parse(s);if(a===void 0||u===void 0||isNaN(u)||u>=a)return!0}return!1}function Ei(n,e){if(n.length===0)return;let{manifestRefreshEventsFromEMSGs:t,EMSGs:r}=n.reduce((o,s)=>(s.schemeIdUri===\"urn:mpeg:dash:event:2012\"&&s.value===\"1\"?(o.manifestRefreshEventsFromEMSGs===void 0&&(o.manifestRefreshEventsFromEMSGs=[]),o.manifestRefreshEventsFromEMSGs.push(s)):(o.EMSGs===void 0&&(o.EMSGs=[]),o.EMSGs.push(s)),o),{manifestRefreshEventsFromEMSGs:void 0,EMSGs:void 0}),i=r==null?void 0:r.map(o=>({type:\"emsg\",value:o})),a=e===void 0||t===void 0?!1:Du(t,e);return{inbandEvents:i,needsManifestRefresh:a}}function Ti({__priv_patchLastSegmentInSidx:n}){return function(t,r,i){var P,E;let{segment:a,periodStart:o,periodEnd:s}=r,{data:u,isChunked:d}=t,m=[o,s];if(u===null)return a.isInit?{segmentType:\"init\",initializationData:null,initializationDataSize:0,protectionData:[],initTimescale:void 0}:{segmentType:\"media\",chunkData:null,chunkSize:0,chunkInfos:null,chunkOffset:0,protectionData:[],appendWindow:m};let f=u instanceof Uint8Array?u:new Uint8Array(u),l=Be(r.type,r.mimeType),p=l===\"mp4\"||l===void 0,g=[];if(p){let v=nr(f),R;a.isInit&&(R=(P=co(f))!=null?P:void 0),(v.length>0||R!==void 0)&&g.push({initDataType:\"cenc\",keyId:R,initData:v})}if(!a.isInit){let v=p?rn(f,d,a,i):null,R=(E=a.timestampOffset)!=null?E:0;if(p){let M=mo(f);if(M!==void 0){let _=M.filter(k=>a.privateInfos===void 0||a.privateInfos.isEMSGWhitelisted===void 0?!1:a.privateInfos.isEMSGWhitelisted(k)),A=Ei(_,r.manifestPublishTime);if(A!==void 0){let{needsManifestRefresh:k,inbandEvents:x}=A;return{segmentType:\"media\",chunkData:f,chunkSize:f.length,chunkInfos:v,chunkOffset:R,appendWindow:m,inbandEvents:x,protectionData:g,needsManifestRefresh:k}}}}return{segmentType:\"media\",chunkData:f,chunkSize:f.length,chunkInfos:v,chunkOffset:R,protectionData:g,appendWindow:m}}let{indexRange:h}=a,I;if(l===\"webm\")I=_i(f,0);else if(p&&(I=tn(f,Array.isArray(h)?h[0]:0),n===!0&&I!==null&&I.length>0)){let v=I[I.length-1];Array.isArray(v.range)&&(v.range[1]=1/0)}let y;p?y=nn(f):l===\"webm\"&&(y=rr(f,0));let T=C(y)?void 0:y;return{segmentType:\"init\",initializationData:f,initializationDataSize:f.length,protectionData:g,initTimescale:T,segmentList:I!=null?I:void 0}}}function Ri({lowLatencyMode:n,checkMediaSegmentIntegrity:e}){return e!==!0?t:$t(t);function t(r,i,a,o,s){let{segment:u}=i,{range:d}=u,m=Zt(r,u);if(m===null)return Promise.resolve({resultType:\"segment-created\",resultData:null});if(u.isInit)return Jt(m,u,a,o,s);let f=Be(i.type,i.mimeType),l=f===\"mp4\"||f===void 0;if(n&&l){if(Lt())return en(m,i,a,s,o);We(\"DASH: Your browser does not have the fetch API. You will have a higher chance of rebuffering when playing close to the live edge\")}return l?de({url:m,responseType:\"arraybuffer\",headers:Array.isArray(d)?{Range:ve(d)}:null,timeout:a.timeout,connectionTimeout:a.connectionTimeout,onProgress:s.onProgress,cancelSignal:o}).then(p=>({resultType:\"segment-loaded\",resultData:p})):de({url:m,responseType:\"text\",headers:Array.isArray(d)?{Range:ve(d)}:null,timeout:a.timeout,connectionTimeout:a.connectionTimeout,onProgress:s.onProgress,cancelSignal:o}).then(p=>({resultType:\"segment-loaded\",resultData:p}))}}function Bu(n){let e=gi(n);return e===null?\"\":we(e)}function Uu(n){if(n===void 0)throw new Error(\"Cannot parse subtitles: unknown format\");switch(n.toLowerCase()){case\"stpp\":case\"stpp.ttml.im1t\":return\"ttml\";case\"wvtt\":return\"vtt\"}throw new Error(`The codec used for the subtitles \"${n}\" is not managed yet.`)}function Lu(n,e){switch(e){case\"application/ttml+xml\":return\"ttml\";case\"application/x-sami\":case\"application/smil\":return\"sami\";case\"text/vtt\":return\"vtt\"}if(n!==void 0&&n.toLowerCase()===\"srt\")return\"srt\";throw new Error(`could not find a text-track parser for the type ${e!=null?e:\"\"}`)}function ho({segment:n,language:e,codecs:t},r,i,a){if(n.isInit)return null;let o,s;i===null?a?(o=n.time,s=n.end):c.warn(\"Transport: Unavailable time data for current text track.\"):(o=i.time,i.duration!==void 0?s=o+i.duration:!a&&n.complete&&(s=o+n.duration));let u=Uu(t);return{data:Bu(r),type:u,language:e,start:o,end:s}}function Io(n,e,t){let{segment:r}=n;if(r.isInit)return null;let i,a;t?c.warn(\"Transport: Unavailable time data for current text track.\"):(i=r.time,r.complete&&(a=r.time+r.duration));let o=Lu(n.codecs,n.mimeType);return{data:e,type:o,language:n.language,start:i,end:a}}function Nu(n,e,t,r,i){var l;let{segment:a}=t,{isInit:o,indexRange:s}=a,u;if(typeof n==\"string\"?u=Yt(n):n instanceof Uint8Array?u=n:u=new Uint8Array(n),o){let p=tn(u,Array.isArray(s)?s[0]:0);if(i===!0&&p!==null&&p.length>0){let h=p[p.length-1];Array.isArray(h.range)&&(h.range[1]=1/0)}let g=nn(u);return{segmentType:\"init\",initializationData:null,initializationDataSize:0,protectionData:[],initTimescale:g,segmentList:p!=null?p:void 0}}let d=rn(u,e,a,r),m=ho(t,u,d,e),f=(l=a.timestampOffset)!=null?l:0;return{segmentType:\"media\",chunkData:m,chunkSize:u.length,chunkInfos:d,chunkOffset:f,protectionData:[],appendWindow:[t.periodStart,t.periodEnd]}}function Fu(n,e,t){let{periodStart:r,periodEnd:i,segment:a}=t,{timestampOffset:o=0}=a;if(a.isInit)return{segmentType:\"init\",initializationData:null,initializationDataSize:0,protectionData:[],initTimescale:void 0};let s,u;if(typeof n!=\"string\"){let m=n instanceof Uint8Array?n:new Uint8Array(n);s=we(m),u=m.length}else s=n;return{segmentType:\"media\",chunkData:Io(t,s,e),chunkSize:u,chunkInfos:null,chunkOffset:o,protectionData:[],appendWindow:[r,i]}}function Pi({__priv_patchLastSegmentInSidx:n}){return function(t,r,i){var f;let{periodStart:a,periodEnd:o,segment:s}=r,{data:u,isChunked:d}=t;if(u===null)return s.isInit?{segmentType:\"init\",initializationData:null,initializationDataSize:0,protectionData:[],initTimescale:void 0}:{segmentType:\"media\",chunkData:null,chunkSize:0,chunkInfos:null,chunkOffset:(f=s.timestampOffset)!=null?f:0,protectionData:[],appendWindow:[a,o]};let m=Be(r.type,r.mimeType);if(m===\"webm\")throw new Error(\"Text tracks with a WEBM container are not yet handled.\");return m===\"mp4\"?Nu(u,d,r,i,n):Fu(u,d,r)}}function bo(n){let e=ai({customManifestLoader:n.manifestLoader},zu()?\"text\":\"arraybuffer\"),t=oi(n),r=fi(n),i=Ti(n),a=Ri(n),o=Pi(n);return{manifest:{loadManifest:e,parseManifest:t},audio:{loadSegment:r,parseSegment:i},video:{loadSegment:r,parseSegment:i},text:{loadSegment:a,parseSegment:o}}}function zu(){return ae.dashParsers.wasm!==null&&(ae.dashParsers.wasm.status===\"initialized\"||ae.dashParsers.wasm.status===\"initializing\")}var So=bo;var pt=typeof queueMicrotask==\"function\"?queueMicrotask:function(e){Promise.resolve().then(e,()=>e())};var gt=class{constructor(e){this._array=[],this._sortingFn=e}add(...e){e.sort(this._sortingFn);let t=0;for(let r=0;r<e.length;r++){let i=e[r],a=!1;for(;!a&&t<this._array.length;)this._sortingFn(i,this._array[t])<0?(this._array.splice(t,0,i),a=!0):t++;a||this._array.push(i)}}length(){return this._array.length}get(e){if(e<0||e>=this._array.length)throw new Error(\"Invalid index.\");return this._array[e]}toArray(){return this._array.slice()}findFirst(e){return j(this._array,e)}has(e){return oe(this._array,e)}removeElement(e){let t=this._array.indexOf(e);if(t>=0)return this._array.splice(t,1),t}head(){return this._array[0]}last(){return this._array[this._array.length-1]}shift(){return this._array.shift()}pop(){return this._array.pop()}};var an=class{constructor(e){this._weakMap=new WeakMap,this._fn=e}get(e){let t=this._weakMap.get(e);if(t===void 0){let r=this._fn(e);return this._weakMap.set(e,r),r}else return t}destroy(e){this._weakMap.delete(e)}};var Wu=.016666666666666666;function yo(n,e){return Math.abs(n-e)<Wu}function Eo(n,e){let t=Math.min(n.start,e.start),r=Math.max(n.end,e.end);return{start:t,end:r}}function Vu(n){for(let e=0;e<n.length;e++){let t=n[e];t.start===t.end&&n.splice(e--,1)}return n}function qu(n){for(let e=1;e<n.length;e++){let t=n[e-1],r=n[e];if(Ro(t,r)){let i=Eo(t,r);n.splice(--e,2,i)}}return n}function vi(n,e){return n.end<=e.start}function _o({start:n,end:e},t){return n<=t&&t<e}function To(n,e){return _o(n,e.start)||n.start<e.end&&e.end<n.end||_o(e,n.start)}function Ro(n,e){return yo(e.start,n.end)||yo(e.end,n.start)}function Ci(n){let e=[];for(let t=0;t<n.length;t++)e.push({start:n.start(t),end:n.end(t)});return e}function Gu(n,e){for(let t=n.length-1;t>=0;t--){let r=n[t].start;if(e>=r){let i=n[t].end;if(e<i)return n[t]}}return null}function Po(n,e){let t=null,r=[];for(let i=0;i<n.length;i++){let a=n[i].start,o=n[i].end;e<a||e>=o?r.push({start:a,end:o}):t={start:a,end:o}}return{outerRanges:r,innerRange:t}}function ir(n,e){let t=Gu(n,e);return t!==null?t.end-e:1/0}function Ct(n,e){if(e.start===e.end)return n;let t=e,r=0;for(;r<n.length;r++){let i=n[r],a=To(t,i),o=Ro(t,i);if(a||o)t=Eo(t,i),n.splice(r--,1);else if(r===0){if(vi(t,n[0]))break}else if(vi(n[r-1],t)&&vi(t,i))break}return n.splice(r,0,t),qu(Vu(n))}function Hu(n,e){let t=[];for(let r=0;r<e.length;r++)To(n,e[r])&&t.push(e[r]);return t}function ar(n,e){let t=[];for(let r=0;r<n.length;r++){let i=n[r],a=[],o=Hu(i,e);if(o.length>0)for(let s=0;s<o.length;s++){let u=o[s];a.push({start:Math.max(i.start,u.start),end:Math.min(i.end,u.end)})}if(a.length===0)t.push(i);else{let s=i.start;for(let u=0;u<a.length;u++)a[u].start>s&&t.push({start:s,end:a[u].start}),s=a[u].end;s<i.end&&t.push({start:s,end:i.end})}}return t}function or({segmentSink:n,playbackObserver:e,maxBufferBehind:t,maxBufferAhead:r},i){let a,o=[];e.listen(u=>{a=u.position.getWanted(),o=u.buffered[n.bufferType],s()},{includeLastObservation:!0,clearSignal:i});function s(){o!==null&&ju(n,a,o,t.getValue(),r.getValue(),i).catch(u=>{let d=u instanceof Error?u.message:\"Unknown error\";c.error(\"Could not run BufferGarbageCollector:\",d)})}t.onUpdate(s,{clearSignal:i}),r.onUpdate(s,{clearSignal:i}),s()}async function ju(n,e,t,r,i,a){if(!isFinite(r)&&!isFinite(i))return Promise.resolve();let o=[],{innerRange:s,outerRanges:u}=Po(t,e),d=()=>{if(isFinite(r)){for(let f=0;f<u.length;f++){let l=u[f];e-r>=l.end?o.push(l):e>=l.end&&e-r>l.start&&e-r<l.end&&o.push({start:l.start,end:e-r})}C(s)||e-r>s.start&&o.push({start:s.start,end:e-r})}},m=()=>{if(isFinite(i)){for(let f=0;f<u.length;f++){let l=u[f];e+i<=l.start?o.push(l):e<=l.start&&e+i<l.end&&e+i>l.start&&o.push({start:e+i,end:l.end})}C(s)||e+i<s.end&&o.push({start:e+i,end:s.end})}};d(),m();for(let f of o)if(f.start<f.end){if(c.debug(\"GC: cleaning range from SegmentSink\",f.start,f.end),a.cancellationError!==null)throw a.cancellationError;await n.removeBuffer(f.start,f.end)}}var on=class{constructor(e,t){this._history=[],this._lifetime=e,this._maxHistoryLength=t}addBufferedSegment(e,t){let r=N();this._history.push({date:r,buffered:t,context:e}),this._cleanHistory(r)}getHistoryFor(e){return this._history.filter(t=>Ve(t.context,e))}_cleanHistory(e){let t=e-this._lifetime,r=0;for(let i of this._history)if(i.date<t)r++;else break;if(r>0&&(this._history=this._history.splice(r)),this._history.length>this._maxHistoryLength){let i=this._history.length-this._maxHistoryLength;this._history=this._history.splice(i)}}};var sn=class{constructor(){let{BUFFERED_HISTORY_RETENTION_TIME:e,BUFFERED_HISTORY_MAXIMUM_ENTRIES:t}=L.getCurrent();this._inventory=[],this._bufferedHistory=new on(e,t)}reset(){this._inventory.length=0}synchronizeBuffered(e){var u,d,m,f,l,p,g;let t=this._inventory,r=0,i=t[0],{MINIMUM_SEGMENT_SIZE:a}=L.getCurrent(),o=i==null?void 0:i.infos.adaptation.type,s=e.length;for(let h=0;h<s;h++){if(i===void 0)return;let I=e[h].start,y=e[h].end;if(y-I<a){c.warn(\"SI: skipped range when synchronizing because it was too small\",o,I,y);continue}let T=r;for(;i!==void 0&&((u=i.bufferedEnd)!=null?u:i.end)-I<a;)i=t[++r];let P=null,E=r-T;if(E>0){let R=t[T+E-1];P={end:(d=R.bufferedEnd)!=null?d:R.end,precizeEnd:R.precizeEnd},c.debug(`SI: ${E} segments GCed.`,o);let M=t.splice(T,E);for(let _ of M)_.bufferedStart===void 0&&_.bufferedEnd===void 0&&_.status!==2&&this._bufferedHistory.addBufferedSegment(_.infos,null);r=T}if(i===void 0)return;if(y-((m=i.bufferedStart)!=null?m:i.start)>=a){if(Yu(i,I,P,o),r===t.length-1){Co(i,y,o);return}i=t[++r];let R=(f=i.bufferedStart)!=null?f:i.start,M=(l=i.bufferedEnd)!=null?l:i.end,_=h<s-1?e[h+1].start:void 0;for(;i!==void 0&&y-R>=a&&(_===void 0||y-R>=M-_);){let A=t[r-1];A.bufferedEnd===void 0&&(A.bufferedEnd=i.precizeStart?i.start:A.end,c.debug(\"SI: calculating buffered end of contiguous segment\",o,A.bufferedEnd,A.end)),i.bufferedStart=A.bufferedEnd,i=t[++r],i!==void 0&&(R=(p=i.bufferedStart)!=null?p:i.start,M=(g=i.bufferedEnd)!=null?g:i.end)}}let v=t[r-1];v!==void 0&&Co(v,y,o)}if(!C(i)){c.debug(\"SI: last segments have been GCed\",o,r,t.length);let h=t.splice(r,t.length-r);for(let I of h)I.bufferedStart===void 0&&I.bufferedEnd===void 0&&I.status!==2&&this._bufferedHistory.addBufferedSegment(I.infos,null)}o!==void 0&&c.hasLevel(\"DEBUG\")&&c.debug(`SI: current ${o} inventory timeline:\n`+Ku(this._inventory))}insertChunk({period:e,adaptation:t,representation:r,segment:i,chunkSize:a,start:o,end:s},u,d){if(i.isInit)return;let m=t.type;if(o>=s){c.warn(\"SI: Invalid chunked inserted: starts before it ends\",m,o,s);return}let f=this._inventory,l={status:u?0:2,insertionTs:d,chunkSize:a,splitted:!1,start:o,end:s,precizeStart:!1,precizeEnd:!1,bufferedStart:void 0,bufferedEnd:void 0,infos:{segment:i,period:e,adaptation:t,representation:r}};for(let g=f.length-1;g>=0;g--){let h=f[g];if(h.start<=o)if(h.end<=o){for(c.debug(\"SI: Pushing segment strictly after previous one.\",m,o,h.end),this._inventory.splice(g+1,0,l),g+=2;g<f.length&&f[g].start<l.end;){if(f[g].end>l.end){c.debug(\"SI: Segment pushed updates the start of the next one\",m,l.end,f[g].start),f[g].start=l.end,f[g].bufferedStart=void 0,f[g].precizeStart=f[g].precizeStart&&l.precizeEnd;return}c.debug(\"SI: Segment pushed removes the next one\",m,o,s,f[g].start,f[g].end),f.splice(g,1)}return}else if(h.start===o)if(h.end<=s){for(c.debug(\"SI: Segment pushed replace another one\",m,o,s,h.end),this._inventory.splice(g,1,l),g+=1;g<f.length&&f[g].start<l.end;){if(f[g].end>l.end){c.debug(\"SI: Segment pushed updates the start of the next one\",m,l.end,f[g].start),f[g].start=l.end,f[g].bufferedStart=void 0,f[g].precizeStart=f[g].precizeStart&&l.precizeEnd;return}c.debug(\"SI: Segment pushed removes the next one\",m,o,s,f[g].start,f[g].end),f.splice(g,1)}return}else{c.debug(\"SI: Segment pushed ends before another with the same start\",m,o,s,h.end),f.splice(g,0,l),h.start=l.end,h.bufferedStart=void 0,h.precizeStart=h.precizeStart&&l.precizeEnd;return}else if(h.end<=l.end){for(c.debug(\"SI: Segment pushed updates end of previous one\",m,o,s,h.start,h.end),this._inventory.splice(g+1,0,l),h.end=l.start,h.bufferedEnd=void 0,h.precizeEnd=h.precizeEnd&&l.precizeStart,g+=2;g<f.length&&f[g].start<l.end;){if(f[g].end>l.end){c.debug(\"SI: Segment pushed updates the start of the next one\",m,l.end,f[g].start),f[g].start=l.end,f[g].bufferedStart=void 0,f[g].precizeStart=f[g].precizeStart&&l.precizeEnd;return}c.debug(\"SI: Segment pushed removes the next one\",m,o,s,f[g].start,f[g].end),f.splice(g,1)}return}else{c.warn(\"SI: Segment pushed is contained in a previous one\",m,o,s,h.start,h.end);let I={status:h.status,insertionTs:h.insertionTs,chunkSize:h.chunkSize,splitted:!0,start:l.end,end:h.end,precizeStart:h.precizeStart&&h.precizeEnd&&l.precizeEnd,precizeEnd:h.precizeEnd,bufferedStart:void 0,bufferedEnd:h.end,infos:h.infos};h.end=l.start,h.splitted=!0,h.bufferedEnd=void 0,h.precizeEnd=h.precizeEnd&&l.precizeStart,f.splice(g+1,0,l),f.splice(g+2,0,I);return}}let p=this._inventory[0];if(p===void 0){c.debug(\"SI: first segment pushed\",m,o,s),this._inventory.push(l);return}if(p.start>=s)c.debug(\"SI: Segment pushed comes before all previous ones\",m,o,s,p.start),this._inventory.splice(0,0,l);else if(p.end<=s){for(c.debug(\"SI: Segment pushed starts before and completely recovers the previous first one\",m,o,s,p.start,p.end),this._inventory.splice(0,1,l);f.length>1&&f[1].start<l.end;){if(f[1].end>l.end){c.debug(\"SI: Segment pushed updates the start of the next one\",m,l.end,f[1].start),f[1].start=l.end,f[1].bufferedStart=void 0,f[1].precizeStart=l.precizeEnd;return}c.debug(\"SI: Segment pushed removes the next one\",m,o,s,f[1].start,f[1].end),f.splice(1,1)}return}else{c.debug(\"SI: Segment pushed start of the next one\",m,o,s,p.start,p.end),p.start=s,p.bufferedStart=void 0,p.precizeStart=l.precizeEnd,this._inventory.splice(0,0,l);return}}completeSegment(e){if(e.segment.isInit)return;let t=this._inventory,r=[];for(let i=0;i<t.length;i++)if(Ve(t[i].infos,e)){let a=!1;r.length>0&&(a=!0,r.length===1&&(c.warn(\"SI: Completed Segment is splitted.\",e.segment.id,e.segment.time,e.segment.end),r[0].splitted=!0));let o=i,s=t[i].chunkSize;for(i+=1;i<t.length&&Ve(t[i].infos,e);){let l=t[i].chunkSize;s!==void 0&&l!==void 0&&(s+=l),i++}let u=i-1,d=u-o,m=t[u].end,f=t[u].bufferedEnd;d>0&&(this._inventory.splice(o+1,d),i-=d),this._inventory[o].status===0&&(this._inventory[o].status=1),this._inventory[o].chunkSize=s,this._inventory[o].end=m,this._inventory[o].bufferedEnd=f,this._inventory[o].splitted=a,r.push(this._inventory[o])}if(r.length===0)c.warn(\"SI: Completed Segment not found\",e.segment.id,e.segment.time);else for(let i of r)i.bufferedStart!==void 0&&i.bufferedEnd!==void 0?i.status!==2&&this._bufferedHistory.addBufferedSegment(i.infos,{start:i.bufferedStart,end:i.bufferedEnd}):c.debug(\"SI: buffered range not known after sync. Skipping history.\",i.start,i.end)}getInventory(){return this._inventory}getHistoryFor(e){return this._bufferedHistory.getHistoryFor(e)}};function Ai(n){if(n.bufferedStart===void 0||n.status!==1)return!1;let{start:e,end:t}=n,r=t-e,{MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE:i,MAX_MANIFEST_BUFFERED_DURATION_DIFFERENCE:a}=L.getCurrent();return Math.abs(e-n.bufferedStart)<=i&&(n.bufferedEnd===void 0||n.bufferedEnd>n.bufferedStart&&Math.abs(n.bufferedEnd-n.bufferedStart-r)<=Math.min(a,r/3))}function vo(n){if(n.bufferedEnd===void 0||n.status!==1)return!1;let{start:e,end:t}=n,r=t-e,{MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE:i,MAX_MANIFEST_BUFFERED_DURATION_DIFFERENCE:a}=L.getCurrent();return Math.abs(t-n.bufferedEnd)<=i&&n.bufferedStart!==void 0&&n.bufferedEnd>n.bufferedStart&&Math.abs(n.bufferedEnd-n.bufferedStart-r)<=Math.min(a,r/3)}function Yu(n,e,t,r){let{MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE:i,MISSING_DATA_TRIGGER_SYNC_DELAY:a,SEGMENT_SYNCHRONIZATION_DELAY:o}=L.getCurrent();if(n.bufferedStart!==void 0)n.bufferedStart<e&&(c.debug(\"SI: Segment partially GCed at the start\",r,n.bufferedStart,e),n.bufferedStart=e),!n.precizeStart&&Ai(n)&&(n.start=n.bufferedStart,n.precizeStart=!0);else if(n.precizeStart)c.debug(\"SI: buffered start is precize start\",r,n.start),n.bufferedStart=n.start;else if(t!==null&&t.end>e&&(t.precizeEnd||n.start-t.end<=i))c.debug(\"SI: buffered start is end of previous segment\",r,e,n.start,t.end),n.bufferedStart=t.end,Ai(n)&&(n.start=t.end,n.precizeStart=!0);else if(n.start-e<=i){let s=N();if(n.start-e>=a&&s-n.insertionTs<o){c.debug(\"SI: Ignored bufferedStart synchronization\",r,e,n.start,s-n.insertionTs);return}c.debug(\"SI: found true buffered start\",r,e,n.start),n.bufferedStart=e,Ai(n)&&(n.start=e,n.precizeStart=!0)}else if(e<n.start)c.debug(\"SI: range start too far from expected start\",r,e,n.start),n.bufferedStart=n.start;else{let s=N();if(n.start-e>=a&&s-n.insertionTs<o){c.debug(\"SI: Ignored bufferedStart synchronization\",r,e,n.start,s-n.insertionTs);return}c.debug(\"SI: Segment appears immediately garbage collected at the start\",r,e,n.start),n.bufferedStart=e}}function Co(n,e,t){let{MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE:r,MISSING_DATA_TRIGGER_SYNC_DELAY:i,SEGMENT_SYNCHRONIZATION_DELAY:a}=L.getCurrent();if(n.bufferedEnd!==void 0)n.bufferedEnd>e&&(c.debug(\"SI: Segment partially GCed at the end\",t,n.bufferedEnd,e),n.bufferedEnd=e),!n.precizeEnd&&e-n.end<=r&&vo(n)&&(n.precizeEnd=!0,n.end=e);else if(n.precizeEnd)c.debug(\"SI: buffered end is precize end\",t,n.end),n.bufferedEnd=n.end;else if(e-n.end<=r){let o=N();if(e-n.end>=i&&o-n.insertionTs<a){c.debug(\"SI: Ignored bufferedEnd synchronization\",t,e,n.end,o-n.insertionTs);return}c.debug(\"SI: found true buffered end\",t,e,n.end),n.bufferedEnd=e,vo(n)&&(n.end=e,n.precizeEnd=!0)}else if(e>n.end)c.debug(\"SI: range end too far from expected end\",t,e,n.end),n.bufferedEnd=n.end;else{let o=N();if(e-n.end>=i&&o-n.insertionTs<a){c.debug(\"SI: Ignored bufferedEnd synchronization\",t,e,n.end,o-n.insertionTs);return}c.debug(\"SI: Segment appears immediately garbage collected at the end\",t,n.bufferedEnd,e),n.bufferedEnd=e}}function Ku(n){let e=.016666666666666666,t={},r=[],i=null,a=null;function o(u){let d=String.fromCharCode(r.length+65);return r.push({letter:d,periodId:u.period.id,representationId:u.representation.id,bitrate:u.representation.bitrate}),d}let s=\"\";for(let u=0;u<n.length;u++){let d=n[u];if(d.bufferedStart!==void 0&&d.bufferedEnd!==void 0){let m=d.infos.period.id,f=d.infos.representation.id,l=t[m],p;l===void 0?(p=o(d.infos),t[m]={[f]:p}):l[f]===void 0?(p=o(d.infos),l[f]=p):p=l[f],i===null?s+=`${d.bufferedStart.toFixed(2)}|${p}|`:a===p?i.bufferedEnd+e<d.bufferedStart&&(s+=`${i.bufferedEnd.toFixed(2)} ~ ${d.bufferedStart.toFixed(2)}|${p}|`):s+=`${i.bufferedEnd.toFixed(2)} ~ ${d.bufferedStart.toFixed(2)}|${p}|`,i=d,a=p}}return i!==null&&(s+=String(i.end.toFixed(2))),r.forEach(u=>{var d;s+=`\n[${u.letter}] P: ${u.periodId} || R: ${u.representationId}(${(d=u.bitrate)!=null?d:\"unknown bitrate\"})`}),s}function At(n,e){for(let t=0;t<n.length;t++)if(n[t].infos.period.start>=e.start)return t>0?n[t-1]:null;return n.length>0?n[n.length-1]:null}function xt(n,e){for(let t=0;t<n.length;t++)if(n[t].infos.period.start>e.start)return n[t];return null}var xo=sn;var kt=class{constructor(){this._segmentInventory=new xo}synchronizeInventory(e){this._segmentInventory.synchronizeBuffered(e)}getLastKnownInventory(){return this._segmentInventory.getInventory()}getSegmentHistory(e){return this._segmentInventory.getHistoryFor(e)}};var un=class extends kt{constructor(e,t,r){super(),c.info(\"AVSB: calling `mediaSource.addSourceBuffer`\",t);let i=r.addSourceBuffer(e,t);this.bufferType=e,this._sourceBuffer=i,this._lastInitSegmentUniqueId=null,this.codec=t,this._initSegmentsMap=new Map,this._pendingOperations=[]}declareInitSegment(e,t){ko(t),this._initSegmentsMap.set(e,t)}freeInitSegment(e){this._initSegmentsMap.delete(e)}async pushChunk(e){ko(e.data.chunk),c.debug(\"AVSB: receiving order to push data to the SourceBuffer\",this.bufferType,ut(e.inventoryInfos));let t=this._getActualDataToPush(e.data);t.length===0&&t.push(new Uint8Array);let r=Promise.all(t.map(o=>{let{codec:s,timestampOffset:u,appendWindow:d}=e.data;return c.debug(\"AVSB: pushing segment\",this.bufferType,ut(e.inventoryInfos)),this._sourceBuffer.appendBuffer(o,{codec:s,timestampOffset:u,appendWindow:d})}));this._addToOperationQueue(r,{type:0,value:e});let i;try{i=await r}catch(o){throw this._segmentInventory.insertChunk(e.inventoryInfos,!1,N()),o}e.inventoryInfos!==null&&this._segmentInventory.insertChunk(e.inventoryInfos,!0,N());let a=i[i.length-1];return this._segmentInventory.synchronizeBuffered(a),a}async removeBuffer(e,t){c.debug(\"AVSB: receiving order to remove data from the SourceBuffer\",this.bufferType,e,t);let r=this._sourceBuffer.remove(e,t);this._addToOperationQueue(r,{type:1,value:{start:e,end:t}});let i=await r;return this._segmentInventory.synchronizeBuffered(i),i}async signalSegmentComplete(e){if(this._pendingOperations.length>0){let{promise:t}=this._pendingOperations[this._pendingOperations.length-1];this._addToOperationQueue(t,{type:2,value:e});try{await t}catch(r){}}this._segmentInventory.completeSegment(e)}getPendingOperations(){return this._pendingOperations.map(e=>e.operation)}dispose(){try{c.debug(\"AVSB: Calling `dispose` on the SourceBufferInterface\"),this._sourceBuffer.dispose()}catch(e){c.debug(`AVSB: Failed to dispose a ${this.bufferType} SourceBufferInterface:`,e instanceof Error?e:\"\")}}_getActualDataToPush(e){let t=[];if(e.initSegmentUniqueId!==null&&!this._isLastInitSegment(e.initSegmentUniqueId)){let r=this._initSegmentsMap.get(e.initSegmentUniqueId);if(r===void 0)throw new Error(\"Invalid initialization segment uniqueId\");let i=new ArrayBuffer(r.byteLength),a=new Uint8Array(i);a.set(r instanceof ArrayBuffer?new Uint8Array(r):new Uint8Array(r.buffer)),r=a,t.push(r),this._lastInitSegmentUniqueId=e.initSegmentUniqueId}return e.chunk!==null&&t.push(e.chunk),t}_isLastInitSegment(e){return this._lastInitSegmentUniqueId===null?!1:this._lastInitSegmentUniqueId===e}_addToOperationQueue(e,t){let r={operation:t,promise:e};this._pendingOperations.push(r);let i=()=>{let a=this._pendingOperations.indexOf(r);a>=0&&this._pendingOperations.splice(a,1)};e.then(i,i)}};function ko(n){if(b.CURRENT_ENV!==b.PRODUCTION&&(typeof n!=\"object\"||n!==null&&!(n instanceof ArrayBuffer)&&!(n.buffer instanceof ArrayBuffer)))throw new Error(\"Invalid data given to the AudioVideoSegmentSink\")}var ur=un;var dn=class extends kt{constructor(e){c.debug(\"HTSB: Creating TextSegmentSink\"),super(),this.bufferType=\"text\",this._sender=e,this._pendingOperations=[],this._sender.reset()}declareInitSegment(e){c.warn(\"HTSB: Declaring initialization segment for Text SegmentSink\",e)}freeInitSegment(e){c.warn(\"HTSB: Freeing initialization segment for Text SegmentSink\",e)}async pushChunk(e){let{data:t}=e;Qu(t.chunk);let r=this._sender.pushTextData(Me(Se({},t),{chunk:t.chunk}));this._addToOperationQueue(r,{type:0,value:e});let i=await r;return e.inventoryInfos!==null&&this._segmentInventory.insertChunk(e.inventoryInfos,!0,N()),this._segmentInventory.synchronizeBuffered(i),i}async removeBuffer(e,t){let r=this._sender.remove(e,t);this._addToOperationQueue(r,{type:1,value:{start:e,end:t}});let i=await r;return this._segmentInventory.synchronizeBuffered(i),i}async signalSegmentComplete(e){if(this._pendingOperations.length>0){let{promise:t}=this._pendingOperations[this._pendingOperations.length-1];this._addToOperationQueue(t,{type:2,value:e});try{await t}catch(r){}}this._segmentInventory.completeSegment(e)}getPendingOperations(){return this._pendingOperations.map(e=>e.operation)}dispose(){c.debug(\"HTSB: Disposing TextSegmentSink\"),this._sender.reset()}_addToOperationQueue(e,t){let r={operation:t,promise:e};this._pendingOperations.push(r);let i=()=>{let a=this._pendingOperations.indexOf(r);a>=0&&this._pendingOperations.splice(a,1)};e.then(i,i)}};function Qu(n){if(b.CURRENT_ENV!==b.PRODUCTION&&(typeof n!=\"object\"||n===null||typeof n.data!=\"string\"||typeof n.type!=\"string\"||n.language!==void 0&&typeof n.language!=\"string\"||n.start!==void 0&&typeof n.start!=\"number\"||n.end!==void 0&&typeof n.end!=\"number\"))throw new Error(\"Invalid format given to a TextSegmentSink\")}b.CURRENT_ENV===b.DEV&&(Xu=function(e){function t(r){}});var Xu;var Mo=dn;function ht(n,e){let t;return new Promise((r,i)=>{if(n.cancellationError!==null)return i(n.cancellationError);let a=!1;t=e(function(u){n.deregister(o),a=!0,r(u)},function(u){n.deregister(o),a=!0,i(u)}),a||n.register(o);function o(s){t!==void 0&&t(),i(s)}})}var $u=[\"audio\",\"video\",\"text\"],ln=class n{static isNative(e){return Oo(e)}constructor(e,t,r){this._mediaSource=e,this._textInterface=r,this._hasVideo=t,this._initializedSegmentSinks={},this._onNativeBufferAddedOrDisabled=[]}getBufferTypes(){let e=this.getNativeBufferTypes();return this._textInterface!==null&&e.push(\"text\"),e}getNativeBufferTypes(){return this._hasVideo?[\"video\",\"audio\"]:[\"audio\"]}getStatus(e){let t=this._initializedSegmentSinks[e];return t===void 0?{type:\"uninitialized\"}:t===null?{type:\"disabled\"}:{type:\"initialized\",value:t}}waitForUsableBuffers(e){return this._areNativeBuffersUsable()?Promise.resolve():ht(e,t=>{let r,i=()=>{let a=this._onNativeBufferAddedOrDisabled.indexOf(r);a>=0&&this._onNativeBufferAddedOrDisabled.splice(a,1)};return r=()=>{this._areNativeBuffersUsable()&&(i(),t())},this._onNativeBufferAddedOrDisabled.push(r),i})}disableSegmentSink(e){let t=this._initializedSegmentSinks[e];if(t===null){c.warn(`SBS: The ${e} SegmentSink was already disabled.`);return}if(t!==void 0)throw new Error(\"Cannot disable an active SegmentSink.\");this._initializedSegmentSinks[e]=null,n.isNative(e)&&this._onNativeBufferAddedOrDisabled.forEach(r=>r())}createSegmentSink(e,t){let r=this._initializedSegmentSinks[e];if(Oo(e)){if(!C(r))return r instanceof ur&&r.codec!==t?c.warn(\"SB: Reusing native SegmentSink with codec\",r.codec,\"for codec\",t):c.info(\"SB: Reusing native SegmentSink with codec\",t),r;c.info(\"SB: Adding native SegmentSink with codec\",t);let a=e===\"audio\"?\"audio\":\"video\",o=new ur(a,t,this._mediaSource);return this._initializedSegmentSinks[e]=o,this._onNativeBufferAddedOrDisabled.forEach(s=>s()),o}if(!C(r))return c.info(\"SB: Reusing a previous custom SegmentSink for the type\",e),r;let i;if(e===\"text\"){if(c.info(\"SB: Creating a new text SegmentSink\"),this._textInterface===null)throw new Error(\"HTML Text track feature not activated\");return i=new Mo(this._textInterface),this._initializedSegmentSinks.text=i,i}throw c.error(\"SB: Unknown buffer type:\",e),new Y(\"BUFFER_TYPE_UNKNOWN\",\"The player wants to create a SegmentSink of an unknown type.\")}disposeSegmentSink(e){let t=this._initializedSegmentSinks[e];if(C(t)){c.warn(\"SB: Trying to dispose a SegmentSink that does not exist\");return}c.info(\"SB: Aborting SegmentSink\",e),t.dispose(),delete this._initializedSegmentSinks[e]}disposeAll(){$u.forEach(e=>{this.getStatus(e).type===\"initialized\"&&this.disposeSegmentSink(e)})}_areNativeBuffersUsable(){let e=this.getNativeBufferTypes();return!(e.some(i=>this._initializedSegmentSinks[i]===void 0)||e.every(i=>this._initializedSegmentSinks[i]===null))}};function Oo(n){return n===\"audio\"||n===\"video\"}var ot=ln;function fn(n,e){return ht(e,t=>{let r=setTimeout(()=>t(),n);return()=>clearTimeout(r)})}var mn=class extends re{constructor(e,t,r,i){super(),this._content=e,this._currentCanceller=null,this._downloadQueue=t,this._initSegmentRequest=null,this._mediaSegmentRequest=null,this._segmentFetcher=r,this._initSegmentInfoRef=new H(void 0),this._mediaSegmentAwaitingInitMetadata=null,i||this._initSegmentInfoRef.setValue(null)}getRequestedInitSegment(){return this._initSegmentRequest===null?null:this._initSegmentRequest.segment}getRequestedMediaSegment(){return this._mediaSegmentRequest===null?null:this._mediaSegmentRequest.segment}start(){this._currentCanceller===null&&(this._currentCanceller=new W,this._downloadQueue.onUpdate(e=>{let{segmentQueue:t}=e;if(t.length>0&&t[0].segment.id===this._mediaSegmentAwaitingInitMetadata)return;let r=this._mediaSegmentRequest;if(t.length===0){if(r===null)return;c.debug(\"Stream: no more media segment to request. Cancelling queue.\",this._content.adaptation.type),this._restartMediaSegmentDownloadingQueue();return}else if(r===null){c.debug(\"Stream: Media segments now need to be requested. Starting queue.\",this._content.adaptation.type,t.length),this._restartMediaSegmentDownloadingQueue();return}else{let i=t[0];if(r.segment.id!==i.segment.id){c.debug(\"Stream: Next media segment changed, cancelling previous\",this._content.adaptation.type),this._restartMediaSegmentDownloadingQueue();return}r.priority!==i.priority&&(c.debug(\"Stream: Priority of next media segment changed, updating\",this._content.adaptation.type,r.priority,i.priority),this._segmentFetcher.updatePriority(r.request,i.priority));return}},{emitCurrentValue:!0,clearSignal:this._currentCanceller.signal}),this._downloadQueue.onUpdate(e=>{var r;let t=this._initSegmentRequest;if(e.initSegment!==null&&t!==null){e.initSegment.priority!==t.priority&&this._segmentFetcher.updatePriority(t.request,e.initSegment.priority);return}else if(((r=e.initSegment)==null?void 0:r.segment.id)===(t==null?void 0:t.segment.id))return;e.initSegment===null&&c.debug(\"Stream: no more init segment to request. Cancelling queue.\",this._content.adaptation.type),this._restartInitSegmentDownloadingQueue(e.initSegment)},{emitCurrentValue:!0,clearSignal:this._currentCanceller.signal}))}stop(){var e;(e=this._currentCanceller)==null||e.cancel(),this._currentCanceller=null}_restartMediaSegmentDownloadingQueue(){this._mediaSegmentRequest!==null&&this._mediaSegmentRequest.canceller.cancel();let{segmentQueue:e}=this._downloadQueue.getValue(),t=e[0],r=i=>{if(this._currentCanceller!==null&&this._currentCanceller.isUsed()){this._mediaSegmentRequest=null;return}if(i===void 0){this._mediaSegmentRequest=null,this.trigger(\"emptyQueue\",null);return}let a=new W,o=this._currentCanceller===null?B:a.linkToSignal(this._currentCanceller.signal),{segment:s,priority:u}=i,d=G({segment:s},this._content),m=!1,f=!1;a.signal.register(()=>{this._mediaSegmentRequest=null,!m&&(this._mediaSegmentAwaitingInitMetadata===s.id&&(this._mediaSegmentAwaitingInitMetadata=null),m=!0,f=!1)});let l=h=>{pe(h.segmentType===\"media\",\"Should have loaded a media segment.\"),this.trigger(\"parsedMediaSegment\",G({},h,{segment:s}))},p=()=>{let h=this._downloadQueue.getValue().segmentQueue;if(h.length===0){m=!0,this.trigger(\"emptyQueue\",null);return}else h[0].segment.id===s.id&&h.shift();m=!0,r(h[0])},g=this._segmentFetcher.createRequest(d,u,{onRetry:h=>{this.trigger(\"requestRetry\",{segment:s,error:h})},beforeInterrupted(){c.info(\"Stream: segment request interrupted temporarly.\",s.id,s.time)},onChunk:h=>{let I=this._initSegmentInfoRef.getValue();I!==void 0?l(h(I!=null?I:void 0)):(f=!0,this._initSegmentInfoRef.waitUntilDefined(y=>{l(h(y!=null?y:void 0))},{clearSignal:a.signal}))},onAllChunksReceived:()=>{f?(this._mediaSegmentAwaitingInitMetadata=s.id,this._initSegmentInfoRef.waitUntilDefined(()=>{this._mediaSegmentAwaitingInitMetadata=null,f=!1,this.trigger(\"fullyLoadedSegment\",s)},{clearSignal:a.signal})):this.trigger(\"fullyLoadedSegment\",s)},beforeEnded:()=>{o(),this._mediaSegmentRequest=null,f?this._initSegmentInfoRef.waitUntilDefined(p,{clearSignal:a.signal}):p()}},a.signal);g.catch(h=>{o(),m||(m=!0,this.stop(),this.trigger(\"error\",h))}),this._mediaSegmentRequest={segment:s,priority:u,request:g,canceller:a}};r(t)}_restartInitSegmentDownloadingQueue(e){if(this._currentCanceller!==null&&this._currentCanceller.isUsed()||(this._initSegmentRequest!==null&&this._initSegmentRequest.canceller.cancel(),e===null))return;let t=new W,r=this._currentCanceller===null?B:t.linkToSignal(this._currentCanceller.signal),{segment:i,priority:a}=e,o=G({segment:i},this._content),s=!1,u=this._segmentFetcher.createRequest(o,a,{onRetry:d=>{this.trigger(\"requestRetry\",{segment:i,error:d})},beforeInterrupted:()=>{c.info(\"Stream: init segment request interrupted temporarly.\",i.id)},beforeEnded:()=>{r(),this._initSegmentRequest=null,s=!0},onChunk:d=>{var f;let m=d(void 0);pe(m.segmentType===\"init\",\"Should have loaded an init segment.\"),this.trigger(\"parsedInitSegment\",G({},m,{segment:i})),m.segmentType===\"init\"&&this._initSegmentInfoRef.setValue((f=m.initTimescale)!=null?f:null)},onAllChunksReceived:()=>{this.trigger(\"fullyLoadedSegment\",i)}},t.signal);u.catch(d=>{r(),s||(s=!0,this.stop(),this.trigger(\"error\",d))}),t.signal.register(()=>{this._initSegmentRequest=null,!s&&(s=!0)}),this._initSegmentRequest={segment:i,priority:a,request:u,canceller:t}}};function xi(n,e,t,r,i){let{period:a,adaptation:o,representation:s}=n,u=Zu(i,e);if(u===null){if(t===null){if(r&&a.end!==void 0&&e.end>=a.end)return{start:void 0,end:null};let f=s.index.checkDiscontinuity(e.start);if(f!==null)return{start:void 0,end:f}}return null}let d=i[u];if(d.bufferedStart!==void 0&&d.bufferedStart>e.start&&(t===null||d.infos.segment.end<=t)){let f=d.bufferedStart;return!r&&s.index.awaitSegmentBetween(e.start,f)!==!1?null:(c.debug(\"RS: current discontinuity encountered\",o.type,d.bufferedStart),{start:void 0,end:f})}let m=Ju(i,e,u+1);if(m!==null){let f=i[m-1],l=i[m];if(t===null||l.infos.segment.end<=t){if(!r&&s.index.awaitSegmentBetween(f.infos.segment.end,l.infos.segment.time)!==!1)return null;let p=f.bufferedEnd,g=l.bufferedStart;return c.debug(\"RS: future discontinuity encountered\",o.type,p,g),{start:p,end:g}}}if(t===null){if(r&&a.end!==void 0){if(e.end<a.end)return null;let f=ed(i,a.end);if(f!==null){let l=i[f];if(l.bufferedEnd!==void 0&&l.bufferedEnd<a.end)return c.debug(\"RS: discontinuity encountered at the end of the current period\",o.type,l.bufferedEnd,a.end),{start:l.bufferedEnd,end:null}}}if(a.end!==void 0&&e.end>=a.end)return null;for(let f=i.length-1;f>=0;f--){let l=i[f];if(l.bufferedStart===void 0)break;if(l.bufferedStart<e.end){if(l.bufferedEnd!==void 0&&l.bufferedEnd<e.end){let p=s.index.checkDiscontinuity(e.end);if(p!==null)return{start:l.bufferedEnd,end:p}}return null}}}return null}function Zu(n,e){for(let t=0;t<n.length;t++){let r=n[t];if(r.bufferedStart===void 0||r.bufferedEnd===void 0||r.bufferedStart>=e.end)return null;if(r.bufferedEnd>e.start)return t}return null}function Ju(n,e,t){if(t<=0)return c.error(\"RS: Asked to check a discontinuity before the first chunk.\"),null;for(let r=t;r<n.length;r++){let i=n[r],a=n[r-1];if(i.bufferedStart===void 0||a.bufferedEnd===void 0||i.bufferedStart>=e.end)return null;if(i.bufferedStart-a.bufferedEnd>0)return r}return null}function ed(n,e){for(let t=n.length-1;t>=0;t--){let r=n[t];if(r.bufferedStart===void 0)return null;if(r.bufferedStart<e)return t}return null}function ki({bufferedSegments:n,content:e,currentPlaybackTime:t,fastSwitchThreshold:r,getBufferedHistory:i,neededRange:a,segmentsBeingPushed:o,maxBufferSize:s}){let{adaptation:u,representation:d}=e,m=td(n,o,s),f=d.index.getSegments(a.start,a.end-a.start),l=n.filter(E=>!wo(E.infos,e,t,r)).filter((E,v,R)=>{let M=v===0?null:R[v-1],_=v>=R.length-1?null:R[v+1],A=null;if(id(E,M,a.start)){if(A=i(E.infos),od(A,E.bufferedStart))return!1;c.debug(\"Stream: skipping segment gc-ed at the start\",E.start,E.bufferedStart)}if(ad(E,_,a.end)){if(A=A!=null?A:i(E.infos),sd(A,E.bufferedEnd))return!1;c.debug(\"Stream: skipping segment gc-ed at the end\",E.end,E.bufferedEnd)}return!0}),{MINIMUM_SEGMENT_SIZE:p,MIN_BUFFER_AHEAD:g}=L.getCurrent(),h=!1,I=Math.min(1/60,p),y=!1,T=[];return{segmentsToLoad:f.filter(E=>{let v=G({segment:E},e);if(o.length>0&&o.some(D=>Ve(v,D)))return!1;let{duration:R,time:M,end:_}=E;if(E.isInit)return!0;if(h)return T.push(E),!1;if(E.complete&&R<p||o.length>0&&o.some(D=>{if(D.period.id!==e.period.id||D.adaptation.id!==e.adaptation.id)return!1;let{segment:w}=D;return w.time-I>M||w.end+I<_?!1:!wo(D,v,t,r)}))return!1;for(let x=0;x<l.length;x++){let D=l[x];if(D.infos.period.id===e.period.id){let O=D.infos.segment;if(M-O.time>-I&&O.end-_>-I)return!1}}let A=R*e.representation.bitrate;if(m-A<0&&(y=!0,M>a.start+g))return h=!0,T.push(E),!1;let k=i(v);if(k.length>1){let x=k[k.length-1],D=k[k.length-2];if(x.buffered===null&&D.buffered===null)return c.warn(\"Stream: Segment GCed multiple times in a row, ignoring it.\",\"If this happens a lot and lead to unpleasant experience, please check your device's available memory. If it's low when this message is emitted, you might want to update the RxPlayer's settings (`maxBufferAhead`, `maxVideoBufferSize` etc.) so less memory is used by regular media data buffering.\"+u.type,d.id,E.time),!1}for(let x=0;x<l.length;x++){let D=l[x];if(D.end+I>M){let w=D.start>M+I||nd(l,x).end<_-I;return w&&(m-=A),w}}return m-=A,!0}),segmentsOnHold:T,isBufferFull:y}}function td(n,e,t){let r=t*8e3;return r-=e.reduce((i,a)=>{let{bitrate:o}=a.representation,{duration:s}=a.segment;return i+o*s},0),n.reduce((i,a)=>a.chunkSize!==void 0?i-a.chunkSize*8:i,r)}function nd(n,e){let t=e+1,{MINIMUM_SEGMENT_SIZE:r}=L.getCurrent(),i=Math.min(1/60,r);for(;t<n.length-1&&n[t-1].end+i>n[t].start;)t++;return t--,n[t]}function wo(n,e,t,r){let{CONTENT_REPLACEMENT_PADDING:i}=L.getCurrent();if(n.period.id!==e.period.id)return!1;let{segment:a}=n;return a.time<t+i?!1:n.adaptation.id!==e.adaptation.id?!0:rd(n.representation,e.representation,r)}function rd(n,e,t){let r=n.bitrate,{BITRATE_REBUFFERING_RATIO:i}=L.getCurrent();if(t===void 0){let a=r*i;return e.bitrate>a}return r<t&&e.bitrate>r}function id(n,e,t){let{MAX_TIME_MISSING_FROM_COMPLETE_SEGMENT:r}=L.getCurrent();return n.bufferedStart===void 0||e!==null&&e.bufferedEnd!==void 0&&n.bufferedStart-e.bufferedEnd<.1?!1:t<n.bufferedStart&&n.bufferedStart-n.start>r?(c.info(\"Stream: The start of the wanted segment has been garbage collected\",n.start,n.bufferedStart),!0):!1}function ad(n,e,t){let{MAX_TIME_MISSING_FROM_COMPLETE_SEGMENT:r}=L.getCurrent();return n.bufferedEnd===void 0||e!==null&&e.bufferedStart!==void 0&&e.bufferedStart-n.bufferedEnd<.1?!1:t>n.bufferedEnd&&n.end-n.bufferedEnd>r?(c.info(\"Stream: The end of the wanted segment has been garbage collected\",n.end,n.bufferedEnd),!0):!1}function od(n,e){var o,s;if(n.length<2)return!0;let r=(o=n[n.length-1].buffered)==null?void 0:o.start;if(e!==void 0&&r!==void 0&&e-r>.05)return!0;let a=(s=n[n.length-2].buffered)==null?void 0:s.start;return a===void 0||r===void 0?!0:Math.abs(a-r)>.01}function sd(n,e){var o,s;if(n.length<2)return!0;let r=(o=n[n.length-1].buffered)==null?void 0:o.end;if(e!==void 0&&r!==void 0&&r-e>.05)return!0;let a=(s=n[n.length-2].buffered)==null?void 0:s.end;return a===void 0||r===void 0?!0:Math.abs(a-r)>.01}function cn(n,e){let t=n-e,{SEGMENT_PRIORITIES_STEPS:r}=L.getCurrent();for(let i=0;i<r.length;i++)if(t<r[i])return i;return r.length}function Mi(n,e,t,r,i,a,o){var _,A,k;let{representation:s}=n,u=(A=(_=t.getIsPaused())!=null?_:t.getReference().getValue().paused.pending)!=null?A:t.getReference().getValue().paused.last,d=(k=t.getPlaybackRate())!=null?k:t.getReference().getValue().speed,m=e;(u===void 0||d===void 0||u||d<=0)&&(m-=.1);let f=ud(n,m,i),l=s.index.shouldRefresh(f.start,f.end),p=o.getPendingOperations().filter(x=>x.type===2).map(x=>x.value),g=ld({start:Math.max(f.start-.5,0),end:f.end+.5},o.getLastKnownInventory()),h=t.getCurrentTime();h===void 0&&(h=t.getReference().getValue().position.getWanted());let I=o.getSegmentHistory.bind(o),{segmentsToLoad:y,segmentsOnHold:T,isBufferFull:P}=ki({content:n,bufferedSegments:g,currentPlaybackTime:h,fastSwitchThreshold:r,getBufferedHistory:I,neededRange:f,segmentsBeingPushed:p,maxBufferSize:a}),E=y.map(x=>({priority:cn(x.time,m),segment:x})),v=s.index.isInitialized()&&!s.index.isStillAwaitingFutureSegments()&&f.hasReachedPeriodEnd&&E.length===0&&T.length===0,R=null;return p.length>0&&(R=Math.min(...p.map(x=>x.segment.time))),T.length>0&&(R=R!==null?Math.min(R,T[0].time):T[0].time),E.length>0&&(R=R!==null?Math.min(R,E[0].segment.time):E[0].segment.time),{imminentDiscontinuity:xi(n,f,R,v,g),hasFinishedLoading:v,neededSegments:E,isBufferFull:P,shouldRefreshManifest:l}}function ud(n,e,t){var f;let r,{manifest:i,period:a,representation:o}=n,s=o.index.getLastAvailablePosition(),u=o.index;!C(s)&&ot.isNative(n.adaptation.type)&&e>=s&&u.isInitialized()&&!u.isStillAwaitingFutureSegments()&&dd(i,a,e)?r=s-1:r=e-.1;let d=r+t,m;return!o.index.isInitialized()||o.index.isStillAwaitingFutureSegments()||a.end===void 0?m=!1:s===void 0?m=d>=a.end:s===null?m=!0:m=d>=s,{start:Math.max(r,a.start),end:Math.min(d,(f=a.end)!=null?f:1/0),hasReachedPeriodEnd:m}}function dd(n,e,t){var i;let r=n.getPeriodAfter(e);return e.containsTime(t,r)&&n.isLastPeriodKnown&&e.id===((i=n.periods[n.periods.length-1])==null?void 0:i.id)}function ld(n,e){let{MINIMUM_SEGMENT_SIZE:t}=L.getCurrent(),r=Math.max(1/60,t),i=n.start+r,a=n.end-r,o=[];for(let s=e.length-1;s>=0;s--){let u=e[s],{representation:d}=u.infos;if(u.status===1&&d.decipherable!==!1&&d.isSupported!==!1){let m=u.infos.segment,f=m.time/m.timescale;((m.complete?f+m.duration/m.timescale:u.end)>i&&f<a||u.end>i&&u.start<a)&&o.unshift(u)}}return o}function Oi(n){return new Promise(e=>{setTimeout(e,n)})}async function pn(n,e,t,r,i){try{return await e.pushChunk(t)}catch(a){if(i.isCancelled()&&a instanceof ne)throw a;if(!(a instanceof Te)||!a.isBufferFull){let u=a instanceof Error?a.toString():\"An unknown error happened when pushing content\";throw new Y(\"BUFFER_APPEND_ERROR\",u,{tracks:[Je(t.inventoryInfos.adaptation)]})}let{position:o}=n.getReference().getValue(),s=o.getWanted();try{c.warn(\"Stream: Running garbage collector\");let u=Math.max(s-5,0),d=s+r.getValue()+12;if(await e.removeBuffer(0,u),await e.removeBuffer(d,Number.MAX_VALUE),await Oi(200),i.cancellationError!==null)throw i.cancellationError;return await e.pushChunk(t)}catch(u){if(u instanceof ne)throw u;let d=u instanceof Error?u.toString():\"Could not clean the buffer\";throw new Y(\"BUFFER_FULL_ERROR\",d,{tracks:[Je(t.inventoryInfos.adaptation)]})}}}async function wi({playbackObserver:n,content:e,initSegmentUniqueId:t,segment:r,segmentSink:i,bufferGoal:a},o){if(o.cancellationError!==null)throw o.cancellationError;let s=e.representation.getMimeTypeString(),u={initSegmentUniqueId:t,chunk:null,timestampOffset:0,appendWindow:[void 0,void 0],codec:s},d=G({segment:r,chunkSize:void 0,start:0,end:0},e),m=await pn(n,i,{data:u,inventoryInfos:d},a,o);return{content:e,segment:r,buffered:m}}async function Di({playbackObserver:n,bufferGoal:e,content:t,initSegmentUniqueId:r,parsedSegment:i,segment:a,segmentSink:o},s){var R,M;if(i.chunkData===null)return null;if(s.cancellationError!==null)throw s.cancellationError;let{chunkData:u,chunkInfos:d,chunkOffset:m,chunkSize:f,appendWindow:l}=i,p=t.representation.getMimeTypeString(),{APPEND_WINDOW_SECURITIES:g}=L.getCurrent(),h=[l[0]!==void 0?Math.max(0,l[0]-g.START):void 0,l[1]!==void 0?l[1]+g.END:void 0],I={initSegmentUniqueId:r,chunk:u,timestampOffset:m,appendWindow:h,codec:p},y=(R=d==null?void 0:d.time)!=null?R:a.time,T=(M=d==null?void 0:d.duration)!=null?M:a.duration,P=y+T;h[0]!==void 0&&(y=Math.max(y,h[0])),h[1]!==void 0&&(P=Math.min(P,h[1]));let E=G({segment:a,chunkSize:f,start:y,end:P},t),v=await pn(n,o,{data:I,inventoryInfos:E},e,s);return{content:t,segment:a,buffered:v}}function Bi({content:n,options:e,playbackObserver:t,segmentSink:r,segmentFetcher:i,terminate:a},o,s){let{period:u,adaptation:d,representation:m}=n,{bufferGoal:f,maxBufferSize:l,drmSystemId:p,fastSwitchThreshold:g}=e,h=d.type,I=new W;I.linkToSignal(s);let y=new W;y.linkToSignal(I.signal);let T={segment:m.index.getInitSegment(),uniqueId:null,isLoaded:!1};I.signal.register(()=>{T.uniqueId!==null&&r.freeInitSegment(T.uniqueId)});let P=new H({initSegment:null,segmentQueue:[]},y.signal),E=T.segment!==null;E||(T.isLoaded=!0);let v=!1;if(p!==void 0){let k=m.getEncryptionData(p);if(k.length>0&&k.every(x=>x.keyIds!==void 0)&&(v=!0,o.encryptionDataEncountered(k.map(x=>G({content:n},x))),I.isUsed()))return}let R=new mn(n,P,i,E);R.addEventListener(\"error\",k=>{y.signal.isCancelled()||(I.cancel(),o.error(k))}),R.addEventListener(\"parsedInitSegment\",_),R.addEventListener(\"parsedMediaSegment\",_),R.addEventListener(\"emptyQueue\",M),R.addEventListener(\"requestRetry\",k=>{if(o.warning(k.error),y.signal.isCancelled())return;let x=k.segment,{index:D}=m;D.isSegmentStillAvailable(x)===!1?M():D.canBeOutOfSyncError(k.error,x)&&o.manifestMightBeOufOfSync()}),R.addEventListener(\"fullyLoadedSegment\",k=>{r.signalSegmentComplete(G({segment:k},n)).catch(A)}),R.start(),y.signal.register(()=>{R.removeEventListener(),R.stop()}),t.listen(M,{includeLastObservation:!1,clearSignal:y.signal}),n.manifest.addEventListener(\"manifestUpdate\",M,y.signal),f.onUpdate(M,{emitCurrentValue:!1,clearSignal:y.signal}),l.onUpdate(M,{emitCurrentValue:!1,clearSignal:y.signal}),a.onUpdate(M,{emitCurrentValue:!1,clearSignal:y.signal}),M();return;function M(){if(y.isUsed())return;let k=t.getReference().getValue(),x=k.position.getWanted(),D=Mi(n,x,t,g.getValue(),f.getValue(),l.getValue(),r),{neededSegments:w}=D,O=null;if(m.index.isInitialized()){if(w.length>0&&!T.isLoaded&&T.segment!==null){let q=w[0].priority;O={segment:T.segment,priority:q}}}else if(T.segment===null)c.warn(\"Stream: Uninitialized index without an initialization segment\");else if(T.isLoaded)c.warn(\"Stream: Uninitialized index with an already loaded initialization segment\");else{let q=k.position.getWanted();O={segment:T.segment,priority:cn(u.start,q)}}let U=a.getValue();if(U===null)P.setValue({initSegment:O,segmentQueue:w});else if(U.urgent){c.debug(\"Stream: Urgent switch, terminate now.\",h),P.setValue({initSegment:null,segmentQueue:[]}),P.finish(),y.cancel(),o.terminating();return}else{let q=w[0],Z=R.getRequestedInitSegment(),X=R.getRequestedMediaSegment(),V=X===null||q===void 0||X.id!==q.segment.id?[]:[q],Q=Z===null?null:O;if(P.setValue({initSegment:Q,segmentQueue:V}),V.length===0&&Q===null){c.debug(\"Stream: No request left, terminate\",h),P.finish(),y.cancel(),o.terminating();return}}if(o.streamStatusUpdate({period:u,position:k.position.getWanted(),bufferType:h,imminentDiscontinuity:D.imminentDiscontinuity,isEmptyStream:!1,hasFinishedLoading:D.hasFinishedLoading,neededSegments:D.neededSegments}),y.signal.isCancelled())return;let{UPTO_CURRENT_POSITION_CLEANUP:z}=L.getCurrent();if(D.isBufferFull){let q=Math.max(0,x-z);q>0&&r.removeBuffer(0,q).catch(A)}D.shouldRefreshManifest&&o.needsManifestRefresh()}function _(k){if(!I.isUsed()){for(let x of k.protectionData)m.addProtectionData(x.initDataType,x.keyId,x.initData);if(!v){let x=m.getAllEncryptionData();if(x.length>0&&(o.encryptionDataEncountered(x.map(D=>G({content:n},D))),v=!0,I.isUsed()))return}if(k.segmentType===\"init\"){if(!m.index.isInitialized()&&k.segmentList!==void 0&&m.index.initialize(k.segmentList),T.isLoaded=!0,k.initializationData!==null){let x=m.uniqueId;T.uniqueId=x,r.declareInitSegment(x,k.initializationData),wi({playbackObserver:t,bufferGoal:f,content:n,initSegmentUniqueId:x,segment:k.segment,segmentData:k.initializationData,segmentSink:r},I.signal).then(D=>{D!==null&&o.addedSegment(D)}).catch(A)}M();return}else{let{inbandEvents:x,predictedSegments:D,needsManifestRefresh:w}=k;if(D!==void 0&&m.index.addPredictedSegments(D,k.segment),w===!0&&(o.needsManifestRefresh(),I.isUsed())||x!==void 0&&x.length>0&&(o.inbandEvent(x),I.isUsed()))return;let O=T.uniqueId;Di({playbackObserver:t,bufferGoal:f,content:n,initSegmentUniqueId:O,parsedSegment:k,segment:k.segment,segmentSink:r},I.signal).then(U=>{U!==null&&o.addedSegment(U)}).catch(A)}}}function A(k){I.isUsed()&&k instanceof ne||(I.cancel(),o.error(k))}}var Do=Bi;function Ui(n,e,t,r,i){var l,p,g,h;if(t.switchingMode===\"lazy\")return{type:\"continue\",value:void 0};let a=r.getLastKnownInventory(),o=[];for(let I of a)I.infos.period.id===n.id&&(I.infos.adaptation.id!==e.id||!oe(t.representationIds,I.infos.representation.id))&&Ct(o,{start:(l=I.bufferedStart)!=null?l:I.start,end:(p=I.bufferedEnd)!=null?p:I.end});let s=r.getPendingOperations();for(let I of s)if(I.type===0){let y=I.value.inventoryInfos;if(y.period.id===n.id&&(y.adaptation.id!==e.id||!oe(t.representationIds,y.representation.id))){let T=y.segment.time,P=T+y.segment.duration;Ct(o,{start:T,end:P})}}if(o.length===0)return{type:\"continue\",value:void 0};if(t.switchingMode===\"reload\"){let I=i.getReadyState();if(I===void 0||I>1)return{type:\"needs-reload\",value:void 0}}let u=t.switchingMode===\"direct\",d=[],m=At(a,n);if(m!==null&&(m.bufferedEnd===void 0||n.start-m.bufferedEnd<1)&&d.push({start:0,end:n.start+1}),!u){let{ADAP_REP_SWITCH_BUFFER_PADDINGS:I}=L.getCurrent(),y=e.type,T=(g=I[y].before)!=null?g:0,P=(h=I[y].after)!=null?h:0,E=i.getCurrentTime();E===void 0&&(E=i.getReference().getValue().position.getPolled()),d.push({start:E-T,end:E+P})}if(n.end!==void 0){let I=xt(a,n);I!==null&&(I.bufferedStart===void 0||I.bufferedStart-n.end<1)&&d.push({start:n.end-1,end:Number.MAX_VALUE})}let f=ar(o,d);return f.length===0?{type:\"continue\",value:void 0}:u?{type:\"flush-buffer\",value:f}:{type:\"clean-buffer\",value:f}}function Li({playbackObserver:n,content:e,options:t,representationEstimator:r,segmentSink:i,segmentFetcherCreator:a,wantedBufferAhead:o,maxVideoBufferSize:s},u,d){let{manifest:m,period:f,adaptation:l}=e,p=new W;p.linkToSignal(d);let g=new Map,h=new H(null,p.signal),I,y=e.representations.getValue().representationIds,T=e.adaptation.representations.filter(w=>oe(y,w.id)&&w.decipherable!==!1&&w.isSupported!==!1),P=new H(T,p.signal),{estimates:E,callbacks:v}=r({manifest:m,period:f,adaptation:l},h,P,n,p.signal),R=a.createSegmentFetcher(l.type,{onRequestBegin:v.requestBegin,onRequestEnd:v.requestEnd,onProgress:v.requestProgress,onMetrics:v.metrics}),M=new H(0);E.onUpdate(({bitrate:w,knownStableBitrate:O})=>{t.enableFastSwitching&&M.setValueIfChanged(O),!(w===void 0||w===I)&&(I=w,c.debug(`Stream: new ${l.type} bitrate estimate`,w),u.bitrateEstimateChange({type:l.type,bitrate:w}))},{emitCurrentValue:!0,clearSignal:p.signal});let _;e.representations.onUpdate(w=>{_!==void 0&&_.cancel();let O=e.representations.getValue().representationIds,U=e.adaptation.representations.filter(z=>oe(O,z.id));P.setValueIfChanged(U),_=new W,_.linkToSignal(p.signal),A(w,_.signal).catch(z=>{(_==null?void 0:_.isUsed())===!0&&W.isCancellationError(z)||(p.cancel(),u.error(z))})},{clearSignal:p.signal,emitCurrentValue:!0});return;async function A(w,O){let U=Ui(f,l,w,i,n);switch(U.type){case\"continue\":break;case\"needs-reload\":return pt(()=>{n.listen(()=>{if(O.isCancelled())return;let{DELTA_POSITION_AFTER_RELOAD:z}=L.getCurrent(),q=z.bitrateSwitch;return u.waitingMediaSourceReload({bufferType:l.type,period:f,timeOffset:q,stayInPeriod:!0})},{includeLastObservation:!0,clearSignal:O})});case\"flush-buffer\":case\"clean-buffer\":for(let z of U.value)if(await i.removeBuffer(z.start,z.end),O.isCancelled())return;if(U.type===\"flush-buffer\"&&(u.needsBufferFlush(),O.isCancelled()))return;break;default:qe(U)}k(O)}function k(w){let O=new W;O.linkToSignal(w);let{representation:U}=E.getValue();if(U===null)return;let z=new H(null,O.signal);E.onUpdate(X=>{if(!(X.representation===null||X.representation.id===U.id))return X.urgent?(c.info(\"Stream: urgent Representation switch\",l.type),z.setValue({urgent:!0})):(c.info(\"Stream: slow Representation switch\",l.type),z.setValue({urgent:!1}))},{clearSignal:O.signal,emitCurrentValue:!0});let q={type:l.type,adaptation:l,period:f,representation:U};if(h.setValue(U),p.isUsed()||(u.representationChange(q),p.isUsed()))return;let Z={streamStatusUpdate:u.streamStatusUpdate,encryptionDataEncountered:u.encryptionDataEncountered,manifestMightBeOufOfSync:u.manifestMightBeOufOfSync,needsManifestRefresh:u.needsManifestRefresh,inbandEvent:u.inbandEvent,warning:u.warning,error(X){p.cancel(),u.error(X)},addedSegment(X){v.addedSegment(X)},terminating(){if(!O.isUsed())return O.cancel(),k(w)}};x(U,z,Z,w)}function x(w,O,U,z){let q=new W;q.linkToSignal(z);let Z=Ut(o,Q=>Q*D(w),q.signal),X=l.type===\"video\"?s:new H(1/0);c.info(\"Stream: changing representation\",l.type,w.id,w.bitrate);let V=G({},U,{error(Q){var le;let $=ce(Q,{defaultCode:\"NONE\",defaultReason:\"Unknown `RepresentationStream` error\"});if($.code!==\"BUFFER_FULL_ERROR\")U.error(Q);else{let fe=o.getValue(),ge=((le=g.get(w.id))!=null?le:1)*.7;if(ge<=.05||fe*ge<=2)throw $;g.set(w.id,ge),fn(4e3,p.signal).then(()=>x(w,O,U,z)).catch(B)}},terminating(){q.cancel(),U.terminating()}});Do({playbackObserver:n,content:{representation:w,adaptation:l,period:f,manifest:m},segmentSink:i,segmentFetcher:R,terminate:O,options:{bufferGoal:Z,maxBufferSize:X,drmSystemId:t.drmSystemId,fastSwitchThreshold:M}},V,z),m.addEventListener(\"manifestUpdate\",Q=>{for(let $ of Q.updatedPeriods)if($.period.id===f.id){for(let le of $.result.updatedAdaptations)if(le.adaptation===l.id){for(let fe of le.removedRepresentations)if(fe===w.id)return z.isCancelled()?void 0:u.waitingMediaSourceReload({bufferType:l.type,period:f,timeOffset:0,stayInPeriod:!0})}}else if($.period.start>f.start)break},z)}function D(w){let O=g.get(w.id),U=O!==void 0?O:1;return O===void 0&&g.set(w.id,U),U}}var Bo=Li;function dr(n,e,t){if(typeof String.prototype.startsWith==\"function\")return n.startsWith(e,t);let r=typeof t==\"number\"?Math.max(t,0):0;return n.substring(r,r+e.length)===e}function fd(n,e){let[t,...r]=n.split(\";\"),[i,...a]=e.split(\";\");if(t!==i)return!1;let o=j(r,m=>dr(m,\"codecs=\")),s=j(a,m=>dr(m,\"codecs=\"));if(o===void 0||s===void 0)return!1;let u=o.substring(7),d=s.substring(7);return u.split(\".\")[0]===d.split(\".\")[0]}var Uo=fd;function Ni(n,e,t,r,i,a){var p,g,h,I;if(n.codec!==void 0&&a.onCodecSwitch===\"reload\"&&!md(t,n.codec))return{type:\"needs-reload\",value:void 0};let o=n.getLastKnownInventory(),s=[];for(let y of o)y.infos.period.id===e.id&&y.infos.adaptation.id!==t.id&&Ct(s,{start:(p=y.bufferedStart)!=null?p:y.start,end:(g=y.bufferedEnd)!=null?g:y.end});let u=n.getPendingOperations();for(let y of u)if(y.type===0){let T=y.value.inventoryInfos;if(T.period.id===e.id&&T.adaptation.id!==t.id){let P=T.segment.time,E=P+T.segment.duration;Ct(s,{start:P,end:E})}}if(s.length===0)return{type:\"continue\",value:void 0};if(r===\"reload\"){let y=i.getReadyState();if(y===void 0||y>1)return{type:\"needs-reload\",value:void 0}}let d=r===\"direct\",m=[],f=At(o,e);if(f!==null&&(f.bufferedEnd===void 0||e.start-f.bufferedEnd<1)&&m.push({start:0,end:e.start+1}),!d){let y=t.type,{ADAP_REP_SWITCH_BUFFER_PADDINGS:T}=L.getCurrent(),P=(h=T[y].before)!=null?h:0,E=(I=T[y].after)!=null?I:0,v=i.getCurrentTime();v===void 0&&(v=i.getReference().getValue().position.getPolled()),m.push({start:v-P,end:v+E})}if(e.end!==void 0){let y=xt(o,e);y!==null&&(y.bufferedStart===void 0||y.bufferedStart-e.end<1)&&m.push({start:e.end-1,end:Number.MAX_VALUE})}let l=ar(s,m);return l.length===0?{type:\"continue\",value:void 0}:d&&t.type!==\"text\"?{type:\"flush-buffer\",value:l}:{type:\"clean-buffer\",value:l}}function md(n,e){return n.representations.some(t=>t.isSupported===!0&&t.decipherable!==!1&&Uo(t.getMimeTypeString(),e))}function Fi({bufferType:n,content:e,garbageCollectors:t,playbackObserver:r,representationEstimator:i,segmentFetcherCreator:a,segmentSinksStore:o,options:s,wantedBufferAhead:u,maxVideoBufferSize:d},m,f){let{manifest:l,period:p}=e,g=new H(void 0,f);if(m.periodStreamReady({type:n,manifest:l,period:p,adaptationRef:g}),f.isCancelled())return;let h,I=!0;g.onUpdate(P=>{(async()=>{var w;if(P===void 0)return;let E=new W;if(E.linkToSignal(f),h==null||h.cancel(),h=E,P===null){c.info(`Stream: Set no ${n} Adaptation. P:`,p.start);let O=o.getStatus(n);if(O.type===\"initialized\"){if(c.info(`Stream: Clearing previous ${n} SegmentSink`),ot.isNative(n))return T(0,!0,E.signal);{let U=(w=p.end)!=null?w:1/0;if(p.start>U)c.warn(\"Stream: Can't free buffer: period's start is after its end\");else if(await O.value.removeBuffer(p.start,U),E.isUsed())return}}else if(O.type===\"uninitialized\"&&(o.disableSegmentSink(n),E.isUsed()))return;return m.adaptationChange({type:n,adaptation:null,period:p}),E.isUsed()?void 0:Lo(r,u,n,{period:p},m,E.signal)}let v=p.adaptations[n],R=j(v!=null?v:[],O=>O.id===P.adaptationId);if(R===void 0){h.cancel(),c.warn(\"Stream: Unfound chosen Adaptation choice\",P.adaptationId);return}let{DELTA_POSITION_AFTER_RELOAD:M}=L.getCurrent(),_=!1,A;if(I)A=0;else if(P.relativeResumingPosition!==void 0)A=P.relativeResumingPosition;else switch(_=!0,n){case\"audio\":A=M.trackSwitch.audio;break;case\"video\":A=M.trackSwitch.video;break;default:A=M.trackSwitch.other;break}if(I=!1,ot.isNative(n)&&o.getStatus(n).type===\"disabled\")return T(A,!0,E.signal);l.addEventListener(\"manifestUpdate\",O=>{for(let U of O.updatedPeriods)if(U.period.id===p.id){for(let z of U.result.removedAdaptations)if(z.id===R.id)return T(A,!0,E.signal)}else if(U.period.start>p.start)break},h.signal);let{representations:k}=P;if(c.info(`Stream: Updating ${n} adaptation`,`A: ${R.id}`,`P: ${p.start}`),m.adaptationChange({type:n,adaptation:R,period:p}),E.isUsed())return;let x=cd(o,n,R),D=Ni(x,p,R,P.switchingMode,r,s);if(D.type===\"needs-reload\")return T(A,!0,E.signal);if(await o.waitForUsableBuffers(E.signal),!E.isUsed()){if(D.type===\"flush-buffer\"||D.type===\"clean-buffer\"){for(let{start:O,end:U}of D.value)if(await x.removeBuffer(O,U),E.isUsed())return;if(D.type===\"flush-buffer\"&&(m.needsBufferFlush({relativeResumingPosition:A,relativePosHasBeenDefaulted:_}),E.isUsed()))return}t.get(x)(E.signal),y(R,k,x,E.signal)}})().catch(E=>{E instanceof ne||(h==null||h.cancel(),m.error(E))})},{clearSignal:f,emitCurrentValue:!0});function y(P,E,v,R){let M=gd(r,P.type);Bo({content:{manifest:l,period:p,adaptation:P,representations:E},options:s,playbackObserver:M,representationEstimator:i,segmentSink:v,segmentFetcherCreator:a,wantedBufferAhead:u,maxVideoBufferSize:d},Me(Se({},m),{error:_}),R);function _(A){if(!ot.isNative(n)){c.error(`Stream: ${n} Stream crashed. Aborting it.`,A instanceof Error?A:\"\"),o.disposeSegmentSink(n);let k=ce(A,{defaultCode:\"NONE\",defaultReason:\"Unknown `AdaptationStream` error\"});return m.warning(k),R.isCancelled()?void 0:Lo(r,u,n,{period:p},m,R)}c.error(`Stream: ${n} Stream crashed. Stopping playback.`,A instanceof Error?A:\"\"),m.error(A)}}function T(P,E,v){pt(()=>{r.listen(()=>{v.isCancelled()||m.waitingMediaSourceReload({bufferType:n,period:p,timeOffset:P,stayInPeriod:E})},{includeLastObservation:!0,clearSignal:v})})}}function cd(n,e,t){let r=n.getStatus(e);if(r.type===\"initialized\")return c.info(\"Stream: Reusing a previous SegmentSink for the type\",e),r.value;let i=pd(t);return n.createSegmentSink(e,i)}function pd(n){let e=n.representations.filter(t=>t.isSupported===!0&&t.decipherable!==!1);if(e.length===0)throw new Y(\"NO_PLAYABLE_REPRESENTATION\",\"No Representation in the chosen \"+n.type+\" Adaptation can be played\",{tracks:[Je(n)]});return e[0].getMimeTypeString()}function gd(n,e){return n.deriveReadOnlyObserver(function(r,i){let a=new H(o(),i);return r.onUpdate(s,{clearSignal:i,emitCurrentValue:!1}),a;function o(){let u=r.getValue(),d=u.buffered[e],m=d!==null?ir(d,u.position.getWanted()):0;return G({},u,{bufferGap:m,buffered:d})}function s(){a.setValue(o())}})}function Lo(n,e,t,r,i,a){let{period:o}=r,s=!1;e.onUpdate(u,{emitCurrentValue:!1,clearSignal:a}),n.listen(u,{includeLastObservation:!1,clearSignal:a}),u();function u(){let d=n.getReference().getValue(),m=e.getValue(),f=d.position.getWanted();o.end!==void 0&&f+m>=o.end&&(c.debug('Stream: full \"empty\" AdaptationStream',t),s=!0),i.streamStatusUpdate({period:o,bufferType:t,imminentDiscontinuity:null,position:f,isEmptyStream:!0,hasFinishedLoading:s,neededSegments:[]})}}var No=Fi;function lr(n,e){if(e.length===0)return[];let t=[],r=n.getLastKnownInventory();for(let i=0;i<r.length;i++){let a=r[i];if(e.some(s=>a.infos.period.id===s.period.id&&a.infos.adaptation.id===s.adaptation.id&&a.infos.representation.id===s.representation.id)){let{bufferedStart:s,bufferedEnd:u}=a;if(s===void 0||u===void 0)return c.warn(\"SO: No buffered start or end found from a segment.\"),[{start:0,end:Number.MAX_VALUE}];let d=t[t.length-1];d!==void 0&&d.end===s?d.end=u:t.push({start:s,end:u})}}return t}function zi(n,e,t,r,i,a,o,s){let{manifest:u,initialPeriod:d}=n,{maxBufferAhead:m,maxBufferBehind:f,wantedBufferAhead:l,maxVideoBufferSize:p}=a,{MINIMUM_MAX_BUFFER_AHEAD:g,MAXIMUM_MAX_BUFFER_AHEAD:h,MAXIMUM_MAX_BUFFER_BEHIND:I}=L.getCurrent(),y=new an(E=>{var _,A;let{bufferType:v}=E,R=(_=I[v])!=null?_:1/0,M=(A=h[v])!=null?A:1/0;return k=>{or({segmentSink:E,playbackObserver:e,maxBufferBehind:Ut(f,x=>Math.min(x,R),k),maxBufferAhead:Ut(m,x=>{var w;let D=Math.max(x,(w=g[v])!=null?w:0);return Math.min(D,M)},k)},k)}});for(let E of r.getBufferTypes())T(E,d);function T(E,v){let R=new gt((D,w)=>D.start-w.start),M=!1,_=new W;return _.linkToSignal(s),e.listen(({position:D})=>{var U;let w=D.getWanted();if(!M||!k(w))return;for(c.info(\"Stream: Destroying all PeriodStreams due to out of bounds situation\",E,w),M=!1;R.length()>0;){let z=R.get(R.length()-1);R.removeElement(z),o.periodStreamCleared({type:E,manifest:u,period:z})}_.cancel(),_=new W,_.linkToSignal(s);let O=(U=u.getPeriodForTime(w))!=null?U:u.getNextPeriod(w);if(O===void 0){c.warn(\"Stream: The wanted position is not found in the Manifest.\"),M=!0;return}A(O)},{clearSignal:s,includeLastObservation:!0}),u.addEventListener(\"decipherabilityUpdate\",D=>{s.isCancelled()||x(D).catch(w=>{s.isCancelled()||(_.cancel(),o.error(w))})},s),A(v);function A(D){let w=Me(Se({},o),{waitingMediaSourceReload(O){let U=R.head();U===void 0||U.id!==O.period.id?o.lockedStream({bufferType:O.bufferType,period:O.period}):o.needsMediaSourceReload({timeOffset:O.timeOffset,minimumPosition:O.stayInPeriod?O.period.start:void 0,maximumPosition:O.stayInPeriod?O.period.end:void 0})},periodStreamReady(O){M=!0,R.add(O.period),o.periodStreamReady(O)},periodStreamCleared(O){R.removeElement(O.period),o.periodStreamCleared(O)},error(O){_.cancel(),o.error(O)}});P(E,D,w,_.signal)}function k(D){let w=R.head(),O=R.last();return w===void 0||O===void 0?!0:w.start>D||(C(O.end)?1/0:O.end)<D}async function x(D){let w=r.getStatus(E),O=D.filter(V=>V.adaptation.type===E);if(O.length===0||w.type!==\"initialized\"||O.every(V=>V.representation.decipherable===!0))return;let U=w.value,z=O.filter(V=>V.representation.decipherable===void 0),q=O.filter(V=>V.representation.decipherable===!1),Z=lr(U,q),X=lr(U,z);for(M=!1,c.info(\"Stream: Destroying all PeriodStreams for decipherability matters\",E);R.length()>0;){let V=R.get(R.length()-1);R.removeElement(V),o.periodStreamCleared({type:E,manifest:u,period:V})}_.cancel(),_=new W,_.linkToSignal(s);for(let{start:V,end:Q}of[...Z,...X]){if(s.isCancelled())return;if(V<Q){if(s.isCancelled())return;await U.removeBuffer(V,Q)}}pt(()=>{if(s.isCancelled())return;let V=e.getReference().getValue();if(Fo(V,Z)){if(o.needsDecipherabilityFlush(),s.isCancelled())return}else if(Fo(V,X)&&(o.needsBufferFlush(),s.isCancelled()))return;let Q=V.position.getWanted(),$=u.getPeriodForTime(Q);if($===void 0){o.error(new Y(\"MEDIA_TIME_NOT_FOUND\",\"The wanted position is not found in the Manifest.\"));return}A($)})}}function P(E,v,R,M){c.info(\"Stream: Creating new Stream for\",E,v.start);let _=null,A=new W;A.linkToSignal(M),e.listen(({position:O},U)=>{if(v.end!==void 0&&O.getWanted()>=v.end){let z=u.getPeriodAfter(v);if(v.containsTime(O.getWanted(),z))return;c.info(\"Stream: Destroying PeriodStream as the current playhead moved above it\",E,v.start,O.getWanted(),v.end),U(),R.periodStreamCleared({type:E,manifest:u,period:v}),A.cancel()}},{clearSignal:M,includeLastObservation:!0});let k={bufferType:E,content:{manifest:u,period:v},garbageCollectors:y,maxVideoBufferSize:p,segmentFetcherCreator:i,segmentSinksStore:r,options:a,playbackObserver:e,representationEstimator:t,wantedBufferAhead:l},x=Me(Se({},R),{streamStatusUpdate(O){if(O.hasFinishedLoading){let U=u.getPeriodAfter(v);U!==null&&D(U)}else _!==null&&(c.info(\"Stream: Destroying next PeriodStream due to current one being active\",E,_.period.start),R.periodStreamCleared({type:E,manifest:u,period:_.period}),_.canceller.cancel(),_=null);R.streamStatusUpdate(O)},error(O){_!==null&&(_.canceller.cancel(),_=null),A.cancel(),R.error(O)}});No(k,x,A.signal),w(A.signal);function D(O){if(_!==null){if(_.period.id===O.id)return;c.warn(\"Stream: Creating next `PeriodStream` while one was already created.\",E,O.id,_.period.id),R.periodStreamCleared({type:E,manifest:u,period:_.period}),_.canceller.cancel()}let U=new W;U.linkToSignal(M),_={canceller:U,period:O},P(E,O,R,_.canceller.signal)}function w(O){u.addEventListener(\"manifestUpdate\",U=>{for(let z of U.removedPeriods)if(z.id===v.id){if(u.periods.length>0&&u.periods[0].start<=z.start)return pt(()=>{if(!O.isCancelled())return o.needsMediaSourceReload({timeOffset:0,minimumPosition:void 0,maximumPosition:void 0})})}else if(z.start>v.start)break;if(U.addedPeriods.length>0&&_!==null){let z=u.getPeriodAfter(v);(z===null||_.period.id!==z.id)&&(c.warn(\"Stream: Destroying next PeriodStream due to new one being added\",E,_.period.start),R.periodStreamCleared({type:E,manifest:u,period:_.period}),_.canceller.cancel(),_=null)}},O)}}}function Fo(n,e){if(e.length===0)return!1;let t=n.position.getPolled();return n.speed>=0?e[e.length-1].end>=t-5:e[0].start<=t+5}var zo=zi;var Wo=zo;var gn=class extends re{constructor(e,t,r){super(),this._canceller=new W,this._manifest=e,this._activeStreams=new Map,this._allBufferTypes=r,this._lastCurrentPeriodId=null;let i=new Wi(e);this._maximumPositionCalculator=i;let a=this._canceller.signal;t.listen(({position:o})=>{let s=o.getWanted();if(s<e.getMinimumSafePosition()){let u=new Y(\"MEDIA_TIME_BEFORE_MANIFEST\",\"The current position is behind the earliest time announced in the Manifest.\");this.trigger(\"warning\",u)}else if(s>i.getMaximumAvailablePosition()){let u=new Y(\"MEDIA_TIME_AFTER_MANIFEST\",\"The current position is after the latest time announced in the Manifest.\");this.trigger(\"warning\",u)}},{includeLastObservation:!0,clearSignal:a}),e.addEventListener(\"manifestUpdate\",()=>{this.trigger(\"endingPositionChange\",this._getManifestEndTime()),!a.isCancelled()&&this._checkEndOfStream()},a)}getCurrentEndingTime(){return this._getManifestEndTime()}onAdaptationChange(e,t,r){if(this._manifest.isLastPeriodKnown){let i=this._manifest.periods[this._manifest.periods.length-1];if(t.id===(i==null?void 0:i.id)&&(e===\"audio\"||e===\"video\")){e===\"audio\"?this._maximumPositionCalculator.updateLastAudioAdaptation(r):this._maximumPositionCalculator.updateLastVideoAdaptation(r);let a=this._maximumPositionCalculator.getEndingPosition(),o=a!==void 0?{isEnd:!0,endingPosition:a}:{isEnd:!1,endingPosition:this._maximumPositionCalculator.getMaximumAvailablePosition()};this.trigger(\"endingPositionChange\",o)}}this._canceller.isUsed()||r===null&&this._addActivelyLoadedPeriod(t,e)}onRepresentationChange(e,t){this._addActivelyLoadedPeriod(t,e)}onPeriodCleared(e,t){this._removeActivelyLoadedPeriod(t,e)}onLastSegmentFinishedLoading(e){let t=this._lazilyCreateActiveStreamInfo(e);t.hasFinishedLoadingLastPeriod||(t.hasFinishedLoadingLastPeriod=!0,this._checkEndOfStream())}onLastSegmentLoadingResume(e){let t=this._lazilyCreateActiveStreamInfo(e);t.hasFinishedLoadingLastPeriod&&(t.hasFinishedLoadingLastPeriod=!1,this._checkEndOfStream())}dispose(){this.removeEventListener(),this._canceller.cancel()}_addActivelyLoadedPeriod(e,t){let r=this._lazilyCreateActiveStreamInfo(t);r.activePeriods.has(e)||(r.activePeriods.add(e),this._checkCurrentPeriod())}_removeActivelyLoadedPeriod(e,t){let r=this._activeStreams.get(t);r!==void 0&&r.activePeriods.has(e)&&(r.activePeriods.removeElement(e),this._checkCurrentPeriod())}_checkCurrentPeriod(){if(this._allBufferTypes.length===0)return;let e=this._activeStreams.get(this._allBufferTypes[0]);if(e!==void 0)for(let t of e.activePeriods.toArray()){let r=!0;for(let i=1;i<this._allBufferTypes.length;i++){let a=this._activeStreams.get(this._allBufferTypes[i]);if(a===void 0)return;if(!a.activePeriods.toArray().some(u=>u.id===t.id)){r=!1;break}}if(r){this._lastCurrentPeriodId!==t.id&&(this._lastCurrentPeriodId=t.id,this.trigger(\"periodChange\",t));return}}}_getManifestEndTime(){let e=this._maximumPositionCalculator.getEndingPosition();return e!==void 0?{isEnd:!0,endingPosition:e}:{isEnd:!1,endingPosition:this._maximumPositionCalculator.getMaximumAvailablePosition()}}_lazilyCreateActiveStreamInfo(e){let t=this._activeStreams.get(e);return t===void 0&&(t={activePeriods:new gt((r,i)=>r.start-i.start),hasFinishedLoadingLastPeriod:!1},this._activeStreams.set(e,t)),t}_checkEndOfStream(){if(!this._manifest.isLastPeriodKnown)return;this._allBufferTypes.every(t=>{let r=this._activeStreams.get(t);return r!==void 0&&r.hasFinishedLoadingLastPeriod})?this.trigger(\"endOfStream\",null):this.trigger(\"resumeStream\",null)}},Wi=class{constructor(e){this._manifest=e,this._lastAudioAdaptation=void 0,this._lastVideoAdaptation=void 0}updateLastAudioAdaptation(e){this._lastAudioAdaptation=e}updateLastVideoAdaptation(e){this._lastVideoAdaptation=e}getMaximumAvailablePosition(){if(this._manifest.isDynamic)return this._manifest.getMaximumSafePosition();if(this._lastVideoAdaptation===void 0||this._lastAudioAdaptation===void 0)return this._manifest.getMaximumSafePosition();if(this._lastAudioAdaptation===null){if(this._lastVideoAdaptation===null)return this._manifest.getMaximumSafePosition();{let e=fr(this._lastVideoAdaptation);return typeof e!=\"number\"?this._manifest.getMaximumSafePosition():e}}else if(this._lastVideoAdaptation===null){let e=fr(this._lastAudioAdaptation);return typeof e!=\"number\"?this._manifest.getMaximumSafePosition():e}else{let e=fr(this._lastAudioAdaptation),t=fr(this._lastVideoAdaptation);return typeof e!=\"number\"||typeof t!=\"number\"?this._manifest.getMaximumSafePosition():Math.min(e,t)}}getEndingPosition(){var e,t;if(!this._manifest.isDynamic)return this.getMaximumAvailablePosition();if(!(this._lastVideoAdaptation===void 0||this._lastAudioAdaptation===void 0)){if(this._lastAudioAdaptation===null)return this._lastVideoAdaptation===null?void 0:(e=mr(this._lastVideoAdaptation))!=null?e:void 0;if(this._lastVideoAdaptation===null)return(t=mr(this._lastAudioAdaptation))!=null?t:void 0;{let r=mr(this._lastAudioAdaptation),i=mr(this._lastVideoAdaptation);return typeof r!=\"number\"||typeof i!=\"number\"?void 0:Math.min(r,i)}}}};function fr(n){let{representations:e}=n,t=null,r;for(let i=0;i<e.length;i++)if(e[i].index!==r){r=e[i].index;let a=e[i].index.getLastAvailablePosition();if(a===void 0)return;a!==null&&(t=C(t)?a:Math.min(t,a))}return t}function mr(n){let{representations:e}=n,t=null,r;for(let i=0;i<e.length;i++)if(e[i].index!==r){r=e[i].index;let a=e[i].index.getEnd();if(a===void 0)return;a!==null&&(t=C(t)?a:Math.min(t,a))}return t}function Vi(n,e,t,r,i,a){a.register(()=>{e.interruptDurationSetting()});let o=new gn(n,t,r.getBufferTypes());a.register(()=>{o.dispose()}),o.addEventListener(\"warning\",u=>i.onWarning(u)),o.addEventListener(\"periodChange\",u=>i.onPeriodChanged(u)),o.addEventListener(\"endingPositionChange\",u=>{e.setDuration(u.endingPosition,u.isEnd)}),o.addEventListener(\"endOfStream\",()=>{c.debug(\"Init: end-of-stream order received.\"),e.maintainEndOfStream()}),o.addEventListener(\"resumeStream\",()=>{e.stopEndOfStream()});let s=o.getCurrentEndingTime();return e.setDuration(s.endingPosition,s.isEnd),o}function qi(n,e){let t={audio:null,video:null,text:null};if(e!==null&&(t.text=e.getBufferedRanges()),n===null)return t;let r=j(n.sourceBuffers,s=>s.type===\"audio\"),i=j(n.sourceBuffers,s=>s.type===\"video\"),a=r==null?void 0:r.getBuffered();a!==void 0&&(t.audio=a);let o=i==null?void 0:i.getBuffered();return o!==void 0&&(t.video=o),t}function Gi(n,e){if(typeof n.changeType==\"function\"){try{n.changeType(e)}catch(t){return c.warn(\"Could not call 'changeType' on the given SourceBuffer:\",t instanceof Error?t:\"\"),!1}return!0}return!1}var hd=[\"\",\"webkit\",\"moz\",\"ms\"];function Id(n,e){let t=document.createElement(n.tagName),r=\"on\"+e;return r in t?!0:(t.setAttribute(r,\"return;\"),typeof t[r]==\"function\")}function bd(n,e){return e.filter(t=>Id(n,t))[0]}function Sd(n,e){return n.reduce((t,r)=>t.concat((e===void 0?hd:e).map(i=>i+r)),[])}function be(n,e){let t,r=Sd(n,e);return(i,a,o)=>{if(!o.isCancelled()){if(typeof HTMLElement!=\"undefined\"&&i instanceof HTMLElement)if(typeof t==\"undefined\"&&(t=bd(i,r)),ie(t))i.addEventListener(t,a),o.register(()=>{t!==void 0&&i.removeEventListener(t,a)});else{b.CURRENT_ENV===b.DEV&&c.warn(`compat: element ${i.tagName} does not support any of these events: `+r.join(\", \"));return}r.forEach(s=>{let u=!1;typeof i.addEventListener==\"function\"?i.addEventListener(s,a):(u=!0,i[\"on\"+s]=a),o.register(()=>{typeof i.removeEventListener==\"function\"&&i.removeEventListener(s,a),u&&delete i[\"on\"+s]})})}}}var hO=be([\"loadedmetadata\"]),IO=be([\"timeupdate\"]),bO=be([\"addtrack\"]),SO=be([\"removetrack\"]),Mt=be([\"sourceopen\",\"webkitsourceopen\"]),cr=be([\"sourceclose\",\"webkitsourceclose\"]),pr=be([\"sourceended\",\"webkitsourceended\"]),Vo=be([\"update\"]),qo=be([\"removesourcebuffer\"]),yO=be([\"keymessage\",\"message\"]),_O=be([\"keyadded\",\"ready\"]),EO=be([\"keyerror\",\"error\"]),TO=be([\"keystatuseschange\"]),RO=be([\"seeking\"]),PO=be([\"seeked\"]),vO=be([\"ended\"]);function yd(n){let e=[];for(let t=0;t<n.length;t++){let r=n[t];r.updating&&e.push(r)}return e}function hn(n,e){if(c.debug(\"Init: Trying to call endOfStream\"),n.readyState!==\"open\"){c.debug(\"Init: MediaSource not open, cancel endOfStream\");return}let{sourceBuffers:t}=n,r=yd(t);if(r.length===0){c.info(\"Init: Triggering end of stream\"),n.endOfStream();return}c.debug(\"Init: Waiting SourceBuffers to be updated before calling endOfStream.\");let i=new W;i.linkToSignal(e);for(let a of r)Vo(a,()=>{i.cancel(),hn(n,e)},i.signal);qo(t,()=>{i.cancel(),hn(n,e)},i.signal)}function Go(n,e){let t=new W;t.linkToSignal(e),Mt(n,()=>{c.debug(\"Init: MediaSource re-opened while end-of-stream is active\"),t.cancel(),t=new W,t.linkToSignal(e),hn(n,t.signal)},e),hn(n,t.signal)}var _d=!1,Ed=!1,Ho=!1,Td=!1,Rd=!1,Pd=!1,vd=!1,Cd=!1,Ad=!1,xd=!1,kd=!1,Md=!1,Hi=!1,Od=!1;(function(){var e,t,r;Un||(typeof ye.MSInputMethodContext!=\"undefined\"&&typeof document.documentMode!=\"undefined\"?(Ed=!0,Ho=!0):navigator.appName===\"Microsoft Internet Explorer\"||navigator.appName===\"Netscape\"&&/(Trident|Edge)\\//.test(navigator.userAgent)?Ho=!0:navigator.userAgent.toLowerCase().indexOf(\"edg/\")!==-1?_d=!0:navigator.userAgent.toLowerCase().indexOf(\"firefox\")!==-1?Td=!0:typeof navigator.platform==\"string\"&&/iPad|iPhone|iPod/.test(navigator.platform)?Pd=!0:(Object.prototype.toString.call(ye.HTMLElement).indexOf(\"Constructor\")>=0||((t=(e=ye.safari)==null?void 0:e.pushNotification)==null?void 0:t.toString())===\"[object SafariRemoteNotification]\"||/Safari\\/(\\d+)/.test(navigator.userAgent)&&/Version\\/(\\d+)/.test(navigator.userAgent)&&((r=navigator.vendor)==null?void 0:r.indexOf(\"Apple\"))!==-1&&!/Chrome\\/(\\d+)/.test(navigator.userAgent)&&!/Chromium\\/(\\d+)/.test(navigator.userAgent))&&(Rd=!0),/SamsungBrowser/.test(navigator.userAgent)&&(vd=!0),navigator.userAgent.indexOf(\"PlayStation 5\")!==-1?Hi=!0:/Tizen/.test(navigator.userAgent)?Cd=!0:/[Ww]eb[O0]S/.test(navigator.userAgent)?(Ad=!0,/[Ww]eb[O0]S.TV-2022/.test(navigator.userAgent)||/[Cc]hr[o0]me\\/87/.test(navigator.userAgent)?kd=!0:(/[Ww]eb[O0]S.TV-2021/.test(navigator.userAgent)||/[Cc]hr[o0]me\\/79/.test(navigator.userAgent))&&(xd=!0)):/[Pp]anasonic/.test(navigator.userAgent)?Md=!0:navigator.userAgent.indexOf(\"Xbox\")!==-1&&(Od=!0))})();function ji(){return Hi}var wd=365*24*3600,In=class{constructor(e){this._mediaSource=e,this._currentMediaSourceDurationUpdateCanceller=null}updateDuration(e,t){this._currentMediaSourceDurationUpdateCanceller!==null&&this._currentMediaSourceDurationUpdateCanceller.cancel(),this._currentMediaSourceDurationUpdateCanceller=new W;let r=this._mediaSource,i=this._currentMediaSourceDurationUpdateCanceller.signal,a=Ud(r,i),o=new W;o.linkToSignal(i),a.onUpdate(s,{emitCurrentValue:!0,clearSignal:i});function s(){if(o.cancel(),!a.getValue())return;o=new W,o.linkToSignal(i);let u=Bd(r.sourceBuffers,o.signal),d=new W;return d.linkToSignal(o.signal),u.onUpdate(m=>{d.cancel(),d=new W,d.linkToSignal(o.signal),!m&&Yo(r,e,t,d.signal)},{clearSignal:o.signal,emitCurrentValue:!0})}}stopUpdating(){this._currentMediaSourceDurationUpdateCanceller!==null&&(this._currentMediaSourceDurationUpdateCanceller.cancel(),this._currentMediaSourceDurationUpdateCanceller=null)}};function Dd(n,e,t){let r=e;t||(r=ji()?1/0:jo(e));let i=0;for(let a=0;a<n.sourceBuffers.length;a++){let o=n.sourceBuffers[a],s=o.buffered.length;s>0&&(i=Math.max(o.buffered.end(s-1)))}if(r===n.duration)return\"success\";if(i>r){if(i<n.duration)try{c.info(\"Init: Updating duration to what is currently buffered\",i),n.duration=i}catch(a){return c.warn(\"Duration Updater: Can't update duration on the MediaSource.\",a instanceof Error?a:\"\"),\"failed\"}return\"partial\"}else{let a=n.duration;try{if(c.info(\"Init: Updating duration\",r),n.duration=r,n.readyState===\"open\"&&!isFinite(r)){let s=jo(e);c.info(\"Init: calling `mediaSource.setLiveSeekableRange`\",s),n.setLiveSeekableRange(0,s)}}catch(s){return c.warn(\"Duration Updater: Can't update duration on the MediaSource.\",s instanceof Error?s:\"\"),\"failed\"}let o=Math.abs(n.duration-r);if(o>=.1){let s=Math.abs(n.duration-a);return o<s?\"partial\":\"failed\"}return\"success\"}}function Bd(n,e){if(n.length===0){let i=new H(!1);return i.finish(),i}let t=new H(!1,e);r();for(let i=0;i<n.length;i++){let a=n[i];a.addEventListener(\"updatestart\",r),a.addEventListener(\"update\",r),e.register(()=>{a.removeEventListener(\"updatestart\",r),a.removeEventListener(\"update\",r)})}return t;function r(){for(let i=0;i<n.length;i++)if(n[i].updating){t.setValueIfChanged(!0);return}t.setValueIfChanged(!1)}}function Ud(n,e){let t=new H(n.readyState===\"open\",e);return Mt(n,()=>{c.debug(\"Init: Reacting to MediaSource open in duration updater\"),t.setValueIfChanged(!0)},e),pr(n,()=>{c.debug(\"Init: Reacting to MediaSource ended in duration updater\"),t.setValueIfChanged(!1)},e),cr(n,()=>{c.debug(\"Init: Reacting to MediaSource close in duration updater\"),t.setValueIfChanged(!1)},e),t}function Yo(n,e,t,r){if(Dd(n,e,t)===\"success\")return;let a=setTimeout(()=>{o(),Yo(n,e,t,r)},2e3),o=r.register(()=>{clearTimeout(a)})}function jo(n){return Math.max(Math.pow(2,32),n+wd)}var bn=class extends re{constructor(e){if(super(),this.id=e,this.sourceBuffers=[],this._canceller=new W,C(dt))throw new Y(\"MEDIA_SOURCE_NOT_SUPPORTED\",\"No MediaSource Object was found in the current browser.\");c.info(\"Init: Creating MediaSource\");let t=new dt;this.readyState=t.readyState;let r=t.handle;this.handle=C(r)?{type:\"media-source\",value:t}:{type:\"handle\",value:r},this._mediaSource=t,this._durationUpdater=new In(t),this._endOfStreamCanceller=null,Mt(t,()=>{this.readyState=t.readyState,this.trigger(\"mediaSourceOpen\",null)},this._canceller.signal),pr(t,()=>{this.readyState=t.readyState,this.trigger(\"mediaSourceEnded\",null)},this._canceller.signal),cr(t,()=>{this.readyState=t.readyState,this.trigger(\"mediaSourceClose\",null)},this._canceller.signal)}addSourceBuffer(e,t){let r=this._mediaSource.addSourceBuffer(t),i=new Yi(e,t,r);return this.sourceBuffers.push(i),i}setDuration(e,t){this._durationUpdater.updateDuration(e,t)}interruptDurationSetting(){this._durationUpdater.stopUpdating()}maintainEndOfStream(){this._endOfStreamCanceller===null&&(this._endOfStreamCanceller=new W,this._endOfStreamCanceller.linkToSignal(this._canceller.signal),c.debug(\"Init: end-of-stream order received.\"),Go(this._mediaSource,this._endOfStreamCanceller.signal))}stopEndOfStream(){this._endOfStreamCanceller!==null&&(c.debug(\"Init: resume-stream order received.\"),this._endOfStreamCanceller.cancel(),this._endOfStreamCanceller=null)}dispose(){this.sourceBuffers.forEach(e=>e.dispose()),this._canceller.cancel(),Ld(this._mediaSource)}},Yi=class{constructor(e,t,r){this.type=e,this.codec=t,this._canceller=new W,this._sourceBuffer=r,this._operationQueue=[],this._currentOperations=[];let i=o=>{let s;o instanceof Error?s=o:o.error instanceof Error?s=o.error:s=new Error(\"Unknown SourceBuffer Error\");let u=this._currentOperations;if(this._currentOperations=[],u.length===0)c.error(\"SBI: error for an unknown operation\",s);else{let d=new Te(s.name,s.message,s.name===\"QuotaExceededError\");for(let m of u)m.reject(d)}},a=()=>{let o=this._currentOperations;this._currentOperations=[];try{for(let s of o)s.resolve(Ci(this._sourceBuffer.buffered))}catch(s){for(let u of o)s instanceof Error&&s.name===\"InvalidStateError\"?u.resolve([]):u.reject(s)}this._performNextOperation()};r.addEventListener(\"error\",i),r.addEventListener(\"updateend\",a),this._canceller.signal.register(()=>{r.removeEventListener(\"error\",i),r.removeEventListener(\"updateend\",a)})}appendBuffer(...e){return c.debug(\"SBI: receiving order to push data to the SourceBuffer\",this.type),this._addToQueue({operationName:0,params:e})}remove(e,t){return c.debug(\"SBI: receiving order to remove data from the SourceBuffer\",this.type,e,t),this._addToQueue({operationName:1,params:[e,t]})}getBuffered(){try{return Ci(this._sourceBuffer.buffered)}catch(e){return c.error(\"Failed to get buffered time range of SourceBuffer\",this.type,e instanceof Error?e:null),[]}}abort(){try{this._sourceBuffer.abort()}catch(e){c.debug(\"Init: Failed to abort SourceBuffer:\",e instanceof Error?e:null)}this._emptyCurrentQueue()}dispose(){try{this._sourceBuffer.abort()}catch(e){}this._emptyCurrentQueue()}_emptyCurrentQueue(){let e=new ne;this._currentOperations.length>0&&(this._currentOperations.forEach(t=>{t.reject(e)}),this._currentOperations=[]),this._operationQueue.length>0&&(this._operationQueue.forEach(t=>{t.reject(e)}),this._operationQueue=[])}_addToQueue(e){return new Promise((t,r)=>{let i=this._operationQueue.length===0&&this._currentOperations.length===0,a=G({resolve:t,reject:r},e);this._operationQueue.push(a),i&&this._performNextOperation()})}_performNextOperation(){var t,r,i,a,o;if(this._currentOperations.length!==0||this._sourceBuffer.updating)return;let e=this._operationQueue.shift();if(e!==void 0)if(e.operationName===0){this._currentOperations=[{operationName:0,resolve:e.resolve,reject:e.reject}];let s=e.params[0],u=e.params[1],d=s;if(this._operationQueue.length>0&&this._operationQueue[0].operationName===0){let m;s instanceof ArrayBuffer?m=new Uint8Array(s):s instanceof Uint8Array?m=s:m=new Uint8Array(s.buffer);let f=[m];for(;((t=this._operationQueue[0])==null?void 0:t.operationName)===0;){let l=this._operationQueue[0],p=(r=u.appendWindow)!=null?r:[void 0,void 0],g=(i=l.params[1].appendWindow)!=null?i:[void 0,void 0],h=(a=u.timestampOffset)!=null?a:0,I=(o=l.params[1].timestampOffset)!=null?o:0;if(p[0]===g[0]&&p[1]===g[1]&&u.codec===l.params[1].codec&&h===I){let y=l.params[0],T;y instanceof ArrayBuffer?T=new Uint8Array(y):y instanceof Uint8Array?T=y:T=new Uint8Array(y.buffer),f.push(T),this._operationQueue.splice(0,1),this._currentOperations.push({operationName:0,resolve:l.resolve,reject:l.reject})}else break}f.length>1&&(c.info(`MMSI: Merging ${f.length} segments together for perf`,this.type),d=je(...f))}try{this._appendBufferNow(d,u)}catch(m){let f=m instanceof Error?new Te(m.name,m.message,m.name===\"QuotaExceededError\"):new Te(\"Error\",\"Unknown SourceBuffer Error during appendBuffer\",!1);this._currentOperations.forEach(l=>{l.reject(f)}),this._currentOperations=[]}}else{this._currentOperations=[e];let[s,u]=e.params;c.debug(\"SBI: removing data from SourceBuffer\",this.type,s,u);try{this._sourceBuffer.remove(s,u)}catch(d){let m=d instanceof Error?new Te(d.name,d.message,!1):new Te(\"Error\",\"Unknown SourceBuffer Error during remove\",!1);e.reject(m),this._currentOperations=[]}}}_appendBufferNow(e,t){let r=this._sourceBuffer,{codec:i,timestampOffset:a,appendWindow:o=[]}=t;if(i!==void 0&&i!==this.codec&&(c.debug(\"SBI: updating codec\",i),Gi(r,i)?this.codec=i:c.debug(\"SBI: could not update codec\",i,this.codec)),a!==void 0&&r.timestampOffset!==a){let s=a;c.debug(\"SBI: updating timestampOffset\",i,r.timestampOffset,s),r.timestampOffset=s}if(o[0]===void 0)r.appendWindowStart>0&&(c.debug(\"SBI: re-setting `appendWindowStart` to `0`\"),r.appendWindowStart=0);else if(o[0]!==r.appendWindowStart){if(o[0]>=r.appendWindowEnd){let s=o[0]+1;c.debug(\"SBI: pre-updating `appendWindowEnd`\",s),r.appendWindowEnd=s}c.debug(\"SBI: setting `appendWindowStart`\",o[0]),r.appendWindowStart=o[0]}o[1]===void 0?r.appendWindowEnd!==1/0&&(c.debug(\"SBI: re-setting `appendWindowEnd` to `Infinity`\"),r.appendWindowEnd=1/0):o[1]!==r.appendWindowEnd&&(c.debug(\"SBI: setting `appendWindowEnd`\",o[1]),r.appendWindowEnd=o[1]),c.debug(\"SBI: pushing segment\",this.type),r.appendBuffer(e)}};function Ld(n){if(n.readyState!==\"closed\"){let{readyState:e,sourceBuffers:t}=n;for(let r=t.length-1;r>=0;r--){let i=t[r];try{if(e===\"open\"){c.info(\"Init: Aborting SourceBuffer before removing\");try{i.abort()}catch(a){}}c.info(\"Init: Removing SourceBuffer from mediaSource\"),n.removeSourceBuffer(i)}catch(a){}}t.length>0&&c.info(\"Init: Not all SourceBuffers could have been removed.\")}}var Nd=Re(),gr=Re(),Ko=1/0,Sn=class extends re{constructor(e,t,r){super(),this.id=e,this.sourceBuffers=[],this._canceller=new W,this.readyState=\"closed\",this._messageSender=r;let i=Nd();this._messageSender({type:\"create-media-source\",contentId:t,mediaSourceId:i})}onMediaSourceReadyStateChanged(e){switch(e){case\"closed\":this.readyState=\"closed\",this.trigger(\"mediaSourceClose\",null);break;case\"open\":this.readyState=\"open\",this.trigger(\"mediaSourceOpen\",null);break;case\"ended\":this.readyState=\"ended\",this.trigger(\"mediaSourceEnded\",null);break}}addSourceBuffer(e,t){this._messageSender({type:\"add-source-buffer\",mediaSourceId:this.id,value:{sourceBufferType:e,codec:t}});let r=new Ki(e,t,this.id,this._messageSender);return this.sourceBuffers.push(r),r}setDuration(e,t){this._messageSender({type:\"update-media-source-duration\",mediaSourceId:this.id,value:{duration:e,isRealEndKnown:t}})}interruptDurationSetting(){this._messageSender({type:\"stop-media-source-duration\",mediaSourceId:this.id,value:null})}maintainEndOfStream(){this._messageSender({type:\"end-of-stream\",mediaSourceId:this.id,value:null})}stopEndOfStream(){this._messageSender({type:\"stop-end-of-stream\",mediaSourceId:this.id,value:null})}dispose(){this.sourceBuffers.forEach(e=>e.dispose()),this._canceller.cancel(),this._messageSender({type:\"dispose-media-source\",mediaSourceId:this.id,value:null})}},Ki=class{constructor(e,t,r,i){this.type=e,this.codec=t,this._canceller=new W,this._mediaSourceId=r,this._queuedOperations=[],this._pendingOperations=new Map,this._messageSender=i}onOperationSuccess(e,t){let r=this._pendingOperations.get(e);r===void 0?c.warn(\"SBI: unknown SourceBuffer operation succeeded\"):(this._pendingOperations.delete(e),r.resolve(t)),this._performNextQueuedOperationIfItExists()}onOperationFailure(e,t){let r=t.errorName===\"CancellationError\"?new ne:new Te(t.errorName,t.message,t.isBufferFull),i=this._pendingOperations.get(e);i===void 0?c.info(\"SBI: unknown SourceBuffer operation failed\",r):(this._pendingOperations.delete(e),i.reject(r));let a=new ne;for(let o of this._queuedOperations)o.reject(a);this._queuedOperations=[]}appendBuffer(e,t){return new Promise((r,i)=>{if(this._queuedOperations.length>0||this._pendingOperations.size>=Ko){this._queuedOperations.push({operationName:0,params:[e,t],resolve:r,reject:i});return}try{let a;e instanceof ArrayBuffer?a=e:e.byteLength===e.buffer.byteLength?a=e.buffer:a=e.buffer.slice(e.byteOffset,e.byteLength+e.byteOffset);let o=gr();this._messageSender({type:\"source-buffer-append\",mediaSourceId:this._mediaSourceId,sourceBufferType:this.type,operationId:o,value:{data:a,params:t}},[a]),this._addOperationToQueue(o,r,i)}catch(a){i(a)}})}remove(e,t){return new Promise((r,i)=>{if(this._queuedOperations.length>0||this._pendingOperations.size>=Ko){this._queuedOperations.push({operationName:1,params:[e,t],resolve:r,reject:i});return}try{let a=gr();this._messageSender({type:\"source-buffer-remove\",mediaSourceId:this._mediaSourceId,sourceBufferType:this.type,operationId:a,value:{start:e,end:t}}),this._addOperationToQueue(a,r,i)}catch(a){i(a)}})}abort(){this._messageSender({type:\"abort-source-buffer\",mediaSourceId:this._mediaSourceId,sourceBufferType:this.type,value:null})}dispose(){this.abort(),this._canceller.cancel()}getBuffered(){}_addOperationToQueue(e,t,r){this._pendingOperations.set(e,{resolve:a,reject:o});let i=this._canceller.signal.register(s=>{this._pendingOperations.delete(e),r(s)});function a(s){i(),t(s)}function o(s){i(),r(s)}}_performNextQueuedOperationIfItExists(){let e=this._queuedOperations.shift();if(e!==void 0)try{if(e.operationName===0){let[t,r]=e.params,i;t instanceof ArrayBuffer?i=t:t.byteLength===t.buffer.byteLength?i=t.buffer:i=t.buffer.slice(t.byteOffset,t.byteLength+t.byteOffset);let a=gr();this._messageSender({type:\"source-buffer-append\",mediaSourceId:this._mediaSourceId,sourceBufferType:this.type,operationId:a,value:{data:i,params:r}},[i]),this._addOperationToQueue(a,e.resolve,e.reject)}else{let[t,r]=e.params,i=gr();this._messageSender({type:\"source-buffer-remove\",mediaSourceId:this._mediaSourceId,sourceBufferType:this.type,operationId:i,value:{start:t,end:r}}),this._addOperationToQueue(i,e.resolve,e.reject)}}catch(t){e.reject(t)}}};function Qi(n){let e=n.map(o=>Math.log(o/n[0])),t=e.map(o=>o-e[0]+1),r=(t[t.length-1]-1)/(n.length*2+10),i=1/r;return n.map((o,s)=>a(s));function a(o){if(o===0)return 0;let s=Math.min(Math.max(1,o),n.length-1);return n[s]===n[s-1]?a(o-1):i*(r+(n[s]*t[s-1]-n[s-1]*t[s])/(n[s]-n[s-1]))+4}}var ke=class{constructor(e){this._alpha=Math.exp(Math.log(.5)/e),this._lastEstimate=0,this._totalWeight=0}addSample(e,t){let r=Math.pow(this._alpha,e),i=t*(1-r)+r*this._lastEstimate;isNaN(i)||(this._lastEstimate=i,this._totalWeight+=e)}getEstimate(){let e=1-Math.pow(this._alpha,this._totalWeight);return this._lastEstimate/e}};var yn=class{constructor(){this._currentRepresentationData=null,this._lastRepresentationWithGoodScore=null}addSample(e,t,r){let i=r/t,a=this._currentRepresentationData,o;a!==null&&a.representation.id===e.id?(o=a.ewma,a.ewma.addSample(t,i),a.loadedDuration+=r,a.loadedSegments++):(o=new ke(5),o.addSample(t,i),this._currentRepresentationData={representation:e,ewma:o,loadedDuration:r,loadedSegments:0}),o.getEstimate()>1&&this._lastRepresentationWithGoodScore!==e&&(c.debug(\"ABR: New last stable representation\",e.bitrate),this._lastRepresentationWithGoodScore=e)}getEstimate(e){if(this._currentRepresentationData===null||this._currentRepresentationData.representation.id!==e.id)return;let{ewma:t,loadedSegments:r,loadedDuration:i}=this._currentRepresentationData,a=t.getEstimate(),o=r>=5&&i>=10?1:0;return{score:a,confidenceLevel:o}}getLastStableRepresentation(){return this._lastRepresentationWithGoodScore}};var Qo=6e3,Fd=15e3,zd=3e3,Wd=1e3,Vd=9e3,_n=class{constructor(e){this._levelsMap=Qi(e).map(t=>t+4),this._bitrates=e,this._lastUnsuitableQualityTimestamp=void 0,this._blockRaiseDelay=Qo,c.debug(\"ABR: Steps for buffer based chooser.\",this._levelsMap.map((t,r)=>`bufferLevel: ${t}, bitrate: ${e[r]}`).join(\" ,\"))}onAddedSegment(e){let t=this._levelsMap,r=this._bitrates,{bufferGap:i,currentBitrate:a,currentScore:o,speed:s}=e;if(C(a)){this._currentEstimate=r[0];return}let u=-1;for(let g=0;g<r.length;g++){let h=r[g];if(h===a)u=g;else if(h>a)break}if(u<0||r.length!==t.length){c.info(\"ABR: Current Bitrate not found in the calculated levels\"),this._currentEstimate=r[0];return}let d;o!==void 0&&(d=s===0?o.score:o.score/s);let m=isFinite(i)?i:0,f=N();if(m<t[u]||d!==void 0&&d<1&&(o==null?void 0:o.confidenceLevel)===1){if((this._lastUnsuitableQualityTimestamp===void 0?-1:f-this._lastUnsuitableQualityTimestamp)<this._blockRaiseDelay+Vd){let I=this._blockRaiseDelay+zd;this._blockRaiseDelay=Math.min(I,Fd),c.debug(\"ABR: Incrementing blocking raise in BufferBasedChooser due to unstable quality\",this._blockRaiseDelay)}else{let I=this._blockRaiseDelay-Wd;this._blockRaiseDelay=Math.max(Qo,I),c.debug(\"ABR: Lowering quality in BufferBasedChooser\",this._blockRaiseDelay)}this._lastUnsuitableQualityTimestamp=f;let h=ee(r,I=>I===a);for(let I=h-1;I>=0;I--)if(m>=t[I]){this._currentEstimate=r[I];return}this._currentEstimate=r[0];return}if(this._lastUnsuitableQualityTimestamp!==void 0&&f-this._lastUnsuitableQualityTimestamp<this._blockRaiseDelay||d===void 0||d<1.15||(o==null?void 0:o.confidenceLevel)!==1){this._currentEstimate=a;return}let l=t[u],p=(()=>{for(let g=u+1;g<t.length;g++)if(t[g]>l)return g})();if(p!==void 0){let g=t[p];if(i>=g){c.debug(\"ABR: Raising quality in BufferBasedChooser\",r[p]),this._currentEstimate=r[p];return}}this._currentEstimate=a}getLastEstimate(){return this._currentEstimate}};function qd(n,e){let t=-1;for(let o=0;o<n.length;o++){let{segment:s}=n[o].content;if(s.duration<=0)continue;let u=s.time+s.duration;if(!s.complete&&o===n.length-1&&e-s.time>-1.2){t=o;break}if(u>e&&e-s.time>-1.2){t=o;break}}if(t<0)return[];let r=n[t],i=r.content.segment.time,a=[r];for(let o=t+1;o<n.length&&n[o].content.segment.time===i;o++)a.push(n[o]);return a}function hr(n){if(n.progress.length<5)return;let e=new ke(2),{progress:t}=n;for(let r=1;r<t.length;r++){let i=t[r].size-t[r-1].size,a=t[r].timestamp-t[r-1].timestamp,o=i*8/(a/1e3);e.addSample(a/1e3,o)}return e.getEstimate()}function Xo(n,e){let t=(n.totalSize-n.size)*8;return Math.max(t/e,0)}function Gd(n,e,t,r,i){if(r)return;let{bufferGap:a,speed:o,position:s}=e,u=isFinite(a)?a:0,d=s.getWanted()+u,m=qd(n,d);if(m.length!==1)return;let f=m[0],l=N(),p=f.content.segment.duration*1.5;if(p=Math.min(p,3e3),p=Math.max(p,12e3),l-f.requestTimestamp<p)return;let g=f.progress.length>0?f.progress[f.progress.length-1]:void 0,h=hr(f);if(g!==void 0&&h!==void 0){let v=Xo(g,h);if((l-g.timestamp)/1e3<=v&&v-u/o>2500)return h}if(!f.content.segment.complete)return;let I=f.content.segment.duration,y=(l-f.requestTimestamp)/1e3,T=y<=(I*1.5+2)/o;if(C(t)||T)return;let P=I/y,E=t.bitrate*Math.min(.7,P);if(i===void 0||E<i)return E}function Hd(n,e,t){if(t)return!0;let r=isFinite(n.bufferGap)?n.bufferGap:0,i=n.position.getWanted()+r,a=j(e,({content:f})=>f.segment.duration>0&&f.segment.time+f.segment.duration>i);if(a===void 0)return!0;let o=N(),s=a.progress.length>0?a.progress[a.progress.length-1]:void 0,u=hr(a);if(s===void 0||u===void 0)return!0;let d=Xo(s,u);return(o-s.timestamp)/1e3>d*1.2?!0:d-r/n.speed>-1.5}var En=class{constructor(e,t){let{ABR_STARVATION_GAP:r,OUT_OF_STARVATION_GAP:i,ABR_STARVATION_FACTOR:a,ABR_REGULAR_FACTOR:o}=L.getCurrent();this._initialBitrate=e,this._inStarvationMode=!1,this._lowLatencyMode=t,t?this._config={starvationGap:r.LOW_LATENCY,outOfStarvationGap:i.LOW_LATENCY,starvationBitrateFactor:a.LOW_LATENCY,regularBitrateFactor:o.LOW_LATENCY}:this._config={starvationGap:r.DEFAULT,outOfStarvationGap:i.DEFAULT,starvationBitrateFactor:a.DEFAULT,regularBitrateFactor:o.DEFAULT}}getBandwidthEstimate(e,t,r,i,a){let o,s,u=this._config,{bufferGap:d,position:m,duration:f}=e,l=isFinite(d)?d:0,{ABR_STARVATION_DURATION_DELTA:p}=L.getCurrent();return isNaN(f)||l+m.getWanted()<f-p?!this._inStarvationMode&&l<=u.starvationGap?(c.info(\"ABR: enter starvation mode.\"),this._inStarvationMode=!0):this._inStarvationMode&&l>=u.outOfStarvationGap&&(c.info(\"ABR: exit starvation mode.\"),this._inStarvationMode=!1):this._inStarvationMode&&(c.info(\"ABR: exit starvation mode.\"),this._inStarvationMode=!1),this._inStarvationMode&&(s=Gd(i,e,r,this._lowLatencyMode,a),s!==void 0&&(c.info(\"ABR: starvation mode emergency estimate:\",s),t.reset(),o=C(r)?s:Math.min(s,r.bitrate))),C(o)&&(s=t.getEstimate(),s!==void 0?o=s*(this._inStarvationMode?u.starvationBitrateFactor:u.regularBitrateFactor):a!==void 0?o=a*(this._inStarvationMode?u.starvationBitrateFactor:u.regularBitrateFactor):o=this._initialBitrate),e.speed>1&&(o/=e.speed),{bandwidthEstimate:s,bitrateChosen:o}}isUrgent(e,t,r,i){return t===null?!0:e>=t.bitrate?!1:Hd(i,r,this._lowLatencyMode)}};var Tn=class{constructor(){this.bandwidth=void 0,this.representation=null,this.algorithmType=3}update(e,t,r){this.representation=e,this.bandwidth=t,this.algorithmType=r}};var Rn=class{constructor(e,t){this._scoreCalculator=e,this._lastAbrEstimate=t,this._consecutiveWrongGuesses=0,this._blockGuessesUntil=0,this._lastMaintanableBitrate=null}getGuess(e,t,r,i,a){let{bufferGap:o,speed:s}=t,u=this._lastAbrEstimate.representation;if(u===null)return null;if(i>u.bitrate)return this._lastAbrEstimate.algorithmType===2&&(this._lastAbrEstimate.representation!==null&&(this._lastMaintanableBitrate=this._lastAbrEstimate.representation.bitrate),this._consecutiveWrongGuesses=0),null;let d=this._scoreCalculator.getEstimate(r);if(this._lastAbrEstimate.algorithmType!==2){if(d===void 0)return null;if(this._canGuessHigher(o,s,d)){let f=$o(e,r);if(f!==null)return f}return null}if(this._isLastGuessValidated(u,i,d)&&(c.debug(\"ABR: Guessed Representation validated\",u.bitrate),this._lastMaintanableBitrate=u.bitrate,this._consecutiveWrongGuesses=0),r.id!==u.id)return u;if(this._shouldStopGuess(r,d,o,a))return this._consecutiveWrongGuesses++,this._blockGuessesUntil=N()+Math.min(this._consecutiveWrongGuesses*15e3,12e4),jd(e,r);if(d===void 0)return r;if(this._canGuessHigher(o,s,d)){let f=$o(e,r);if(f!==null)return f}return r}_canGuessHigher(e,t,{score:r,confidenceLevel:i}){return isFinite(e)&&e>=2.5&&N()>this._blockGuessesUntil&&i===1&&r/t>1.01}_shouldStopGuess(e,t,r,i){if(t!==void 0&&t.score<1.01)return!0;if((t===void 0||t.score<1.2)&&r<.6)return!0;let a=i.filter(s=>s.content.representation.id===e.id),o=N();for(let s of a){let u=o-s.requestTimestamp;if(s.content.segment.isInit){if(u>1e3)return!0}else{if(u>s.content.segment.duration*1e3+200)return!0;{let d=hr(s);if(d!==void 0&&d<e.bitrate*.8)return!0}}}return!1}_isLastGuessValidated(e,t,r){return r!==void 0&&r.confidenceLevel===1&&r.score>1.5?!0:t>=e.bitrate&&(this._lastMaintanableBitrate===null||this._lastMaintanableBitrate<e.bitrate)}};function $o(n,e){let t=n.length,r=ee(n,({id:i})=>i===e.id);if(r<0)return c.error(\"ABR: Current Representation not found.\"),null;for(;++r<t;)if(n[r].bitrate>e.bitrate)return n[r];return null}function jd(n,e){let t=ee(n,({id:r})=>r===e.id);if(t<0)return c.error(\"ABR: Current Representation not found.\"),null;for(;--t>=0;)if(n[t].bitrate<e.bitrate)return n[t];return null}var Pn=class{constructor(){let{ABR_FAST_EMA:e,ABR_SLOW_EMA:t}=L.getCurrent();this._fastEWMA=new ke(e),this._slowEWMA=new ke(t),this._bytesSampled=0}addSample(e,t){let{ABR_MINIMUM_CHUNK_SIZE:r}=L.getCurrent();if(t<r)return;let i=t*8e3/e,a=e/1e3;this._bytesSampled+=t,this._fastEWMA.addSample(a,i),this._slowEWMA.addSample(a,i)}getEstimate(){let{ABR_MINIMUM_TOTAL_BYTES:e}=L.getCurrent();if(!(this._bytesSampled<e))return Math.min(this._fastEWMA.getEstimate(),this._slowEWMA.getEstimate())}reset(){let{ABR_FAST_EMA:e,ABR_SLOW_EMA:t}=L.getCurrent();this._fastEWMA=new ke(e),this._slowEWMA=new ke(t),this._bytesSampled=0}};function Xi(n,e){if(n.length===0)return[];n.sort((a,o)=>a.bitrate-o.bitrate);let t=n[0].bitrate,r=Math.max(e,t),i=ee(n,a=>a.bitrate>r);return i===-1?n:n.slice(0,i)}function $i(n,e){if(e.width===void 0||e.height===void 0)return n;let t=e.width*e.pixelRatio,r=e.height*e.pixelRatio,i=n.slice().sort((s,u)=>{var d,m;return((d=s.width)!=null?d:0)-((m=u.width)!=null?m:0)}),a=j(i,s=>typeof s.width==\"number\"&&s.width>=t&&typeof s.height==\"number\"&&s.height>=r);if(a===void 0)return n;let o=typeof a.width==\"number\"?a.width:0;return n.filter(s=>typeof s.width==\"number\"?s.width<=o:!0)}var vn=class{constructor(){this._currentRequests={}}add(e){let{id:t,requestTimestamp:r,content:i}=e;this._currentRequests[t]={requestTimestamp:r,progress:[],content:i}}addProgress(e){let t=this._currentRequests[e.id];if(C(t)){if(b.CURRENT_ENV===b.DEV)throw new Error(\"ABR: progress for a request not added\");c.warn(\"ABR: progress for a request not added\");return}t.progress.push(e)}remove(e){if(C(this._currentRequests[e])){if(b.CURRENT_ENV===b.DEV)throw new Error(\"ABR: can't remove unknown request\");c.warn(\"ABR: can't remove unknown request\")}delete this._currentRequests[e]}getRequests(){return Wn(this._currentRequests).filter(e=>!C(e)).sort((e,t)=>e.content.segment.time-t.content.segment.time)}};function Ir(n,e){let t=ee(n,r=>r.bitrate>e);return t===-1?n[n.length-1]:t===0?n[0]:n[t-1]}var Zo=new H(void 0);Zo.finish();var Jo=new H(1/0);Jo.finish();function Zi(n){let e={},{initialBitrates:t,throttlers:r,lowLatencyMode:i}=n;return function(s,u,d,m,f){var I,y,T;let{type:l}=s.adaptation,p=a(l),g=(I=t[l])!=null?I:0,h={limitResolution:(y=r.limitResolution[l])!=null?y:Zo,throttleBitrate:(T=r.throttleBitrate[l])!=null?T:Jo};return Yd({bandwidthEstimator:p,context:s,currentRepresentation:u,filters:h,initialBitrate:g,playbackObserver:m,representations:d,lowLatencyMode:i},f)};function a(o){let s=e[o];if(C(s)){c.debug(\"ABR: Creating new BandwidthEstimator for \",o);let u=new Pn;return e[o]=u,u}return s}}function Yd({bandwidthEstimator:n,context:e,currentRepresentation:t,filters:r,initialBitrate:i,lowLatencyMode:a,playbackObserver:o,representations:s},u){let d=new yn,m=new En(i!=null?i:0,a),f=new vn,l=B,p={metrics:T,requestBegin:P,requestProgress:E,requestEnd:v,addedSegment(R){l(R)}},g=new W;g.linkToSignal(u);let h=I(s.getValue(),g.signal);return s.onUpdate(y,{clearSignal:u}),{estimates:h,callbacks:p};function I(R,M){if(R.length<=1)return new H({bitrate:void 0,representation:R[0],urgent:!0,knownStableBitrate:void 0});let _=!1,A=R.sort((q,Z)=>q.bitrate-Z.bitrate),k=new _n(A.map(q=>q.bitrate)),x=new Tn,D=new Rn(d,x),w=o.getReference().getValue(),O=new H(z());return o.listen(q=>{w=q,U()},{includeLastObservation:!1,clearSignal:M}),l=function(q){if(w===null)return;let{position:Z,speed:X}=w,V=q.buffered,Q=ir(V,Z.getWanted()),{representation:$}=q.content,le=d.getEstimate($),fe=$.bitrate,ue={bufferGap:Q,currentBitrate:fe,currentScore:le,speed:X};k.onAddedSegment(ue),U()},M.register(()=>{l=B}),r.throttleBitrate.onUpdate(U,{clearSignal:M}),r.limitResolution.onUpdate(U,{clearSignal:M}),O;function U(){O.setValue(z())}function z(){let{bufferGap:q,position:Z,maximumPosition:X}=w,V=r.limitResolution.getValue(),Q=r.throttleBitrate.getValue(),$=t.getValue(),le=Kd(A,V,Q),fe=f.getRequests(),{bandwidthEstimate:ue,bitrateChosen:ge}=m.getBandwidthEstimate(w,n,$,fe,x.bandwidth),Bn=d.getLastStableRepresentation(),me=Bn===null?void 0:Bn.bitrate/(w.speed>0?w.speed:1),{ABR_ENTER_BUFFER_BASED_ALGO:he,ABR_EXIT_BUFFER_BASED_ALGO:wt}=L.getCurrent();_&&q<=wt?_=!1:!_&&isFinite(q)&&q>=he&&(_=!0);let Ue=Ir(le,ge),Pe=k.getLastEstimate(),It=Ue.bitrate,Qe=null;_&&Pe!==void 0&&Pe>It&&(Qe=Ir(le,Pe),It=Qe.bitrate);let Xe=null;return a&&$!==null&&e.manifest.isDynamic&&X-Z.getWanted()<40&&(Xe=D.getGuess(A,w,$,It,fe)),Xe!==null&&Xe.bitrate>It?(c.debug(\"ABR: Choosing representation with guess-based estimation.\",Xe.bitrate,Xe.id),x.update(Xe,ue,2),{bitrate:ue,representation:Xe,urgent:$===null||Xe.bitrate<$.bitrate,knownStableBitrate:me}):Qe!==null?(c.debug(\"ABR: Choosing representation with buffer-based estimation.\",Qe.bitrate,Qe.id),x.update(Qe,ue,0),{bitrate:ue,representation:Qe,urgent:m.isUrgent(Qe.bitrate,$,fe,w),knownStableBitrate:me}):(c.debug(\"ABR: Choosing representation with bandwidth estimation.\",Ue.bitrate,Ue.id),x.update(Ue,ue,1),{bitrate:ue,representation:Ue,urgent:m.isUrgent(Ue.bitrate,$,fe,w),knownStableBitrate:me})}}function y(){let R=s.getValue();g.cancel(),g=new W,g.linkToSignal(u),I(R,g.signal).onUpdate(function(A){h.setValue(A)},{clearSignal:g.signal,emitCurrentValue:!0})}function T(R){let{requestDuration:M,segmentDuration:_,size:A,content:k}=R;if(n.addSample(M,A),!k.segment.isInit){let{segment:x,representation:D}=k;if(_===void 0&&!x.complete)return;let w=_!=null?_:x.duration;d.addSample(D,M/1e3,w)}}function P(R){f.add(R)}function E(R){f.addProgress(R)}function v(R){f.remove(R.id)}}function Kd(n,e,t){let r=n;return t!==void 0&&t<1/0&&(r=Xi(r,t)),e!==void 0&&(r=$i(r,e)),r}var es=Zi;function Ke(n){return n instanceof te?new Ne(\"PIPELINE_LOAD_ERROR\",n):ce(n,{defaultCode:\"PIPELINE_LOAD_ERROR\",defaultReason:\"Unknown error when fetching the Manifest\"})}function Ji(n){let e=(Math.random()*2-1)*.3;return n*(e+1)}function Qd(n){return n instanceof te?n.type===st.ERROR_HTTP_CODE?n.status>=500||n.status===404||n.status===415||n.status===412:n.type===st.TIMEOUT||n.type===st.ERROR_EVENT:n instanceof Le?typeof n.canRetry==\"boolean\"?n.canRetry:n.xhr!==void 0?n.xhr.status>=500||n.xhr.status===404||n.xhr.status===415||n.xhr.status===412:!1:bt(n)&&n.code===\"INTEGRITY_ERROR\"}async function ea(n,e,t,r,i){if(i.cancellationError!==null)return Promise.reject(i.cancellationError);let{baseDelay:a,maxDelay:o,maxRetry:s,onRetry:u}=r;n!==null&&n.length===0&&c.warn(\"Fetchers: no CDN given to `scheduleRequestWithCdns`.\");let d=new Map,m=f();if(m===void 0)throw new Error(\"No CDN to request\");return l(m);function f(){if(n===null){let I=d.get(null);return I!==void 0&&I.isBlacklisted?void 0:null}else{if(e===null)return h(n);{let I=e.getCdnPreferenceForResource(n);return h(I)}}}async function l(I){try{return await t(I,i)}catch(y){if(W.isCancellationError(y))throw y;I!==null&&e!==null&&e.downgradeCdn(I);let T=d.get(I);if(T===void 0?(T={errorCounter:1,blockedUntil:void 0,isBlacklisted:!1},d.set(I,T)):T.errorCounter++,!Qd(y))return T.blockedUntil=void 0,T.isBlacklisted=!0,p(y);if(T.errorCounter>s)T.blockedUntil=void 0,T.isBlacklisted=!0;else{let P=T.errorCounter,E=Math.min(a*Math.pow(2,P-1),o),v=Ji(E);T.blockedUntil=N()+v}return p(y)}}async function p(I){let y=f();if(i.isCancelled())throw i.cancellationError;if(y===void 0)throw I;if(u(I),i.isCancelled())throw i.cancellationError;return g(y,I)}function g(I,y){let T=d.get(I);if(T===void 0||T.blockedUntil===void 0)return l(I);let P=N(),E=T.blockedUntil-P;if(E<=0)return l(I);let v=new W,R=v.linkToSignal(i);return new Promise((M,_)=>{e==null||e.addEventListener(\"priorityChange\",()=>{let x=f();if(i.isCancelled())throw i.cancellationError;if(x===void 0)return k(y);x!==I&&(v.cancel(),g(x,y).then(A,k))},v.signal),fn(E,v.signal).then(()=>l(I).then(A,k),B);function A(x){R(),M(x)}function k(x){R(),_(x)}})}function h(I){var T;if(d.size===0)return I[0];let y=N();return(T=I.filter(P=>{var E;return((E=d.get(P))==null?void 0:E.isBlacklisted)!==!0}).reduce((P,E)=>{var R;let v=(R=d.get(E))==null?void 0:R.blockedUntil;return v!==void 0&&v<=y&&(v=void 0),P===void 0?[E,v]:P[1]===void 0?P:v===void 0?[E,void 0]:v<P[1]?[E,v]:P},void 0))==null?void 0:T[0]}}function ta(n,e,t){return ea(null,null,n,e,t)}var Cn=class extends re{constructor(e,t,r){super(),this.scheduleManualRefresh=B,this._manifestUrls=e,this._pipelines=t.manifest,this._settings=r,this._canceller=new W,this._isStarted=!1,this._isRefreshPending=!1,this._consecutiveUnsafeMode=0,this._prioritizedContentUrl=null}dispose(){this._canceller.cancel(),this.removeEventListener()}start(){if(this._isStarted)return;this._isStarted=!0;let e,t=this._settings.initialManifest;t instanceof yt?e=Promise.resolve({manifest:t}):t!==void 0?e=this.parse(t,{previousManifest:null,unsafeMode:!1},void 0):e=this._fetchManifest(void 0).then(r=>r.parse({previousManifest:null,unsafeMode:!1})),e.then(r=>{this.trigger(\"manifestReady\",r.manifest),this._canceller.isUsed()||this._recursivelyRefreshManifest(r.manifest,r)}).catch(r=>this._onFatalError(r))}updateContentUrls(e,t){var r;this._prioritizedContentUrl=(r=e==null?void 0:e[0])!=null?r:void 0,t&&this.scheduleManualRefresh({enablePartialRefresh:!1,delay:0,canUseUnsafeMode:!1})}async _fetchManifest(e){var u;let t=this._canceller.signal,r=this._settings,i=this._pipelines,a=e!=null?e:(u=this._manifestUrls)==null?void 0:u[0],o=this._getBackoffSetting(d=>{this.trigger(\"warning\",Ke(d))});try{let d=await s(a);return{parse:m=>this._parseLoadedManifest(d,m,a)}}catch(d){throw Ke(d)}function s(d){let{loadManifest:m}=i,f=r.requestTimeout===void 0?L.getCurrent().DEFAULT_REQUEST_TIMEOUT:r.requestTimeout,l=r.connectionTimeout===void 0?L.getCurrent().DEFAULT_CONNECTION_TIMEOUT:r.connectionTimeout;return f<0&&(f=void 0),l<0&&(l=void 0),ta(()=>m(d,{timeout:f,connectionTimeout:l},t),o,t)}}parse(e,t,r){return this._parseLoadedManifest({responseData:e,size:void 0,requestDuration:void 0},t,r)}async _parseLoadedManifest(e,t,r){var h;let i=N(),a=this._canceller.signal,o=this.trigger.bind(this),{sendingTime:s,receivedTime:u}=e,d=this._getBackoffSetting(I=>{this.trigger(\"warning\",Ke(I))}),m=r!=null?r:(h=this._manifestUrls)==null?void 0:h[0],f={externalClockOffset:t.externalClockOffset,unsafeMode:t.unsafeMode,previousManifest:t.previousManifest,originalUrl:m};try{let I=this._pipelines.parseManifest(e,f,p,a,l);if(Xd(I)){let{manifest:y,warnings:T}=await I;return g(y,T)}else return g(I.manifest,I.warnings)}catch(I){throw ce(I,{defaultCode:\"PIPELINE_PARSE_ERROR\",defaultReason:\"Unknown error when parsing the Manifest\"})}async function l(I){try{return await ta(I,d,a)}catch(y){throw Ke(y)}}function p(I){for(let y of I){if(a.isCancelled())return;let T=ce(y,{defaultCode:\"PIPELINE_PARSE_ERROR\",defaultReason:\"Unknown error when parsing the Manifest\"});o(\"warning\",T)}}function g(I,y){p(y);let T=N()-i;return c.info(`MF: Manifest parsed in ${T}ms`),{manifest:I,sendingTime:s,receivedTime:u,parsingTime:T}}}_getBackoffSetting(e){let{DEFAULT_MAX_MANIFEST_REQUEST_RETRY:t,INITIAL_BACKOFF_DELAY_BASE:r,MAX_BACKOFF_DELAY_BASE:i}=L.getCurrent(),{lowLatencyMode:a,maxRetry:o}=this._settings,s=a?r.LOW_LATENCY:r.REGULAR,u=a?i.LOW_LATENCY:i.REGULAR,d=o!=null?o:t;return{onRetry:e,baseDelay:s,maxDelay:u,maxRetry:d}}_recursivelyRefreshManifest(e,{sendingTime:t,parsingTime:r,updatingTime:i}){let{MAX_CONSECUTIVE_MANIFEST_PARSING_IN_UNSAFE_MODE:a,MIN_MANIFEST_PARSING_TIME_TO_ENTER_UNSAFE_MODE:o}=L.getCurrent(),s=r!==void 0?r+(i!=null?i:0):void 0,u=!1;this._consecutiveUnsafeMode>0?u=this._consecutiveUnsafeMode<a:s!==void 0&&(u=s>=o);let d=t===void 0?0:N()-t,m=Math.max(this._settings.minimumManifestUpdateInterval-d,0),f=new W;if(f.linkToSignal(this._canceller.signal),this.scheduleManualRefresh=l=>{let{enablePartialRefresh:p,delay:g,canUseUnsafeMode:h}=l,I=h&&u,y=t===void 0?0:N()-t,T=Math.max(this._settings.minimumManifestUpdateInterval-y,0),P=setTimeout(()=>{f.cancel(),this._triggerNextManifestRefresh(e,{enablePartialRefresh:p,unsafeMode:I})},Math.max((g!=null?g:0)-y,T));f.signal.register(()=>{clearTimeout(P)})},e.expired!==null){let l=setTimeout(()=>{var p;(p=e.expired)==null||p.then(()=>{f.cancel(),this._triggerNextManifestRefresh(e,{enablePartialRefresh:!1,unsafeMode:u})},B)},m);f.signal.register(()=>{clearTimeout(l)})}if(e.lifetime!==void 0&&e.lifetime>=0){let l=e.lifetime*1e3-d,p;s===void 0?p=l:e.lifetime<3&&s>=100?(p=Math.min(Math.max(3e3-d,Math.max(l,0)+s),l*6),c.info(\"MUS: Manifest update rythm is too frequent. Postponing next request.\",l,p)):s>=e.lifetime*1e3/10?(p=Math.min(Math.max(l,0)+s,l*6),c.info(\"MUS: Manifest took too long to parse. Postponing next request\",p,p)):p=l;let g=setTimeout(()=>{f.cancel(),this._triggerNextManifestRefresh(e,{enablePartialRefresh:!1,unsafeMode:u})},Math.max(p,m));f.signal.register(()=>{clearTimeout(g)})}}_triggerNextManifestRefresh(e,{enablePartialRefresh:t,unsafeMode:r}){let i=e.updateUrl,a,o;this._prioritizedContentUrl!==null?(a=!0,o=this._prioritizedContentUrl,this._prioritizedContentUrl=null):(a=!t||i===void 0,o=a?e.getUrls()[0]:i);let s=e.clockOffset;r?(this._consecutiveUnsafeMode+=1,c.info('Init: Refreshing the Manifest in \"unsafeMode\" for the '+String(this._consecutiveUnsafeMode)+\" consecutive time.\")):this._consecutiveUnsafeMode>0&&(c.info('Init: Not parsing the Manifest in \"unsafeMode\" anymore after '+String(this._consecutiveUnsafeMode)+\" consecutive times.\"),this._consecutiveUnsafeMode=0),!this._isRefreshPending&&(this._isRefreshPending=!0,this._fetchManifest(o).then(u=>u.parse({externalClockOffset:s,previousManifest:e,unsafeMode:r})).then(u=>{this._isRefreshPending=!1;let{manifest:d,sendingTime:m,parsingTime:f}=u,l=N();if(a)e.replace(d);else try{e.update(d)}catch(g){let h=g instanceof Error?g.message:\"unknown error\";c.warn(`MUS: Attempt to update Manifest failed: ${h}`,\"Re-downloading the Manifest fully\");let{FAILED_PARTIAL_UPDATE_MANIFEST_REFRESH_DELAY:I}=L.getCurrent(),y=m===void 0?0:N()-m,T=Math.max(this._settings.minimumManifestUpdateInterval-y,0),P=B,E=setTimeout(()=>{P(),this._triggerNextManifestRefresh(e,{enablePartialRefresh:!1,unsafeMode:!1})},Math.max(I-y,T));P=this._canceller.signal.register(()=>{clearTimeout(E)});return}let p=N()-l;this._recursivelyRefreshManifest(e,{sendingTime:m,parsingTime:f,updatingTime:p})}).catch(u=>{this._isRefreshPending=!1,this._onFatalError(u)}))}_onFatalError(e){this._canceller.isUsed()||(this.trigger(\"error\",e),this.dispose())}};function Xd(n){return n instanceof Promise}var na=Cn;function ra(n,e){let t=new WeakMap;return{createRequest(r,i,a,o){let s=d=>e(r,a,d),u=n.create(s,i,a,o);return t.set(u,s),u},updatePriority(r,i){let a=t.get(r);if(a===void 0){c.warn(\"Fetchers: Cannot update the priority of a request: task not found.\");return}n.updatePriority(a,i)}}}var An=class extends re{constructor(e){super(),this._downgradedCdnList={metadata:[],timeouts:[]},e.register(()=>{for(let t of this._downgradedCdnList.timeouts)clearTimeout(t);this._downgradedCdnList={metadata:[],timeouts:[]}})}getCdnPreferenceForResource(e){return e.length<=1?e:this._innerGetCdnPreferenceForResource(e)}downgradeCdn(e){let t=ts(this._downgradedCdnList.metadata,e);t>=0&&this._removeIndexFromDowngradeList(t);let{DEFAULT_CDN_DOWNGRADE_TIME:r}=L.getCurrent(),i=r;this._downgradedCdnList.metadata.push(e);let a=setTimeout(()=>{let o=ts(this._downgradedCdnList.metadata,e);o>=0&&this._removeIndexFromDowngradeList(o),this.trigger(\"priorityChange\",null)},i);this._downgradedCdnList.timeouts.push(a),this.trigger(\"priorityChange\",null)}_innerGetCdnPreferenceForResource(e){let[t,r]=e.reduce((i,a)=>(this._downgradedCdnList.metadata.some(o=>o.id===a.id&&o.baseUrl===a.baseUrl)?i[1].push(a):i[0].push(a),i),[[],[]]);return t.concat(r)}_removeIndexFromDowngradeList(e){this._downgradedCdnList.metadata.splice(e,1);let t=this._downgradedCdnList.timeouts.splice(e,1);clearTimeout(t[0])}};function ts(n,e){return n.length===0?-1:e.id!==void 0?ee(n,t=>t.id===e.id):ee(n,t=>t.baseUrl===e.baseUrl)}var ia=class{constructor(){this._cache=new WeakMap}add({representation:e,segment:t},r){t.isInit&&this._cache.set(e,r)}get({representation:e,segment:t}){if(t.isInit){let r=this._cache.get(e);if(r!==void 0)return r}return null}},ns=ia;var $d=Re();function aa(n,e,t,r,i){let a;i.connectionTimeout===void 0||i.connectionTimeout<0?a=void 0:a=i.connectionTimeout;let o={timeout:i.requestTimeout<0?void 0:i.requestTimeout,connectionTimeout:a},s=oe([\"audio\",\"video\"],n)?new ns:void 0,{loadSegment:u,parseSegment:d}=e;return async function(f,l,p){var q,Z,X;let{segment:g,adaptation:h,representation:I,manifest:y,period:T}=f,P=ut(f),E=$d(),v,R=[],M=0,_=!1,A={segment:g,type:h.type,language:h.language,isLive:y.isLive,periodStart:T.start,periodEnd:T.end,mimeType:I.mimeType,codecs:I.codecs[0],manifestPublishTime:y.publishTime},k={onProgress(V){var Q;v===void 0&&V.totalSize!==void 0&&V.size<V.totalSize&&((Q=r.onProgress)==null||Q.call(r,{duration:V.duration,size:V.size,totalSize:V.totalSize,timestamp:N(),id:E}))},onNewChunk(V){l.onChunk(O(V,!0))}},x=s!==void 0?s.get(f):null;if(x!==null)return c.debug(\"SF: Found wanted segment in cache\",P),l.onChunk(O(x,!1)),Promise.resolve();c.debug(\"SF: Beginning request\",P),(q=r.onRequestBegin)==null||q.call(r,{requestTimestamp:N(),id:E,content:f}),p.register(D);try{let V=await ea(f.representation.cdnMetadata,t,w,G({onRetry:U},i),p);if(V.resultType===\"segment-loaded\"){let Q=V.resultData.responseData;s!==void 0&&s.add(f,V.resultData.responseData),l.onChunk(O(Q,!1))}else V.resultType===\"segment-created\"&&l.onChunk(O(V.resultData,!1));c.debug(\"SF: Segment request ended with success\",P),l.onAllChunksReceived(),V.resultType!==\"segment-created\"?(v=V.resultData,z()):v=null,p.isCancelled()||(Z=r.onRequestEnd)==null||Z.call(r,{id:E}),p.deregister(D)}catch(V){throw p.deregister(D),v=null,V instanceof ne?(c.debug(\"SF: Segment request aborted\",P),V):(c.debug(\"SF: Segment request failed\",P),(X=r.onRequestEnd)==null||X.call(r,{id:E}),Ke(V))}function D(){var V;v===void 0&&(c.debug(\"SF: Segment request cancelled\",P),v=null,(V=r.onRequestEnd)==null||V.call(r,{id:E}))}function w(V){return u(V,A,o,p,k)}function O(V,Q){R.push(!1);let $=R.length-1;return function(fe){let ue={data:V,isChunked:Q};try{let ge=d(ue,A,fe);return R[$]||(M=M!==void 0&&ge.segmentType===\"media\"&&ge.chunkInfos!==null&&ge.chunkInfos.duration!==void 0?M+ge.chunkInfos.duration:void 0,R[$]=!0,z()),ge}catch(ge){throw ce(ge,{defaultCode:\"PIPELINE_PARSE_ERROR\",defaultReason:\"Unknown parsing error\"})}}}function U(V){l.onRetry(Ke(V))}function z(){var V;_||!C(v)&&v.size!==void 0&&v.requestDuration!==void 0&&R.length>0&&R.every(Q=>Q)&&(_=!0,(V=r.onMetrics)==null||V.call(r,{size:v.size,requestDuration:v.requestDuration,content:f,segmentDuration:M}))}}}function rs({maxRetry:n,lowLatencyMode:e,requestTimeout:t,connectionTimeout:r}){let{DEFAULT_MAX_REQUESTS_RETRY_ON_ERROR:i,DEFAULT_REQUEST_TIMEOUT:a,DEFAULT_CONNECTION_TIMEOUT:o,INITIAL_BACKOFF_DELAY_BASE:s,MAX_BACKOFF_DELAY_BASE:u}=L.getCurrent();return{maxRetry:n!=null?n:i,baseDelay:e?s.LOW_LATENCY:s.REGULAR,maxDelay:e?u.LOW_LATENCY:u.REGULAR,requestTimeout:t===void 0?a:t,connectionTimeout:r===void 0?o:r}}var kn=class{constructor({prioritySteps:e}){if(this._minPendingPriority=null,this._waitingQueue=[],this._pendingTasks=[],this._prioritySteps=e,this._prioritySteps.high>=this._prioritySteps.low)throw new Error(\"TP: the max high level priority should be given a lowerpriority number than the min low priority.\")}create(e,t,r,i){let a;return ht(i,(o,s)=>(a={hasEnded:!1,priority:t,trigger:()=>{if(a.hasEnded)return;let d=()=>{p(),this._endTask(a)},m=g=>{r.beforeEnded(),d(),o(g)},f=g=>{d(),s(g)},l=new W,p=l.linkToSignal(i);a.interrupter=l,l.signal.register(()=>{a.interrupter=null,i.isCancelled()||r.beforeInterrupted()}),this._minPendingPriority=this._minPendingPriority===null?a.priority:Math.min(this._minPendingPriority,a.priority),this._pendingTasks.push(a),a.taskFn(l.signal).then(m).catch(g=>{!i.isCancelled()&&l.isUsed()&&g instanceof ne||f(g)})},taskFn:e,interrupter:null},this._canBeStartedNow(a)?(a.trigger(),this._isRunningHighPriorityTasks()&&this._interruptCancellableTasks()):this._waitingQueue.push(a),()=>this._endTask(a)))}_endTask(e){e.hasEnded=!0;let t=xn(e.taskFn,this._waitingQueue);if(t>=0)this._waitingQueue.splice(t,1);else{let r=xn(e.taskFn,this._pendingTasks);if(r<0)return;this._pendingTasks.splice(r,1),this._pendingTasks.length>0?this._minPendingPriority===e.priority&&(this._minPendingPriority=Math.min(...this._pendingTasks.map(i=>i.priority))):this._minPendingPriority=null,this._loopThroughWaitingQueue()}}updatePriority(e,t){let r=xn(e,this._waitingQueue);if(r>=0){let s=this._waitingQueue[r];if(s.priority===t||(s.priority=t,!this._canBeStartedNow(s)))return;this._findAndRunWaitingQueueTask(r),this._isRunningHighPriorityTasks()&&this._interruptCancellableTasks();return}let i=xn(e,this._pendingTasks);if(i<0){c.warn(\"TP: request to update the priority of a non-existent task\");return}let a=this._pendingTasks[i];if(a.priority===t)return;let o=a.priority;a.priority=t,this._minPendingPriority===null||t<this._minPendingPriority?this._minPendingPriority=t:this._minPendingPriority===o&&(this._pendingTasks.length===1?this._minPendingPriority=t:this._minPendingPriority=Math.min(...this._pendingTasks.map(s=>s.priority)),this._loopThroughWaitingQueue()),this._isRunningHighPriorityTasks()&&this._interruptCancellableTasks()}_loopThroughWaitingQueue(){let e=this._waitingQueue.reduce((t,r)=>t===null||t>r.priority?r.priority:t,null);if(!(e===null||this._minPendingPriority!==null&&this._minPendingPriority<e))for(let t=0;t<this._waitingQueue.length;t++){let r=this._minPendingPriority===null?e:Math.min(this._minPendingPriority,e);this._waitingQueue[t].priority<=r&&(this._findAndRunWaitingQueueTask(t),t--)}}_interruptCancellableTasks(){for(let e=0;e<this._pendingTasks.length;e++){let t=this._pendingTasks[e];if(t.priority>=this._prioritySteps.low)return this._interruptPendingTask(t),this._interruptCancellableTasks()}}_findAndRunWaitingQueueTask(e){return e>=this._waitingQueue.length||e<0?(c.warn(\"TP : Tried to start a non existing task\"),!1):(this._waitingQueue.splice(e,1)[0].trigger(),!0)}_interruptPendingTask(e){var r;let t=xn(e.taskFn,this._pendingTasks);if(t<0){c.warn(\"TP: Interrupting a non-existent pending task. Aborting...\");return}this._pendingTasks.splice(t,1),this._waitingQueue.push(e),this._pendingTasks.length===0?this._minPendingPriority=null:this._minPendingPriority===e.priority&&(this._minPendingPriority=Math.min(...this._pendingTasks.map(i=>i.priority))),(r=e.interrupter)==null||r.cancel()}_canBeStartedNow(e){return this._minPendingPriority===null||e.priority<=this._minPendingPriority}_isRunningHighPriorityTasks(){return this._minPendingPriority!==null&&this._minPendingPriority<=this._prioritySteps.high}};function xn(n,e){return ee(e,t=>t.taskFn===n)}var Mn=class{constructor(e,t,r){let i=new An(r),{MIN_CANCELABLE_PRIORITY:a,MAX_HIGH_PRIORITY_LEVEL:o}=L.getCurrent();this._transport=e,this._prioritizer=new kn({prioritySteps:{high:o,low:a}}),this._cdnPrioritizer=i,this._backoffOptions=t}createSegmentFetcher(e,t){let r=rs(this._backoffOptions),i=this._transport[e],a=aa(e,i,this._cdnPrioritizer,t,r);return ra(this._prioritizer,a)}};var oa=Mn;var On=class{constructor(e){this._segmentSinksStore=e,this._currentFreezeTimestamp=null}needToReload(e){let{readyState:t,rebuffering:r,freezing:i}=e;if((e.bufferGap!==void 0&&isFinite(e.bufferGap)?e.bufferGap:0)<6||r===null&&i===null||t>1)return this._currentFreezeTimestamp=null,!1;let o=N();this._currentFreezeTimestamp===null&&(this._currentFreezeTimestamp=o);let s=r!==null&&o-r.timestamp>4e3,u=i!==null&&o-i.timestamp>4e3;if((s||u)&&N()-this._currentFreezeTimestamp>4e3){let d=this._segmentSinksStore.getStatus(\"audio\"),m=this._segmentSinksStore.getStatus(\"video\"),f=!0,l=!0;for(let p of[d,m])if(p.type===\"initialized\")for(let g of p.value.getLastKnownInventory()){let{representation:h}=g.infos;if(h.decipherable===!1)return c.warn(\"Init: we have undecipherable segments left in the buffer, reloading\"),this._currentFreezeTimestamp=null,!0;h.contentProtections!==void 0&&(l=!1,h.decipherable!==!0&&(f=!1))}if(!l&&f)return c.warn(\"Init: we are frozen despite only having decipherable segments left in the buffer, reloading\"),this._currentFreezeTimestamp=null,!0}return!1}};var{DEFAULT_WANTED_BUFFER_AHEAD:Zd,DEFAULT_MAX_VIDEO_BUFFER_SIZE:Jd,DEFAULT_MAX_BUFFER_AHEAD:el,DEFAULT_MAX_BUFFER_BEHIND:tl}=L.getCurrent(),sa=new H(Zd),ua=new H(Jd),da=new H(el),la=new H(tl),br=new H({height:void 0,width:void 0,pixelRatio:1}),Sr=new H(1/0);function K(n,e){c.debug(\"<--- Sending to Main:\",n.type),e===void 0?postMessage(n):postMessage(n,e)}function Ce(n){return ce(n,{defaultCode:\"NONE\",defaultReason:\"An unknown error stopped content playback.\"}).serialize()}var wn=class{constructor(){this._refs=new Map}reset(){var e,t,r,i,a,o,s,u,d,m,f,l;for(let p of this._refs.keys())(t=(e=this._refs.get(p))==null?void 0:e.audio)==null||t.trackReference.finish(),(i=(r=this._refs.get(p))==null?void 0:r.audio)==null||i.representations.finish(),(o=(a=this._refs.get(p))==null?void 0:a.video)==null||o.trackReference.finish(),(u=(s=this._refs.get(p))==null?void 0:s.video)==null||u.representations.finish(),(m=(d=this._refs.get(p))==null?void 0:d.text)==null||m.trackReference.finish(),(l=(f=this._refs.get(p))==null?void 0:f.text)==null||l.representations.finish();this._refs=new Map}addTrackSetter(e,t,r){var s,u;let i=this._refs.get(e);i===void 0&&(i={},this._refs.set(e,i)),i[t]!==void 0&&(c.warn(\"WP: Track for periodId already declared\",e,t),(s=i[t])==null||s.trackReference.finish(),(u=i[t])==null||u.representations.finish());let a=r.getValue(),o;C(a)?o=new H({representationIds:[],switchingMode:\"lazy\"}):(o=new H(a.representations.getValue()),r.setValue(G({},a,{representations:o}))),i[t]={trackReference:r,representations:o}}setTrack(e,t,r){var a;let i=(a=this._refs.get(e))==null?void 0:a[t];return i===void 0?(c.debug(\"WP: Setting track for inexistent periodId\",e,t),!1):(C(r)?(i.representations=new H({representationIds:[],switchingMode:\"lazy\"}),i.trackReference.setValue(r)):(i.representations=new H(r.initialRepresentations),i.trackReference.setValue({adaptationId:r.adaptationId,switchingMode:r.switchingMode,representations:i.representations,relativeResumingPosition:r.relativeResumingPosition})),!0)}updateRepresentations(e,t,r,i){var s;let a=(s=this._refs.get(e))==null?void 0:s[r];if(a===void 0)return c.debug(\"WP: Setting track for inexistent periodId\",e,r),!1;let o=a.trackReference.getValue();return C(o)||o.adaptationId!==t?(c.debug(\"WP: Desynchronized Adaptation id\",o==null?void 0:o.adaptationId,t),!1):(a.representations.setValue(i),!0)}removeTrackSetter(e,t){let r=this._refs.get(e),i=r==null?void 0:r[t];return r===void 0||i===void 0?(c.debug(\"WP: Removing track setter for inexistent periodId\",e,t),!1):(i.trackReference.finish(),i.representations.finish(),delete r[t],Object.keys(r).length===0&&this._refs.delete(e),!0)}};var Dn=class{constructor(e,t){this._contentId=e,this._messageSender=t,this._queues={pushTextData:[],remove:[]}}pushTextData(e){return new Promise((t,r)=>{this._messageSender({type:\"push-text-data\",contentId:this._contentId,value:e}),this._queues.pushTextData.push({resolve:t,reject:r})})}remove(e,t){return new Promise((r,i)=>{this._messageSender({type:\"remove-text-data\",contentId:this._contentId,value:{start:e,end:t}}),this._queues.remove.push({resolve:r,reject:i})})}reset(){this._messageSender({type:\"reset-text-displayer\",contentId:this._contentId,value:null}),this._resetCurrentQueue()}stop(){this._messageSender({type:\"stop-text-displayer\",contentId:this._contentId,value:null}),this._resetCurrentQueue()}_resetCurrentQueue(){let e=new ne;this._queues.pushTextData.forEach(t=>{t.reject(e)}),this._queues.remove.forEach(t=>{t.reject(e)})}onPushedTrackSuccess(e){let t=this._queues.pushTextData.shift();if(t===void 0){c.error(\"WMS: pushTextData success for inexistant operation\");return}t.resolve(e)}onPushedTrackError(e){let t=this._queues.pushTextData.shift();if(t===void 0){c.error(\"WMS: pushTextData error for inexistant operation\");return}t.reject(e)}onRemoveSuccess(e){let t=this._queues.remove.shift();if(t===void 0){c.error(\"WMS: remove success for inexistant operation\");return}t.resolve(e)}onRemoveError(e){let t=this._queues.pushTextData.shift();if(t===void 0){c.error(\"WMS: pushTextData error for inexistant operation\");return}t.reject(e)}};var is=Re(),Ot=class{constructor({hasMseInWorker:e,hasVideo:t}){this._currentContent=null,this._currentMediaSourceCanceller=new W,this._hasVideo=t,this._hasMseInWorker=e;let r=new W;this._contentCanceller=r}initializeNewContent(e){return new Promise((t,r)=>{var M,_;this.disposeCurrentContent();let i=this._contentCanceller,a=new W;this._currentMediaSourceCanceller=a,a.linkToSignal(i.signal);let{contentId:o,url:s,hasText:u,transportOptions:d}=e,m=null;pe(ae.transports.dash!==void 0,\"Multithread RxPlayer should have access to the DASH feature\");let f=typeof d.representationFilter==\"string\"?Aa(d.representationFilter):void 0,l=ae.transports.dash(Me(Se({},d),{representationFilter:f})),p=new na(s===void 0?void 0:[s],l,e.manifestRetryOptions),g=es({initialBitrates:{audio:(M=e.initialAudioBitrate)!=null?M:0,video:(_=e.initialVideoBitrate)!=null?_:0},lowLatencyMode:d.lowLatencyMode,throttlers:{limitResolution:{video:br},throttleBitrate:{video:Sr}}}),h=a.signal.register(A=>{r(A)}),I=new oa(l,e.segmentRetryOptions,i.signal),y=new wn,[T,P,E]=as(o,{hasMseInWorker:this._hasMseInWorker,hasVideo:this._hasVideo,hasText:u},a.signal),v=new On(P);this._currentContent={contentId:o,decipherabilityFreezeDetector:v,mediaSource:T,manifest:null,manifestFetcher:p,representationEstimator:g,segmentSinksStore:P,segmentFetcherCreator:I,workerTextSender:E,trackChoiceSetter:y},T.addEventListener(\"mediaSourceOpen\",function(){R()},a.signal),i.signal.register(()=>{p.dispose()}),p.addEventListener(\"warning\",A=>{K({type:\"warning\",contentId:o,value:Ce(A)})},i.signal),p.addEventListener(\"manifestReady\",A=>{if(m!==null){c.warn(\"WP: Multiple `manifestReady` events, ignoring\");return}m=A,this._currentContent!==null&&(this._currentContent.manifest=m),R()},a.signal),p.addEventListener(\"error\",A=>{r(A)},i.signal),p.start();function R(){if(m===null||T.readyState===\"closed\"||a.isUsed())return;let A=m.getMetadataSnapshot();m.addEventListener(\"manifestUpdate\",k=>{if(m===null)return;let x=G(m.getMetadataSnapshot(),{periods:[]});K({type:\"manifest-update\",contentId:o,value:{manifest:x,updates:k}})},i.signal),h(),t(A)}})}getCurrentContent(){return this._currentContent}scheduleManifestRefresh(e){var t;(t=this._currentContent)==null||t.manifestFetcher.scheduleManualRefresh(e)}reloadMediaSource(e){if(this._currentMediaSourceCanceller.cancel(),this._currentContent===null)return Promise.reject(new Error(\"CP: No content anymore\"));this._currentContent.trackChoiceSetter.reset(),this._currentMediaSourceCanceller=new W,K({type:\"reloading-media-source\",contentId:this._currentContent.contentId,value:e},[]);let[t,r,i]=as(this._currentContent.contentId,{hasMseInWorker:this._hasMseInWorker,hasVideo:this._hasVideo,hasText:this._currentContent.workerTextSender!==null},this._currentMediaSourceCanceller.signal);return this._currentContent.mediaSource=t,this._currentContent.segmentSinksStore=r,this._currentContent.workerTextSender=i,new Promise((a,o)=>{t.addEventListener(\"mediaSourceOpen\",function(){a()},this._currentMediaSourceCanceller.signal),t.addEventListener(\"mediaSourceClose\",function(){o(new Error(\"MediaSource ReadyState changed to close during init.\"))},this._currentMediaSourceCanceller.signal),this._currentMediaSourceCanceller.signal.register(s=>{o(s)})})}disposeCurrentContent(){this._contentCanceller.cancel(),this._contentCanceller=new W}};function as(n,e,t){let r;if(e.hasMseInWorker){let s=new bn(is());r=s;let u,d=s.handle;if(d.type===\"handle\")u={type:\"handle\",value:d.value};else{let m=URL.createObjectURL(d.value);u={type:\"url\",value:m},t.register(()=>{URL.revokeObjectURL(m)})}K({type:\"attach-media-source\",contentId:n,value:u,mediaSourceId:r.id},[d.value])}else r=new Sn(is(),n,K);let i=e.hasText?new Dn(n,K):null,{hasVideo:a}=e,o=new ot(r,a,i);return t.register(()=>{o.disposeAll(),i==null||i.stop(),r.dispose()}),[r,o,i]}function fa(){let n=!1,e=new Ot({hasMseInWorker:!1,hasVideo:!0}),t=null,r=new io;ae.dashParsers.wasm=r,ae.transports.dash=So;let i=null;onmessage=function(a){var s,u,d;c.debug(\"Worker: received message\",a.data.type);let o=a.data;switch(o.type){case\"init\":pe(!n),n=!0;let m=o.value.date-o.value.timestamp,f=Date.now()-performance.now();Er.setValueIfChanged(f-m),os(o.value.logLevel,o.value.sendBackLogs),r.initialize({wasmUrl:o.value.dashWasmUrl}).then(()=>{K({type:\"init-success\",value:null})},l=>{let p=l instanceof Error?l.toString():\"Unknown Error\";c.error(\"Worker: Could not initialize DASH_WASM parser\",p),K({type:\"init-error\",value:{errorMessage:p,kind:\"dashWasmInitialization\"}})}),(!o.value.hasVideo||o.value.hasMseInWorker)&&(e.disposeCurrentContent(),e=new Ot({hasMseInWorker:o.value.hasMseInWorker,hasVideo:o.value.hasVideo})),ae.codecSupportProber=o.value.hasMseInWorker?Ma:Oa;break;case\"log-level-update\":os(o.value.logLevel,o.value.sendBackLogs);break;case\"prepare\":nl(e,o.value);break;case\"start\":{let l=e.getCurrentContent();if(o.contentId!==(l==null?void 0:l.contentId))return;t!==null&&(t.cancel(),t=null);let p=new W,g=new H(G(o.value.initialObservation,{position:new ct(...o.value.initialObservation.position)}));i=g,t=p,t.signal.register(()=>{g.finish()}),ss(o.value,e,g,p.signal);break}case\"observation\":{let l=e.getCurrentContent();if(o.contentId!==(l==null?void 0:l.contentId))return;let p=o.value,{buffered:g}=p,h=qi(l.mediaSource,null);h.audio!==null&&(g.audio=h.audio),h.video!==null&&(g.video=h.video),i==null||i.setValue(G(p,{position:new ct(...o.value.position)}));break}case\"ref-update\":rl(o);break;case\"stop\":if(o.contentId!==((s=e.getCurrentContent())==null?void 0:s.contentId))return;e.disposeCurrentContent(),t!==null&&(t.cancel(),t=null);break;case\"sb-success\":{let l=e.getCurrentContent();if(o.mediaSourceId!==(l==null?void 0:l.mediaSource.id))return;let{sourceBuffers:p}=l.mediaSource,g=j(p,h=>h.type===o.sourceBufferType);if(g===void 0){c.info(\"WP: Success for an unknown SourceBuffer\",o.sourceBufferType);return}if(g.onOperationSuccess===void 0){c.warn(\"WP: A SourceBufferInterface with MSE performed a cross-thread operation\",o.sourceBufferType);return}g.onOperationSuccess(o.operationId,o.value.buffered);break}case\"sb-error\":{let l=e.getCurrentContent();if(o.mediaSourceId!==(l==null?void 0:l.mediaSource.id))return;let{sourceBuffers:p}=l.mediaSource,g=j(p,h=>h.type===o.sourceBufferType);if(g===void 0){c.info(\"WP: Error for an unknown SourceBuffer\",o.sourceBufferType);return}if(g.onOperationFailure===void 0){c.warn(\"WP: A SourceBufferInterface with MSE performed a cross-thread operation\",o.sourceBufferType);return}g.onOperationFailure(o.operationId,o.value);break}case\"media-source-ready-state-change\":{let l=e.getCurrentContent();if(o.mediaSourceId!==(l==null?void 0:l.mediaSource.id))return;if(l.mediaSource.onMediaSourceReadyStateChanged===void 0){c.warn(\"WP: A MediaSourceInterface with MSE performed a cross-thread operation\");return}l.mediaSource.onMediaSourceReadyStateChanged(o.value);break}case\"decipherability-update\":{if(o.contentId!==((u=e.getCurrentContent())==null?void 0:u.contentId))return;let l=e.getCurrentContent();if(l===null||l.manifest===null)return;let p=o.value;l.manifest.updateRepresentationsDeciperability(g=>{for(let h of p)if(g.representation.uniqueId===h.representationUniqueId)return h.decipherable;return g.representation.decipherable});break}case\"codec-support-update\":{let l=e.getCurrentContent();if(l===null||l.manifest===null)return;if(typeof((d=ae.codecSupportProber)==null?void 0:d.updateCache)==\"function\")for(let{mimeType:p,codec:g,result:h}of o.value)ae.codecSupportProber.updateCache(p,g,h);try{let p=l.manifest.refreshCodecSupport(o.value);p!==null&&K({type:\"warning\",contentId:l.contentId,value:Ce(p)})}catch(p){K({type:\"error\",contentId:l.contentId,value:Ce(p)})}break}case\"urls-update\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;l.manifestFetcher.updateContentUrls(o.value.urls,o.value.refreshNow);break}case\"track-update\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;l.trackChoiceSetter.setTrack(o.value.periodId,o.value.bufferType,o.value.choice);break}case\"rep-update\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;l.trackChoiceSetter.updateRepresentations(o.value.periodId,o.value.adaptationId,o.value.bufferType,o.value.choice);break}case\"add-text-success\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;if(l.workerTextSender===null){c.error(\"WP: Added text track but text track aren't enabled\");return}l.workerTextSender.onPushedTrackSuccess(o.value.ranges);break}case\"push-text-error\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;if(l.workerTextSender===null){c.error(\"WP: Added text track but text track aren't enabled\");return}l.workerTextSender.onPushedTrackError(new Error(o.value.message));break}case\"remove-text-success\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;if(l.workerTextSender===null){c.error(\"WP: Removed text track but text track aren't enabled\");return}l.workerTextSender.onRemoveSuccess(o.value.ranges);break}case\"remove-text-error\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;if(l.workerTextSender===null){c.error(\"WP: Removed text track but text track aren't enabled\");return}l.workerTextSender.onRemoveError(new Error(o.value.message));break}default:qe(o)}}}function nl(n,e){n.initializeNewContent(e).then(t=>{K({type:\"manifest-ready\",contentId:e.contentId,value:{manifest:t}})},t=>{K({type:\"error\",contentId:e.contentId,value:Ce(t)})})}function rl(n){switch(n.value.name){case\"wantedBufferAhead\":sa.setValueIfChanged(n.value.newVal);break;case\"maxVideoBufferSize\":ua.setValueIfChanged(n.value.newVal);break;case\"maxBufferBehind\":la.setValueIfChanged(n.value.newVal);break;case\"maxBufferAhead\":da.setValueIfChanged(n.value.newVal);break;case\"limitVideoResolution\":br.setValueIfChanged(n.value.newVal);break;case\"throttleVideoBitrate\":Sr.setValueIfChanged(n.value.newVal);break;default:qe(n.value)}}function ss(n,e,t,r){var M;let i=new W;i.linkToSignal(r);let a=new Map,o=e.getCurrentContent();if(o===null||o.manifest===null){let _=new _e(\"NONE\",\"Loading content when none is prepared\");K({type:\"error\",contentId:void 0,value:Ce(_)});return}let{contentId:s,manifest:u,mediaSource:d,representationEstimator:m,segmentSinksStore:f,segmentFetcherCreator:l}=o,{drmSystemId:p,enableFastSwitching:g,initialTime:h,onCodecSwitch:I}=n;if(t.onUpdate(_=>{o.decipherabilityFreezeDetector.needToReload(_)&&R({timeOffset:0,minimumPosition:0,maximumPosition:1/0}),[\"video\",\"audio\",\"text\"].forEach(A=>{var x;let k=f.getStatus(A);k.type===\"initialized\"&&k.value.synchronizeInventory((x=_.buffered[A])!=null?x:[])})}),((M=u.getPeriodForTime(h))!=null?M:u.getNextPeriod(h))===void 0){let _=new Y(\"MEDIA_STARTING_TIME_NOT_FOUND\",\"Wanted starting time not found in the Manifest.\");K({type:\"error\",contentId:s,value:Ce(_)});return}let T=new Xt(t,s,K,i.signal),P=Vi(u,d,T,f,{onWarning:_=>K({type:\"warning\",contentId:s,value:Ce(_)}),onPeriodChanged:_=>{K({type:\"active-period-changed\",contentId:s,value:{periodId:_.id}})}},i.signal);Wo({initialPeriod:u.periods[0],manifest:u},T,m,f,l,{wantedBufferAhead:sa,maxVideoBufferSize:ua,maxBufferAhead:da,maxBufferBehind:la,drmSystemId:p,enableFastSwitching:g,onCodecSwitch:I},E(),i.signal);function E(){return{needsBufferFlush(_){K({type:\"needs-buffer-flush\",contentId:s,value:_})},streamStatusUpdate(_){v(_),u.isLastPeriodKnown&&_.period.id===u.periods[u.periods.length-1].id&&(_.hasFinishedLoading||_.isEmptyStream?P.onLastSegmentFinishedLoading(_.bufferType):P.onLastSegmentLoadingResume(_.bufferType))},needsManifestRefresh(){e.scheduleManifestRefresh({enablePartialRefresh:!0,canUseUnsafeMode:!0})},manifestMightBeOufOfSync(){let{OUT_OF_SYNC_MANIFEST_REFRESH_DELAY:_}=L.getCurrent();e.scheduleManifestRefresh({enablePartialRefresh:!1,canUseUnsafeMode:!1,delay:_})},lockedStream(_){K({type:\"locked-stream\",contentId:s,value:{periodId:_.period.id,bufferType:_.bufferType}})},adaptationChange(_){var A,k;P.onAdaptationChange(_.type,_.period,_.adaptation),!i.signal.isCancelled()&&K({type:\"adaptation-changed\",contentId:s,value:{adaptationId:(k=(A=_.adaptation)==null?void 0:A.id)!=null?k:null,periodId:_.period.id,type:_.type}})},representationChange(_){var A,k;P.onRepresentationChange(_.type,_.period),!i.signal.isCancelled()&&K({type:\"representation-changed\",contentId:s,value:{adaptationId:_.adaptation.id,representationId:(k=(A=_.representation)==null?void 0:A.id)!=null?k:null,periodId:_.period.id,type:_.type}})},inbandEvent(_){K({type:\"inband-event\",contentId:s,value:_})},warning(_){K({type:\"warning\",contentId:s,value:Ce(_)})},periodStreamReady(_){o!==null&&(o.trackChoiceSetter.addTrackSetter(_.period.id,_.type,_.adaptationRef),K({type:\"period-stream-ready\",contentId:s,value:{periodId:_.period.id,bufferType:_.type}}))},periodStreamCleared(_){if(o===null)return;let A=a.get(_.period);A!==void 0&&(A.delete(_.type),A.size===0&&a.delete(_.period)),o.trackChoiceSetter.removeTrackSetter(_.period.id,_.type),K({type:\"period-stream-cleared\",contentId:s,value:{periodId:_.period.id,bufferType:_.type}})},bitrateEstimateChange(_){K({type:\"bitrate-estimate-change\",contentId:s,value:{bitrate:_.bitrate,bufferType:_.type}})},needsMediaSourceReload(_){R(_)},needsDecipherabilityFlush(){K({type:\"needs-decipherability-flush\",contentId:s,value:null})},encryptionDataEncountered(_){for(let A of _){let k=A.content,x=Se({},k);x.manifest instanceof yt&&(x.manifest=x.manifest.getMetadataSnapshot()),x.period instanceof et&&(x.period=x.period.getMetadataSnapshot()),x.adaptation instanceof Ze&&(x.adaptation=x.adaptation.getMetadataSnapshot()),x.representation instanceof Ft&&(x.representation=x.representation.getMetadataSnapshot()),K({type:\"encryption-data-encountered\",contentId:s,value:{keyIds:A.keyIds,values:A.values,content:x,type:A.type}})}},error(_){K({type:\"error\",contentId:s,value:Ce(_)})}}}function v(_){let{imminentDiscontinuity:A}=_,k=a.get(_.period),x=k==null?void 0:k.get(_.bufferType);if(x!==void 0){if(x.discontinuity===null){if(A===null)return}else if(A!==null&&x.discontinuity.start===A.start&&x.discontinuity.end===A.end)return}k===void 0&&(k=new Map,a.set(_.period,k));let D={periodId:_.period.id,bufferType:_.bufferType,discontinuity:_.imminentDiscontinuity,position:_.position};k.set(_.bufferType,D),K({type:\"discontinuity-update\",contentId:s,value:D})}function R(_){let k=t.getValue().position.getWanted();i!==null&&i.cancel(),e.reloadMediaSource(_).then(()=>{ss({initialTime:k,drmSystemId:n.drmSystemId,enableFastSwitching:n.enableFastSwitching,onCodecSwitch:n.onCodecSwitch},e,t,r)},x=>{K({type:\"error\",contentId:s,value:Ce(x)})})}}function os(n,e){e?c.setLevel(n,(t,r)=>{let i=r.map(a=>a instanceof Error?Ce(a):a);postMessage({type:\"log\",value:{logLevel:t,logs:i}})}):c.setLevel(n)}var us=fa;us();})();\n" + "})()"], { type: "application/javascript" });
|
|
4
|
+
var blob = new Blob(["(function(){" + "\"use strict\";(()=>{var Hs=Object.defineProperty,Gs=Object.defineProperties;var Ks=Object.getOwnPropertyDescriptors;var za=Object.getOwnPropertySymbols;var js=Object.prototype.hasOwnProperty,Ys=Object.prototype.propertyIsEnumerable;var Wa=(n,e,t)=>e in n?Hs(n,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):n[e]=t,_e=(n,e)=>{for(var t in e||(e={}))js.call(e,t)&&Wa(n,t,e[t]);if(za)for(var t of za(e))Ys.call(e,t)&&Wa(n,t,e[t]);return n},Le=(n,e)=>Gs(n,Ks(e));var b={PRODUCTION:0,DEV:1,CURRENT_ENV:0};var $s={DEFAULT_REQUEST_TIMEOUT:3e4,DEFAULT_CONNECTION_TIMEOUT:15e3,DEFAULT_TEXT_TRACK_MODE:\"native\",DEFAULT_ENABLE_FAST_SWITCHING:!0,DELTA_POSITION_AFTER_RELOAD:{bitrateSwitch:-.1,trackSwitch:{audio:0,video:0,other:0}},DEFAULT_CODEC_SWITCHING_BEHAVIOR:\"continue\",DEFAULT_AUTO_PLAY:!1,DEFAULT_WANTED_BUFFER_AHEAD:30,DEFAULT_MAX_BUFFER_AHEAD:1/0,DEFAULT_MAX_BUFFER_BEHIND:1/0,DEFAULT_MAX_VIDEO_BUFFER_SIZE:1/0,MAXIMUM_MAX_BUFFER_AHEAD:{text:18e3},MINIMUM_MAX_BUFFER_AHEAD:{text:120},MAXIMUM_MAX_BUFFER_BEHIND:{text:18e3},DEFAULT_BASE_BANDWIDTH:0,INACTIVITY_DELAY:6e4,DEFAULT_THROTTLE_VIDEO_BITRATE_WHEN_HIDDEN:!1,DEFAULT_VIDEO_RESOLUTION_LIMIT:\"none\",DEFAULT_LIVE_GAP:{DEFAULT:10,LOW_LATENCY:3.5},BUFFER_DISCONTINUITY_THRESHOLD:.2,BITRATE_REBUFFERING_RATIO:1.5,DEFAULT_MAX_MANIFEST_REQUEST_RETRY:4,DEFAULT_CDN_DOWNGRADE_TIME:60,DEFAULT_MAX_REQUESTS_RETRY_ON_ERROR:4,INITIAL_BACKOFF_DELAY_BASE:{REGULAR:200,LOW_LATENCY:50},MAX_BACKOFF_DELAY_BASE:{REGULAR:3e3,LOW_LATENCY:1e3},SAMPLING_INTERVAL_MEDIASOURCE:1e3,SAMPLING_INTERVAL_LOW_LATENCY:500,SAMPLING_INTERVAL_NO_MEDIASOURCE:500,ABR_ENTER_BUFFER_BASED_ALGO:10,ABR_EXIT_BUFFER_BASED_ALGO:5,ABR_MINIMUM_TOTAL_BYTES:15e4,ABR_MINIMUM_CHUNK_SIZE:16e3,ABR_STARVATION_FACTOR:{DEFAULT:.72,LOW_LATENCY:.72},ABR_REGULAR_FACTOR:{DEFAULT:.72,LOW_LATENCY:.72},ABR_STARVATION_GAP:{DEFAULT:5,LOW_LATENCY:5},OUT_OF_STARVATION_GAP:{DEFAULT:7,LOW_LATENCY:7},ABR_STARVATION_DURATION_DELTA:.1,ABR_FAST_EMA:2,ABR_SLOW_EMA:10,RESUME_GAP_AFTER_SEEKING:{DEFAULT:1.5,LOW_LATENCY:.5},RESUME_GAP_AFTER_NOT_ENOUGH_DATA:{DEFAULT:.5,LOW_LATENCY:.5},RESUME_GAP_AFTER_BUFFERING:{DEFAULT:5,LOW_LATENCY:.5},REBUFFERING_GAP:{DEFAULT:.5,LOW_LATENCY:.2},MINIMUM_BUFFER_AMOUNT_BEFORE_FREEZING:2,UNFREEZING_SEEK_DELAY:6e3,FREEZING_STALLED_DELAY:600,UNFREEZING_DELTA_POSITION:.001,SEGMENT_SYNCHRONIZATION_DELAY:1500,MISSING_DATA_TRIGGER_SYNC_DELAY:.1,MAX_TIME_MISSING_FROM_COMPLETE_SEGMENT:.15,MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE:.4,MAX_MANIFEST_BUFFERED_DURATION_DIFFERENCE:.3,MINIMUM_SEGMENT_SIZE:.005,APPEND_WINDOW_SECURITIES:{START:.2,END:.1},MAXIMUM_HTML_TEXT_TRACK_UPDATE_INTERVAL:50,TEXT_TRACK_SIZE_CHECKS_INTERVAL:250,BUFFER_PADDING:{audio:1,video:3,other:1},SEGMENT_PRIORITIES_STEPS:[2,4,8,12,18,25],MAX_HIGH_PRIORITY_LEVEL:1,MIN_CANCELABLE_PRIORITY:3,EME_DEFAULT_VIDEO_CODECS:['video/mp4;codecs=\"avc1.4d401e\"','video/mp4;codecs=\"avc1.42e01e\"','video/webm;codecs=\"vp8\"'],EME_DEFAULT_AUDIO_CODECS:['audio/mp4;codecs=\"mp4a.40.2\"',\"audio/webm;codecs=opus\"],EME_DEFAULT_WIDEVINE_ROBUSTNESSES:[\"HW_SECURE_ALL\",\"HW_SECURE_DECODE\",\"HW_SECURE_CRYPTO\",\"SW_SECURE_DECODE\",\"SW_SECURE_CRYPTO\"],EME_DEFAULT_PLAYREADY_RECOMMENDATION_ROBUSTNESSES:[\"3000\",\"2000\"],EME_KEY_SYSTEMS:{clearkey:[\"webkit-org.w3.clearkey\",\"org.w3.clearkey\"],widevine:[\"com.widevine.alpha\"],playready:[\"com.microsoft.playready.recommendation\",\"com.microsoft.playready\",\"com.chromecast.playready\",\"com.youtube.playready\"],fairplay:[\"com.apple.fps.1_0\"]},MAX_CONSECUTIVE_MANIFEST_PARSING_IN_UNSAFE_MODE:10,MIN_MANIFEST_PARSING_TIME_TO_ENTER_UNSAFE_MODE:200,MIN_DASH_S_ELEMENTS_TO_PARSE_UNSAFELY:300,OUT_OF_SYNC_MANIFEST_REFRESH_DELAY:3e3,FAILED_PARTIAL_UPDATE_MANIFEST_REFRESH_DELAY:3e3,DASH_FALLBACK_LIFETIME_WHEN_MINIMUM_UPDATE_PERIOD_EQUAL_0:3,EME_DEFAULT_MAX_SIMULTANEOUS_MEDIA_KEY_SESSIONS:15,EME_MAX_STORED_PERSISTENT_SESSION_INFORMATION:1e3,EME_WAITING_DELAY_LOADED_SESSION_EMPTY_KEYSTATUSES:100,FORCED_ENDED_THRESHOLD:8e-4,ADAP_REP_SWITCH_BUFFER_PADDINGS:{video:{before:5,after:5},audio:{before:2,after:2.5},text:{before:0,after:0}},SOURCE_BUFFER_FLUSHING_INTERVAL:500,CONTENT_REPLACEMENT_PADDING:1.2,CACHE_LOAD_DURATION_THRESHOLDS:{video:50,audio:10},STREAM_EVENT_EMITTER_POLL_INTERVAL:250,DEFAULT_MAXIMUM_TIME_ROUNDING_ERROR:.001,BUFFERED_HISTORY_RETENTION_TIME:6e4,BUFFERED_HISTORY_MAXIMUM_ENTRIES:200,MIN_BUFFER_AHEAD:5,UPTO_CURRENT_POSITION_CLEANUP:5,DEFAULT_VIDEO_REPRESENTATIONS_SWITCHING_MODE:\"seamless\",DEFAULT_AUDIO_REPRESENTATIONS_SWITCHING_MODE:\"seamless\",DEFAULT_VIDEO_TRACK_SWITCHING_MODE:\"reload\",DEFAULT_AUDIO_TRACK_SWITCHING_MODE:\"seamless\"},Va=$s;function Xs(n,...e){if(n==null)throw new TypeError(\"Cannot convert undefined or null to object\");let t=Object(n);for(let r=0;r<e.length;r++){let i=e[r];for(let a in i)Object.prototype.hasOwnProperty.call(i,a)&&(t[a]=i[a])}return t}var H=typeof Object.assign==\"function\"?Object.assign:Xs;function Vr(n){return n!=null&&!Array.isArray(n)&&typeof n==\"object\"}function jt(n,...e){if(e.length===0)return n;let t=e.shift();if(Vr(n)&&Vr(t))for(let r in t)if(Vr(t[r])){let i=n[r];i===void 0&&(i={},n[r]=i),jt(i,t[r])}else H(n,{[r]:t[r]});return jt(n,...e)}var qr=class{constructor(){this._config=Va}update(e){let t=jt(this._config,e);this._config=t}getCurrent(){return this._config}},Zs=new qr,U=Zs;var Ge=class n extends Error{constructor(e,t,r){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"CustomLoaderError\",this.message=e,this.canRetry=t,this.xhr=r}};function R(n){return n==null}var oe=class{constructor(){this._listeners={}}addEventListener(e,t,r){let i=this._listeners[e];Array.isArray(i)?i.push(t):this._listeners[e]=[t],r!==void 0&&r.register(()=>{this.removeEventListener(e,t)})}removeEventListener(e,t){if(R(e)){this._listeners={};return}let r=this._listeners[e];if(!Array.isArray(r))return;if(R(t)){delete this._listeners[e];return}let i=r.indexOf(t);i!==-1&&r.splice(i,1),r.length===0&&delete this._listeners[e]}trigger(e,t){let r=this._listeners[e];Array.isArray(r)&&r.slice().forEach(i=>{try{i(t)}catch(a){if(b.CURRENT_ENV===b.DEV)throw a instanceof Error?a:new Error(\"EventEmitter: listener error\");console.error(\"RxPlayer: EventEmitter error\",a instanceof Error?a:null)}})}};function N(){}var Js=\"NONE\",Yt=class extends oe{constructor(){super(),this.error=N,this.warn=N,this.info=N,this.debug=N,this._levels={NONE:0,ERROR:1,WARNING:2,INFO:3,DEBUG:4},this._currentLevel=Js}setLevel(e,t){let r,i=this._levels[e];typeof i==\"number\"?(r=i,this._currentLevel=e):(r=0,this._currentLevel=\"NONE\"),t===void 0?(this.error=r>=this._levels.ERROR?console.error.bind(console):N,this.warn=r>=this._levels.WARNING?console.warn.bind(console):N,this.info=r>=this._levels.INFO?console.info.bind(console):N,this.debug=r>=this._levels.DEBUG?console.log.bind(console):N):(this.error=r>=this._levels.ERROR?(...a)=>t(\"ERROR\",a):N,this.warn=r>=this._levels.WARNING?(...a)=>t(\"WARNING\",a):N,this.info=r>=this._levels.INFO?(...a)=>t(\"INFO\",a):N,this.debug=r>=this._levels.DEBUG?(...a)=>t(\"DEBUG\",a):N),this.trigger(\"onLogLevelChange\",this._currentLevel)}getLevel(){return this._currentLevel}hasLevel(e){return this._levels[e]>=this._levels[this._currentLevel]}};var eu=new Yt,c=eu;var st=typeof WorkerGlobalScope!=\"undefined\"&&self instanceof WorkerGlobalScope;var tu=typeof window==\"undefined\"&&!st,er=tu;var tr;st?tr=self:er?tr=global:tr=window;var Ee=tr;function ne(n,e,t){if(typeof Array.prototype.findIndex==\"function\")return n.findIndex(e,t);let r=n.length>>>0;for(let i=0;i<r;i++)if(e.call(t,n[i],i,n))return i;return-1}var nr=class{constructor(e,t){this._value=e,this._listeners=[],this._isFinished=!1,this._onFinishCbs=[],t!==void 0&&(this._deregisterCancellation=t.register(()=>this.finish()))}getValue(){return this._value}setValue(e){if(this._isFinished){b.CURRENT_ENV===b.DEV&&console.error(\"Finished shared references cannot be updated\");return}if(this._value=e,this._listeners.length===0)return;let t=this._listeners.slice();for(let r of t)try{r.hasBeenCleared||r.trigger(e,r.complete)}catch(i){}}setValueIfChanged(e){e!==this._value&&this.setValue(e)}onUpdate(e,t){let r=()=>{if((t==null?void 0:t.clearSignal)!==void 0&&t.clearSignal.deregister(r),i.hasBeenCleared)return;i.hasBeenCleared=!0;let a=this._listeners.indexOf(i);a>=0&&this._listeners.splice(a,1)},i={trigger:e,complete:r,hasBeenCleared:!1};if(this._listeners.push(i),(t==null?void 0:t.emitCurrentValue)===!0&&e(this._value,r),this._isFinished||i.hasBeenCleared){r();return}(t==null?void 0:t.clearSignal)!==void 0&&t.clearSignal.register(r)}waitUntilDefined(e,t){this.onUpdate((r,i)=>{r!==void 0&&(i(),e(this._value))},{clearSignal:t==null?void 0:t.clearSignal,emitCurrentValue:!0})}_onFinished(e,t){if(t.isCancelled())return N;let r=()=>{let o=ne(this._onFinishCbs,s=>s.trigger===i);o>=0&&(this._onFinishCbs[o].hasBeenCleared=!0,this._onFinishCbs.splice(o,1))},i=()=>{r(),e()},a=t.register(r);return this._onFinishCbs.push({trigger:i,hasBeenCleared:!1}),a}finish(){this._deregisterCancellation!==void 0&&this._deregisterCancellation(),this._isFinished=!0;let e=this._listeners.slice();for(let t of e)try{t.hasBeenCleared||(t.complete(),t.hasBeenCleared=!0)}catch(r){}if(this._listeners.length=0,this._onFinishCbs.length>0){let t=this._onFinishCbs.slice();for(let r of t)try{r.hasBeenCleared||(r.trigger(),r.hasBeenCleared=!0)}catch(i){}this._onFinishCbs.length=0}}};function Qt(n,e,t){let r=new nr(e(n.getValue()),t);return n.onUpdate(function(a){r.setValue(e(a))},{clearSignal:t}),n._onFinished(()=>{r.finish()},t),r}var G=nr;var Hr=new G(0);function L(){return performance.now()+Hr.getValue()}var re=class n extends Error{constructor(e,t,r){switch(super(),Object.setPrototypeOf(this,n.prototype),this.name=\"RequestError\",this.url=e,this.status=t,this.type=r,r){case\"TIMEOUT\":this.message=\"The request timed out\";break;case\"ERROR_EVENT\":this.message=\"An error prevented the request to be performed successfully\";break;case\"PARSE_ERROR\":this.message=\"An error happened while formatting the response data\";break;case\"ERROR_HTTP_CODE\":this.message=\"An HTTP status code indicating failure was received: \"+String(this.status);break}}serialize(){return{url:this.url,status:this.status,type:this.type}}},Se={TIMEOUT:\"TIMEOUT\",ERROR_EVENT:\"ERROR_EVENT\",ERROR_HTTP_CODE:\"ERROR_HTTP_CODE\",PARSE_ERROR:\"PARSE_ERROR\"};var Gr=typeof Headers==\"function\"?Headers:null,Kr=typeof AbortController==\"function\"?AbortController:null;function rr(n){let e;if(!R(n.headers))if(R(Gr))e=n.headers;else{e=new Gr;let l=Object.keys(n.headers);for(let p=0;p<l.length;p++){let g=l[p];e.append(g,n.headers[g])}}c.debug(\"Fetch: Called with URL\",n.url);let t=null,r=!1,i=!1,a=L(),o=R(Kr)?null:new Kr;function s(){if(R(o)){c.warn(\"Fetch: AbortController API not available.\");return}o.abort()}let u;n.timeout!==void 0&&(u=setTimeout(()=>{r=!0,d!==void 0&&clearTimeout(d),s()},n.timeout));let d;n.connectionTimeout!==void 0&&(d=setTimeout(()=>{i=!0,u!==void 0&&clearTimeout(u),s()},n.connectionTimeout));let f=n.cancelSignal.register(function(p){t=p,s()}),m={method:\"GET\"};return e!==void 0&&(m.headers=e),m.signal=R(o)?null:o.signal,fetch(n.url,m).then(l=>{if(d!==void 0&&clearTimeout(d),l.status>=300)throw c.warn(\"Fetch: Request HTTP Error\",l.status,l.url),new re(l.url,l.status,Se.ERROR_HTTP_CODE);if(R(l.body))throw new re(l.url,l.status,Se.PARSE_ERROR);let p=l.headers.get(\"Content-Length\"),g=!R(p)&&!isNaN(+p)?+p:void 0,h=l.body.getReader(),I=0;return y();async function y(){let E=await h.read();if(!E.done&&!R(E.value)){I+=E.value.byteLength;let v=L(),T={url:l.url,currentTime:v,duration:v-a,sendingTime:a,chunkSize:E.value.byteLength,chunk:E.value.buffer,size:I,totalSize:g};return n.onData(T),y()}else if(E.done){u!==void 0&&clearTimeout(u),f();let v=L();return{requestDuration:v-a,receivedTime:v,sendingTime:a,size:I,status:l.status,url:l.url}}return y()}}).catch(l=>{throw t!==null?t:(f(),r?(c.warn(\"Fetch: Request timed out.\"),new re(n.url,0,Se.TIMEOUT)):i?(c.warn(\"Fetch: Request connection timed out.\"),new re(n.url,0,Se.TIMEOUT)):l instanceof re?l:(c.warn(\"Fetch: Request Error\",l instanceof Error?l.toString():\"\"),new re(n.url,0,Se.ERROR_EVENT)))})}function $t(){return typeof Ee.fetch==\"function\"&&!R(Kr)&&!R(Gr)}function Z(n){return typeof n==\"string\"&&n.length>0}var nu=\"json\";function jr(n){let e={url:n.url,headers:n.headers,responseType:R(n.responseType)?nu:n.responseType,timeout:n.timeout,connectionTimeout:n.connectionTimeout};return new Promise((t,r)=>{let{onProgress:i,cancelSignal:a}=n,{url:o,headers:s,responseType:u,timeout:d,connectionTimeout:f}=e,m=new XMLHttpRequest;m.open(\"GET\",o,!0);let l;d!==void 0&&(m.timeout=d,l=setTimeout(()=>{I(),r(new re(o,m.status,Se.TIMEOUT))},d+3e3));let p;if(f!==void 0&&(p=setTimeout(()=>{I(),m.readyState!==XMLHttpRequest.DONE&&m.abort(),r(new re(o,m.status,Se.TIMEOUT))},f)),m.responseType=u,m.responseType===\"document\"&&m.overrideMimeType(\"text/xml\"),!R(s)){let y=s;for(let E in y)y.hasOwnProperty(E)&&m.setRequestHeader(E,y[E])}let g=L(),h=null;if(a!==void 0&&(h=a.register(function(E){I(),m.readyState!==XMLHttpRequest.DONE&&m.abort(),r(E)}),a.isCancelled()))return;m.onerror=function(){I(),r(new re(o,m.status,Se.ERROR_EVENT))},m.ontimeout=function(){I(),r(new re(o,m.status,Se.TIMEOUT))},f!==void 0&&(m.onreadystatechange=function(){m.readyState>=XMLHttpRequest.HEADERS_RECEIVED&&clearTimeout(p)}),i!==void 0&&(m.onprogress=function(E){let v=L();i({url:o,duration:v-g,sendingTime:g,currentTime:v,size:E.loaded,totalSize:E.total})}),m.onload=function(E){if(m.readyState===XMLHttpRequest.DONE)if(I(),m.status>=200&&m.status<300){let v=L(),T=m.response instanceof ArrayBuffer?m.response.byteLength:E.total,C=m.status,P=m.responseType,M=Z(m.responseURL)?m.responseURL:o,_;if(P===\"json\"?_=typeof m.response==\"object\"?m.response:ru(m.responseText):_=m.response,R(_)){r(new re(o,m.status,Se.PARSE_ERROR));return}t({status:C,url:M,responseType:P,sendingTime:g,receivedTime:v,requestDuration:v-g,size:T,responseData:_})}else r(new re(o,m.status,Se.ERROR_HTTP_CODE))},m.send();function I(){l!==void 0&&clearTimeout(l),p!==void 0&&clearTimeout(p),h!==null&&h()}})}function ru(n){try{return JSON.parse(n)}catch(e){return null}}var le=jr;var bt=Se,Fe={NETWORK_ERROR:\"NETWORK_ERROR\",MEDIA_ERROR:\"MEDIA_ERROR\",ENCRYPTED_MEDIA_ERROR:\"ENCRYPTED_MEDIA_ERROR\",OTHER_ERROR:\"OTHER_ERROR\"};function Qe(n,e){return`${n}: ${e}`}var Xt=class n extends Error{constructor(e,t,r){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"EncryptedMediaError\",this.type=Fe.ENCRYPTED_MEDIA_ERROR,this.code=e,this._originalMessage=t,this.message=Qe(this.code,t),this.fatal=!1,typeof(r==null?void 0:r.keyStatuses)==\"string\"&&(this.keyStatuses=r.keyStatuses)}serialize(){return{name:this.name,code:this.code,reason:this._originalMessage,keyStatuses:this.keyStatuses}}};var j=class n extends Error{constructor(e,t,r){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"MediaError\",this.type=Fe.MEDIA_ERROR,this._originalMessage=t,this.code=e,this.message=Qe(this.code,t),this.fatal=!1,(r==null?void 0:r.tracks)!==void 0&&(r==null?void 0:r.tracks.length)>0&&(this.tracksInfo=r.tracks)}serialize(){return{name:this.name,code:this.code,reason:this._originalMessage,tracks:this.tracksInfo}}};var Ke=class n extends Error{constructor(e,t){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"NetworkError\",this.type=Fe.NETWORK_ERROR,this.url=t.url,this.status=t.status,this.errorType=t.type,this._baseError=t,this.code=e,this.message=Qe(this.code,t.message),this.fatal=!1}isHttpError(e){return this.errorType===bt.ERROR_HTTP_CODE&&this.status===e}serialize(){return{name:this.name,code:this.code,baseError:this._baseError.serialize()}}};var Re=class n extends Error{constructor(e,t){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"OtherError\",this.type=Fe.OTHER_ERROR,this.code=e,this.message=Qe(this.code,t),this.fatal=!1,this._originalMessage=t}serialize(){return{name:this.name,code:this.code,reason:this._originalMessage}}};function Mt(n){return(n instanceof Xt||n instanceof j||n instanceof Re||n instanceof Ke)&&Object.keys(Fe).indexOf(n.type)>=0}function ge(n,{defaultCode:e,defaultReason:t}){if(Mt(n))return n;let r=n instanceof Error?n.toString():t;return new Re(e,r)}var Ce=class n extends Error{constructor(e,t,r){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"SourceBufferError\",this.errorName=e,this.message=t,this.isBufferFull=r}serialize(){return{errorName:this.name,message:this.message,isBufferFull:this.isBufferFull}}toString(){return`${this.errorName}: ${this.message}`}};var iu={dashParsers:{wasm:null,native:null,fastJs:null},codecSupportProber:null,createDebugElement:null,directfile:null,decrypt:null,htmlTextDisplayer:null,htmlTextTracksParsers:{},mainThreadMediaSourceInit:null,multithread:null,nativeTextDisplayer:null,nativeTextTracksParsers:{},transports:{}},qa=iu;var ae=qa;function K(n,e,t){if(typeof Array.prototype.find==\"function\")return n.find(e,t);let r=n.length>>>0;for(let i=0;i<r;i++){let a=n[i];if(e.call(t,a,i,n))return a}}var au={aa:\"aar\",ab:\"abk\",ae:\"ave\",af:\"afr\",ak:\"aka\",am:\"amh\",an:\"arg\",ar:\"ara\",as:\"asm\",av:\"ava\",ay:\"aym\",az:\"aze\",ba:\"bak\",be:\"bel\",bg:\"bul\",bi:\"bis\",bm:\"bam\",bn:\"ben\",bo:\"bod\",br:\"bre\",bs:\"bos\",ca:\"cat\",ce:\"che\",ch:\"cha\",co:\"cos\",cr:\"cre\",cs:\"ces\",cu:\"chu\",cv:\"chv\",cy:\"cym\",da:\"dan\",de:\"deu\",dv:\"div\",dz:\"dzo\",ee:\"ewe\",el:\"ell\",en:\"eng\",eo:\"epo\",es:\"spa\",et:\"est\",eu:\"eus\",fa:\"fas\",ff:\"ful\",fi:\"fin\",fj:\"fij\",fo:\"fao\",fr:\"fra\",fy:\"fry\",ga:\"gle\",gd:\"gla\",gl:\"glg\",gn:\"grn\",gu:\"guj\",gv:\"glv\",ha:\"hau\",he:\"heb\",hi:\"hin\",ho:\"hmo\",hr:\"hrv\",ht:\"hat\",hu:\"hun\",hy:\"hye\",hz:\"her\",ia:\"ina\",id:\"ind\",ie:\"ile\",ig:\"ibo\",ii:\"iii\",ik:\"ipk\",io:\"ido\",is:\"isl\",it:\"ita\",iu:\"iku\",ja:\"jpn\",jv:\"jav\",ka:\"kat\",kg:\"kon\",ki:\"kik\",kj:\"kua\",kk:\"kaz\",kl:\"kal\",km:\"khm\",kn:\"kan\",ko:\"kor\",kr:\"kau\",ks:\"kas\",ku:\"kur\",kv:\"kom\",kw:\"cor\",ky:\"kir\",la:\"lat\",lb:\"ltz\",lg:\"lug\",li:\"lim\",ln:\"lin\",lo:\"lao\",lt:\"lit\",lu:\"lub\",lv:\"lav\",mg:\"mlg\",mh:\"mah\",mi:\"mri\",mk:\"mkd\",ml:\"mal\",mn:\"mon\",mr:\"mar\",ms:\"msa\",mt:\"mlt\",my:\"mya\",na:\"nau\",nb:\"nob\",nd:\"nde\",ne:\"nep\",ng:\"ndo\",nl:\"nld\",nn:\"nno\",no:\"nor\",nr:\"nbl\",nv:\"nav\",ny:\"nya\",oc:\"oci\",oj:\"oji\",om:\"orm\",or:\"ori\",os:\"oss\",pa:\"pan\",pi:\"pli\",pl:\"pol\",ps:\"pus\",pt:\"por\",qu:\"que\",rm:\"roh\",rn:\"run\",ro:\"ron\",ru:\"rus\",rw:\"kin\",sa:\"san\",sc:\"srd\",sd:\"snd\",se:\"sme\",sg:\"sag\",si:\"sin\",sk:\"slk\",sl:\"slv\",sm:\"smo\",sn:\"sna\",so:\"som\",sq:\"sqi\",sr:\"srp\",ss:\"ssw\",st:\"sot\",su:\"sun\",sv:\"swe\",sw:\"swa\",ta:\"tam\",te:\"tel\",tg:\"tgk\",th:\"tha\",ti:\"tir\",tk:\"tuk\",tl:\"tgl\",tn:\"tsn\",to:\"ton\",tr:\"tur\",ts:\"tso\",tt:\"tat\",tw:\"twi\",ty:\"tah\",ug:\"uig\",uk:\"ukr\",ur:\"urd\",uz:\"uzb\",ve:\"ven\",vi:\"vie\",vo:\"vol\",wa:\"wln\",wo:\"wol\",xh:\"xho\",yi:\"yid\",yo:\"yor\",za:\"zha\",zh:\"zho\",zu:\"zul\"},Ha=au;var ou={alb:\"sqi\",arm:\"hye\",baq:\"eus\",bur:\"mya\",chi:\"zho\",cze:\"ces\",dut:\"nld\",fre:\"fra\",geo:\"kat\",ger:\"deu\",gre:\"ell\",ice:\"isl\",mac:\"mkd\",mao:\"mri\",may:\"msa\",per:\"fas\",slo:\"slk\",rum:\"ron\",tib:\"bod\",wel:\"cym\"},Ga=ou;function su(n){if(R(n)||n===\"\")return\"\";let t=(\"\"+n).toLowerCase().split(\"-\")[0],r=uu(t);return Z(r)?r:n}function uu(n){let e;switch(n.length){case 2:e=Ha[n];break;case 3:e=Ga[n];break}return e}var Ka=su;var ja=Ka;function ir(n,e){if(n.length!==e.length)return!1;if(n===e)return!0;for(let t=n.length-1;t>=0;t--)if(n[t]!==e[t])return!1;return!0}function Ae(){let n=\"\",e=-1;return function(){return e++,e>=Number.MAX_SAFE_INTEGER&&(n+=\"0\",e=0),n+String(e)}}var du=Ae(),Yr=class{constructor(e,t){var r,i,a,o,s;if(this.id=e.id,this.uniqueId=du(),this.bitrate=e.bitrate,this.codecs=[],e.isSpatialAudio!==void 0&&(this.isSpatialAudio=e.isSpatialAudio),e.height!==void 0&&(this.height=e.height),e.width!==void 0&&(this.width=e.width),e.mimeType!==void 0&&(this.mimeType=e.mimeType),e.contentProtections!==void 0&&(this.contentProtections=e.contentProtections),e.frameRate!==void 0&&(this.frameRate=e.frameRate),e.hdrInfo!==void 0&&(this.hdrInfo=e.hdrInfo),this.cdnMetadata=e.cdnMetadata,this.index=e.index,t===\"audio\"||t===\"video\")if(ae.codecSupportProber!==null){if(e.supplementalCodecs!==void 0){let u=ae.codecSupportProber.isSupported((r=this.mimeType)!=null?r:\"\",(i=e.supplementalCodecs)!=null?i:\"\");u!==!1&&(this.codecs=[e.supplementalCodecs],u===!0&&(this.isSupported=!0))}this.isSupported!==!0&&(this.codecs.length>0?this.codecs.push((a=e.codecs)!=null?a:\"\"):(this.codecs=e.codecs===void 0?[]:[e.codecs],this.isSupported=ae.codecSupportProber.isSupported((o=this.mimeType)!=null?o:\"\",(s=e.codecs)!=null?s:\"\")))}else e.supplementalCodecs!==void 0&&this.codecs.push(e.supplementalCodecs),e.codecs!==void 0&&this.codecs.push(e.codecs);else e.codecs!==void 0&&this.codecs.push(e.codecs),this.isSupported=!0}refreshCodecSupport(e){var i;let t=(i=this.mimeType)!=null?i:\"\",r=this.codecs;r.length===0&&(r=[\"\"]);for(let a=0;a<r.length;a++)for(let o of e){let s=r[a];if(o.codec===s&&o.mimeType===t){if(o.result){this.isSupported=!0,this.codecs=[s];return}else if(a===r.length){this.isSupported=!1,this.codecs=[s];return}}}}getMimeTypeString(){var e,t,r;return`${(e=this.mimeType)!=null?e:\"\"};codecs=\"${(r=(t=this.codecs)==null?void 0:t[0])!=null?r:\"\"}\"`}getEncryptionData(e){var i,a;let t=this.getAllEncryptionData(),r=[];for(let o=0;o<t.length;o++){let s=!1,u=t[o];for(let d=0;d<u.values.length;d++)if(u.values[d].systemId.toLowerCase()===e.toLowerCase())if(s)r[r.length-1].values.push(u.values[d]);else{let f=(a=(i=this.contentProtections)==null?void 0:i.keyIds)==null?void 0:a.map(m=>m.keyId);r.push({type:u.type,keyIds:f,values:[u.values[d]]}),s=!0}}return r}getAllEncryptionData(){var t,r;if(this.contentProtections===void 0||this.contentProtections.initData.length===0)return[];let e=(r=(t=this.contentProtections)==null?void 0:t.keyIds)==null?void 0:r.map(i=>i.keyId);return this.contentProtections.initData.map(i=>({type:i.type,keyIds:e,values:i.values}))}addProtectionData(e,t,r){let i=!1;if(this.contentProtections===void 0)return this.contentProtections={keyIds:t!==void 0?[{keyId:t}]:[],initData:[{type:e,values:r}]},!0;if(t!==void 0){let o=this.contentProtections.keyIds;if(o===void 0)this.contentProtections.keyIds=[{keyId:t}];else{let s=!1;for(let u of o)ir(u.keyId,t)&&(s=!0);s||(c.warn(\"Manifest: found unanounced key id.\"),o.push({keyId:t}))}}let a=this.contentProtections.initData;for(let o=0;o<a.length;o++)if(a[o].type===e){let s=a[o].values;for(let u=0;u<r.length;u++){let d=r[u],f;for(f=0;f<s.length;f++)if(d.systemId===s[f].systemId){if(ir(d.data,s[f].data))break;c.warn(\"Manifest: different init data for the same system ID\")}f===s.length&&(s.push(d),i=!0)}return i}return this.contentProtections.initData.push({type:e,values:r}),!0}getMetadataSnapshot(){return{id:this.id,uniqueId:this.uniqueId,bitrate:this.bitrate,codecs:this.codecs,mimeType:this.mimeType,width:this.width,height:this.height,frameRate:this.frameRate,isSupported:this.isSupported,hdrInfo:this.hdrInfo,contentProtections:this.contentProtections,decipherable:this.decipherable}}},Zt=Yr;var ut=class n{constructor(e,t={}){let{trickModeTracks:r}=e,{representationFilter:i,isManuallyAdded:a}=t;this.id=e.id,this.type=e.type,e.isTrickModeTrack!==void 0&&(this.isTrickModeTrack=e.isTrickModeTrack),e.language!==void 0&&(this.language=e.language,this.normalizedLanguage=ja(e.language)),e.closedCaption!==void 0&&(this.isClosedCaption=e.closedCaption),e.audioDescription!==void 0&&(this.isAudioDescription=e.audioDescription),e.isDub!==void 0&&(this.isDub=e.isDub),e.forcedSubtitles!==void 0&&(this.isForcedSubtitles=e.forcedSubtitles),e.isSignInterpreted!==void 0&&(this.isSignInterpreted=e.isSignInterpreted),e.label!==void 0&&(this.label=e.label),r!==void 0&&r.length>0&&(this.trickModeTracks=r.map(d=>new n(d)));let o=e.representations,s=[],u;for(let d=0;d<o.length;d++){let f=new Zt(o[d],this.type),m=!0;if(!R(i)){let l={id:f.id,bitrate:f.bitrate,codecs:f.codecs,height:f.height,width:f.width,frameRate:f.frameRate,hdrInfo:f.hdrInfo};if(f.contentProtections!==void 0&&(l.contentProtections={},f.contentProtections.keyIds!==void 0)){let p=f.contentProtections.keyIds.map(({keyId:g})=>g);l.contentProtections.keyIds=p}m=i(l,{trackType:this.type,language:this.language,normalizedLanguage:this.normalizedLanguage,isClosedCaption:this.isClosedCaption,isDub:this.isDub,isAudioDescription:this.isAudioDescription,isSignInterpreted:this.isSignInterpreted})}m?(s.push(f),u===void 0&&(f.isSupported===!0?u=!0:f.isSupported===!1&&(u=!1))):c.debug(\"Filtering Representation due to representationFilter\",this.type,`Adaptation: ${this.id}`,`Representation: ${f.id}`,`(${f.bitrate})`)}s.sort((d,f)=>d.bitrate-f.bitrate),this.representations=s,this.isSupported=u,this.manuallyAdded=a===!0}refreshCodecSupport(e){for(let t of this.representations)t.isSupported===void 0&&(t.refreshCodecSupport(e),this.isSupported!==!0&&t.isSupported===!0?this.isSupported=!0:this.isSupported===void 0&&t.isSupported===!1&&(this.isSupported=!1))}getRepresentation(e){return K(this.representations,({id:t})=>e===t)}getMetadataSnapshot(){let e=[],t=this.representations;for(let r of t)e.push(r.getMetadataSnapshot());return{id:this.id,type:this.type,isSupported:this.isSupported,language:this.language,isForcedSubtitles:this.isForcedSubtitles,isClosedCaption:this.isClosedCaption,isAudioDescription:this.isAudioDescription,isSignInterpreted:this.isSignInterpreted,normalizedLanguage:this.normalizedLanguage,representations:e,label:this.label,isDub:this.isDub}}};function se(n,e,t){if(typeof Array.prototype.includes==\"function\")return n.includes(e,t);let r=n.length>>>0;if(r===0)return!1;let i=t|0,a=i>=0?Math.min(i,r-1):Math.max(r+i,0),o=(s,u)=>s===u||typeof s==\"number\"&&typeof u==\"number\"&&isNaN(s)&&isNaN(u);for(;a<r;){if(o(n[a],e))return!0;a++}return!1}var Ya=[];function $e(n){se(Ya,n)||(console.warn(n),Ya.push(n))}function Qr(n){return Object.keys(n).map(e=>n[e])}var ar=typeof Object.values==\"function\"?Object.values:Qr;var Ot=[\"audio\",\"video\",\"text\"];function $a(n){var a,o;let e=n.timeBounds;if(e.timeshiftDepth===null)return(a=e.minimumSafePosition)!=null?a:0;let{maximumTimeData:t}=e,r;if(!e.maximumTimeData.isLinear)r=t.maximumSafePosition;else{let s=L()-t.time;r=t.maximumSafePosition+s/1e3}let i=r-e.timeshiftDepth;return Math.max((o=e.minimumSafePosition)!=null?o:0,i)}function Xa(n){let{maximumTimeData:e}=n.timeBounds;if(!n.isLive||e.livePosition===void 0)return;if(!e.isLinear)return e.livePosition;let t=L()-e.time;return e.livePosition+t/1e3}function Za(n){let{maximumTimeData:e}=n.timeBounds;if(!e.isLinear)return e.maximumSafePosition;let t=L()-e.time;return e.maximumSafePosition+t/1e3}function Ja(n,e){if(e===void 0)return Xr(n).filter(r=>r.isSupported===!0);let t=n.adaptations[e];return t===void 0?[]:t.filter(r=>r.isSupported===!0)}function eo(n,e){let t=null;for(let r=n.periods.length-1;r>=0;r--){let i=n.periods[r];if($r(i,e,t))return i;t=i}}function to(n,e){let t=e.end;if(t===void 0)return null;let r=K(n.periods,i=>i.end===void 0||t<i.end);return r===void 0?null:r}function $r(n,e,t){return e>=n.start&&(n.end===void 0||e<n.end)?!0:e===n.end&&(t===null||t.start>n.end)}function Xr(n){let e=n.adaptations;return Qr(e).reduce((t,r)=>R(r)?t:t.concat(r),[])}function lu(n,e){var r,i;let t={language:(r=n.language)!=null?r:\"\",normalized:(i=n.normalizedLanguage)!=null?i:\"\",audioDescription:n.isAudioDescription===!0,id:n.id,representations:(e?n.representations.filter(a=>a.isSupported===!0&&a.decipherable!==!1):n.representations).map(cu),label:n.label};return n.isDub===!0&&(t.dub=!0),t}function fu(n){var e,t;return{language:(e=n.language)!=null?e:\"\",normalized:(t=n.normalizedLanguage)!=null?t:\"\",closedCaption:n.isClosedCaption===!0,id:n.id,label:n.label,forced:n.isForcedSubtitles}}function mu(n,e){let t=n.trickModeTracks!==void 0?n.trickModeTracks.map(i=>{let a=(e?i.representations.filter(s=>s.isSupported===!0&&s.decipherable!==!1):i.representations).map(Qa),o={id:i.id,representations:a,isTrickModeTrack:!0};return i.isSignInterpreted===!0&&(o.signInterpreted=!0),o}):void 0,r={id:n.id,representations:(e?n.representations.filter(i=>i.isSupported===!0&&i.decipherable!==!1):n.representations).map(Qa),label:n.label};return n.isSignInterpreted===!0&&(r.signInterpreted=!0),n.isTrickModeTrack===!0&&(r.isTrickModeTrack=!0),t!==void 0&&(r.trickModeTracks=t),r}function cu(n){let{id:e,bitrate:t,codecs:r,isSpatialAudio:i,isSupported:a,decipherable:o}=n;return{id:e,bitrate:t,codec:r==null?void 0:r[0],isSpatialAudio:i,isCodecSupported:a,decipherable:o}}function Qa(n){let{id:e,bitrate:t,frameRate:r,width:i,height:a,codecs:o,hdrInfo:s,isSupported:u,decipherable:d}=n;return{id:e,bitrate:t,frameRate:r,width:i,height:a,codec:o==null?void 0:o[0],hdrInfo:s,isCodecSupported:u,decipherable:d}}function dt(n){switch(n.type){case\"audio\":return{type:\"audio\",track:lu(n,!1)};case\"video\":return{type:\"video\",track:mu(n,!1)};case\"text\":return{type:\"text\",track:fu(n)}}}function no(n){return new Function(`return (${n}(arguments[0], arguments[1]))`)}var lt=class{constructor(e,t,r){if(this.id=e.id,this.adaptations=Object.keys(e.adaptations).reduce((i,a)=>{let o=e.adaptations[a];if(R(o))return i;let s=o.map(u=>{let d=new ut(u,{representationFilter:r});return d.representations.length>0&&d.isSupported===!1&&t.push(d),d}).filter(u=>u.representations.length>0);if(s.every(u=>u.isSupported===!1)&&o.length>0&&(a===\"video\"||a===\"audio\"))throw new j(\"MANIFEST_INCOMPATIBLE_CODECS_ERROR\",\"No supported \"+a+\" adaptations\",{tracks:void 0});return s.length>0&&(i[a]=s),i},{}),!Array.isArray(this.adaptations.video)&&!Array.isArray(this.adaptations.audio))throw new j(\"MANIFEST_PARSE_ERROR\",\"No supported audio and video tracks.\");this.duration=e.duration,this.start=e.start,!R(this.duration)&&!R(this.start)&&(this.end=this.start+this.duration),this.streamEvents=e.streamEvents===void 0?[]:e.streamEvents}refreshCodecSupport(e,t){Object.keys(this.adaptations).forEach(r=>{let i=this.adaptations[r];if(i===void 0)return;let a=!1;for(let o of i){let s=o.isSupported;o.refreshCodecSupport(e),s!==!1&&o.isSupported===!1&&t.push(o),a===!1?a=o.isSupported:a===void 0&&o.isSupported===!0&&(a=!0)}if((r===\"video\"||r===\"audio\")&&a===!1)throw new j(\"MANIFEST_INCOMPATIBLE_CODECS_ERROR\",\"No supported \"+r+\" adaptations\",{tracks:void 0})},{})}getAdaptations(){return Xr(this)}getAdaptationsForType(e){let t=this.adaptations[e];return t!=null?t:[]}getAdaptation(e){return K(this.getAdaptations(),({id:t})=>e===t)}getSupportedAdaptations(e){return Ja(this,e)}containsTime(e,t){return $r(this,e,t)}getMetadataSnapshot(){let e={},t=this.getAdaptations();for(let r of t){let i=e[r.type];i===void 0&&(i=[],e[r.type]=i),i.push(r.getMetadataSnapshot())}return{start:this.start,end:this.end,id:this.id,streamEvents:this.streamEvents,adaptations:e}}};function Jt(n,e,t){let r={updatedAdaptations:[],removedAdaptations:[],addedAdaptations:[]};n.start=e.start,n.end=e.end,n.duration=e.duration,n.streamEvents=e.streamEvents;let i=n.getAdaptations(),a=e.getAdaptations();for(let o=0;o<i.length;o++){let s=i[o],u=ne(a,d=>d.id===s.id);if(u===-1){c.warn('Manifest: Adaptation \"'+i[o].id+'\" not found when merging.');let[d]=i.splice(o,1);o--,r.removedAdaptations.push({id:d.id,trackType:d.type})}else{let[d]=a.splice(u,1),f=[],m=[],l=[];r.updatedAdaptations.push({adaptation:s.id,trackType:s.type,updatedRepresentations:f,addedRepresentations:m,removedRepresentations:l});let p=s.representations,g=d.representations.slice();for(let h=0;h<p.length;h++){let I=p[h],y=ne(g,E=>E.id===I.id);if(y===-1){c.warn(`Manifest: Representation \"${p[h].id}\" not found when merging.`);let[E]=p.splice(h,1);h--,l.push(E.id)}else{let[E]=g.splice(y,1);f.push(I.getMetadataSnapshot()),I.cdnMetadata=E.cdnMetadata,t===0?I.index._replace(E.index):I.index._update(E.index)}}g.length>0&&(c.warn(`Manifest: ${g.length} new Representations found when merging.`),s.representations.push(...g),m.push(...g.map(h=>h.getMetadataSnapshot())))}}if(a.length>0){c.warn(`Manifest: ${a.length} new Adaptations found when merging.`);for(let o of a){let s=n.adaptations[o.type];s===void 0?n.adaptations[o.type]=[o]:s.push(o),r.addedAdaptations.push(o.getMetadataSnapshot())}}return r}function ro(n,e){let t={updatedPeriods:[],addedPeriods:[],removedPeriods:[]},r=0;for(let a=0;a<e.length;a++){let o=e[a],s=r,u=n[s];for(;u!==void 0&&u.id!==o.id;)s++,u=n[s];if(u!==void 0){let d=Jt(u,o,0);t.updatedPeriods.push({period:{id:u.id,start:u.start,end:u.end,duration:u.duration,streamEvents:u.streamEvents},result:d});let f=e.slice(r,a),m=s-r,l=n.splice(r,m,...f);t.removedPeriods.push(...l.map(p=>({id:p.id,start:p.start,end:p.end}))),t.addedPeriods.push(...f.map(p=>p.getMetadataSnapshot())),r=a+1}}if(r>n.length)return c.error(\"Manifest: error when updating Periods\"),t;if(r<n.length){let a=n.splice(r,n.length-r);t.removedPeriods.push(...a.map(o=>({id:o.id,start:o.start,end:o.end})))}let i=e.slice(r,e.length);return i.length>0&&(n.push(...i),t.addedPeriods.push(...i.map(a=>a.getMetadataSnapshot()))),t}function io(n,e){let t={updatedPeriods:[],addedPeriods:[],removedPeriods:[]};if(n.length===0)return n.splice(0,0,...e),t.addedPeriods.push(...e.map(s=>s.getMetadataSnapshot())),t;if(e.length===0)return t;let r=n[n.length-1];if(r.start<e[0].start){if(r.end!==e[0].start)throw new j(\"MANIFEST_UPDATE_ERROR\",\"Cannot perform partial update: not enough data\");return n.push(...e),t.addedPeriods.push(...e.map(s=>s.getMetadataSnapshot())),t}let i=ne(n,({id:s})=>s===e[0].id);if(i<0)throw new j(\"MANIFEST_UPDATE_ERROR\",\"Cannot perform partial update: incoherent data\");let a=Jt(n[i],e[0],1);t.updatedPeriods.push({period:H(n[i].getMetadataSnapshot(),{adaptations:void 0}),result:a});let o=i+1;for(let s=1;s<e.length;s++){let u=e[s],d=-1;for(let f=o;f<n.length;f++)if(u.id===n[f].id){d=f;break}if(d<0){let f=-1;for(let p=o;p<n.length;p++)if(u.start<n[p].start){f=p;break}let m=f-o,l=n.splice(o,m,u);t.addedPeriods.push(u.getMetadataSnapshot()),t.removedPeriods.push(...l.map(p=>({id:p.id,start:p.start,end:p.end})))}else{if(d>o){c.warn(\"Manifest: old Periods not found in new when updating, removing\");let m=n.splice(o,d-o);t.removedPeriods.push(...m.map(l=>({id:l.id,start:l.start,end:l.end}))),d=o}let f=Jt(n[d],u,0);t.updatedPeriods.push({period:H(n[d].getMetadataSnapshot(),{adaptations:void 0}),result:f})}o++}if(o<n.length){c.warn(\"Manifest: Ending Periods not found in new when updating, removing\");let s=n.splice(o,n.length-o);t.removedPeriods.push(...s.map(u=>({id:u.id,start:u.start,end:u.end})))}return t}var pu=Ae(),en=class extends oe{constructor(e,t,r){var s;super();let{representationFilter:i,manifestUpdateUrl:a}=t;this.manifestFormat=0,this.id=pu(),this.expired=(s=e.expired)!=null?s:null,this.transport=e.transportType,this.clockOffset=e.clockOffset;let o=[];if(this.periods=e.periods.map(u=>new lt(u,o,i)).sort((u,d)=>u.start-d.start),o.length>0){let u=new j(\"MANIFEST_INCOMPATIBLE_CODECS_ERROR\",\"An Adaptation contains only incompatible codecs.\",{tracks:o.map(dt)});r.push(u)}this.adaptations=this.periods[0]===void 0?{}:this.periods[0].adaptations,this.timeBounds=e.timeBounds,this.isDynamic=e.isDynamic,this.isLive=e.isLive,this.isLastPeriodKnown=e.isLastPeriodKnown,this.uris=e.uris===void 0?[]:e.uris,this.updateUrl=a,this.lifetime=e.lifetime,this.clockOffset=e.clockOffset,this.suggestedPresentationDelay=e.suggestedPresentationDelay,this.availabilityStartTime=e.availabilityStartTime,this.publishTime=e.publishTime}refreshCodecSupport(e){let t=[];for(let r of this.periods)r.refreshCodecSupport(e,t);return t.length>0?new j(\"MANIFEST_INCOMPATIBLE_CODECS_ERROR\",\"An Adaptation contains only incompatible codecs.\",{tracks:t.map(dt)}):null}getPeriod(e){return K(this.periods,t=>e===t.id)}getPeriodForTime(e){return eo(this,e)}getNextPeriod(e){return K(this.periods,t=>t.start>e)}getPeriodAfter(e){return to(this,e)}getUrls(){return this.uris}replace(e){this._performUpdate(e,0)}update(e){this._performUpdate(e,1)}getMinimumSafePosition(){return $a(this)}getLivePosition(){return Xa(this)}getMaximumSafePosition(){return Za(this)}updateRepresentationsDeciperability(e){let t=gu(this,e);t.length>0&&this.trigger(\"decipherabilityUpdate\",t)}getAdaptations(){$e(\"manifest.getAdaptations() is deprecated. Please use manifest.period[].getAdaptations() instead\");let e=this.periods[0];if(e===void 0)return[];let t=e.adaptations,r=[];for(let i in t)if(t.hasOwnProperty(i)){let a=t[i];r.push(...a)}return r}getAdaptationsForType(e){$e(\"manifest.getAdaptationsForType(type) is deprecated. Please use manifest.period[].getAdaptationsForType(type) instead\");let t=this.periods[0];if(t===void 0)return[];let r=t.adaptations[e];return r===void 0?[]:r}getAdaptation(e){return $e(\"manifest.getAdaptation(id) is deprecated. Please use manifest.period[].getAdaptation(id) instead\"),K(this.getAdaptations(),({id:t})=>e===t)}getMetadataSnapshot(){let e=[];for(let t of this.periods)e.push(t.getMetadataSnapshot());return{manifestFormat:1,id:this.id,periods:e,isDynamic:this.isDynamic,isLive:this.isLive,isLastPeriodKnown:this.isLastPeriodKnown,suggestedPresentationDelay:this.suggestedPresentationDelay,clockOffset:this.clockOffset,uris:this.uris,availabilityStartTime:this.availabilityStartTime,timeBounds:this.timeBounds}}_performUpdate(e,t){this.availabilityStartTime=e.availabilityStartTime,this.expired=e.expired,this.isDynamic=e.isDynamic,this.isLive=e.isLive,this.isLastPeriodKnown=e.isLastPeriodKnown,this.lifetime=e.lifetime,this.clockOffset=e.clockOffset,this.suggestedPresentationDelay=e.suggestedPresentationDelay,this.transport=e.transport,this.publishTime=e.publishTime;let r;if(t===0)this.timeBounds=e.timeBounds,this.uris=e.uris,r=ro(this.periods,e.periods);else{this.timeBounds.maximumTimeData=e.timeBounds.maximumTimeData,this.updateUrl=e.uris[0],r=io(this.periods,e.periods);let i=this.getMinimumSafePosition();for(;this.periods.length>0;){let a=this.periods[0];if(a.end===void 0||a.end>i)break;this.periods.shift()}}this.adaptations=this.periods[0]===void 0?{}:this.periods[0].adaptations,this.trigger(\"manifestUpdate\",r)}};function gu(n,e){let t=[];for(let r of n.periods)for(let i of r.getAdaptations())for(let a of i.representations){let o={manifest:n,period:r,adaptation:i,representation:a},s=e(o);s!==a.decipherable&&(t.push(o),a.decipherable=s,c.debug(`Decipherability changed for \"${a.id}\"`,`(${a.bitrate})`,String(a.decipherable)))}return t}function Xe(n,e){return n.segment.id===e.segment.id&&n.representation.uniqueId===e.representation.uniqueId}function St(n){if(R(n))return\"\";let{period:e,adaptation:t,representation:r,segment:i}=n,a;return i.isInit?a=\"init\":i.complete?a=`${i.time}-${i.duration}`:a=`${i.time}`,`${t.type} P: ${e.id} A: ${t.id} R: ${r.id} S: ${a}`}var wt=en;var ft=Ee,yt=ft===void 0?void 0:R(ft.MediaSource)?R(ft.MozMediaSource)?R(ft.WebKitMediaSource)?ft.MSMediaSource:ft.WebKitMediaSource:ft.MozMediaSource:ft.MediaSource;var hu=200,or=new Map;function Zr(n){if(R(yt))return st&&c.error(\"Compat: Cannot request codec support in a worker without MSE.\"),!1;if(typeof yt.isTypeSupported==\"function\"){let e=or.get(n);if(e!==void 0)return e;{let t=yt.isTypeSupported(n);return or.size>=hu&&or.clear(),or.set(n,t),t}}return!0}var Iu=50,Jr=class{constructor(){this._cachedCodecSupport=new Map}isSupported(e,t){let r=`${e!=null?e:\"\"};codecs=\"${t!=null?t:\"\"}\"`,i=this._cachedCodecSupport.get(r);if(i!==void 0)return i;this._cachedCodecSupport.size>=Iu&&this._cachedCodecSupport.clear();let a=Zr(r);return this._cachedCodecSupport.set(r,a),a}},bu=new Jr,ao=bu;var ei=class{constructor(){this._currentCacheSize=0,this._cachedCodecSupport=new Map}isSupported(e,t){var i;let r=(i=this._cachedCodecSupport.get(e))==null?void 0:i.get(t);if(r!==void 0)return r}updateCache(e,t,r){this._currentCacheSize>=50&&(this._cachedCodecSupport.clear(),this._currentCacheSize=0);let i=this._cachedCodecSupport.get(e);if(i!==void 0)i.set(t,r);else{let a=new Map;a.set(t,r),this._cachedCodecSupport.set(e,a)}}},oo=new ei;var sr=class n extends Error{constructor(e){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"AssertionError\",this.message=e}};function he(n,e){if(b.DEV===b.CURRENT_ENV&&!n)throw new sr(e===void 0?\"invalid assertion\":e)}function ze(n){throw new sr(\"Unreachable path taken\")}var Su=\"<\";var so=\">\";var yu=`\\r\n\t>/= `;function ti(n,e={}){var l,p;let t=(l=e.pos)!=null?l:0,r=e.keepComments===!0,i=e.keepWhitespace===!0,a;if(e.attrValue!==void 0)for(e.attrName=(p=e.attrName)!=null?p:\"id\",a=[];(t=m())!==-1;)t=n.lastIndexOf(\"<\",t),t!==-1&&a.push(d()),n=n.substring(t),t=0;else a=o(\"\");return e.filter&&(a=uo(a,e.filter)),a;function o(g){let h=[];for(;n[t];)if(n.charCodeAt(t)===60){if(n.charCodeAt(t+1)===47){let y=t+2;if(t=n.indexOf(so,t),n.substring(y,t).indexOf(g)===-1){let v=n.substring(0,t).split(`\n`);throw new Error(`Unexpected close tag\nLine: `+(v.length-1)+`\nColumn: `+(v[v.length-1].length+1)+`\nChar: `+n[t])}return t!==-1&&(t+=1),h}else if(n.charCodeAt(t+1)===33){if(n.charCodeAt(t+2)===45){let y=t;for(;t!==-1&&!(n.charCodeAt(t)===62&&n.charCodeAt(t-1)===45&&n.charCodeAt(t-2)===45);)t=n.indexOf(so,t+1);t===-1&&(t=n.length),r&&h.push(n.substring(y,t+1))}else if(n.charCodeAt(t+2)===91&&n.charCodeAt(t+8)===91&&n.substring(t+3,t+8).toLowerCase()===\"cdata\"){let y=n.indexOf(\"]]>\",t);y===-1?(h.push(n.substring(t+9)),t=n.length):(h.push(n.substring(t+9,y)),t=y+3);continue}else{let y=t+1;t+=2;let E=!1;for(;(n.charCodeAt(t)!==62||E)&&n[t];)n.charCodeAt(t)===91?E=!0:E&&n.charCodeAt(t)===93&&(E=!1),t++;h.push(n.substring(y,t))}t++;continue}let I=d();h.push(I),I.tagName[0]===\"?\"&&(h.push(...I.children),I.children=[])}else{let I=s();if(i)I.length>0&&h.push(I);else{let y=I.trim();y.length>0&&h.push(y)}t++}return h}function s(){let g=t;return t=n.indexOf(Su,t)-1,t===-2&&(t=n.length),n.slice(g,t+1)}function u(){let g=t;for(;yu.indexOf(n[t])===-1&&n[t];)t++;return n.slice(g,t)}function d(){let g=t;t++;let h=u(),I={},y=[];for(;n.charCodeAt(t)!==62&&n[t];){let E=n.charCodeAt(t);if(E>64&&E<91||E>96&&E<123){let v=u(),T=n.charCodeAt(t);for(;T&&T!==39&&T!==34&&!(T>64&&T<91||T>96&&T<123)&&T!==62;)t++,T=n.charCodeAt(t);let C;T===39||T===34?C=f():(C=null,t--),I[v]=C===null?null:lo(C)}t++}return n.charCodeAt(t-1)!==47?(t++,y=o(h)):t++,{tagName:h,attributes:I,children:y,posStart:g,posEnd:t}}function f(){let g=n[t],h=t+1;return t=n.indexOf(g,h),n.slice(h,t)}function m(){let g=new RegExp(\"\\\\s\"+e.attrName+`\\\\s*=['\"]`+e.attrValue+`['\"]`).exec(n);return g?g.index:-1}}function uo(n,e,t=0,r=\"\"){let i=[];return n.forEach(function(a,o){if(typeof a==\"object\"&&(e(a,o,t,r)&&i.push(a),a.children.length>0)){let s=uo(a.children,e,t+1,(r?r+\".\":\"\")+o+\".\"+a.tagName);i=i.concat(s)}}),i}function ur(n){if(Array.isArray(n)){let e=\"\";return n.forEach(function(t){e+=\" \"+ur(t),e=e.trim()}),e}else return typeof n==\"object\"?ur(n.children):\" \"+lo(n)}function lo(n){return n.indexOf(\"&\")<0?n:n.replace(/</g,\"<\").replace(/>/g,\">\").replace(/"/g,'\"').replace(/'/g,\"'\").replace(/&#x([A-Fa-f0-9]+);/g,(e,t)=>String.fromCharCode(parseInt(t,16))).replace(/&/g,\"&\")}function ni(n,e,t){let{repeatCount:r}=n;if(r>=0)return r;let i;return R(e)?t!==void 0?i=t:i=Number.MAX_VALUE:i=e.start,Math.ceil((i-n.start)/n.duration)-1}function De(n,e,t){let{start:r,duration:i}=n;if(i<=0)return r;let a=ni(n,e,t);return r+(a+1)*i}function Pe(n,e){var t;return n*e.timescale+((t=e.indexTimeOffset)!=null?t:0)}function je(n,e){var t;return(n-((t=e.indexTimeOffset)!=null?t:0))/e.timescale}function fo(n,e,t){return[n*t,(n+e)*t]}function Tu(n,e){let t=0,r=n.length;for(;t<r;){let i=t+r>>>1;n[i].start<=e?t=i+1:r=i}return t-1}function mo(n,e,t){let{timeline:r}=n,i=Pe(e,n);if(i<0)return null;let a=Tu(r,i);if(a<0||a>=r.length-1)return null;let o=r[a];if(o.duration<=0)return null;let s=r[a+1];if(s===void 0)return null;let u=s.start,d=De(o,s,t);return i>=d&&i<u?je(u,n):null}function Ze(n,e){var i;let{initialization:t}=n,r={};return e!==void 0&&(r.isEMSGWhitelisted=e),{id:\"init\",isInit:!0,time:0,end:0,duration:0,timescale:1,range:R(t)?void 0:t.range,indexRange:n.indexRange,url:(i=t==null?void 0:t.url)!=null?i:null,complete:!0,privateInfos:r,timestampOffset:-(n.indexTimeOffset/n.timescale)}}function _u(n,e){let t=n.toString();return t.length>=e?t:(new Array(e+1).join(\"0\")+t).slice(-e)}function ri(n){return(e,t,r)=>{let i=Z(r)?parseInt(r,10):1;return _u(String(n),i)}}function Ne(n,e,t){return Eu(n,e,t)}function Eu(n,e,t){return n.indexOf(\"$\")===-1?n:n.replace(/\\$\\$/g,\"$\").replace(/\\$RepresentationID\\$/g,String(e)).replace(/\\$Bandwidth(\\%0(\\d+)d)?\\$/g,ri(t===void 0?0:t))}function dr(n,e){return function(r){return r.indexOf(\"$\")===-1?r:r.replace(/\\$\\$/g,\"$\").replace(/\\$Number(\\%0(\\d+)d)?\\$/g,(i,a,o)=>{if(e===void 0)throw new Error(\"Segment number not defined in a $Number$ scheme\");return ri(e)(i,a,o)}).replace(/\\$Time(\\%0(\\d+)d)?\\$/g,(i,a,o)=>{if(n===void 0)throw new Error(\"Segment time not defined in a $Time$ scheme\");return ri(n)(i,a,o)})}}function Ru(n,e,t){let r=t-n;return r>0?Math.floor(r/e):0}function tn(n,e,t,r,i,a){var E;let o=r.getEstimatedMaximumPosition((E=n.availabilityTimeOffset)!=null?E:0),s=Math.min(e+t,o!=null?o:1/0),u=Pe(e,n),d=Pe(s,n),{timeline:f,timescale:m,segmentUrlTemplate:l,startNumber:p,endNumber:g}=n,h=p!=null?p:1,I=[],y=f.length;for(let v=0;v<y;v++){let T=f[v],{duration:C,start:P,range:M}=T,_;o===void 0?_=i:_=Math.min(o*m,i!=null?i:1/0);let A=ni(T,f[v+1],_),x=n.availabilityTimeComplete!==!1||v!==y-1&&A!==0,k=Ru(P,C,u),D=P+k*C;for(;D<d&&k<=A;){let w=h+k;if(g!==void 0&&w>g)break;let O=l===null?null:dr(D,w)(l),B=D-n.indexTimeOffset,z=C;B<0&&(z=C+B,B=0);let q={id:String(D),time:B/m,end:(B+z)/m,duration:z/m,isInit:!1,range:M,timescale:1,url:O,number:w,timestampOffset:-(n.indexTimeOffset/m),complete:x,privateInfos:{isEMSGWhitelisted:a}};I.push(q),k++,D=P+k*C}if(D>=d||(h+=A+1,g!==void 0&&h>g))return I}return I}function Pu(n,e){if(e.timescale!==n.timescale){let{timescale:t}=n;n.timeline.push({start:e.time/e.timescale*t,duration:e.duration/e.timescale*t,repeatCount:e.count===void 0?0:e.count,range:e.range})}else n.timeline.push({start:e.time,duration:e.duration,repeatCount:e.count===void 0?0:e.count,range:e.range});return!0}var Tt=class{constructor(e,t){var g,h,I,y;let{periodStart:r,periodEnd:i,representationId:a,representationBitrate:o,isEMSGWhitelisted:s}=t,u=(g=e.timescale)!=null?g:1,f=((h=e.presentationTimeOffset)!=null?h:0)-r*u,m=((I=e.initialization)==null?void 0:I.media)===void 0?null:Ne(e.initialization.media,a,o),l=e.media===void 0?null:Ne(e.media,a,o),p;e.initialization!==void 0?p=e.initialization.range:e.indexRange!==void 0&&(p=[0,e.indexRange[0]-1]),this._index={indexRange:e.indexRange,indexTimeOffset:f,initialization:{url:m,range:p},segmentUrlTemplate:l,startNumber:e.startNumber,endNumber:e.endNumber,timeline:(y=e.timeline)!=null?y:[],timescale:u},this._manifestBoundsCalculator=t.manifestBoundsCalculator,this._scaledPeriodStart=Pe(r,this._index),this._scaledPeriodEnd=R(i)?void 0:Pe(i,this._index),this._isInitialized=this._index.timeline.length>0,this._isEMSGWhitelisted=s}getInitSegment(){return Ze(this._index,this._isEMSGWhitelisted)}getSegments(e,t){return tn(this._index,e,t,this._manifestBoundsCalculator,this._scaledPeriodEnd,this._isEMSGWhitelisted)}shouldRefresh(){return!1}getFirstAvailablePosition(){let e=this._index;return e.timeline.length===0?null:je(Math.max(this._scaledPeriodStart,e.timeline[0].start),e)}getLastAvailablePosition(){var i;let{timeline:e}=this._index;if(e.length===0)return null;let t=e[e.length-1],r=Math.min(De(t,null,this._scaledPeriodEnd),(i=this._scaledPeriodEnd)!=null?i:1/0);return je(r,this._index)}getEnd(){return this.getLastAvailablePosition()}awaitSegmentBetween(){return!1}isSegmentStillAvailable(){return!0}checkDiscontinuity(){return null}canBeOutOfSyncError(){return!1}isStillAwaitingFutureSegments(){return!1}isInitialized(){return this._isInitialized}initialize(e){if(!this._isInitialized){for(let t=0;t<e.length;t++)Pu(this._index,e[t]);this._isInitialized=!0}}addPredictedSegments(){c.warn(\"Cannot add predicted segments to a `BaseRepresentationIndex`\")}_replace(e){this._index=e._index,this._isInitialized=e._isInitialized,this._scaledPeriodEnd=e._scaledPeriodEnd,this._isEMSGWhitelisted=e._isEMSGWhitelisted}_update(){c.error(\"Base RepresentationIndex: Cannot update a SegmentList\")}};var _t=class{constructor(e,t){var p,g,h;if(e.duration===void 0)throw new Error(\"Invalid SegmentList: no duration\");let{periodStart:r,periodEnd:i,representationId:a,representationBitrate:o,isEMSGWhitelisted:s}=t;this._isEMSGWhitelisted=s,this._periodStart=r,this._periodEnd=i;let u=(p=e.presentationTimeOffset)!=null?p:0,d=(g=e.timescale)!=null?g:1,f=u-r*d,m=((h=e.initialization)==null?void 0:h.media)===void 0?null:Ne(e.initialization.media,a,o),l=e.list.map(I=>({url:I.media===void 0?null:Ne(I.media,a,o),mediaRange:I.mediaRange}));this._index={list:l,timescale:d,duration:e.duration,indexTimeOffset:f,indexRange:e.indexRange,initialization:R(e.initialization)?void 0:{url:m,range:e.initialization.range}}}getInitSegment(){let e=Ze(this._index);return e.privateInfos===void 0&&(e.privateInfos={}),e.privateInfos.isEMSGWhitelisted=this._isEMSGWhitelisted,e}getSegments(e,t){let r=this._index,{duration:i,list:a,timescale:o}=r,s=i/o,u=e-this._periodStart,[d,f]=fo(u,t,o),m=Math.min(a.length-1,Math.floor(f/i)),l=[],p=Math.floor(d/i);for(;p<=m;){let g=a[p].mediaRange,h=a[p].url,I=p*s+this._periodStart,y={id:String(p),time:I,isInit:!1,range:g,duration:s,timescale:1,end:I+s,url:h,timestampOffset:-(r.indexTimeOffset/o),complete:!0,privateInfos:{isEMSGWhitelisted:this._isEMSGWhitelisted}};l.push(y),p++}return l}shouldRefresh(e,t){return!1}getFirstAvailablePosition(){return this._periodStart}getLastAvailablePosition(){var i;let e=this._index,{duration:t,list:r}=e;return Math.min(r.length*t/e.timescale+this._periodStart,(i=this._periodEnd)!=null?i:1/0)}getEnd(){return this.getLastAvailablePosition()}awaitSegmentBetween(){return!1}isSegmentStillAvailable(){return!0}checkDiscontinuity(){return null}canBeOutOfSyncError(){return!1}isStillAwaitingFutureSegments(){return!1}isInitialized(){return!0}initialize(){c.error(\"A `ListRepresentationIndex` does not need to be initialized\")}addPredictedSegments(){c.warn(\"Cannot add predicted segments to a `ListRepresentationIndex`\")}_replace(e){this._index=e._index}_update(){c.error(\"A `ListRepresentationIndex` cannot be updated\")}};function Dt(n){return U.getCurrent().DEFAULT_MAXIMUM_TIME_ROUNDING_ERROR*n}var Et=class{constructor(e,t){var y,E,v;let{availabilityTimeOffset:r,manifestBoundsCalculator:i,isDynamic:a,periodEnd:o,periodStart:s,representationId:u,representationBitrate:d,isEMSGWhitelisted:f}=t,m=(y=e.timescale)!=null?y:1;this._availabilityTimeOffset=r,this._manifestBoundsCalculator=i;let l=(E=e.presentationTimeOffset)!=null?E:0,p=s*m,g=l-p;if(e.duration===void 0)throw new Error(\"Invalid SegmentTemplate: no duration\");let h=((v=e.initialization)==null?void 0:v.media)===void 0?null:Ne(e.initialization.media,u,d),I=e.media===void 0?null:Ne(e.media,u,d);this._index={duration:e.duration,timescale:m,indexRange:e.indexRange,indexTimeOffset:g,initialization:R(e.initialization)?void 0:{url:h,range:e.initialization.range},url:I,presentationTimeOffset:l,startNumber:e.startNumber,endNumber:e.endNumber},this._isDynamic=a,this._periodStart=s,this._scaledRelativePeriodEnd=o===void 0?void 0:(o-s)*m,this._isEMSGWhitelisted=f}getInitSegment(){return Ze(this._index,this._isEMSGWhitelisted)}getSegments(e,t){let r=this._index,{duration:i,startNumber:a,endNumber:o,timescale:s,url:u}=r,d=this._periodStart*s,f=this._scaledRelativePeriodEnd,m=e*s-d,l=(e+t)*s-d,p=this._getFirstSegmentStart(),g=this._getLastSegmentStart();if(R(p)||R(g))return[];let h=Math.max(p,m),I=Math.min(g,l);if(I+i<=h)return[];let y=[],E=a!=null?a:1,v=Math.floor(h/i);for(let T=v*i;T<=I;T+=i){let C=v+E;if(o!==void 0&&C>o)return y;let P=!R(f)&&T+i>f?f-T:i,M=T+d,_=T+this._index.presentationTimeOffset,A=u===null?null:dr(_,C)(u),x={id:String(C),number:C,time:M/s,end:(M+P)/s,duration:P/s,timescale:1,isInit:!1,scaledDuration:P/s,url:A,timestampOffset:-(r.indexTimeOffset/s),complete:!0,privateInfos:{isEMSGWhitelisted:this._isEMSGWhitelisted}};y.push(x),v++}return y}getFirstAvailablePosition(){let e=this._getFirstSegmentStart();return R(e)?e:e/this._index.timescale+this._periodStart}getLastAvailablePosition(){let e=this._getLastSegmentStart();if(R(e))return e;let t=this._estimateRelativeScaledEnd();return Math.min(e+this._index.duration,t!=null?t:1/0)/this._index.timescale+this._periodStart}getEnd(){if(!this._isDynamic)return this.getLastAvailablePosition();let e=this._estimateRelativeScaledEnd();if(e===void 0)return;let{timescale:t}=this._index;return(e+this._periodStart*t)/t}awaitSegmentBetween(e,t){if(he(e<=t),!this._isDynamic)return!1;let{timescale:r}=this._index,i=Dt(r),a=this._periodStart*r,o=e*r-a,s=t*r-a,u=this._getLastSegmentStart();if(R(u)){let m=this._estimateRelativeScaledEnd();return m===void 0?s+i>=0:s+i>=0&&o<m-i}let d=u+this._index.duration,f=this._estimateRelativeScaledEnd();return f===void 0?s>d-i:s>d-i&&o<f-i}shouldRefresh(){return!1}checkDiscontinuity(){return null}isSegmentStillAvailable(e){if(e.isInit)return!0;let t=this.getSegments(e.time,.1);return t.length===0?!1:t[0].time===e.time&&t[0].end===e.end&&t[0].number===e.number}canBeOutOfSyncError(){return!1}isStillAwaitingFutureSegments(){if(!this._isDynamic)return!1;let e=this._estimateRelativeScaledEnd();if(e===void 0)return!0;let{timescale:t}=this._index,r=this._getLastSegmentStart();if(R(r))return!0;let i=r+this._index.duration,a=Dt(t);return i+a<e}isInitialized(){return!0}initialize(){c.error(\"A `TemplateRepresentationIndex` does not need to be initialized\")}addPredictedSegments(){c.warn(\"Cannot add predicted segments to a `TemplateRepresentationIndex`\")}_replace(e){this._index=e._index,this._isDynamic=e._isDynamic,this._periodStart=e._periodStart,this._scaledRelativePeriodEnd=e._scaledRelativePeriodEnd,this._manifestBoundsCalculator=e._manifestBoundsCalculator}_update(e){this._replace(e)}_getFirstSegmentStart(){var o;if(!this._isDynamic)return 0;if(this._scaledRelativePeriodEnd===0||this._scaledRelativePeriodEnd===void 0){let s=this._manifestBoundsCalculator.getEstimatedMaximumPosition((o=this._availabilityTimeOffset)!=null?o:0);if(s!==void 0&&s<this._periodStart)return null}let{duration:e,timescale:t}=this._index,r=this._manifestBoundsCalculator.getEstimatedMinimumSegmentTime();if(r===void 0)return;let i=r>this._periodStart?(r-this._periodStart)*t:0;return Math.floor(i/e)*e}_getLastSegmentStart(){var a,o;let{duration:e,timescale:t,endNumber:r,startNumber:i=1}=this._index;if(this._isDynamic){let s=this._manifestBoundsCalculator.getEstimatedLiveEdge();if(s!==void 0&&this._scaledRelativePeriodEnd!==void 0&&this._scaledRelativePeriodEnd<s-this._periodStart*this._index.timescale){let m=Math.ceil(this._scaledRelativePeriodEnd/e);return r!==void 0&&r-i+1<m&&(m=r-i+1),(m-1)*e}let u=this._manifestBoundsCalculator.getEstimatedMaximumPosition((a=this._availabilityTimeOffset)!=null?a:0);if(u===void 0)return;let d=(u-this._periodStart)*t;if(d<0)return null;let f=Math.floor(d/e);return r!==void 0&&r-i+1<f&&(f=r-i+1),f<=0?null:(f-1)*e}else{let s=(o=this._scaledRelativePeriodEnd)!=null?o:0,u=Math.ceil(s/e);r!==void 0&&r-i+1<u&&(u=r-i+1);let d=(u-1)*e,f=U.getCurrent().MINIMUM_SEGMENT_SIZE*t;return r!==void 0||s-d>f||u<2?d:(u-2)*e}}_estimateRelativeScaledEnd(){var e,t;if(this._index.endNumber!==void 0){let r=this._index.endNumber-((e=this._index.startNumber)!=null?e:1)+1;return Math.max(Math.min(r*this._index.duration,(t=this._scaledRelativePeriodEnd)!=null?t:1/0),0)}if(this._scaledRelativePeriodEnd!==void 0)return Math.max(this._scaledRelativePeriodEnd,0)}};function ii(n,e){let t=0;for(;n.length>0;){let r=n[0];if(r.start>=e||r.repeatCount===-1)return t;if(r.repeatCount===0)n.shift(),t+=1;else{let i=n[1];if(i!==void 0&&i.start<=e)n.shift(),t+=1;else{if(r.duration<=0)return t;let a=r.start+r.duration,o=1;for(;a<e&&o<=r.repeatCount;)a+=r.duration,o++;if(o>r.repeatCount)n.shift(),t=r.repeatCount+1;else{let s=r.repeatCount-o;return r.start=a,r.repeatCount=s,t+=o,t}}}}return t}function ai(n,e){if(n.length===0)return n.push(...e),!0;if(e.length===0)return!1;let t=n.length,r=e[0].start,i=n[t-1];if(De(i,e[0])<r)throw new j(\"MANIFEST_UPDATE_ERROR\",\"Cannot perform partial update: not enough data\");for(let f=t-1;f>=0;f--){let m=n[f].start;if(m===r){let l=t-f;return n.splice(f,l,...e),!1}else if(m<r){let l=n[f];if(l.start+l.duration>r)return c.warn(\"RepresentationIndex: Manifest update removed all previous segments\"),n.splice(0,t,...e),!0;if(l.repeatCount===void 0||l.repeatCount<=0)return l.repeatCount<0&&(l.repeatCount=Math.floor((r-l.start)/l.duration)-1),n.splice(f+1,t-(f+1),...e),!1;if(l.start+l.duration*(l.repeatCount+1)<=r)return n.splice(f+1,t-(f+1),...e),!1;let g=(r-l.start)/l.duration-1;if(g%1===0&&l.duration===e[0].duration){let h=e[0].repeatCount<0?-1:e[0].repeatCount+g+1;return n.splice(f,t-f,...e),n[f].start=l.start,n[f].repeatCount=h,!1}return c.warn(\"RepresentationIndex: Manifest update removed previous segments\"),n[f].repeatCount=Math.floor(g),n.splice(f+1,t-(f+1),...e),!1}}let o=n[n.length-1],s=e[e.length-1];if(o.repeatCount!==void 0&&o.repeatCount<0)return o.start>s.start?(c.warn(\"RepresentationIndex: The new index is older than the previous one\"),!1):(c.warn('RepresentationIndex: The new index is \"bigger\" than the previous one'),n.splice(0,t,...e),!0);let u=o.start+o.duration*(o.repeatCount+1),d=s.start+s.duration*(s.repeatCount+1);return u>=d?(c.warn(\"RepresentationIndex: The new index is older than the previous one\"),!1):(c.warn('RepresentationIndex: The new index is \"bigger\" than the previous one'),n.splice(0,t,...e),!0)}function nn(n,e,t){let r=n.start,i=n.duration,a=n.repeatCount;return r===void 0&&(e===null?r=0:R(e.duration)||(r=e.start+e.duration*(e.repeatCount+1))),(i===void 0||isNaN(i))&&t!==null&&t.start!==void 0&&!isNaN(t.start)&&r!==void 0&&!isNaN(r)&&(i=t.start-r),r!==void 0&&!isNaN(r)&&i!==void 0&&!isNaN(i)&&(a===void 0||!isNaN(a))?{start:r,duration:i,repeatCount:a===void 0?0:a}:(c.warn('DASH: A \"S\" Element could not have been parsed.'),null)}function rn(n){let e={};for(let t of Object.keys(n.attributes)){let r=n.attributes[t];if(!R(r))switch(t){case\"t\":let i=parseInt(r,10);isNaN(i)?c.warn(`DASH: invalid t (\"${r}\")`):e.start=i;break;case\"d\":let a=parseInt(r,10);isNaN(a)?c.warn(`DASH: invalid d (\"${r}\")`):e.duration=a;break;case\"r\":let o=parseInt(r,10);isNaN(o)?c.warn(`DASH: invalid r (\"${r}\")`):e.repeatCount=o;break}}return e}function an(n){let e={};for(let t=0;t<n.attributes.length;t++){let r=n.attributes[t];switch(r.name){case\"t\":let i=parseInt(r.value,10);isNaN(i)?c.warn(`DASH: invalid t (\"${r.value}\")`):e.start=i;break;case\"d\":let a=parseInt(r.value,10);isNaN(a)?c.warn(`DASH: invalid d (\"${r.value}\")`):e.duration=a;break;case\"r\":let o=parseInt(r.value,10);isNaN(o)?c.warn(`DASH: invalid r (\"${r.value}\")`):e.repeatCount=o;break}}return e}function mt(n){let e=[];if(Array.isArray(n))for(let r=0;r<n.length;r++)e.push(rn(n[r]));else for(let r=0;r<n.length;r++)e.push(an(n[r]));let t=[];for(let r=0;r<e.length;r++){let i=e[r],a=t[t.length-1]===void 0?null:t[t.length-1],o=e[r+1]===void 0?null:e[r+1],s=nn(i,a,o);s!==null&&t.push(s)}return t}function oi(n,e){if(n.length===0||e.length===0)return null;let t=n[0].start,r=Array.isArray(e)?e[0].attributes.t:e[0].getAttribute(\"t\"),i=R(r)?null:parseInt(r,10);if(i===null||Number.isNaN(i))return null;if(t===i)return{prevSegmentsIdx:0,newElementsIdx:0,repeatNumberInPrevSegments:0,repeatNumberInNewElements:0};if(t<i){let a=n[0],o=0;for(;;){if(a.repeatCount>0){let s=i-a.start;if(s%a.duration===0&&s/a.duration<=a.repeatCount)return{repeatNumberInPrevSegments:s/a.duration,prevSegmentsIdx:o,newElementsIdx:0,repeatNumberInNewElements:0}}if(o++,o>=n.length)return null;if(a=n[o],a.start===i)return{prevSegmentsIdx:o,newElementsIdx:0,repeatNumberInPrevSegments:0,repeatNumberInNewElements:0};if(a.start>i)return null}}else{let a=0,o=Array.isArray(e)?e[0]:null,s=Array.isArray(e)?null:e[0],u=i;for(;;){let d=o!==null?o.attributes.d:s==null?void 0:s.getAttribute(\"d\"),f=R(d)?null:parseInt(d,10);if(f===null||Number.isNaN(f))return null;let m=o!==null?o.attributes.r:s==null?void 0:s.getAttribute(\"r\"),l=R(m)?null:parseInt(m,10);if(l!==null){if(Number.isNaN(l)||l<0)return null;if(l>0){let h=t-u;if(h%f===0&&h/f<=l)return{repeatNumberInPrevSegments:0,repeatNumberInNewElements:h/f,prevSegmentsIdx:0,newElementsIdx:a}}u+=f*(l+1)}else u+=f;if(a++,a>=e.length)return null;Array.isArray(e)?o=e[a]:s=e[a];let p=o!==null?o.attributes.t:s==null?void 0:s.getAttribute(\"t\"),g=R(p)?null:parseInt(p,10);if(g!==null){if(Number.isNaN(g))return null;u=g}if(u===t)return{newElementsIdx:a,prevSegmentsIdx:0,repeatNumberInPrevSegments:0,repeatNumberInNewElements:0};if(u>i)return null}}}function si(n,e){var h;let t=oi(e,n);if(t===null)return c.warn('DASH: Cannot perform \"based\" update. Common segment not found.'),mt(n);let{prevSegmentsIdx:r,newElementsIdx:i,repeatNumberInPrevSegments:a,repeatNumberInNewElements:o}=t,u=e.length-r+i-1;if(u>=n.length)return c.info('DASH: Cannot perform \"based\" update. New timeline too short'),mt(n);let d=e.slice(r);if(a>0){let I=d[0];I.start+=I.duration*a,d[0].repeatCount-=a}if(o>0&&i!==0)return c.info('DASH: Cannot perform \"based\" update. The new timeline has a different form.'),mt(n);let f=d[d.length-1],m=Array.isArray(n)?rn(n[u]):an(n[u]),l=((h=m.repeatCount)!=null?h:0)-o;if(m.duration!==f.duration||f.repeatCount>l)return c.info('DASH: Cannot perform \"based\" update. The new timeline has a different form at the beginning.'),mt(n);m.repeatCount!==void 0&&m.repeatCount>f.repeatCount&&(f.repeatCount=m.repeatCount);let p=[],g=[];if(Array.isArray(n))for(let I=u+1;I<n.length;I++)g.push(rn(n[I]));else for(let I=u+1;I<n.length;I++)g.push(an(n[I]));for(let I=0;I<g.length;I++){let y=g[I],E=p[p.length-1]===void 0?f:p[p.length-1],v=g[I+1]===void 0?null:g[I+1],T=nn(y,E,v);T!==null&&p.push(T)}return d.concat(p)}var on=class n{constructor(e,t){var T,C,P,M,_;if(!n.isTimelineIndexArgument(e))throw new Error(\"The given index is not compatible with a TimelineRepresentationIndex.\");let{availabilityTimeComplete:r,availabilityTimeOffset:i,manifestBoundsCalculator:a,isDynamic:o,isLastPeriod:s,representationId:u,representationBitrate:d,periodStart:f,periodEnd:m,isEMSGWhitelisted:l}=t,p=(T=e.timescale)!=null?T:1,g=(C=e.presentationTimeOffset)!=null?C:0,h=f*p,I=g-h;this._manifestBoundsCalculator=a,this._isEMSGWhitelisted=l,this._isLastPeriod=s,this._lastUpdate=(P=t.receivedTime)!=null?P:L(),this._unsafelyBaseOnPreviousIndex=null,t.unsafelyBaseOnPreviousRepresentation!==null&&t.unsafelyBaseOnPreviousRepresentation.index instanceof n&&(t.unsafelyBaseOnPreviousRepresentation.index._unsafelyBaseOnPreviousIndex=null,this._unsafelyBaseOnPreviousIndex=t.unsafelyBaseOnPreviousRepresentation.index),this._isDynamic=o,this._parseTimeline=(M=e.timelineParser)!=null?M:null;let y=((_=e.initialization)==null?void 0:_.media)===void 0?null:Ne(e.initialization.media,u,d),E=e.media===void 0?null:Ne(e.media,u,d),v;i===void 0&&r===void 0?v=1/0:v=i!=null?i:0,this._index={availabilityTimeComplete:r!=null?r:!0,availabilityTimeOffset:v,indexRange:e.indexRange,indexTimeOffset:I,initialization:R(e.initialization)?void 0:{url:y,range:e.initialization.range},segmentUrlTemplate:E,startNumber:e.startNumber,endNumber:e.endNumber,timeline:e.timeline===void 0?null:ui(e.timeline,e.startNumber,e.endNumber),timescale:p},this._scaledPeriodStart=Pe(f,this._index),this._scaledPeriodEnd=m===void 0?void 0:Pe(m,this._index)}getInitSegment(){return Ze(this._index,this._isEMSGWhitelisted)}getSegments(e,t){this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline());let{segmentUrlTemplate:r,startNumber:i,endNumber:a,timeline:o,timescale:s,indexTimeOffset:u}=this._index;return tn({segmentUrlTemplate:r,startNumber:i,endNumber:a,timeline:o,timescale:s,indexTimeOffset:u},e,t,this._manifestBoundsCalculator,this._scaledPeriodEnd,this._isEMSGWhitelisted)}shouldRefresh(){return!1}getFirstAvailablePosition(){this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline());let e=this._index.timeline;return e.length===0?null:je(Math.max(this._scaledPeriodStart,e[0].start),this._index)}getLastAvailablePosition(){var r;this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline());let e=lr(this._index,this._manifestBoundsCalculator,this._scaledPeriodEnd);if(e===null)return null;let t=Math.min(e.end,(r=this._scaledPeriodEnd)!=null?r:1/0);return je(t,this._index)}getEnd(){var r;if(this._isDynamic&&!this._isLastPeriod)return;if(this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline()),this._index.timeline.length<=0)return null;let e=this._index.timeline[this._index.timeline.length-1],t=Math.min(De(e,null,this._scaledPeriodEnd),(r=this._scaledPeriodEnd)!=null?r:1/0);return je(t,this._index)}awaitSegmentBetween(e,t){var d,f;if(he(e<=t),!this._isDynamic)return!1;this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline());let{timescale:r,timeline:i}=this._index,a=Dt(r),o=Pe(t,this._index),s=lr(this._index,this._manifestBoundsCalculator,this._scaledPeriodEnd);if(s!==null&&Math.min(s.end,(d=this._scaledPeriodEnd)!=null?d:1/0)+a>=Math.min(o,(f=this._scaledPeriodEnd)!=null?f:1/0))return!1;let u=Pe(e,this._index);if(i.length>0&&s!==null&&!s.isLastOfTimeline){let m=i[i.length-1],p=De(m,null,this._scaledPeriodEnd)+a;if(u<p+a)return!0}return this._isLastPeriod?this._scaledPeriodEnd===void 0?o+a>this._scaledPeriodStart?void 0:!1:u-a<this._scaledPeriodEnd&&o+a>this._scaledPeriodStart:!1}isSegmentStillAvailable(e){return e.isInit?!0:(this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline()),vu(e,this._index,this._manifestBoundsCalculator,this._scaledPeriodEnd))}checkDiscontinuity(e){this._refreshTimeline();let t=this._index.timeline;return t===null&&(t=this._getTimeline(),this._index.timeline=t),mo({timeline:t,timescale:this._index.timescale,indexTimeOffset:this._index.indexTimeOffset},e,this._scaledPeriodEnd)}canBeOutOfSyncError(e){return this._isDynamic?e instanceof Ke&&e.isHttpError(404):!1}_replace(e){this._parseTimeline=e._parseTimeline,this._index=e._index,this._isDynamic=e._isDynamic,this._scaledPeriodStart=e._scaledPeriodStart,this._scaledPeriodEnd=e._scaledPeriodEnd,this._lastUpdate=e._lastUpdate,this._manifestBoundsCalculator=e._manifestBoundsCalculator,this._isLastPeriod=e._isLastPeriod}_update(e){this._index.timeline===null&&(this._index.timeline=this._getTimeline()),e._index.timeline===null&&(e._index.timeline=e._getTimeline()),ai(this._index.timeline,e._index.timeline)&&(this._index.startNumber=e._index.startNumber),this._index.availabilityTimeOffset=e._index.availabilityTimeOffset,this._index.availabilityTimeComplete=e._index.availabilityTimeComplete,this._index.endNumber=e._index.endNumber,this._isDynamic=e._isDynamic,this._scaledPeriodStart=e._scaledPeriodStart,this._scaledPeriodEnd=e._scaledPeriodEnd,this._lastUpdate=e._lastUpdate,this._isLastPeriod=e._isLastPeriod}isStillAwaitingFutureSegments(){var o;if(!this._isDynamic)return!1;this._refreshTimeline(),this._index.timeline===null&&(this._index.timeline=this._getTimeline());let{timeline:e}=this._index;if(e.length===0){if(this._scaledPeriodEnd!==void 0){let s=this._manifestBoundsCalculator.getEstimatedLiveEdge();if(s!==void 0&&Pe(s,this._index)>this._scaledPeriodEnd)return!1}return this._isLastPeriod}let t=Dt(this._index.timescale),r=lr(this._index,this._manifestBoundsCalculator,this._scaledPeriodEnd);if(r!==null&&!r.isLastOfTimeline){let s=Math.min(r.end,(o=this._scaledPeriodEnd)!=null?o:1/0);return!(this._scaledPeriodEnd!==void 0&&s+t>=this._scaledPeriodEnd)}if(!this._isLastPeriod)return!1;if(this._scaledPeriodEnd===void 0)return!0;let i=e[e.length-1];return De(i,null,this._scaledPeriodEnd)+t<this._scaledPeriodEnd}isInitialized(){return!0}initialize(){c.error(\"A `TimelineRepresentationIndex` does not need to be initialized\")}addPredictedSegments(){c.warn(\"Cannot add predicted segments to a `TimelineRepresentationIndex`\")}static isTimelineIndexArgument(e){return typeof e.timelineParser==\"function\"||Array.isArray(e.timeline)}_refreshTimeline(){if(this._index.timeline===null&&(this._index.timeline=this._getTimeline()),!this._isDynamic)return;let e=this._manifestBoundsCalculator.getEstimatedMinimumSegmentTime();if(R(e))return;let t=Pe(e,this._index),r=ii(this._index.timeline,t);this._index.startNumber!==void 0?this._index.startNumber+=r:this._index.endNumber!==void 0&&(this._index.startNumber=r+1)}_getTimeline(){if(this._parseTimeline===null)return this._index.timeline!==null?this._index.timeline:(c.error(\"DASH: Timeline already lazily parsed.\"),[]);let e=this._parseTimeline();this._parseTimeline=null;let{MIN_DASH_S_ELEMENTS_TO_PARSE_UNSAFELY:t}=U.getCurrent();if(this._unsafelyBaseOnPreviousIndex===null||e.length<t)return ui(mt(e),this._index.startNumber,this._index.endNumber);let r;return this._unsafelyBaseOnPreviousIndex._index.timeline===null?(r=this._unsafelyBaseOnPreviousIndex._getTimeline(),this._unsafelyBaseOnPreviousIndex._index.timeline=r):r=this._unsafelyBaseOnPreviousIndex._index.timeline,this._unsafelyBaseOnPreviousIndex=null,ui(si(e,r),this._index.startNumber,this._index.endNumber)}};function ui(n,e,t){if(t===void 0)return n;let r=e!=null?e:1;for(let i=0;i<n.length;i++){let a=n[i];if(r+=a.repeatCount+1,r>t){if(r===t+1)return n.slice(0,i+1);{let o=n.slice(0,i),s=_e({},a),u=r-a.repeatCount-1;return s.repeatCount=Math.max(0,t-u),o.push(s),o}}}return n}function vu(n,e,t,r){let i=lr(e,t,r);if(i===null)return!1;for(let a=0;a<e.timeline.length;a++){if(i.timelineIdx<a)return!1;let o=e.timeline[a],s=(o.start-e.indexTimeOffset)/e.timescale;if(s>n.time)return!1;if(s===n.time)return o.range===void 0?n.range===void 0:!R(n.range)&&o.range[0]===n.range[0]&&o.range[1]===n.range[1];if(o.repeatCount>=0&&o.duration!==void 0){let d=(s-o.start)/o.duration-1;return d%1===0&&d<=i.newRepeatCount}}return!1}function lr(n,e,t){if(n.timeline.length<=0)return null;if(n.availabilityTimeOffset===1/0){let i=n.timeline.length-1,a=n.timeline[i];return{isLastOfTimeline:!0,timelineIdx:i,newRepeatCount:a.repeatCount,end:De(a,null,t)}}let r=e.getEstimatedMaximumPosition(n.availabilityTimeOffset);if(r===void 0){let i=n.timeline.length-1,a=n.timeline[i];return{isLastOfTimeline:!0,timelineIdx:i,newRepeatCount:a.repeatCount,end:De(a,null,t)}}for(let i=n.timeline.length-1;i>=n.timeline.length;i--){let a=n.timeline[i],o=a.start+a.duration;if(je(o,n)<=r){let s=De(a,n.timeline[i+1],t);if(je(s,n)<=r)return{isLastOfTimeline:i===n.timeline.length-1,timelineIdx:i,newRepeatCount:a.repeatCount,end:o};{let d=Pe(r,n)-a.start,f=Math.floor(d/a.duration);return he(f>=1),{isLastOfTimeline:!1,timelineIdx:i,newRepeatCount:f-1,end:a.start+f*a.duration}}}}return null}var fr=on;var co=/^(?:[a-z]+:)?\\/\\//i,Cu=/\\/\\.{1,2}\\//;function Au(n){if(!Cu.test(n))return n;let e=[],t=n.split(\"/\");for(let r=0,i=t.length;r<i;r++)if(t[r]===\"..\")e.pop();else{if(t[r]===\".\")continue;e.push(t[r])}return e.join(\"/\")}function sn(...n){let e=n.length;if(e===0)return\"\";let t=\"\";for(let r=0;r<e;r++){let i=n[r];typeof i!=\"string\"||i===\"\"||(co.test(i)?t=i:(i[0]===\"/\"&&(i=i.substring(1)),t[t.length-1]===\"/\"&&(t=t.substring(0,t.length-1)),t=t+\"/\"+i))}return Au(t)}function di(n){let e=n.lastIndexOf(\"/\");if(e<0)return n.length;if(co.test(n)){let r=n.indexOf(\"/\");if(r>=0&&e===r+1)return n.length}let t=n.indexOf(\"?\");return t>=0&&t<e?di(n.substring(0,t)):e+1}function mr(n){let e=Date.parse(n)-L();if(isNaN(e)){c.warn(\"DASH Parser: Invalid clock received: \",n);return}return e}function li(n){let e=n.children.utcTimings.filter(t=>(t.schemeIdUri===\"urn:mpeg:dash:utc:http-iso:2014\"||t.schemeIdUri===\"urn:mpeg:dash:utc:http-xsdate:2014\")&&t.value!==void 0);return e.length>0?e[0].value:void 0}function cr(n){let{representations:e}=n,t=null;for(let r=0;r<e.length;r++){let i=e[r].index.getLastAvailablePosition();if(i===void 0)return;i!==null&&(t=t===null?i:Math.min(t,i))}return t===null?null:t}function fi(n){for(let e=n.length-1;e>=0;e--){let t=n[e].adaptations,r=t.audio===void 0?void 0:t.audio[0],i=t.video===void 0?void 0:t.video[0];if(r!==void 0||i!==void 0){let a=null,o=null;if(r!==void 0){let s=cr(r);if(s===void 0)return{safe:void 0,unsafe:void 0};a=s}if(i!==void 0){let s=cr(i);if(s===void 0)return{safe:void 0,unsafe:void 0};o=s}if(r!==void 0&&a===null||i!==void 0&&o===null)return c.info(\"Parser utils: found Period with no segment. \",\"Going to previous one to calculate last position\"),{safe:void 0,unsafe:void 0};if(o!==null)return a!==null?{safe:Math.min(a,o),unsafe:Math.max(a,o)}:{safe:o,unsafe:o};if(a!==null)return{safe:a,unsafe:a}}}return{safe:void 0,unsafe:void 0}}function pr(n){let{representations:e}=n,t=null;for(let r=0;r<e.length;r++){let i=e[r].index.getFirstAvailablePosition();if(i===void 0)return;i!==null&&(t=t===null?i:Math.max(t,i))}return t===null?null:t}function mi(n){for(let e=0;e<=n.length-1;e++){let t=n[e].adaptations,r=t.audio===void 0?void 0:t.audio[0],i=t.video===void 0?void 0:t.video[0];if(r!==void 0||i!==void 0){let a=null,o=null;if(r!==void 0){let s=pr(r);if(s===void 0)return;a=s}if(i!==void 0){let s=pr(i);if(s===void 0)return;o=s}if(r!==void 0&&a===null||i!==void 0&&o===null){c.info(\"Parser utils: found Period with no segment. \",\"Going to next one to calculate first position\");return}if(o!==null)return a!==null?Math.max(a,o):o;if(a!==null)return a}}}function ci(n){if(n.length===0)throw new Error(\"DASH Parser: no period available for a dynamic content\");let e=mi(n),t=fi(n);return{minimumSafePosition:e,maximumSafePosition:t.safe,maximumUnsafePosition:t.unsafe}}var un=class{constructor(e){this._isDynamic=e.isDynamic,this._timeShiftBufferDepth=!e.isDynamic||e.timeShiftBufferDepth===void 0?null:e.timeShiftBufferDepth,this._serverTimestampOffset=e.serverTimestampOffset,this._availabilityStartTime=e.availabilityStartTime}setLastPosition(e,t){this._lastPosition=e,this._positionTime=t}lastPositionIsKnown(){return this._isDynamic?this._positionTime!==void 0&&this._lastPosition!==void 0:this._lastPosition!==void 0}getEstimatedMinimumSegmentTime(){var r;if(!this._isDynamic||this._timeShiftBufferDepth===null)return 0;let e=(r=this.getEstimatedLiveEdge())!=null?r:this.getEstimatedMaximumPosition(0);return e===void 0?void 0:e-this._timeShiftBufferDepth}getEstimatedLiveEdge(){if(!(!this._isDynamic||this._serverTimestampOffset===void 0))return(L()+this._serverTimestampOffset)/1e3-this._availabilityStartTime}getEstimatedMaximumPosition(e){if(!this._isDynamic)return this._lastPosition;let t=this.getEstimatedLiveEdge();return t!==void 0&&e!==1/0?t+e:this._positionTime!==void 0&&this._lastPosition!==void 0?Math.max(this._lastPosition-this._positionTime+L()/1e3,0):this._lastPosition}};function pi(n,e){return n.type!==\"dynamic\"?0:R(n.availabilityStartTime)?e!=null?e:0:n.availabilityStartTime}function gi(n,e){return typeof Array.prototype.flatMap==\"function\"?n.flatMap(e):n.reduce((t,r)=>{let i=e(r);return Array.isArray(i)?(t.push(...i),t):(t.push(i),t)},[])}var ku=typeof Ee==\"object\"&&typeof Ee.TextDecoder==\"function\",xu=typeof Ee==\"object\"&&typeof Ee.TextEncoder==\"function\";function dn(n){if(xu)try{return new TextEncoder().encode(n)}catch(i){let a=i instanceof Error?i:\"\";c.warn(\"Utils: could not use TextEncoder to encode string into UTF-8, fallbacking to another implementation\",a)}let e,t=encodeURIComponent(n);if(typeof unescape==\"function\")e=unescape(t);else{let i=/[0-9a-fA-F]/,a=t.length;e=\"\";for(let o=0;o<t.length;o++){let s=!1;if(t[o]===\"%\"){if(o<=a-6&&t[o+1]===\"u\"&&i.test(t[o+2])&&i.test(t[o+3])&&i.test(t[o+4])&&i.test(t[o+5])){let u=parseInt(t.substring(o+1,o+6),16);e+=String.fromCharCode(u),s=!0,o+=5}else if(o<=a-3&&i.test(t[o+1])&&i.test(t[o+2])){let u=parseInt(t.substring(o+1,o+3),16);e+=String.fromCharCode(u),s=!0,o+=2}}s||(e+=t[o])}}let r=new Uint8Array(e.length);for(let i=0;i<e.length;i++)r[i]=e.charCodeAt(i)&255;return r}function Mu(n){let t=\"\";for(let r=0;r<n.length;r+=16e3){let i=n.subarray(r,r+16e3);t+=String.fromCharCode.apply(null,i)}return t}function po(n,e){let t=n.toString(16);return t.length>=e?t:new Array(e-t.length+1).join(\"0\")+t}function Be(n){if(ku)try{return new TextDecoder().decode(n)}catch(i){let a=i instanceof Error?i:\"\";c.warn(\"Utils: could not use TextDecoder to parse UTF-8, fallbacking to another implementation\",a)}let e=n;e[0]===239&&e[1]===187&&e[2]===191&&(e=e.subarray(3));let t=Mu(e),r;if(typeof escape==\"function\")r=escape(t);else{let i=/[A-Za-z0-9*_\\+-\\.\\/]/;r=\"\";for(let a=0;a<t.length;a++)if(i.test(t[a]))r+=t[a];else{let o=t.charCodeAt(a);r+=o>=256?\"%u\"+po(o,4):\"%\"+po(o,2)}}return decodeURIComponent(r)}function ln(n){let e=n.length,t=new Uint8Array(e/2);for(let r=0,i=0;r<e;r+=2,i++)t[i]=parseInt(n.substring(r,r+2),16)&255;return t}function go(n,e=\"\"){let t=\"\";for(let r=0;r<n.byteLength;r++)t+=(n[r]>>>4).toString(16),t+=(n[r]&15).toString(16),e.length>0&&r<n.byteLength-1&&(t+=e);return t}function hi(n,e){let t=e;for(;t<n.length&&n[t]!==0;)t+=1;let r=n.subarray(e,t);return{end:t+1,string:Be(r)}}function Ii(n){if(n.length===0)return[];let e=[n[0]];for(let t=1;t<n.length;t++){let r=n[t],i=e[e.length-1];for(;(i.duration===void 0||i.start+i.duration>r.start)&&(c.warn(\"DASH: Updating overlapping Periods.\",i==null?void 0:i.start,r.start),i.duration=r.start-i.start,i.end=r.start,!(i.duration>0));){if(e.pop(),e.length===0)break;i=e[e.length-1]}e.push(r)}return e}function bi(n,e){let t=[];return n.forEach((r,i)=>{let a;if(!R(r.attributes.start))a=r.attributes.start;else if(i===0)a=!e.isDynamic||R(e.availabilityStartTime)?0:e.availabilityStartTime;else{let d=t[t.length-1];if(!R(d)&&!R(d.periodEnd))a=d.periodEnd;else throw new Error(\"Missing start time when parsing periods.\")}let o,s=n[i+1];R(r.attributes.duration)?i===n.length-1?o=e.duration:R(s.attributes.start)||(o=s.attributes.start-a):o=r.attributes.duration;let u=R(o)?void 0:a+o;t.push({periodStart:a,periodDuration:o,periodEnd:u})}),t}function Ou(n,e){for(let t of e){let{adaptation:r,trickModeAttachedAdaptationIds:i}=t;for(let a of i)for(let o of Ot){let s=n[o];if(s!==void 0)for(let u of s)u.id===a&&(u.trickModeTracks===void 0&&(u.trickModeTracks=[]),u.trickModeTracks.push(r))}}}var ho=Ou;var wu=[\"subtitle\",\"caption\"];function Si(n,e,t,r){function i(o,s){let u=o.split(\"/\")[0];if(se(Ot,u))return u;if(o===\"application/ttml+xml\")return\"text\";if(o===\"application/mp4\")return s!==null&&K(s,d=>d.schemeIdUri===\"urn:mpeg:dash:role:2011\"&&se(wu,d.value))!==void 0?\"text\":void 0}function a(o){switch(o.substring(0,3)){case\"avc\":case\"hev\":case\"hvc\":case\"vp8\":case\"vp9\":case\"av1\":return\"video\";case\"vtt\":return\"text\"}switch(o.substring(0,4)){case\"mp4a\":return\"audio\";case\"wvtt\":case\"stpp\":return\"text\"}}if(e!==null){let o=i(e,r);if(o!==void 0)return o}if(t!==null){let o=a(t);if(o!==void 0)return o}for(let o=0;o<n.length;o++){let s=n[o],{mimeType:u,codecs:d}=s.attributes;if(u!==void 0){let f=i(u,r);if(f!==void 0)return f}if(d!==void 0){let f=a(d);if(f!==void 0)return f}}}var Du=/[, ]+/g;function Io(n){return Z(n)?n.trim().replace(Du,\", \"):\"\"}function bo(n){let[e,t,r,i,a,o,s,u]=n.split(\".\");if(e!==\"vp08\"&&e!==\"vp09\"&&e!==\"vp10\")return;let d,f,m;if((i!==void 0&&i===\"10\"||i===\"12\")&&(d=parseInt(i,10)),s!==void 0&&(s===\"16\"?f=\"pq\":s===\"18\"&&(f=\"hlg\")),o!==void 0&&u!==void 0&&o===\"09\"&&u===\"09\"&&(m=\"rec2020\"),!(d===void 0||f===void 0))return{colorDepth:d,eotf:f,colorSpace:m}}function yi(n,e){var g,h;let{availabilityTimeOffset:t,manifestBoundsCalculator:r,isDynamic:i,end:a,start:o,receivedTime:s,unsafelyBaseOnPreviousRepresentation:u,inbandEventStreams:d,isLastPeriod:f}=e,l={availabilityTimeComplete:void 0,availabilityTimeOffset:t,unsafelyBaseOnPreviousRepresentation:u,isEMSGWhitelisted:I=>d===void 0?!1:d.some(({schemeIdUri:y})=>y===I.schemeIdUri),isLastPeriod:f,manifestBoundsCalculator:r,isDynamic:i,periodEnd:a,periodStart:o,receivedTime:s,representationBitrate:n.attributes.bitrate,representationId:n.attributes.id},p;if(n.children.segmentBase!==void 0){let{segmentBase:I}=n.children;p=new Tt(I,l)}else if(n.children.segmentList!==void 0){let{segmentList:I}=n.children;p=new _t(I,l)}else if(n.children.segmentTemplate!==void 0||e.parentSegmentTemplates.length>0){let I=e.parentSegmentTemplates.slice(),y=n.children.segmentTemplate;y!==void 0&&I.push(y);let E=H({},...I);(E.availabilityTimeOffset!==void 0||e.availabilityTimeOffset!==void 0)&&(l.availabilityTimeOffset=((g=E.availabilityTimeOffset)!=null?g:0)+((h=e.availabilityTimeOffset)!=null?h:0)),p=fr.isTimelineIndexArgument(E)?new fr(E,l):new Et(E,l)}else{let I=e.adaptation.children;if(I.segmentBase!==void 0){let{segmentBase:y}=I;p=new Tt(y,l)}else if(I.segmentList!==void 0){let{segmentList:y}=I;p=new _t(y,l)}else p=new Et({duration:Number.MAX_VALUE,timescale:1,startNumber:0,media:\"\"},l)}return p}function Je(n,e){var i;if(e.length===0)return n;let t=e.map(a=>({url:a.value}));if(n.length===0)return t;let r=[];for(let a=0;a<n.length;a++){let o=n[a];for(let s=0;s<t.length;s++){let u=t[s],d=sn(o.url,u.url);r.push({url:d,serviceLocation:(i=u.serviceLocation)!=null?i:o.serviceLocation})}}return r}function Nu(n,e){let t=[];if(n.children.inbandEventStreams!==void 0&&t.push(...n.children.inbandEventStreams),e.children.inbandEventStreams!==void 0&&t.push(...e.children.inbandEventStreams),t.length!==0)return t}function Bu({adaptationProfiles:n,essentialProperties:e,supplementalProperties:t,manifestProfiles:r,codecs:i}){if(((n!=null?n:\"\")+(r!=null?r:\"\")).indexOf(\"http://dashif.org/guidelines/dash-if-uhd#hevc-hdr-pq10\")!==-1&&(i===\"hvc1.2.4.L153.B0\"||i===\"hev1.2.4.L153.B0\"))return{colorDepth:10,eotf:\"pq\",colorSpace:\"rec2020\"};let o=K([...e!=null?e:[],...t!=null?t:[]],s=>s.schemeIdUri===\"urn:mpeg:mpegB:cicp:TransferCharacteristics\");if(o!==void 0)switch(o.value){case\"15\":return;case\"16\":return{eotf:\"pq\"};case\"18\":return{eotf:\"hlg\"}}if(i!==void 0&&/^vp(08|09|10)/.exec(i))return bo(i)}function Ti(n,e,t){var i,a,o,s,u;let r=[];for(let d of n){let f=d.attributes.id!==void 0?d.attributes.id:String(d.attributes.bitrate)+(d.attributes.height!==void 0?`-${d.attributes.height}`:\"\")+(d.attributes.width!==void 0?`-${d.attributes.width}`:\"\")+(d.attributes.mimeType!==void 0?`-${d.attributes.mimeType}`:\"\")+(d.attributes.codecs!==void 0?`-${d.attributes.codecs}`:\"\");for(;r.some(_=>_.id===f);)f+=\"-dup\";let m=(a=(i=t.unsafelyBaseOnPreviousAdaptation)==null?void 0:i.getRepresentation(f))!=null?a:null,l=Nu(d,e),p=(o=d.attributes.availabilityTimeComplete)!=null?o:t.availabilityTimeComplete,g;(d.attributes.availabilityTimeOffset!==void 0||t.availabilityTimeOffset!==void 0)&&(g=((s=d.attributes.availabilityTimeOffset)!=null?s:0)+((u=t.availabilityTimeOffset)!=null?u:0));let h=H({},t,{availabilityTimeOffset:g,availabilityTimeComplete:p,unsafelyBaseOnPreviousRepresentation:m,adaptation:e,inbandEventStreams:l}),I=yi(d,h),y;d.attributes.bitrate===void 0?(c.warn(\"DASH: No usable bitrate found in the Representation.\"),y=0):y=d.attributes.bitrate;let E=Je(t.baseURLs,d.children.baseURLs),v=E.length===0?[{baseUrl:\"\",id:void 0}]:E.map(_=>({baseUrl:_.url,id:_.serviceLocation})),T={bitrate:y,cdnMetadata:v,index:I,id:f};d.children.supplementalProperties!==void 0&&K(d.children.supplementalProperties,_=>_.schemeIdUri===\"tag:dolby.com,2018:dash:EC3_ExtensionType:2018\"&&_.value===\"JOC\")&&(T.isSpatialAudio=!0);let C;d.attributes.codecs!==void 0?C=d.attributes.codecs:e.attributes.codecs!==void 0&&(C=e.attributes.codecs),C!==void 0&&(C=C===\"mp4a.40.02\"?\"mp4a.40.2\":C,T.codecs=C);let P;d.attributes.supplementalCodecs!==void 0?P=d.attributes.supplementalCodecs:e.attributes.supplementalCodecs!==void 0&&(P=e.attributes.supplementalCodecs),P!==void 0&&(T.supplementalCodecs=Io(P)),d.attributes.frameRate!==void 0?T.frameRate=d.attributes.frameRate:e.attributes.frameRate!==void 0&&(T.frameRate=e.attributes.frameRate),d.attributes.height!==void 0?T.height=d.attributes.height:e.attributes.height!==void 0&&(T.height=e.attributes.height),d.attributes.mimeType!==void 0?T.mimeType=d.attributes.mimeType:e.attributes.mimeType!==void 0&&(T.mimeType=e.attributes.mimeType),d.attributes.width!==void 0?T.width=d.attributes.width:e.attributes.width!==void 0&&(T.width=e.attributes.width);let M=e.children.contentProtections!==void 0?e.children.contentProtections:[];if(d.children.contentProtections!==void 0&&M.push(...d.children.contentProtections),M.length>0){let _=M.reduce((A,x)=>{let k;if(x.attributes.schemeIdUri!==void 0&&x.attributes.schemeIdUri.substring(0,9)===\"urn:uuid:\"&&(k=x.attributes.schemeIdUri.substring(9).replace(/-/g,\"\").toLowerCase()),x.attributes.keyId!==void 0&&x.attributes.keyId.length>0){let D={keyId:x.attributes.keyId,systemId:k};A.keyIds===void 0?A.keyIds=[D]:A.keyIds.push(D)}if(k!==void 0){let{cencPssh:D}=x.children,w=[];for(let O of D)w.push({systemId:k,data:O});if(w.length>0){let O=K(A.initData,B=>B.type===\"cenc\");O===void 0?A.initData.push({type:\"cenc\",values:w}):O.values.push(...w)}}return A},{keyIds:void 0,initData:[]});(Object.keys(_.initData).length>0||_.keyIds!==void 0&&_.keyIds.length>0)&&(T.contentProtections=_)}T.hdrInfo=Bu({adaptationProfiles:e.attributes.profiles,supplementalProperties:e.children.supplementalProperties,essentialProperties:e.children.essentialProperties,manifestProfiles:t.manifestProfiles,codecs:C}),r.push(T)}return r}function Uu(n){if(n===void 0)return!1;let e=n.schemeIdUri===\"urn:tva:metadata:cs:AudioPurposeCS:2007\"&&n.value===\"1\",t=n.schemeIdUri===\"urn:mpeg:dash:role:2011\"&&n.value===\"description\";return e||t}function Lu(n,e){return!!(n!==void 0&&n.some(r=>r.schemeIdUri===\"urn:tva:metadata:cs:AudioPurposeCS:2007\"&&r.value===\"2\")||e!==void 0&&e.some(r=>r.schemeIdUri===\"urn:mpeg:dash:role:2011\"&&r.value===\"caption\"))}function Fu(n){return n===void 0?!1:n.schemeIdUri===\"urn:mpeg:dash:role:2011\"&&n.value===\"sign\"}function zu(n,e){if(Z(n.attributes.id))return n.attributes.id;let{isClosedCaption:t,isForcedSubtitle:r,isAudioDescription:i,isSignInterpreted:a,isTrickModeTrack:o,type:s}=e,u=s;return Z(n.attributes.language)&&(u+=`-${n.attributes.language}`),t===!0&&(u+=\"-cc\"),r===!0&&(u+=\"-cc\"),i===!0&&(u+=\"-ad\"),a===!0&&(u+=\"-si\"),o&&(u+=\"-trickMode\"),Z(n.attributes.contentType)&&(u+=`-${n.attributes.contentType}`),Z(n.attributes.codecs)&&(u+=`-${n.attributes.codecs}`),Z(n.attributes.mimeType)&&(u+=`-${n.attributes.mimeType}`),n.attributes.frameRate!==void 0&&(u+=`-${String(n.attributes.frameRate)}`),u}function Wu(n){if(!R(n.children.supplementalProperties)){let{supplementalProperties:e}=n.children;for(let t of e)if(t.schemeIdUri===\"urn:mpeg:dash:adaptation-set-switching:2016\"&&!R(t.value))return t.value.split(\",\").map(r=>r.trim()).filter(r=>r)}return[]}function _i(n,e){var s,u,d,f,m,l,p;let t={video:[],audio:[],text:[]},r=[],i={},a=[];for(let g=0;g<n.length;g++){let h=n[g],I=h.children,{essentialProperties:y,roles:E,label:v}=I,T=Array.isArray(E)&&E.some(be=>be.value===\"main\")&&E.some(be=>be.schemeIdUri===\"urn:mpeg:dash:role:2011\"),C=h.children.representations,P=(s=h.attributes.availabilityTimeComplete)!=null?s:e.availabilityTimeComplete,M;(h.attributes.availabilityTimeOffset!==void 0||e.availabilityTimeOffset!==void 0)&&(M=((u=h.attributes.availabilityTimeOffset)!=null?u:0)+((d=e.availabilityTimeOffset)!=null?d:0));let _=h.attributes.mimeType,A=h.attributes.codecs,x=Si(C,Z(_)?_:null,Z(A)?A:null,R(I.roles)?null:I.roles);if(x===void 0)continue;let k=(f=h.attributes.selectionPriority)!=null?f:1,D=h.attributes.id,w=Wu(h),O=[];e.segmentTemplate!==void 0&&O.push(e.segmentTemplate),h.children.segmentTemplate!==void 0&&O.push(h.children.segmentTemplate);let B={availabilityTimeComplete:P,availabilityTimeOffset:M,baseURLs:Je(e.baseURLs,I.baseURLs),manifestBoundsCalculator:e.manifestBoundsCalculator,end:e.end,isDynamic:e.isDynamic,isLastPeriod:e.isLastPeriod,manifestProfiles:e.manifestProfiles,parentSegmentTemplates:O,receivedTime:e.receivedTime,start:e.start,unsafelyBaseOnPreviousAdaptation:null},z=Array.isArray(y)?K(y,be=>be.schemeIdUri===\"http://dashif.org/guidelines/trickmode\"):void 0,q=(m=z==null?void 0:z.value)==null?void 0:m.split(\" \"),J=q!==void 0,{accessibilities:$}=I,V;E!==void 0&&E.some(be=>be.value===\"dub\")&&(V=!0);let Y;x!==\"text\"?Y=!1:Y=Lu($,E);let X;x===\"text\"&&E!==void 0&&E.some(be=>be.value===\"forced-subtitle\"||be.value===\"forced_subtitle\")&&(X=!0);let me;x!==\"audio\"?me=!1:$!==void 0&&(me=$.some(Uu));let ce;x!==\"video\"?ce=!1:$!==void 0&&(ce=$.some(Fu));let de=zu(h,{isAudioDescription:me,isForcedSubtitle:X,isClosedCaption:Y,isSignInterpreted:ce,isTrickModeTrack:J,type:x});for(;se(a,de);)de+=\"-dup\";let Ie=de;a.push(de),B.unsafelyBaseOnPreviousAdaptation=(p=(l=e.unsafelyBaseOnPreviousPeriod)==null?void 0:l.getAdaptation(de))!=null?p:null;let Jn=Ti(C,h,B),pe={id:de,representations:Jn,type:x,isTrickModeTrack:J};if(R(h.attributes.language)||(pe.language=h.attributes.language),R(Y)||(pe.closedCaption=Y),R(me)||(pe.audioDescription=me),V===!0&&(pe.isDub=!0),X!==void 0&&(pe.forcedSubtitles=X),ce===!0&&(pe.isSignInterpreted=!0),v!==void 0&&(pe.label=v),q!==void 0)r.push({adaptation:pe,trickModeAttachedAdaptationIds:q});else{let be=-1;for(let Kt of w){let He=i[Kt];if(He!==void 0&&He.newID!==Ie&&se(He.adaptationSetSwitchingIDs,D)){be=ne(t[x],xt=>xt[0].id===Kt);let xe=t[x][be];if(xe!==void 0&&xe[0].audioDescription===pe.audioDescription&&xe[0].closedCaption===pe.closedCaption&&xe[0].language===pe.language){c.info('DASH Parser: merging \"switchable\" AdaptationSets',D,Kt),xe[0].representations.push(...pe.representations),xe[1]={priority:Math.max(k,xe[1].priority),isMainAdaptation:T||xe[1].isMainAdaptation,indexInMpd:Math.min(g,xe[1].indexInMpd)};break}}}be<0&&t[x].push([pe,{priority:k,isMainAdaptation:T,indexInMpd:g}])}!R(D)&&R(i[D])&&(i[D]={newID:Ie,adaptationSetSwitchingIDs:w})}let o=Ot.reduce((g,h)=>{let I=t[h];return I.length>0&&(I.sort(So),g[h]=I.map(([y])=>y)),g},{});return t.video.sort(So),ho(o,r),o}function So(n,e){let t=e[1].priority-n[1].priority;return t!==0?t:n[1].isMainAdaptation!==e[1].isMainAdaptation?n[1].isMainAdaptation?-1:1:n[1].indexInMpd-e[1].indexInMpd}var Vu=Ae();function Ei(n,e){var o,s,u,d;let t=[],r=bi(n,e);if(r.length!==n.length)throw new Error(\"MPD parsing error: the time information are incoherent.\");let{isDynamic:i,manifestBoundsCalculator:a}=e;!i&&!R(e.duration)&&a.setLastPosition(e.duration);for(let f=n.length-1;f>=0;f--){let m=f===n.length-1,l=n[f],p=e.xlinkInfos.get(l),g=Je(e.baseURLs,l.children.baseURLs),{periodStart:h,periodDuration:I,periodEnd:y}=r[f],E;for(R(l.attributes.id)?(c.warn(\"DASH: No usable id found in the Period. Generating one.\"),E=\"gen-dash-period-\"+Vu()):E=l.attributes.id;t.some(O=>O.id===E);)E+=\"-dup\";let v=p!==void 0?p.receivedTime:e.receivedTime,T=(s=(o=e.unsafelyBaseOnPreviousManifest)==null?void 0:o.getPeriod(E))!=null?s:null,C=l.attributes.availabilityTimeComplete,P=l.attributes.availabilityTimeOffset,{manifestProfiles:M}=e,{segmentTemplate:_}=l.children,A={availabilityTimeComplete:C,availabilityTimeOffset:P,baseURLs:g,manifestBoundsCalculator:a,end:y,isDynamic:i,isLastPeriod:m,manifestProfiles:M,receivedTime:v,segmentTemplate:_,start:h,unsafelyBaseOnPreviousPeriod:T},x=_i(l.children.adaptations,A),k=((u=e.xmlNamespaces)!=null?u:[]).concat((d=l.attributes.namespaces)!=null?d:[]),D=Hu(l.children.eventStreams,h,k),w={id:E,start:h,end:y,duration:I,adaptations:x,streamEvents:D};if(t.unshift(w),!a.lastPositionIsKnown()){let O=qu(x);if(!i)typeof O==\"number\"&&a.setLastPosition(O);else if(typeof O==\"number\"){let B=L()/1e3;a.setLastPosition(O,B)}else{let B=yo(e,h);if(B!==void 0){let[z,q]=B;a.setLastPosition(z,q)}}}}if(e.isDynamic&&!a.lastPositionIsKnown()){let f=yo(e,0);if(f!==void 0){let[m,l]=f;a.setLastPosition(m,l)}}return Ii(t)}function yo(n,e){if(R(n.clockOffset)){let t=Date.now()/1e3;if(t>=e){c.warn(\"DASH Parser: no clock synchronization mechanism found. Using the system clock instead.\");let r=t-n.availabilityStartTime,i=L()/1e3;return[r,i]}}else{let t=n.clockOffset/1e3-n.availabilityStartTime,r=L()/1e3,i=r+t;if(i>=e)return[i,r]}}function qu(n){let e=null,t=!0,r=ar(n).filter(a=>!R(a)),i=gi(r,a=>a);for(let a of i){let o=a.representations;for(let s of o){let u=s.index.getLastAvailablePosition();u!==null&&(t=!1,typeof u==\"number\"&&(e=R(e)?u:Math.max(e,u)))}}if(R(e)){if(t)return null}else return e}function Hu(n,e,t){var i,a;let r=[];for(let o of n){let{schemeIdUri:s=\"\",timescale:u=1}=o.attributes,d=t.concat((i=o.attributes.namespaces)!=null?i:[]);for(let f of o.children.events)if(f.eventStreamData!==void 0){let m=((a=f.presentationTime)!=null?a:0)/u+e,l=f.duration===void 0?void 0:m+f.duration/u,p,g;if(!st&&f.eventStreamData instanceof Element)p=f.eventStreamData;else try{g={namespaces:d,data:typeof f.eventStreamData==\"string\"?f.eventStreamData:Be(new Uint8Array(f.eventStreamData))}}catch(h){c.error(\"DASH: Error while parsing event-stream:\",h instanceof Error?h.message:\"Unknown error\")}r.push({start:m,end:l,id:f.id,data:{type:\"dash-event-stream\",value:{schemeIdUri:s,timescale:u,element:p,xmlData:g}}})}}return r}function Nt(n,e,t,r,i=new WeakMap){let{children:a,attributes:o}=n;if(R(e.externalClockOffset)){let u=o.type===\"dynamic\",d=K(a.utcTimings,l=>l.schemeIdUri===\"urn:mpeg:dash:utc:direct:2014\"&&!R(l.value)),f=!R(d)&&!R(d.value)?mr(d.value):void 0,m=!R(f)&&!isNaN(f)?f:void 0;if(!R(m)&&r!==!0)e.externalClockOffset=m;else if(u&&r!==!0){let l=li(n);if(!R(l)&&l.length>0)return{type:\"needs-clock\",value:{url:l,continue:function(g){return g.success?(e.externalClockOffset=mr(g.data),Nt(n,e,t,!0)):(t.push(g.error),c.warn(\"DASH Parser: Error on fetching the clock ressource\",g.error),Nt(n,e,t,!0))}}}}}let s=[];for(let u=0;u<a.periods.length;u++){let{xlinkHref:d,xlinkActuate:f}=a.periods[u].attributes;!R(d)&&f===\"onLoad\"&&s.push({index:u,ressource:d})}return s.length===0?Gu(n,e,t,i):{type:\"needs-xlinks\",value:{xlinksUrls:s.map(({ressource:u})=>u),continue:function(d){if(d.length!==s.length)throw new Error(\"DASH parser: wrong number of loaded ressources.\");for(let f=d.length-1;f>=0;f--){let m=s[f].index,{parsed:l,warnings:p,receivedTime:g,sendingTime:h,url:I}=d[f];p.length>0&&t.push(...p);for(let y of l)i.set(y,{receivedTime:g,sendingTime:h,url:I});a.periods.splice(m,1,...l)}return Nt(n,e,t,r,i)}}}}function Gu(n,e,t,r){var D,w,O,B;let{children:i,attributes:a}=n,o=a.type===\"dynamic\",s=e.url!==void 0?[{url:e.url.substring(0,di(e.url))}]:[],u=Je(s,i.baseURLs),d=pi(a,e.referenceDateTime),f=a.timeShiftBufferDepth,{externalClockOffset:m,unsafelyBaseOnPreviousManifest:l}=e,{externalClockOffset:p}=e,g=new un({availabilityStartTime:d,isDynamic:o,timeShiftBufferDepth:f,serverTimestampOffset:p}),h={availabilityStartTime:d,baseURLs:u,clockOffset:m,duration:a.duration,isDynamic:o,manifestBoundsCalculator:g,manifestProfiles:n.attributes.profiles,receivedTime:e.manifestReceivedTime,timeShiftBufferDepth:f,unsafelyBaseOnPreviousManifest:l,xlinkInfos:r,xmlNamespaces:n.attributes.namespaces},I=Ei(i.periods,h),y=a.duration,E,v,T=null,C;a.minimumUpdatePeriod!==void 0&&a.minimumUpdatePeriod>=0&&(E=a.minimumUpdatePeriod===0?U.getCurrent().DASH_FALLBACK_LIFETIME_WHEN_MINIMUM_UPDATE_PERIOD_EQUAL_0:a.minimumUpdatePeriod);let{minimumSafePosition:P,maximumSafePosition:M,maximumUnsafePosition:_}=ci(I),A=L();if(o){let z;M!==void 0?z=M:p===void 0?(c.warn(\"DASH Parser: use system clock to define maximum position\"),z=Date.now()/1e3-d):z=(L()+p)/1e3-d;let q=g.getEstimatedLiveEdge();q===void 0&&(_!==void 0?q=_:q=z),C={isLinear:!0,maximumSafePosition:z,livePosition:q,time:A},v=P,T=f!=null?f:null,T!==null&&v!==void 0&&q-v>T&&(T=q-v)}else{v=P,v===void 0&&(v=(w=(D=I[0])==null?void 0:D.start)!=null?w:0);let z=y!=null?y:1/0;if(I[I.length-1]!==void 0){let q=I[I.length-1],J=(O=q.end)!=null?O:q.duration!==void 0?q.start+q.duration:void 0;J!==void 0&&J<z&&(z=J)}M!==void 0&&M<z&&(z=M),C={isLinear:!1,maximumSafePosition:z,livePosition:void 0,time:A}}let x=!o||n.attributes.minimumUpdatePeriod===void 0&&(((B=I[I.length-1])==null?void 0:B.end)!==void 0||n.attributes.duration!==void 0);return{type:\"done\",value:{parsed:{availabilityStartTime:d,clockOffset:e.externalClockOffset,isDynamic:o,isLive:o,isLastPeriodKnown:x,periods:I,publishTime:a.publishTime,suggestedPresentationDelay:a.suggestedPresentationDelay,transportType:\"dash\",timeBounds:{minimumSafePosition:v,timeshiftDepth:T,maximumTimeData:C},lifetime:E,uris:R(e.url)?i.locations:[e.url,...i.locations]},warnings:t}}}var gr=Nt;function Ye(n,e,t){if(typeof String.prototype.startsWith==\"function\")return n.startsWith(e,t);let r=typeof t==\"number\"?Math.max(t,0):0;return n.substring(r,r+e.length)===e}var To=[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,62,255,255,255,63,52,53,54,55,56,57,58,59,60,61,255,255,255,0,255,255,255,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,255,255,255,255,255,255,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51];function hr(n){if(n>=To.length)throw new Error(\"Unable to parse base64 string.\");let e=To[n];if(e===255)throw new Error(\"Unable to parse base64 string.\");return e}function Ir(n){let e=n.length%4,t=n;e!==0&&(c.warn(\"base64ToBytes: base64 given miss padding\"),t+=e===3?\"=\":e===2?\"==\":\"===\");let r=t.indexOf(\"=\");if(r!==-1&&r<t.length-2)throw new Error(\"Unable to parse base64 string.\");let i=t.endsWith(\"==\")?2:t.endsWith(\"=\")?1:0,a=t.length,o=new Uint8Array(a/4*3),s;for(let u=0,d=0;u<a;u+=4,d+=3)s=hr(t.charCodeAt(u))<<18|hr(t.charCodeAt(u+1))<<12|hr(t.charCodeAt(u+2))<<6|hr(t.charCodeAt(u+3)),o[d]=s>>16,o[d+1]=s>>8&255,o[d+2]=s&255;return o.subarray(0,o.length-i)}var Ku=/^P(([\\d.]*)Y)?(([\\d.]*)M)?(([\\d.]*)D)?T?(([\\d.]*)H)?(([\\d.]*)M)?(([\\d.]*)S)?/,ju=/([0-9]+)-([0-9]+)/;function ve(n,e){return n===\"true\"?[!0,null]:n===\"false\"?[!1,null]:[!1,new Me(`\\`${e}\\` property is not a boolean value but \"${n}\"`)]}function ee(n,e){let t=parseInt(n,10);return isNaN(t)?[null,new Me(`\\`${e}\\` property is not an integer value but \"${n}\"`)]:[t,null]}function ke(n,e){if(n===\"INF\")return[1/0,null];let t=parseFloat(n);return isNaN(t)?[null,new Me(`\\`${e}\\` property is invalid: \"${n}\"`)]:[t,null]}function Ri(n,e){if(n===\"true\")return[!0,null];if(n===\"false\")return[!1,null];let t=parseInt(n,10);return isNaN(t)?[null,new Me(`\\`${e}\\` property is not a boolean nor an integer but \"${n}\"`)]:[t,null]}function br(n,e){let t=Date.parse(n);return isNaN(t)?[null,new Me(`\\`${e}\\` is in an invalid date format: \"${n}\"`)]:[new Date(Date.parse(n)).getTime()/1e3,null]}function We(n,e){if(!Z(n))return[0,new Me(`\\`${e}\\` property is empty`)];let t=Ku.exec(n);return t===null?[null,new Me(`\\`${e}\\` property has an unrecognized format \"${n}\"`)]:[parseFloat(Z(t[2])?t[2]:\"0\")*365*24*60*60+parseFloat(Z(t[4])?t[4]:\"0\")*30*24*60*60+parseFloat(Z(t[6])?t[6]:\"0\")*24*60*60+parseFloat(Z(t[8])?t[8]:\"0\")*60*60+parseFloat(Z(t[10])?t[10]:\"0\")*60+parseFloat(Z(t[12])?t[12]:\"0\"),null]}function Rt(n,e){let t=ju.exec(n);return t===null?[null,new Me(`\\`${e}\\` property has an unrecognized format \"${n}\"`)]:[[+t[1],+t[2]],null]}function _o(n,e){try{return[Ir(n),null]}catch(t){return[null,new Me(`\\`${e}\\` is not a valid base64 string: \"${n}\"`)]}}function Bt(n,e){let t=/^(\\d+)\\/(\\d+)$/.exec(n);return t!==null?[+t[1]/+t[2],null]:ke(n,e)}function ye(n){let e,t;for(let r of Object.keys(n.attributes)){let i=n.attributes[r];if(!R(i))switch(r){case\"schemeIdUri\":e=i;break;case\"value\":t=i;break}}return{schemeIdUri:e,value:t}}function fe(n,e){return function(t,{asKey:r,parser:i,dashName:a}){let[o,s]=i(t,a);s!==null&&(c.warn(s.message),e.push(s)),o!==null&&(n[r]=o)}}var Me=class n extends Error{constructor(e){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"MPDError\",this.message=e}};function ct(n){return ur(n)}function et(n){let e=typeof n==\"string\"?n:ct(n.children),t=[];return e===null||e.length===0?[void 0,t]:[{value:e},t]}function Pi(n){let e={};for(let t of Object.keys(n.attributes)){let r=n.attributes[t];if(!R(r))switch(t){case\"id\":e.id=r;break;case\"lang\":e.language=r;break;case\"contentType\":e.contentType=r;break;case\"par\":e.par=r;break}}return e}function Yu(n){let e=[],t=[];for(let r=0;r<n.length;r++){let i=n[r];if(typeof i!=\"string\"&&i.tagName===\"cenc:pssh\"){let a=ct(i.children);if(a!==null&&a.length>0){let[o,s]=_o(a,\"cenc:pssh\");s!==null&&(c.warn(s.message),e.push(s)),o!==null&&t.push(o)}}}return[{cencPssh:t},e]}function Qu(n){let e={};for(let t of Object.keys(n.attributes)){let r=n.attributes[t];if(!R(r))switch(t){case\"schemeIdUri\":e.schemeIdUri=r;break;case\"value\":e.value=r;break;case\"cenc:default_KID\":e.keyId=ln(r.replace(/-/g,\"\"))}}return e}function fn(n){let[e,t]=Yu(n.children),r=Qu(n);return[{children:e,attributes:r},t]}function vi(n){let e={},t=[],r=fe(e,t);for(let i of Object.keys(n.attributes)){let a=n.attributes[i];if(!R(a))switch(i){case\"range\":r(a,{asKey:\"range\",parser:Rt,dashName:\"range\"});break;case\"sourceURL\":e.media=a;break}}return[e,t]}function tt(n){let e={},t=[],r=fe(e,t),i=n.children;for(let a=0;a<i.length;a++){let o=i[a];if(typeof o!=\"string\"&&o.tagName===\"Initialization\"){let[s,u]=vi(o);e.initialization=s,t=t.concat(u)}}for(let a of Object.keys(n.attributes)){let o=n.attributes[a];if(!R(o))switch(a){case\"timescale\":r(o,{asKey:\"timescale\",parser:ee,dashName:\"timescale\"});break;case\"presentationTimeOffset\":r(o,{asKey:\"presentationTimeOffset\",parser:ke,dashName:\"presentationTimeOffset\"});break;case\"indexRange\":r(o,{asKey:\"indexRange\",parser:Rt,dashName:\"indexRange\"});break;case\"indexRangeExact\":r(o,{asKey:\"indexRangeExact\",parser:ve,dashName:\"indexRangeExact\"});break;case\"availabilityTimeOffset\":r(o,{asKey:\"availabilityTimeOffset\",parser:ke,dashName:\"availabilityTimeOffset\"});break;case\"availabilityTimeComplete\":r(o,{asKey:\"availabilityTimeComplete\",parser:ve,dashName:\"availabilityTimeComplete\"});break;case\"duration\":r(o,{asKey:\"duration\",parser:ee,dashName:\"duration\"});break;case\"startNumber\":r(o,{asKey:\"startNumber\",parser:ee,dashName:\"startNumber\"});break;case\"endNumber\":r(o,{asKey:\"endNumber\",parser:ee,dashName:\"endNumber\"});break}}return[e,t]}function Ci(n){let e={},t=[],r=fe(e,t);for(let i of Object.keys(n.attributes)){let a=n.attributes[i];if(!R(a))switch(i){case\"media\":e.media=a;break;case\"indexRange\":r(a,{asKey:\"indexRange\",parser:Rt,dashName:\"indexRange\"});break;case\"index\":e.index=a;break;case\"mediaRange\":r(a,{asKey:\"mediaRange\",parser:Rt,dashName:\"mediaRange\"});break}}return[e,t]}function mn(n){let[e,t]=tt(n),r=t,i=[],a=n.children;for(let s=0;s<a.length;s++){let u=a[s];if(typeof u!=\"string\"&&u.tagName===\"SegmentURL\"){let[d,f]=Ci(u);i.push(d),r=r.concat(f)}}return[H(e,{list:i}),r]}function Ai(n){let e=n.children;return function(){for(let t=e.length-1;t>=0;t--){let r=e[t];(typeof r==\"string\"||r.tagName!==\"S\")&&e.splice(t,1)}return e}}function Pt(n){let[e,t]=tt(n),r=t,i;for(let s=0;s<n.children.length;s++){let u=n.children[s];typeof u!=\"string\"&&u.tagName===\"SegmentTimeline\"&&(i=Ai(u))}let a=H({},e,{duration:e.duration,timelineParser:i}),o=fe(a,r);for(let s of Object.keys(n.attributes)){let u=n.attributes[s];if(!R(u))switch(s){case\"initialization\":R(a.initialization)&&(a.initialization={media:u});break;case\"index\":a.index=u;break;case\"availabilityTimeOffset\":o(u,{asKey:\"availabilityTimeOffset\",parser:ke,dashName:\"availabilityTimeOffset\"});break;case\"availabilityTimeComplete\":o(u,{asKey:\"availabilityTimeComplete\",parser:ve,dashName:\"availabilityTimeComplete\"});break;case\"media\":a.media=u;break;case\"bitstreamSwitching\":o(u,{asKey:\"bitstreamSwitching\",parser:ve,dashName:\"bitstreamSwitching\"});break}}return[a,r]}function $u(n){let e={baseURLs:[]},t=[],r=[];for(let i=0;i<n.length;i++){let a=n[i];if(typeof a!=\"string\")switch(a.tagName){case\"BaseURL\":let[o,s]=et(a);o!==void 0&&e.baseURLs.push(o),r=r.concat(s);break;case\"InbandEventStream\":e.inbandEventStreams===void 0&&(e.inbandEventStreams=[]),e.inbandEventStreams.push(ye(a));break;case\"SegmentBase\":let[u,d]=tt(a);e.segmentBase=u,d.length>0&&(r=r.concat(d));break;case\"SegmentList\":let[f,m]=mn(a);r=r.concat(m),e.segmentList=f;break;case\"SegmentTemplate\":let[l,p]=Pt(a);r=r.concat(p),e.segmentTemplate=l;break;case\"ContentProtection\":let[g,h]=fn(a);h.length>0&&(r=r.concat(h)),g!==void 0&&t.push(g);break;case\"SupplementalProperty\":R(e.supplementalProperties)?e.supplementalProperties=[ye(a)]:e.supplementalProperties.push(ye(a));break}}return t.length>0&&(e.contentProtections=t),[e,r]}function Xu(n){let e={},t=[],r=fe(e,t);for(let i of Object.keys(n.attributes)){let a=n.attributes[i];if(!R(a))switch(i){case\"audioSamplingRate\":e.audioSamplingRate=a;break;case\"bandwidth\":r(a,{asKey:\"bitrate\",parser:ee,dashName:\"bandwidth\"});break;case\"codecs\":e.codecs=a;break;case\"codingDependency\":r(a,{asKey:\"codingDependency\",parser:ve,dashName:\"codingDependency\"});break;case\"frameRate\":r(a,{asKey:\"frameRate\",parser:Bt,dashName:\"frameRate\"});break;case\"height\":r(a,{asKey:\"height\",parser:ee,dashName:\"height\"});break;case\"id\":e.id=a;break;case\"maxPlayoutRate\":r(a,{asKey:\"maxPlayoutRate\",parser:ke,dashName:\"maxPlayoutRate\"});break;case\"maximumSAPPeriod\":r(a,{asKey:\"maximumSAPPeriod\",parser:ke,dashName:\"maximumSAPPeriod\"});break;case\"mimeType\":e.mimeType=a;break;case\"profiles\":e.profiles=a;break;case\"qualityRanking\":r(a,{asKey:\"qualityRanking\",parser:ee,dashName:\"qualityRanking\"});break;case\"scte214:supplementalCodecs\":e.supplementalCodecs=a;break;case\"segmentProfiles\":e.segmentProfiles=a;break;case\"width\":r(a,{asKey:\"width\",parser:ee,dashName:\"width\"});break;case\"availabilityTimeOffset\":r(a,{asKey:\"availabilityTimeOffset\",parser:ke,dashName:\"availabilityTimeOffset\"});break;case\"availabilityTimeComplete\":r(a,{asKey:\"availabilityTimeComplete\",parser:ve,dashName:\"availabilityTimeComplete\"});break}}return e.bitrate===void 0&&t.push(new Me(\"No bitrate found on a Representation\")),[e,t]}function Eo(n){let[e,t]=$u(n.children),[r,i]=Xu(n),a=t.concat(i);return[{children:e,attributes:r},a]}function Zu(n){let e={baseURLs:[],representations:[]},t=[],r=[];for(let i=0;i<n.length;i++){let a=n[i];if(typeof a!=\"string\")switch(a.tagName){case\"Accessibility\":e.accessibilities===void 0?e.accessibilities=[ye(a)]:e.accessibilities.push(ye(a));break;case\"BaseURL\":let[o,s]=et(a);o!==void 0&&e.baseURLs.push(o),s.length>0&&(r=r.concat(s));break;case\"ContentComponent\":e.contentComponent=Pi(a);break;case\"EssentialProperty\":R(e.essentialProperties)?e.essentialProperties=[ye(a)]:e.essentialProperties.push(ye(a));break;case\"InbandEventStream\":e.inbandEventStreams===void 0&&(e.inbandEventStreams=[]),e.inbandEventStreams.push(ye(a));break;case\"Label\":let u=ct(a.children);u!=null&&(e.label=u);break;case\"Representation\":let[d,f]=Eo(a);e.representations.push(d),f.length>0&&(r=r.concat(f));break;case\"Role\":R(e.roles)?e.roles=[ye(a)]:e.roles.push(ye(a));break;case\"SupplementalProperty\":R(e.supplementalProperties)?e.supplementalProperties=[ye(a)]:e.supplementalProperties.push(ye(a));break;case\"SegmentBase\":let[m,l]=tt(a);e.segmentBase=m,l.length>0&&(r=r.concat(l));break;case\"SegmentList\":let[p,g]=mn(a);e.segmentList=p,g.length>0&&(r=r.concat(g));break;case\"SegmentTemplate\":let[h,I]=Pt(a);e.segmentTemplate=h,I.length>0&&(r=r.concat(I));break;case\"ContentProtection\":let[y,E]=fn(a);E.length>0&&(r=r.concat(E)),y!==void 0&&t.push(y);break}}return t.length>0&&(e.contentProtections=t),[e,r]}function Ju(n){let e={},t=[],r=fe(e,t);for(let i of Object.keys(n.attributes)){let a=n.attributes[i];if(!R(a))switch(i){case\"id\":e.id=a;break;case\"group\":r(a,{asKey:\"group\",parser:ee,dashName:\"group\"});break;case\"lang\":e.language=a;break;case\"contentType\":e.contentType=a;break;case\"par\":e.par=a;break;case\"minBandwidth\":r(a,{asKey:\"minBitrate\",parser:ee,dashName:\"minBandwidth\"});break;case\"maxBandwidth\":r(a,{asKey:\"maxBitrate\",parser:ee,dashName:\"maxBandwidth\"});break;case\"minWidth\":r(a,{asKey:\"minWidth\",parser:ee,dashName:\"minWidth\"});break;case\"maxWidth\":r(a,{asKey:\"maxWidth\",parser:ee,dashName:\"maxWidth\"});break;case\"minHeight\":r(a,{asKey:\"minHeight\",parser:ee,dashName:\"minHeight\"});break;case\"maxHeight\":r(a,{asKey:\"maxHeight\",parser:ee,dashName:\"maxHeight\"});break;case\"minFrameRate\":r(a,{asKey:\"minFrameRate\",parser:Bt,dashName:\"minFrameRate\"});break;case\"maxFrameRate\":r(a,{asKey:\"maxFrameRate\",parser:Bt,dashName:\"maxFrameRate\"});break;case\"selectionPriority\":r(a,{asKey:\"selectionPriority\",parser:ee,dashName:\"selectionPriority\"});break;case\"segmentAlignment\":r(a,{asKey:\"segmentAlignment\",parser:Ri,dashName:\"segmentAlignment\"});break;case\"subsegmentAlignment\":r(a,{asKey:\"subsegmentAlignment\",parser:Ri,dashName:\"subsegmentAlignment\"});break;case\"bitstreamSwitching\":r(a,{asKey:\"bitstreamSwitching\",parser:ve,dashName:\"bitstreamSwitching\"});break;case\"audioSamplingRate\":e.audioSamplingRate=a;break;case\"codecs\":e.codecs=a;break;case\"scte214:supplementalCodecs\":e.supplementalCodecs=a;break;case\"codingDependency\":r(a,{asKey:\"codingDependency\",parser:ve,dashName:\"codingDependency\"});break;case\"frameRate\":r(a,{asKey:\"frameRate\",parser:Bt,dashName:\"frameRate\"});break;case\"height\":r(a,{asKey:\"height\",parser:ee,dashName:\"height\"});break;case\"maxPlayoutRate\":r(a,{asKey:\"maxPlayoutRate\",parser:ke,dashName:\"maxPlayoutRate\"});break;case\"maximumSAPPeriod\":r(a,{asKey:\"maximumSAPPeriod\",parser:ke,dashName:\"maximumSAPPeriod\"});break;case\"mimeType\":e.mimeType=a;break;case\"profiles\":e.profiles=a;break;case\"segmentProfiles\":e.segmentProfiles=a;break;case\"width\":r(a,{asKey:\"width\",parser:ee,dashName:\"width\"});break;case\"availabilityTimeOffset\":r(a,{asKey:\"availabilityTimeOffset\",parser:ke,dashName:\"availabilityTimeOffset\"});break;case\"availabilityTimeComplete\":r(a,{asKey:\"availabilityTimeComplete\",parser:ve,dashName:\"availabilityTimeComplete\"});break}}return[e,t]}function Ro(n){let e=n.children,[t,r]=Zu(e),[i,a]=Ju(n),o=r.concat(a);return[{children:t,attributes:i},o]}function ed(n){let e={},t=[],r=fe(e,t);for(let i of Object.keys(n.attributes)){let a=n.attributes[i];if(!R(a))switch(i){case\"schemeIdUri\":e.schemeIdUri=a;break;case\"value\":e.value=a;break;case\"timescale\":r(a,{asKey:\"timescale\",parser:ee,dashName:\"timescale\"});break;default:Ye(i,\"xmlns:\")&&(e.namespaces===void 0&&(e.namespaces=[]),e.namespaces.push({key:i.substring(6),value:a}));break}}return[e,t]}function Po(n,e){let[t,r]=ed(n),i=[];for(let a of n.children)if(typeof a!=\"string\"&&a.tagName===\"Event\"){let o={};if(R(a.attributes.id)||(o.id=a.attributes.id),!R(a.attributes.presentationTime)){let[s,u]=ee(a.attributes.presentationTime,\"presentationTime\");u!==null&&r.push(u),s!==null&&(o.presentationTime=s)}if(!R(a.attributes.duration)){let[s,u]=ee(a.attributes.duration,\"duration\");u!==null&&r.push(u),s!==null&&(o.duration=s)}if(a.posStart<a.posEnd){let s=e.substring(a.posStart,a.posEnd);o.eventStreamData=s}i.push(o)}return[{children:{events:i},attributes:t},r]}function td(n,e){let t=[],r=[],i,a=[],o=[];for(let s=0;s<n.length;s++){let u=n[s];if(typeof u!=\"string\")switch(u.tagName){case\"BaseURL\":let[d,f]=et(u);d!==void 0&&t.push(d),a=a.concat(f);break;case\"AdaptationSet\":let[m,l]=Ro(u);r.push(m),a=a.concat(l);break;case\"EventStream\":let[p,g]=Po(u,e);o.push(p),a=a.concat(g);break;case\"SegmentTemplate\":let[h,I]=Pt(u);i=h,I.length>0&&(a=a.concat(I));break}}return[{baseURLs:t,adaptations:r,eventStreams:o,segmentTemplate:i},a]}function nd(n){let e={},t=[],r=fe(e,t);for(let i of Object.keys(n.attributes)){let a=n.attributes[i];if(!R(a))switch(i){case\"id\":e.id=a;break;case\"start\":r(a,{asKey:\"start\",parser:We,dashName:\"start\"});break;case\"duration\":r(a,{asKey:\"duration\",parser:We,dashName:\"duration\"});break;case\"bitstreamSwitching\":r(a,{asKey:\"bitstreamSwitching\",parser:ve,dashName:\"bitstreamSwitching\"});break;case\"xlink:href\":e.xlinkHref=a;break;case\"xlink:actuate\":e.xlinkActuate=a;break;default:Ye(i,\"xmlns:\")&&(e.namespaces===void 0&&(e.namespaces=[]),e.namespaces.push({key:i.substring(6),value:a}));break}}return[e,t]}function Sr(n,e){let[t,r]=td(n.children,e),[i,a]=nd(n),o=r.concat(a);return[{children:t,attributes:i},o]}function rd(n,e){let t=[],r=[],i=[],a=[],o=[];for(let s=0;s<n.length;s++){let u=n[s];if(typeof u!=\"string\")switch(u.tagName){case\"BaseURL\":let[d,f]=et(u);d!==void 0&&t.push(d),o=o.concat(f);break;case\"Location\":r.push(ct(u.children));break;case\"Period\":let[m,l]=Sr(u,e);i.push(m),o=o.concat(l);break;case\"UTCTiming\":let p=ye(u);a.push(p);break}}return[{baseURLs:t,locations:r,periods:i,utcTimings:a},o]}function id(n){let e={},t=[],r=fe(e,t);for(let i of Object.keys(n.attributes)){let a=n.attributes[i];if(!R(a))switch(i){case\"id\":e.id=a;break;case\"profiles\":e.profiles=a;break;case\"type\":e.type=a;break;case\"availabilityStartTime\":r(a,{asKey:\"availabilityStartTime\",parser:br,dashName:\"availabilityStartTime\"});break;case\"availabilityEndTime\":r(a,{asKey:\"availabilityEndTime\",parser:br,dashName:\"availabilityEndTime\"});break;case\"publishTime\":r(a,{asKey:\"publishTime\",parser:br,dashName:\"publishTime\"});break;case\"mediaPresentationDuration\":r(a,{asKey:\"duration\",parser:We,dashName:\"mediaPresentationDuration\"});break;case\"minimumUpdatePeriod\":r(a,{asKey:\"minimumUpdatePeriod\",parser:We,dashName:\"minimumUpdatePeriod\"});break;case\"minBufferTime\":r(a,{asKey:\"minBufferTime\",parser:We,dashName:\"minBufferTime\"});break;case\"timeShiftBufferDepth\":r(a,{asKey:\"timeShiftBufferDepth\",parser:We,dashName:\"timeShiftBufferDepth\"});break;case\"suggestedPresentationDelay\":r(a,{asKey:\"suggestedPresentationDelay\",parser:We,dashName:\"suggestedPresentationDelay\"});break;case\"maxSegmentDuration\":r(a,{asKey:\"maxSegmentDuration\",parser:We,dashName:\"maxSegmentDuration\"});break;case\"maxSubsegmentDuration\":r(a,{asKey:\"maxSubsegmentDuration\",parser:We,dashName:\"maxSubsegmentDuration\"});break;default:Ye(i,\"xmlns:\")&&(e.namespaces===void 0&&(e.namespaces=[]),e.namespaces.push({key:i.substring(6),value:a}));break}}return[e,t]}function vo(n,e){let[t,r]=rd(n.children,e),[i,a]=id(n),o=r.concat(a);return[{children:t,attributes:i},o]}function ki(n,e){let t=ti(n),r=t[t.length-1];if(r===void 0||typeof r==\"string\"||r.tagName!==\"MPD\")throw new Error(\"DASH Parser: document root should be MPD\");let[i,a]=vo(r,n),o=gr(i,e,a);return s(o);function s(u){if(u.type===\"done\")return u;if(u.type===\"needs-clock\")return{type:\"needs-resources\",value:{urls:[u.value.url],format:\"string\",continue(d){if(d.length!==1)throw new Error(\"DASH parser: wrong number of loaded ressources.\");let f=u.value.continue(d[0].responseData);return s(f)}}};if(u.type===\"needs-xlinks\")return{type:\"needs-resources\",value:{urls:u.value.xlinksUrls,format:\"string\",continue(d){let f=[];for(let l=0;l<d.length;l++){let{responseData:p,receivedTime:g,sendingTime:h,url:I}=d[l];if(!p.success)throw p.error;let y=\"<root>\"+p.data+\"</root>\",E=ti(y),v=E[E.length-1];if(v===void 0||typeof v==\"string\")throw new Error(\"DASH parser: Invalid external ressources\");let T=v.children,C=[],P=[];for(let M=0;M<T.length;M++){let _=T[M];if(typeof _==\"string\"||_.tagName!==\"Period\")continue;let[A,x]=Sr(_,y);P.push(...x),C.push(A)}f.push({url:I,receivedTime:g,sendingTime:h,parsed:C,warnings:P})}let m=u.value.continue(f);return s(m)}}};ze(u)}}var Co=ki;var ad=typeof WebAssembly==\"object\"&&typeof WebAssembly.instantiate==\"function\",Ao=ad;function F(n,e,t,r){let i=new Uint8Array(e,t,r);return n.decode(i)}function xi(n){return n===1/0?!0:n===-1/0?!1:n}function pt(n,e){let t=new TextDecoder;return function(i,a,o){i===64&&(n.value=F(t,e.buffer,a,o))}}function ko(n,e){let t=new TextDecoder;return function(i,a,o){switch(i){case 0:n.id=F(t,e.buffer,a,o);break;case 60:n.language=F(t,e.buffer,a,o);break;case 61:n.contentType=F(t,e.buffer,a,o);break;case 62:n.par=F(t,e.buffer,a,o);break}}}function yr(n,e){let t=n.attributes,r=n.children,i=new TextDecoder;return function(o,s,u){switch(o){case 16:t.schemeIdUri=F(i,e.buffer,s,u);break;case 13:t.value=F(i,e.buffer,s,u);break;case 14:let d=F(i,e.buffer,s,u);t.keyId=ln(d.replace(/-/g,\"\"));break;case 15:try{let f=F(i,e.buffer,s,u);r.cencPssh.push(Ir(f))}catch(f){}break}}}function Ve(n,e){let t=new TextDecoder;return function(i,a,o){switch(i){case 16:n.schemeIdUri=F(t,e.buffer,a,o);break;case 17:n.value=F(t,e.buffer,a,o);break}}}function Ut(n,e){let t=new TextDecoder;return function(i,a,o){switch(i){case 29:{let s=new DataView(e.buffer);n.initialization===void 0&&(n.initialization={}),n.initialization.range=[s.getFloat64(a,!0),s.getFloat64(a+8,!0)];break}case 67:n.initialization===void 0&&(n.initialization={}),n.initialization.media=F(t,e.buffer,a,o);break;case 43:{let s=new DataView(e.buffer);n.availabilityTimeOffset=s.getFloat64(a,!0);break}case 22:{n.availabilityTimeComplete=new DataView(e.buffer).getUint8(0)===0;break}case 24:{let s=new DataView(e.buffer);n.presentationTimeOffset=s.getFloat64(a,!0);break}case 27:{let s=new DataView(e.buffer);n.timescale=s.getFloat64(a,!0);break}case 31:{let s=new DataView(e.buffer);n.indexRange=[s.getFloat64(a,!0),s.getFloat64(a+8,!0)];break}case 23:{n.indexRangeExact=new DataView(e.buffer).getUint8(0)===0;break}case 1:{let s=new DataView(e.buffer);n.duration=s.getFloat64(a,!0);break}case 20:{let s=new DataView(e.buffer);n.startNumber=s.getFloat64(a,!0);break}case 76:{let s=new DataView(e.buffer);n.endNumber=s.getFloat64(a,!0);break}}}}function xo(n,e){let t=new TextDecoder;return function(i,a,o){switch(i){case 28:n.index=F(t,e.buffer,a,o);break;case 31:{let s=new DataView(e.buffer);n.indexRange=[s.getFloat64(a,!0),s.getFloat64(a+8,!0)];break}case 30:n.media=F(t,e.buffer,a,o);break;case 18:{let s=new DataView(e.buffer);n.mediaRange=[s.getFloat64(a,!0),s.getFloat64(a+8,!0)];break}}}}function Tr(n,e,t){return function(i){switch(i){case 20:{let a={};n.list===void 0&&(n.list=[]),n.list.push(a);let o=xo(a,e);t.pushParsers(i,N,o);break}default:t.pushParsers(i,N,N);break}}}function Lt(n,e){let t=new TextDecoder;return function(i,a,o){switch(i){case 19:{let s=new DataView(e.buffer);n.timeline=[];let u=a;for(let d=0;d<o/24;d++)n.timeline.push({start:s.getFloat64(u,!0),duration:s.getFloat64(u+8,!0),repeatCount:s.getFloat64(u+16,!0)}),u+=24;break}case 67:n.initialization={media:F(t,e.buffer,a,o)};break;case 28:n.index=F(t,e.buffer,a,o);break;case 43:{let s=new DataView(e.buffer);n.availabilityTimeOffset=s.getFloat64(a,!0);break}case 22:{n.availabilityTimeComplete=new DataView(e.buffer).getUint8(0)===0;break}case 24:{let s=new DataView(e.buffer);n.presentationTimeOffset=s.getFloat64(a,!0);break}case 27:{let s=new DataView(e.buffer);n.timescale=s.getFloat64(a,!0);break}case 31:{let s=new DataView(e.buffer);n.indexRange=[s.getFloat64(a,!0),s.getFloat64(a+8,!0)];break}case 23:{n.indexRangeExact=new DataView(e.buffer).getUint8(0)===0;break}case 30:n.media=F(t,e.buffer,a,o);break;case 32:{n.bitstreamSwitching=new DataView(e.buffer).getUint8(0)===0;break}case 1:{let s=new DataView(e.buffer);n.duration=s.getFloat64(a,!0);break}case 20:{let s=new DataView(e.buffer);n.startNumber=s.getFloat64(a,!0);break}case 76:{let s=new DataView(e.buffer);n.endNumber=s.getFloat64(a,!0);break}}}}function Mo(n,e,t){return function(i){switch(i){case 15:{let a={value:\"\",attributes:{}};n.baseURLs.push(a),t.pushParsers(i,N,pt(a,e));break}case 10:{let a={children:{cencPssh:[]},attributes:{}};n.contentProtections===void 0&&(n.contentProtections=[]),n.contentProtections.push(a);let o=yr(a,e);t.pushParsers(i,N,o);break}case 19:{let a={};n.inbandEventStreams===void 0&&(n.inbandEventStreams=[]),n.inbandEventStreams.push(a),t.pushParsers(i,N,Ve(a,e));break}case 13:{let a={};n.supplementalProperties===void 0&&(n.supplementalProperties=[]),n.supplementalProperties.push(a);let o=Ve(a,e);t.pushParsers(i,N,o);break}case 17:{let a={};n.segmentBase=a;let o=Ut(a,e);t.pushParsers(i,N,o);break}case 18:{let a={list:[]};n.segmentList=a;let o=Tr(a,e,t),s=Ut(a,e);t.pushParsers(i,o,s);break}case 16:{let a={};n.segmentTemplate=a,t.pushParsers(i,N,Lt(a,e));break}default:t.pushParsers(i,N,N);break}}}function Oo(n,e){let t=new TextDecoder;return function(i,a,o){let s=new DataView(e.buffer);switch(i){case 0:n.id=F(t,e.buffer,a,o);break;case 3:n.audioSamplingRate=F(t,e.buffer,a,o);break;case 63:n.bitrate=s.getFloat64(a,!0);break;case 4:n.codecs=F(t,e.buffer,a,o);break;case 77:n.supplementalCodecs=F(t,e.buffer,a,o);break;case 5:n.codingDependency=new DataView(e.buffer).getUint8(0)===0;break;case 6:n.frameRate=s.getFloat64(a,!0);break;case 7:n.height=s.getFloat64(a,!0);break;case 8:n.width=s.getFloat64(a,!0);break;case 9:n.maxPlayoutRate=s.getFloat64(a,!0);break;case 10:n.maximumSAPPeriod=s.getFloat64(a,!0);break;case 11:n.mimeType=F(t,e.buffer,a,o);break;case 2:n.profiles=F(t,e.buffer,a,o);break;case 65:n.qualityRanking=s.getFloat64(a,!0);break;case 12:n.segmentProfiles=F(t,e.buffer,a,o);break;case 43:n.availabilityTimeOffset=s.getFloat64(a,!0);break;case 22:n.availabilityTimeComplete=s.getUint8(0)===0;break}}}function wo(n,e,t){return function(i){switch(i){case 8:{let a={};n.accessibilities===void 0&&(n.accessibilities=[]),n.accessibilities.push(a);let o=Ve(a,e);t.pushParsers(i,N,o);break}case 15:{let a={value:\"\",attributes:{}};n.baseURLs.push(a);let o=pt(a,e);t.pushParsers(i,N,o);break}case 9:{let a={};n.contentComponent=a,t.pushParsers(i,N,ko(a,e));break}case 10:{let a={children:{cencPssh:[]},attributes:{}};n.contentProtections===void 0&&(n.contentProtections=[]),n.contentProtections.push(a);let o=yr(a,e);t.pushParsers(i,N,o);break}case 11:{let a={};n.essentialProperties===void 0&&(n.essentialProperties=[]),n.essentialProperties.push(a);let o=N,s=Ve(a,e);t.pushParsers(i,o,s);break}case 19:{let a={};n.inbandEventStreams===void 0&&(n.inbandEventStreams=[]),n.inbandEventStreams.push(a);let o=N,s=Ve(a,e);t.pushParsers(i,o,s);break}case 7:{let a={children:{baseURLs:[]},attributes:{}};n.representations.push(a);let o=Mo(a.children,e,t),s=Oo(a.attributes,e);t.pushParsers(i,o,s);break}case 12:{let a={};n.roles===void 0&&(n.roles=[]),n.roles.push(a);let o=Ve(a,e);t.pushParsers(i,N,o);break}case 13:{let a={};n.supplementalProperties===void 0&&(n.supplementalProperties=[]),n.supplementalProperties.push(a);let o=Ve(a,e);t.pushParsers(i,N,o);break}case 17:{let a={};n.segmentBase=a;let o=Ut(a,e);t.pushParsers(i,N,o);break}case 18:{let a={list:[]};n.segmentList=a;let o=Tr(a,e,t),s=Ut(a,e);t.pushParsers(i,o,s);break}case 16:{let a={};n.segmentTemplate=a,t.pushParsers(i,N,Lt(a,e));break}default:t.pushParsers(i,N,N);break}}}function Do(n,e){let t=new TextDecoder;return function(i,a,o){let s=new DataView(e.buffer);switch(i){case 0:n.id=F(t,e.buffer,a,o);break;case 48:n.group=s.getFloat64(a,!0);break;case 60:n.language=F(t,e.buffer,a,o);break;case 61:n.contentType=F(t,e.buffer,a,o);break;case 62:n.par=F(t,e.buffer,a,o);break;case 53:n.minBitrate=s.getFloat64(a,!0);break;case 49:n.maxBitrate=s.getFloat64(a,!0);break;case 56:n.minWidth=s.getFloat64(a,!0);break;case 52:n.maxWidth=s.getFloat64(a,!0);break;case 55:n.minHeight=s.getFloat64(a,!0);break;case 51:n.maxHeight=s.getFloat64(a,!0);break;case 54:n.minFrameRate=s.getFloat64(a,!0);break;case 50:n.maxFrameRate=s.getFloat64(a,!0);break;case 57:n.selectionPriority=s.getFloat64(a,!0);break;case 58:n.segmentAlignment=xi(s.getFloat64(a,!0));break;case 59:n.subsegmentAlignment=xi(s.getFloat64(a,!0));break;case 32:n.bitstreamSwitching=s.getFloat64(a,!0)!==0;break;case 3:n.audioSamplingRate=F(t,e.buffer,a,o);break;case 4:n.codecs=F(t,e.buffer,a,o);break;case 77:n.supplementalCodecs=F(t,e.buffer,a,o);break;case 2:n.profiles=F(t,e.buffer,a,o);break;case 12:n.segmentProfiles=F(t,e.buffer,a,o);break;case 11:n.mimeType=F(t,e.buffer,a,o);break;case 5:n.codingDependency=s.getFloat64(a,!0)!==0;break;case 6:n.frameRate=s.getFloat64(a,!0);break;case 7:n.height=s.getFloat64(a,!0);break;case 8:n.width=s.getFloat64(a,!0);break;case 9:n.maxPlayoutRate=s.getFloat64(a,!0);break;case 10:n.maximumSAPPeriod=s.getFloat64(a,!0);break;case 43:n.availabilityTimeOffset=s.getFloat64(a,!0);break;case 22:n.availabilityTimeComplete=s.getUint8(0)===0;break;case 71:let u=F(t,e.buffer,a,o);n.label=u;break}}}function No(n,e,t,r){return function(a){switch(a){case 6:{let o={};n.events.push(o);let s=od(o,e,r);t.pushParsers(a,N,s);break}default:t.pushParsers(a,N,N);break}}}function Bo(n,e){let t=new TextDecoder;return function(i,a,o){let s=new DataView(e.buffer);switch(i){case 16:n.schemeIdUri=F(t,e.buffer,a,o);break;case 17:n.value=F(t,e.buffer,a,o);break;case 27:n.timescale=s.getFloat64(a,!0);break;case 70:let u={key:\"\",value:\"\"},d=a,f=s.getUint32(d);d+=4,u.key=F(t,e.buffer,d,f),d+=f;let m=s.getUint32(d);d+=4,u.value=F(t,e.buffer,d,m),n.namespaces===void 0?n.namespaces=[u]:n.namespaces.push(u);break}}}function od(n,e,t){let r=new TextDecoder;return function(a,o,s){let u=new DataView(e.buffer);switch(a){case 25:n.presentationTime=u.getFloat64(o,!0);break;case 1:n.duration=u.getFloat64(o,!0);break;case 0:n.id=F(r,e.buffer,o,s);break;case 69:let d=u.getFloat64(o,!0),f=u.getFloat64(o+8,!0);n.eventStreamData=t.slice(d,f);break}}}function _r(n,e,t,r){return function(a){switch(a){case 4:{let o={children:{baseURLs:[],representations:[]},attributes:{}};n.adaptations.push(o);let s=wo(o.children,e,t),u=Do(o.attributes,e);t.pushParsers(a,s,u);break}case 15:{let o={value:\"\",attributes:{}};n.baseURLs.push(o);let s=N,u=pt(o,e);t.pushParsers(a,s,u);break}case 5:{let o={children:{events:[]},attributes:{}};n.eventStreams.push(o);let s=No(o.children,e,t,r),u=Bo(o.attributes,e);t.pushParsers(a,s,u);break}case 16:{let o={};n.segmentTemplate=o,t.pushParsers(a,N,Lt(o,e));break}default:t.pushParsers(a,N,N);break}}}function Er(n,e){let t=new TextDecoder;return function(i,a,o){switch(i){case 0:n.id=F(t,e.buffer,a,o);break;case 45:n.start=new DataView(e.buffer).getFloat64(a,!0);break;case 1:n.duration=new DataView(e.buffer).getFloat64(a,!0);break;case 32:n.bitstreamSwitching=new DataView(e.buffer).getUint8(0)===0;break;case 46:n.xlinkHref=F(t,e.buffer,a,o);break;case 47:n.xlinkActuate=F(t,e.buffer,a,o);break;case 43:n.availabilityTimeOffset=new DataView(e.buffer).getFloat64(a,!0);break;case 22:n.availabilityTimeComplete=new DataView(e.buffer).getUint8(0)===0;break;case 70:let s={key:\"\",value:\"\"},u=new DataView(e.buffer),d=a,f=u.getUint32(d);d+=4,s.key=F(t,e.buffer,d,f),d+=f;let m=u.getUint32(d);d+=4,s.value=F(t,e.buffer,d,m),n.namespaces===void 0?n.namespaces=[s]:n.namespaces.push(s);break}}}function Uo(n,e,t,r){return function(a){switch(a){case 15:{let o={value:\"\",attributes:{}};n.baseURLs.push(o);let s=N,u=pt(o,e);t.pushParsers(a,s,u);break}case 2:{let o={children:{adaptations:[],baseURLs:[],eventStreams:[]},attributes:{}};n.periods.push(o);let s=_r(o.children,e,t,r),u=Er(o.attributes,e);t.pushParsers(a,s,u);break}case 3:{let o={};n.utcTimings.push(o);let s=N,u=Ve(o,e);t.pushParsers(a,s,u);break}default:t.pushParsers(a,N,N);break}}}function Lo(n,e,t){let r,i=new TextDecoder;return function(o,s,u){switch(o){case 0:e.id=F(i,t.buffer,s,u);break;case 2:e.profiles=F(i,t.buffer,s,u);break;case 33:e.type=F(i,t.buffer,s,u);break;case 34:let d=F(i,t.buffer,s,u);e.availabilityStartTime=new Date(d).getTime()/1e3;break;case 35:let f=F(i,t.buffer,s,u);e.availabilityEndTime=new Date(f).getTime()/1e3;break;case 36:let m=F(i,t.buffer,s,u);e.publishTime=new Date(m).getTime()/1e3;break;case 68:r=new DataView(t.buffer),e.duration=r.getFloat64(s,!0);break;case 37:r=new DataView(t.buffer),e.minimumUpdatePeriod=r.getFloat64(s,!0);break;case 38:r=new DataView(t.buffer),e.minBufferTime=r.getFloat64(s,!0);break;case 39:r=new DataView(t.buffer),e.timeShiftBufferDepth=r.getFloat64(s,!0);break;case 40:r=new DataView(t.buffer),e.suggestedPresentationDelay=r.getFloat64(s,!0);break;case 41:r=new DataView(t.buffer),e.maxSegmentDuration=r.getFloat64(s,!0);break;case 42:r=new DataView(t.buffer),e.maxSubsegmentDuration=r.getFloat64(s,!0);break;case 66:let l=F(i,t.buffer,s,u);n.locations.push(l);break;case 70:let p={key:\"\",value:\"\"};r=new DataView(t.buffer);let g=s,h=r.getUint32(g);g+=4,p.key=F(i,t.buffer,g,h),g+=h;let I=r.getUint32(g);g+=4,p.value=F(i,t.buffer,g,I),e.namespaces===void 0?e.namespaces=[p]:e.namespaces.push(p);break}}}function Mi(n,e,t,r){return function(a){switch(a){case 1:n.mpd={children:{baseURLs:[],locations:[],periods:[],utcTimings:[]},attributes:{}};let o=Uo(n.mpd.children,e,t,r),s=Lo(n.mpd.children,n.mpd.attributes,e);t.pushParsers(a,o,s);break;default:t.pushParsers(a,N,N);break}}}function Fo(n,e,t,r){return function(a){switch(a){case 2:{let o={children:{adaptations:[],baseURLs:[],eventStreams:[]},attributes:{}};n.periods.push(o);let s=_r(o.children,e,t,r),u=Er(o.attributes,e);t.pushParsers(a,s,u);break}default:t.pushParsers(a,N,N);break}}}var cn=class{constructor(){this._currentNodeId=null,this.childrenParser=N,this.attributeParser=N,this._stack=[{nodeId:null,children:N,attribute:N}]}pushParsers(e,t,r){this._currentNodeId=e,this.childrenParser=t,this.attributeParser=r,this._stack.push({nodeId:e,attribute:r,children:t})}popIfCurrent(e){if(this._currentNodeId!==e)return;this._stack.pop();let{nodeId:t,children:r,attribute:i}=this._stack[this._stack.length-1];this._currentNodeId=t,this.attributeParser=i,this.childrenParser=r}reset(){this.childrenParser=N,this.attributeParser=N,this._stack=[{nodeId:null,children:N,attribute:N}]}};var sd=15e3,pn=class{constructor(){this._parsersStack=new cn,this._instance=null,this._mpdData=null,this._linearMemory=null,this.status=\"uninitialized\",this._initProm=null,this._warnings=[],this._isParsing=!1}waitForInitialization(){var e;return(e=this._initProm)!=null?e:Promise.reject(\"No initialization performed yet.\")}async initialize(e){if(this.status!==\"uninitialized\")return Promise.reject(new Error(\"DashWasmParser already initialized.\"));if(!this.isCompatible())return this.status=\"failure\",Promise.reject(new Error(\"Target not compatible with WebAssembly.\"));this.status=\"initializing\";let t=this._parsersStack,r=new TextDecoder,i=this,a={env:{memoryBase:0,tableBase:0,memory:new WebAssembly.Memory({initial:10}),table:new WebAssembly.Table({initial:1,element:\"anyfunc\"}),onTagOpen:d,onCustomEvent:l,onAttribute:m,readNext:p,onTagClose:f}},o=null,s;typeof e.wasmUrl==\"string\"?s=fetch(e.wasmUrl):(o=URL.createObjectURL(new Blob([e.wasmUrl],{type:\"application/wasm\"})),s=fetch(o));let u=typeof WebAssembly.instantiateStreaming==\"function\"?WebAssembly.instantiateStreaming(s,a):Promise.reject(\"`WebAssembly.instantiateStreaming` API not available\");return this._initProm=u.catch(async g=>{o!==null&&(URL.revokeObjectURL(o),o=null),c.warn(\"Unable to call `instantiateStreaming` on WASM\",g instanceof Error?g:\"\");let h=await s;if(h.status<200||h.status>=300)throw new Error(\"WebAssembly request failed. status: \"+String(h.status));let I=await h.arrayBuffer();return WebAssembly.instantiate(I,a)}).then(g=>{o!==null&&(URL.revokeObjectURL(o),o=null),this._instance=g,this._linearMemory=this._instance.instance.exports.memory,this.status=\"initialized\"}).catch(g=>{let h=g instanceof Error?g.toString():\"Unknown error\";throw c.warn(\"DW: Could not create DASH-WASM parser:\",h),this.status=\"failure\",g}),this._initProm;function d(g){return t.childrenParser(g)}function f(g){return t.popIfCurrent(g)}function m(g,h,I){return t.attributeParser(g,h,I)}function l(g,h,I){let y=i._linearMemory,E=new Uint8Array(y.buffer,h,I);if(g===1){let v=r.decode(E);c.warn(\"WASM Error Event:\",v),i._warnings.push(new Error(v))}else if(g===0){let v=r.decode(E);c.warn(\"WASM Log Event:\",v)}}function p(g,h){if(i._mpdData===null)throw new Error(\"DashWasmParser Error: No MPD to read.\");let I=i._linearMemory,{mpd:y,cursor:E}=i._mpdData,v=Math.min(h,sd,y.byteLength-E);return new Uint8Array(I.buffer,g,v).set(new Uint8Array(y,E,v)),i._mpdData.cursor+=v,v}}runWasmParser(e,t){let[r,i]=this._parseMpd(e);if(r===null)throw new Error(\"DASH Parser: Unknown error while parsing the MPD\");let a=gr(r,t,i);return this._processParserReturnValue(a)}isCompatible(){return Ao&&typeof Ee.TextDecoder==\"function\"}_parseMpd(e){var s;if(this._instance===null)throw new Error(\"DashWasmParser not initialized\");if(this._isParsing)throw new Error(\"Parsing operation already pending.\");this._isParsing=!0,this._mpdData={mpd:e,cursor:0};let t={},r=this._linearMemory,i=Mi(t,r,this._parsersStack,e);this._parsersStack.pushParsers(null,i,N),this._warnings=[];try{this._instance.instance.exports.parse()}catch(u){throw this._parsersStack.reset(),this._warnings=[],this._isParsing=!1,u}let a=(s=t.mpd)!=null?s:null,o=this._warnings;return this._parsersStack.reset(),this._warnings=[],this._isParsing=!1,[a,o]}_parseXlink(e){if(this._instance===null)throw new Error(\"DashWasmParser not initialized\");if(this._isParsing)throw new Error(\"Parsing operation already pending.\");this._isParsing=!0,this._mpdData={mpd:e,cursor:0};let t={periods:[]},r=this._linearMemory,i=Fo(t,r,this._parsersStack,e);this._parsersStack.pushParsers(null,i,N),this._warnings=[];try{this._instance.instance.exports.parse()}catch(s){throw this._parsersStack.reset(),this._warnings=[],this._isParsing=!1,s}let{periods:a}=t,o=this._warnings;return this._parsersStack.reset(),this._warnings=[],this._isParsing=!1,[a,o]}_processParserReturnValue(e){if(e.type===\"done\")return e;if(e.type===\"needs-clock\"){let t=r=>{if(r.length!==1)throw new Error(\"DASH parser: wrong number of loaded ressources.\");let i=e.value.continue(r[0].responseData);return this._processParserReturnValue(i)};return{type:\"needs-resources\",value:{urls:[e.value.url],format:\"string\",continue:t}}}else if(e.type===\"needs-xlinks\"){let t=r=>{let i=[];for(let o=0;o<r.length;o++){let{responseData:s,receivedTime:u,sendingTime:d,url:f}=r[o];if(!s.success)throw s.error;let[m,l]=this._parseXlink(s.data);i.push({url:f,receivedTime:u,sendingTime:d,parsed:m,warnings:l})}let a=e.value.continue(i);return this._processParserReturnValue(a)};return{type:\"needs-resources\",value:{urls:e.value.xlinksUrls,format:\"arraybuffer\",continue:t}}}else ze(e)}};var zo=pn;var vt=class{constructor(e,t){this._last=e,this._wanted=t}serialize(){return[this._last,this._wanted]}getPolled(){return this._last}getWanted(){var e;return(e=this._wanted)!=null?e:this._last}forceWantedPosition(e){this._wanted=e}isAwaitingFuturePosition(){return this._wanted!==null}};function Rr(n,e,t){let r=e(n.getReference(),t);return{getCurrentTime(){return n.getCurrentTime()},getReadyState(){return n.getReadyState()},getPlaybackRate(){return n.getPlaybackRate()},getIsPaused(){return n.getIsPaused()},getReference(){return r},listen(i,a){var o;t.isCancelled()||((o=a==null?void 0:a.clearSignal)==null?void 0:o.isCancelled())===!0||r.onUpdate(i,{clearSignal:a==null?void 0:a.clearSignal,emitCurrentValue:a==null?void 0:a.includeLastObservation})},deriveReadOnlyObserver(i){return Rr(this,i,t)}}}var gn=class{constructor(e,t,r,i){this._src=e,this._contentId=t,this._messageSender=r,this._cancelSignal=i}getCurrentTime(){}getReadyState(){}getIsPaused(){}getReference(){return this._src}setPlaybackRate(e){this._messageSender({type:\"update-playback-rate\",contentId:this._contentId,value:e})}getPlaybackRate(){}listen(e,t){var r;this._cancelSignal.isCancelled()||((r=t==null?void 0:t.clearSignal)==null?void 0:r.isCancelled())===!0||this._src.onUpdate(e,{clearSignal:t==null?void 0:t.clearSignal,emitCurrentValue:t==null?void 0:t.includeLastObservation})}deriveReadOnlyObserver(e){return Rr(this,e,this._cancelSignal)}};function Oi(n,e){return(t,r,i)=>new Promise((a,o)=>{let s=Date.now()-L(),u=!1,l={reject:h=>{var v,T;if(u||i.isCancelled())return;u=!0,i.deregister(g);let I=h,y=(v=I==null?void 0:I.message)!=null?v:\"Unknown error when fetching the Manifest through a custom manifestLoader.\",E=new Ge(y,(T=I==null?void 0:I.canRetry)!=null?T:!1,I==null?void 0:I.xhr);o(E)},resolve:h=>{if(u||i.isCancelled())return;u=!0,i.deregister(g);let I=h.receivingTime!==void 0?h.receivingTime-s:void 0,y=h.sendingTime!==void 0?h.sendingTime-s:void 0;a({responseData:h.data,size:h.size,requestDuration:h.duration,url:h.url,receivedTime:I,sendingTime:y})},fallback:()=>{u||i.isCancelled()||(u=!0,i.deregister(g),e(t,r,i).then(a,o))}},p=n({url:t,timeout:r.timeout},l);i.register(g);function g(h){u||(u=!0,typeof p==\"function\"&&p(),o(h))}})}function ud(n){return function(t,r,i){if(t===void 0)throw new Error(\"Cannot perform HTTP(s) request. URL not known\");switch(n){case\"arraybuffer\":return le({url:t,responseType:\"arraybuffer\",timeout:r.timeout,connectionTimeout:r.connectionTimeout,cancelSignal:i});case\"text\":return le({url:t,responseType:\"text\",timeout:r.timeout,connectionTimeout:r.connectionTimeout,cancelSignal:i});case\"document\":return le({url:t,responseType:\"document\",timeout:r.timeout,connectionTimeout:r.connectionTimeout,cancelSignal:i});default:ze(n)}}}function wi({customManifestLoader:n},e){let t=ud(e);return typeof n!=\"function\"?t:Oi(n,t)}function Di(n){let{referenceDateTime:e}=n,t=n.serverSyncInfos!==void 0?n.serverSyncInfos.serverTimestamp-n.serverSyncInfos.clientTime:void 0;return function(i,a,o,s,u){var E;let{responseData:d}=i,f=a.externalClockOffset,m=(E=i.url)!=null?E:a.originalUrl,l=t!=null?t:f,g={unsafelyBaseOnPreviousManifest:a.unsafeMode?a.previousManifest:null,url:m,referenceDateTime:e,externalClockOffset:l},h=ae.dashParsers;if(h.wasm===null||h.wasm.status===\"uninitialized\"||h.wasm.status===\"failure\")return c.debug(\"DASH: WASM MPD Parser not initialized. Running JS one.\"),I();{let v=cd(d);if(!pd(v))return c.info(\"DASH: MPD doesn't seem to be UTF-8-encoded. Running JS parser instead of the WASM one.\"),I();if(h.wasm.status===\"initialized\"){c.debug(\"DASH: Running WASM MPD Parser.\");let T=h.wasm.runWasmParser(v,g);return y(T)}else return c.debug(\"DASH: Awaiting WASM initialization before parsing the MPD.\"),h.wasm.waitForInitialization().catch(()=>{}).then(()=>{if(h.wasm===null||h.wasm.status!==\"initialized\")return c.warn(\"DASH: WASM MPD parser initialization failed. Running JS parser instead\"),I();c.debug(\"DASH: Running WASM MPD Parser.\");let C=h.wasm.runWasmParser(v,g);return y(C)})}function I(){if(h.fastJs!==null){let v=fd(d),T=h.fastJs(v,g);return y(T)}else if(h.native!==null){let v=md(d),T=h.native(v,g);return y(T)}else throw new Error(\"No MPD parser is imported\")}function y(v){if(v.type===\"done\"){if(v.value.warnings.length>0&&o(v.value.warnings),s.isCancelled())return Promise.reject(s.cancellationError);let P=[];return{manifest:new wt(v.value.parsed,n,P),url:m,warnings:P}}let{value:T}=v,C=T.urls.map(P=>u(()=>{let M=U.getCurrent().DEFAULT_REQUEST_TIMEOUT,_=U.getCurrent().DEFAULT_CONNECTION_TIMEOUT;return T.format===\"string\"?le({url:P,responseType:\"text\",timeout:M,connectionTimeout:_,cancelSignal:s}):le({url:P,responseType:\"arraybuffer\",timeout:M,connectionTimeout:_,cancelSignal:s})}).then(M=>{if(T.format===\"string\"){if(typeof M.responseData!=\"string\")throw new Error(\"External DASH resources should have been a string\");return H(M,{responseData:{success:!0,data:M.responseData}})}else{if(!(M.responseData instanceof ArrayBuffer))throw new Error(\"External DASH resources should have been ArrayBuffers\");return H(M,{responseData:{success:!0,data:M.responseData}})}},M=>{let _=ge(M,{defaultCode:\"PIPELINE_PARSE_ERROR\",defaultReason:\"An unknown error occured when parsing ressources.\"});return H({},{size:void 0,requestDuration:void 0,responseData:{success:!1,error:_}})}));return Promise.all(C).then(P=>T.format===\"string\"?(dd(P),y(T.continue(P))):(ld(P),y(T.continue(P))))}}}function dd(n){b.CURRENT_ENV!==b.PRODUCTION&&n.forEach(e=>{let{responseData:t}=e;if(!(t.success&&typeof t.data==\"string\")&&t.success)throw new Error(\"Invalid data given to the LoadedRessource\")})}function ld(n){b.CURRENT_ENV!==b.PRODUCTION&&n.forEach(e=>{let{responseData:t}=e;if(!(t.success&&t.data instanceof ArrayBuffer)&&t.success)throw new Error(\"Invalid data given to the LoadedRessource\")})}function fd(n){if(n instanceof ArrayBuffer)return Be(new Uint8Array(n));if(typeof n==\"string\")return n;if(n instanceof Document)return n.documentElement.outerHTML;throw new Error(\"DASH Manifest Parser: Unrecognized Manifest format\")}function md(n){if(n instanceof ArrayBuffer)return new DOMParser().parseFromString(Be(new Uint8Array(n)),\"text/xml\");if(typeof n==\"string\")return new DOMParser().parseFromString(n,\"text/xml\");if(n instanceof Document)return n;throw new Error(\"DASH Manifest Parser: Unrecognized Manifest format\")}function cd(n){if(n instanceof ArrayBuffer)return n;if(typeof n==\"string\")return dn(n).buffer;if(n instanceof Document)return dn(n.documentElement.innerHTML).buffer;throw new Error(\"DASH Manifest Parser: Unrecognized Manifest format\")}function pd(n){let e=new DataView(n);return e.getUint16(0)===61371&&e.getUint8(2)===191?!0:!(e.getUint16(0)===65279||e.getUint16(0)===65534)}function Oe([n,e]){return e===1/0?`bytes=${n}-`:`bytes=${n}-${e}`}function qe(n,e){if(n===\"audio\"||n===\"video\")return e===\"video/mp4\"||e===\"audio/mp4\"?\"mp4\":e===\"video/webm\"||e===\"audio/webm\"?\"webm\":void 0;if(n===\"text\")return e===\"application/mp4\"?\"mp4\":void 0}var W=class{constructor(){let[e,t]=gd();this._isUsed=!1,this._trigger=e,this.signal=new Ni(t)}isUsed(){return this._isUsed}linkToSignal(e){let t=e.register(()=>{this.cancel()});return this.signal.register(t),t}cancel(e){if(this._isUsed)return;this._isUsed=!0;let t=e!=null?e:new ie;this._trigger(t)}static isCancellationError(e){return e instanceof ie}},Ni=class{constructor(e){this._isCancelled=!1,this.cancellationError=null,this._listeners=[],e(t=>{for(this.cancellationError=t,this._isCancelled=!0;this._listeners.length>0;)try{let r=this._listeners.pop();r==null||r(t)}catch(r){c.error(\"Error while calling clean up listener\",r instanceof Error?r.toString():\"Unknown error\")}})}isCancelled(){return this._isCancelled}register(e){return this._isCancelled?(he(this.cancellationError!==null),e(this.cancellationError),N):(this._listeners.push(e),()=>this.deregister(e))}deregister(e){for(let t=this._listeners.length-1;t>=0;t--)this._listeners[t]===e&&this._listeners.splice(t,1)}},ie=class n extends Error{constructor(){super(),Object.setPrototypeOf(this,n.prototype),this.name=\"CancellationError\",this.message=\"This task was cancelled.\"}};function gd(){let n=N;return[function(t){n(t)},function(t){n=t}]}function nt(...n){let e=n.length,t=-1,r=0,i;for(;++t<e;)i=n[t],r+=typeof i==\"number\"?i:i.length;let a=new Uint8Array(r),o=0;for(t=-1;++t<e;)i=n[t],typeof i==\"number\"?o+=i:i.length>0&&(a.set(i,o),o+=i.length);return a}function Wo(n,e){return(n[e+0]<<8)+(n[e+1]<<0)}function Bi(n,e){return n[e+0]*65536+n[e+1]*256+n[e+2]}function te(n,e){return n[e+0]*16777216+n[e+1]*65536+n[e+2]*256+n[e+3]}function gt(n,e){return(n[e+0]*16777216+n[e+1]*65536+n[e+2]*256+n[e+3])*4294967296+n[e+4]*16777216+n[e+5]*65536+n[e+6]*256+n[e+7]}function rt(n,e){let t=n.length,r=0;for(;r+8<=t;){let i=te(n,r);if(i===0)i=t-r;else if(i===1){if(r+16>t)return-1;i=gt(n,r+8)}if(isNaN(i)||i<=0)return-1;if(te(n,r+4)===e)return r+i<=t?r:-1;r+=i}return-1}function Ui(n,e){if(e){if(rt(n,1718909296)<0)throw new Re(\"INTEGRITY_ERROR\",\"Incomplete `ftyp` box\");if(rt(n,1836019574)<0)throw new Re(\"INTEGRITY_ERROR\",\"Incomplete `moov` box\")}else{if(rt(n,1836019558)<0)throw new Re(\"INTEGRITY_ERROR\",\"Incomplete `moof` box\");if(rt(n,1835295092)<0)throw new Re(\"INTEGRITY_ERROR\",\"Incomplete `mdat` box\")}}function hn(n){return(e,t,r,i,a)=>{return new Promise((s,u)=>{let d=new W,f=d.linkToSignal(i);d.signal.register(u),n(e,t,r,d.signal,Le(_e({},a),{onNewChunk(l){try{o(l),a.onNewChunk(l)}catch(p){m(),d.cancel(),u(p)}}})).then(l=>{if(m(),!d.isUsed()){if(l.resultType===\"segment-loaded\")try{o(l.resultData.responseData)}catch(p){u(p);return}s(l)}},l=>{m(),u(l)});function m(){d.signal.deregister(u),f()}});function o(s){!(s instanceof ArrayBuffer)&&!(s instanceof Uint8Array)||qe(t.type,t.mimeType)!==\"mp4\"||Ui(new Uint8Array(s),t.segment.isInit)}}}function In(n,e){return n===null?null:e.url===null?n.baseUrl:sn(n.baseUrl,e.url)}function bn(n,e,t,r,i){if(e.range===void 0)return le({url:n,responseType:\"arraybuffer\",timeout:t.timeout,connectionTimeout:t.connectionTimeout,cancelSignal:r,onProgress:i.onProgress}).then(s=>({resultType:\"segment-loaded\",resultData:s}));if(e.indexRange===void 0)return le({url:n,headers:{Range:Oe(e.range)},responseType:\"arraybuffer\",timeout:t.timeout,connectionTimeout:t.connectionTimeout,cancelSignal:r,onProgress:i.onProgress}).then(s=>({resultType:\"segment-loaded\",resultData:s}));if(e.range[1]+1===e.indexRange[0])return le({url:n,headers:{Range:Oe([e.range[0],e.indexRange[1]])},responseType:\"arraybuffer\",timeout:t.timeout,connectionTimeout:t.connectionTimeout,cancelSignal:r,onProgress:i.onProgress}).then(s=>({resultType:\"segment-loaded\",resultData:s}));let a=le({url:n,headers:{Range:Oe(e.range)},responseType:\"arraybuffer\",timeout:t.timeout,connectionTimeout:t.connectionTimeout,cancelSignal:r,onProgress:i.onProgress}),o=le({url:n,headers:{Range:Oe(e.indexRange)},responseType:\"arraybuffer\",timeout:t.timeout,connectionTimeout:t.connectionTimeout,cancelSignal:r,onProgress:i.onProgress});return Promise.all([a,o]).then(([s,u])=>{let d=nt(new Uint8Array(s.responseData),new Uint8Array(u.responseData)),f=Math.min(s.sendingTime,u.sendingTime),m=Math.max(s.receivedTime,u.receivedTime);return{resultType:\"segment-loaded\",resultData:{url:n,responseData:d,size:s.size+u.size,requestDuration:m-f,sendingTime:f,receivedTime:m}}})}function Li(n){let e=0,t=[],r=null;for(;e<n.length;){r=n.subarray(e,1/0);let i=rt(r,1836019558);if(i<0)break;let a=te(n,i+e),o=e+i+a;if(o>n.length)break;let s=rt(r,1835295092);if(s<0)break;let u=te(n,s+e),d=e+s+u;if(d>n.length)break;let f=Math.max(o,d),m=n.subarray(e,f);t.push(m),e=f}return t.length===0?[null,r]:[nt(...t),r]}function Sn(n,e,t,r,i){let{segment:a}=e,o=a.range!==void 0?{Range:Oe(a.range)}:void 0,s=null;function u(d){let f=new Uint8Array(d.chunk),m=s!==null?nt(s,f):f,l=Li(m),p=l[0];s=l[1],!(p!==null&&(r.onNewChunk(p),i.isCancelled()))&&(r.onProgress({duration:d.duration,size:d.size,totalSize:d.totalSize}),i.isCancelled())}return rr({url:n,headers:o,onData:u,timeout:t.timeout,cancelSignal:i}).then(d=>({resultType:\"chunk-complete\",resultData:d}))}function Vo(n,e,t,r,i,a){if(e.segment.isInit)return bn(n,e.segment,r,a,i);let o=qe(e.type,e.mimeType);if(t&&(o===\"mp4\"||o===void 0)){if($t())return Sn(n,e,r,i,a);$e(\"DASH: Your browser does not have the fetch API. You will have a higher chance of rebuffering when playing close to the live edge\")}let{segment:s}=e;return le({url:n,responseType:\"arraybuffer\",headers:s.range!==void 0?{Range:Oe(s.range)}:void 0,timeout:r.timeout,connectionTimeout:r.connectionTimeout,cancelSignal:a,onProgress:i.onProgress}).then(u=>({resultType:\"segment-loaded\",resultData:u}))}function Fi({lowLatencyMode:n,segmentLoader:e,checkMediaSegmentIntegrity:t}){return t!==!0?r:hn(r);function r(i,a,o,s,u){let d=In(i,a.segment);return d===null?Promise.resolve({resultType:\"segment-created\",resultData:null}):n||e===void 0?Vo(d,a,n,o,u,s):new Promise((f,m)=>{let l=!1,y={reject:P=>{var x,k;if(l||s.isCancelled())return;l=!0,s.deregister(C);let M=P,_=(x=M==null?void 0:M.message)!=null?x:\"Unknown error when fetching a DASH segment through a custom segmentLoader.\",A=new Ge(_,(k=M==null?void 0:M.canRetry)!=null?k:!1,M==null?void 0:M.xhr);m(A)},resolve:P=>{l||s.isCancelled()||(l=!0,s.deregister(C),f({resultType:\"segment-loaded\",resultData:{responseData:P.data,size:P.size,requestDuration:P.duration}}))},progress:P=>{l||s.isCancelled()||u.onProgress({duration:P.duration,size:P.size,totalSize:P.totalSize})},fallback:()=>{l||s.isCancelled()||(l=!0,s.deregister(C),Vo(d,a,n,o,u,s).then(f,m))}},E;a.segment.range!==void 0&&(E=[a.segment.range],a.segment.indexRange!==void 0&&E.push(a.segment.indexRange));let v={isInit:a.segment.isInit,timeout:o.timeout,byteRanges:E,trackType:a.type,url:d},T=e(v,y);s.register(C);function C(P){l||(l=!0,typeof T==\"function\"&&T(),m(P))}})}}function hd(n,e,t){return new Uint8Array(Array.prototype.slice.call(n,e,t))}function Id(n,e,t){return n.slice(e,t)}var zi=typeof Uint8Array.prototype.slice==\"function\"?Id:hd;function Wi(n,e){let t=n;for(let r of e){let i=ue(t,r);if(i===null)return null;t=i}return t}function ue(n,e){let t=Ft(n,e);return t!==null?n.subarray(t[1],t[2]):null}function qo(n,e){let t=[],r=n;for(;;){let i=Ft(r,e);if(i===null)return t;he(i[2]!==0&&r.length!==0),t.push(r.subarray(i[1],i[2])),r=r.subarray(i[2])}}function Ft(n,e){let t=n.length,r=0,i,a=0,o;for(;r+8<=t;){if(o=r,a=te(n,o),o+=4,i=te(n,o),o+=4,a===0)a=t-r;else if(a===1){if(o+8>t)return null;a=gt(n,o),o+=8}if(a<0)throw new Error(\"ISOBMFF: Size out of range\");if(i===e)return e===1970628964&&(o+=16),[r,o,r+a];r+=a}return null}function Pr(n){let e=0,t=ue(n,1836019574);if(t===null)return[];let r=[];for(;e<t.length;){let i;try{i=Ft(t,1886614376)}catch(s){let u=s instanceof Error?s:\"\";return c.warn(\"Error while removing PSSH from ISOBMFF\",u),r}if(i===null)return r;let a=zi(t,i[0],i[2]),o=Ho(a,i[1]-i[0]);o!==void 0&&r.push({systemId:o,data:a}),t[i[0]+4]=102,t[i[0]+5]=114,t[i[0]+6]=101,t[i[0]+7]=101,e=i[2]}return r}function Ho(n,e){if(n[e]>1){c.warn(\"ISOBMFF: un-handled PSSH version\");return}let t=e+4;if(t+16>n.length)return;let r=zi(n,t,t+16);return go(r)}function Vi(n){let e=ue(n,1836019558);return e===null?null:ue(e,1953653094)}function Go(n){return qo(n,1836019558).reduce((t,r)=>{let i=ue(r,1953653094);return i!==null&&t.push(i),t},[])}function qi(n){return ue(n,1835295092)}function Hi(n){let e=ue(n,1836019574);if(e===null)return null;let t=ue(e,1953653099);return t===null?null:ue(t,1835297121)}function Ko(n,e=0){return ue(n.subarray(e),1701671783)}function yn(n,e){let t=Ft(n,1936286840);if(t===null)return null;let r=e,i=t[2]-t[0],a=t[1],o=n[a];a+=8;let s=te(n,a);a+=4;let u;if(o===0)u=te(n,a),a+=4,r+=te(n,a)+i,a+=4;else if(o===1)u=gt(n,a),a+=8,r+=gt(n,a)+i,a+=8;else return null;let d=[];a+=2;let f=Wo(n,a);for(a+=2;--f>=0;){let m=te(n,a);a+=4;let l=(m&2147483648)>>>31,p=m&2147483647;if(l===1)throw new Error(\"sidx with reference_type `1` not yet implemented\");let g=te(n,a);a+=4,a+=4,d.push({time:u,duration:g,timescale:s,range:[r,r+p-1]}),u+=g,r+=p}return d}function Gi(n){let e=Vi(n);if(e===null)return;let t=ue(e,1952867444);if(t===null)return;let r=t[0];if(r===1)return gt(t,4);if(r===0)return te(t,4)}function bd(n){let e=ue(n,1952868452);if(e===null)return;let t=1,r=Bi(e,t);t+=3;let i=(r&1)>0,a=(r&2)>0;return(r&8)>0?(t+=4,i&&(t+=8),a&&(t+=4),te(e,t)):void 0}function Ki(n){let e=Go(n);if(e.length===0)return;let t=0;for(let r of e){let i=ue(r,1953658222);if(i===null)return;let a=0,o=i[a];if(a+=1,o>1)return;let s=Bi(i,a);a+=3;let u=(s&256)>0,d=0;if(!u&&(d=bd(r),d===void 0))return;let f=(s&1)>0,m=(s&4)>0,l=(s&512)>0,p=(s&1024)>0,g=(s&2048)>0,h=te(i,a);a+=4,f&&(a+=4),m&&(a+=4);let I=h,y=0;for(;I-- >0;)u?(y+=te(i,a),a+=4):y+=d,l&&(a+=4),p&&(a+=4),g&&(a+=4);t+=y}return t}function Tn(n){let e=Hi(n);if(e===null)return;let t=ue(e,1835296868);if(t===null)return;let r=0,i=t[r];if(r+=4,i===1)return te(t,r+16);if(i===0)return te(t,r+8)}function jo(n){let e=[],t=0;for(;t<n.length;){let r=Ko(n,t);if(r===null)break;let i=r.length;t+=i;let a=r[0];if(a!==0)c.warn(\"ISOBMFF: EMSG version \"+a.toString()+\" not supported.\");else{let o=4,{end:s,string:u}=hi(r,o);o=s;let{end:d,string:f}=hi(r,o);o=d;let m=te(r,o);o+=4;let l=te(r,o);o+=4;let p=te(r,o);o+=4;let g=te(r,o);o+=4;let h=r.subarray(o,i),I={schemeIdUri:u,value:f,timescale:m,presentationTimeDelta:l,eventDuration:p,id:g,messageData:h};e.push(I)}}if(e.length!==0)return e}function Yo(n){let e=Wi(n,[1836019574,1953653099,1835297121,1835626086,1937007212,1937011556]);if(e===null)return null;let t=e.subarray(8),r=ue(t,1701733238),i=0;if(r===null?(i=28,r=ue(t,1701733217)):i=78,r===null)return null;let a=Wi(r.subarray(i),[1936289382,1935894633,1952804451]);return a===null||a.byteLength<24?null:a.subarray(8,24)}var Yi=408125543,Qo=357149030,Sd=2807729,yd=17545,Td=475249515,_d=187,Ed=179,Rd=183,Pd=241;function ht(n,e,t,[r,i]){let a=r;for(;a<i;){let o=Cd(t,a);if(o===null)return null;let{value:s,length:u}=o,d=a+u,f=Ad(t,d);if(f===null)return null;let{length:m,value:l}=f,p=d+m,g=p+l;if(s===n)return[p,g];if(e.length>0){for(let h=0;h<e.length;h++)if(s===e[h]){let I=e.slice(h+1,e.length);return ht(n,I,t,[p,g])}}a=g}return null}function vr(n,e){let t=ht(Sd,[Yi,Qo],n,[e,n.length]);if(t===null)return null;let r=t[1]-t[0];return 1e9/ji(n,t[0],r)}function vd(n,e){let t=ht(yd,[Yi,Qo],n,[e,n.length]);if(t===null)return null;let r=t[1]-t[0];return r===4?kd(n,t[0]):r===8?xd(n,t[0]):null}function Qi(n,e){let t=ht(Yi,[],n,[e,n.length]);if(t===null)return null;let[r,i]=t,a=vr(n,r);if(a===null)return null;let o=vd(n,r);if(o===null)return null;let s=ht(Td,[],n,[r,i]);if(s===null)return null;let u=[],d=s[0];for(;d<s[1];){let m=ht(_d,[],n,[d,s[1]]);if(m===null)break;let l=ht(Ed,[],n,[m[0],m[1]]);if(l===null)return null;let p=ji(n,l[0],l[1]-l[0]),g=ht(Pd,[Rd],n,[m[0],m[1]]);if(g===null)return null;let h=ji(n,g[0],g[1]-g[0])+r;u.push({time:p,rangeStart:h}),d=m[1]}let f=[];for(let m=0;m<u.length;m++){let l=u[m];m===u.length-1?f.push({time:l.time,timescale:a,duration:m===0?o:o-l.time,range:[l.rangeStart,1/0]}):f.push({time:l.time,timescale:a,duration:u[m+1].time-l.time,range:[l.rangeStart,u[m+1].rangeStart-1]})}return f}function $o(n,e){for(let t=1;t<=8;t++)if(n[e]>=Math.pow(2,8-t))return t}function Cd(n,e){let t=$o(n,e);if(t===void 0)return c.warn(\"webm: unrepresentable length\"),null;if(e+t>n.length)return c.warn(\"webm: impossible length\"),null;let r=0;for(let i=0;i<t;i++)r=n[e+i]*Math.pow(2,(t-i-1)*8)+r;return{length:t,value:r}}function Ad(n,e){let t=$o(n,e);if(t===void 0)return c.warn(\"webm: unrepresentable length\"),null;if(e+t>n.length)return c.warn(\"webm: impossible length\"),null;let r=(n[e]&(1<<8-t)-1)*Math.pow(2,(t-1)*8);for(let i=1;i<t;i++)r=n[e+i]*Math.pow(2,(t-i-1)*8)+r;return{length:t,value:r}}function kd(n,e){return new DataView(n.buffer).getFloat32(e)}function xd(n,e){return new DataView(n.buffer).getFloat64(e)}function ji(n,e,t){let r=0;for(let i=0;i<t;i++)r=n[e+i]*Math.pow(2,(t-i-1)*8)+r;return r}function _n(n,e,t,r){let i=Gi(n);if(i===void 0||r===void 0)return null;let a=t.timestampOffset!==void 0?i+t.timestampOffset*r:i,o=Ki(n);if(a<0&&(o!==void 0&&(o+=a),a=0),e||!t.complete)return o===void 0&&c.warn(\"DASH: Chunked segments should indicate a duration through their trun boxes\"),{time:a/r,duration:o!==void 0?o/r:void 0};let s,u=t.duration*r,d=Math.min(r*.9,u/4);return o!==void 0&&Math.abs(o-u)<=d&&(s=o),{time:a/r,duration:s!==void 0?s/r:s}}function Md(n,e){if(n.length<=0)return!1;let t=n.length;for(let r=0;r<t;r++){let i=n[r],a=e,{messageData:o}=i,s=Be(o),u=Date.parse(s);if(a===void 0||u===void 0||isNaN(u)||u>=a)return!0}return!1}function $i(n,e){if(n.length===0)return;let{manifestRefreshEventsFromEMSGs:t,EMSGs:r}=n.reduce((o,s)=>(s.schemeIdUri===\"urn:mpeg:dash:event:2012\"&&s.value===\"1\"?(o.manifestRefreshEventsFromEMSGs===void 0&&(o.manifestRefreshEventsFromEMSGs=[]),o.manifestRefreshEventsFromEMSGs.push(s)):(o.EMSGs===void 0&&(o.EMSGs=[]),o.EMSGs.push(s)),o),{manifestRefreshEventsFromEMSGs:void 0,EMSGs:void 0}),i=r==null?void 0:r.map(o=>({type:\"emsg\",value:o})),a=e===void 0||t===void 0?!1:Md(t,e);return{inbandEvents:i,needsManifestRefresh:a}}function Xi({__priv_patchLastSegmentInSidx:n}){return function(t,r,i){var v,T;let{segment:a,periodStart:o,periodEnd:s}=r,{data:u,isChunked:d}=t,f=[o,s];if(u===null)return a.isInit?{segmentType:\"init\",initializationData:null,initializationDataSize:0,protectionData:[],initTimescale:void 0}:{segmentType:\"media\",chunkData:null,chunkSize:0,chunkInfos:null,chunkOffset:0,protectionData:[],appendWindow:f};let m=u instanceof Uint8Array?u:new Uint8Array(u),l=qe(r.type,r.mimeType),p=l===\"mp4\"||l===void 0,g=[];if(p){let C=Pr(m),P;a.isInit&&(P=(v=Yo(m))!=null?v:void 0),(C.length>0||P!==void 0)&&g.push({initDataType:\"cenc\",keyId:P,initData:C})}if(!a.isInit){let C=p?_n(m,d,a,i):null,P=(T=a.timestampOffset)!=null?T:0;if(p){let M=jo(m);if(M!==void 0){let _=M.filter(x=>a.privateInfos===void 0||a.privateInfos.isEMSGWhitelisted===void 0?!1:a.privateInfos.isEMSGWhitelisted(x)),A=$i(_,r.manifestPublishTime);if(A!==void 0){let{needsManifestRefresh:x,inbandEvents:k}=A;return{segmentType:\"media\",chunkData:m,chunkSize:m.length,chunkInfos:C,chunkOffset:P,appendWindow:f,inbandEvents:k,protectionData:g,needsManifestRefresh:x}}}}return{segmentType:\"media\",chunkData:m,chunkSize:m.length,chunkInfos:C,chunkOffset:P,protectionData:g,appendWindow:f}}let{indexRange:h}=a,I;if(l===\"webm\")I=Qi(m,0);else if(p&&(I=yn(m,Array.isArray(h)?h[0]:0),n===!0&&I!==null&&I.length>0)){let C=I[I.length-1];Array.isArray(C.range)&&(C.range[1]=1/0)}let y;p?y=Tn(m):l===\"webm\"&&(y=vr(m,0));let E=R(y)?void 0:y;return{segmentType:\"init\",initializationData:m,initializationDataSize:m.length,protectionData:g,initTimescale:E,segmentList:I!=null?I:void 0}}}function Zi({lowLatencyMode:n,checkMediaSegmentIntegrity:e}){return e!==!0?t:hn(t);function t(r,i,a,o,s){let{segment:u}=i,{range:d}=u,f=In(r,u);if(f===null)return Promise.resolve({resultType:\"segment-created\",resultData:null});if(u.isInit)return bn(f,u,a,o,s);let m=qe(i.type,i.mimeType),l=m===\"mp4\"||m===void 0;if(n&&l){if($t())return Sn(f,i,a,s,o);$e(\"DASH: Your browser does not have the fetch API. You will have a higher chance of rebuffering when playing close to the live edge\")}return l?le({url:f,responseType:\"arraybuffer\",headers:Array.isArray(d)?{Range:Oe(d)}:null,timeout:a.timeout,connectionTimeout:a.connectionTimeout,onProgress:s.onProgress,cancelSignal:o}).then(p=>({resultType:\"segment-loaded\",resultData:p})):le({url:f,responseType:\"text\",headers:Array.isArray(d)?{Range:Oe(d)}:null,timeout:a.timeout,connectionTimeout:a.connectionTimeout,onProgress:s.onProgress,cancelSignal:o}).then(p=>({resultType:\"segment-loaded\",resultData:p}))}}function Od(n){let e=qi(n);return e===null?\"\":Be(e)}function wd(n){if(n===void 0)throw new Error(\"Cannot parse subtitles: unknown format\");switch(n.toLowerCase()){case\"stpp\":case\"stpp.ttml.im1t\":return\"ttml\";case\"wvtt\":return\"vtt\"}throw new Error(`The codec used for the subtitles \"${n}\" is not managed yet.`)}function Dd(n,e){switch(e){case\"application/ttml+xml\":return\"ttml\";case\"application/x-sami\":case\"application/smil\":return\"sami\";case\"text/vtt\":return\"vtt\"}if(n!==void 0&&n.toLowerCase()===\"srt\")return\"srt\";throw new Error(`could not find a text-track parser for the type ${e!=null?e:\"\"}`)}function Xo({segment:n,language:e,codecs:t},r,i,a){if(n.isInit)return null;let o,s;i===null?a?(o=n.time,s=n.end):c.warn(\"Transport: Unavailable time data for current text track.\"):(o=i.time,i.duration!==void 0?s=o+i.duration:!a&&n.complete&&(s=o+n.duration));let u=wd(t);return{data:Od(r),type:u,language:e,start:o,end:s}}function Zo(n,e,t){let{segment:r}=n;if(r.isInit)return null;let i,a;t?c.warn(\"Transport: Unavailable time data for current text track.\"):(i=r.time,r.complete&&(a=r.time+r.duration));let o=Dd(n.codecs,n.mimeType);return{data:e,type:o,language:n.language,start:i,end:a}}function Nd(n,e,t,r,i){var l;let{segment:a}=t,{isInit:o,indexRange:s}=a,u;if(typeof n==\"string\"?u=dn(n):n instanceof Uint8Array?u=n:u=new Uint8Array(n),o){let p=yn(u,Array.isArray(s)?s[0]:0);if(i===!0&&p!==null&&p.length>0){let h=p[p.length-1];Array.isArray(h.range)&&(h.range[1]=1/0)}let g=Tn(u);return{segmentType:\"init\",initializationData:null,initializationDataSize:0,protectionData:[],initTimescale:g,segmentList:p!=null?p:void 0}}let d=_n(u,e,a,r),f=Xo(t,u,d,e),m=(l=a.timestampOffset)!=null?l:0;return{segmentType:\"media\",chunkData:f,chunkSize:u.length,chunkInfos:d,chunkOffset:m,protectionData:[],appendWindow:[t.periodStart,t.periodEnd]}}function Bd(n,e,t){let{periodStart:r,periodEnd:i,segment:a}=t,{timestampOffset:o=0}=a;if(a.isInit)return{segmentType:\"init\",initializationData:null,initializationDataSize:0,protectionData:[],initTimescale:void 0};let s,u;if(typeof n!=\"string\"){let f=n instanceof Uint8Array?n:new Uint8Array(n);s=Be(f),u=f.length}else s=n;return{segmentType:\"media\",chunkData:Zo(t,s,e),chunkSize:u,chunkInfos:null,chunkOffset:o,protectionData:[],appendWindow:[r,i]}}function Ji({__priv_patchLastSegmentInSidx:n}){return function(t,r,i){var m;let{periodStart:a,periodEnd:o,segment:s}=r,{data:u,isChunked:d}=t;if(u===null)return s.isInit?{segmentType:\"init\",initializationData:null,initializationDataSize:0,protectionData:[],initTimescale:void 0}:{segmentType:\"media\",chunkData:null,chunkSize:0,chunkInfos:null,chunkOffset:(m=s.timestampOffset)!=null?m:0,protectionData:[],appendWindow:[a,o]};let f=qe(r.type,r.mimeType);if(f===\"webm\")throw new Error(\"Text tracks with a WEBM container are not yet handled.\");return f===\"mp4\"?Nd(u,d,r,i,n):Bd(u,d,r)}}function Jo(n){let e=wi({customManifestLoader:n.manifestLoader},Ud()?\"text\":\"arraybuffer\"),t=Di(n),r=Fi(n),i=Xi(n),a=Zi(n),o=Ji(n);return{manifest:{loadManifest:e,parseManifest:t},audio:{loadSegment:r,parseSegment:i},video:{loadSegment:r,parseSegment:i},text:{loadSegment:a,parseSegment:o}}}function Ud(){return ae.dashParsers.wasm!==null&&(ae.dashParsers.wasm.status===\"initialized\"||ae.dashParsers.wasm.status===\"initializing\")}var es=Jo;var Ct=typeof queueMicrotask==\"function\"?queueMicrotask:function(e){Promise.resolve().then(e,()=>e())};var At=class{constructor(e){this._array=[],this._sortingFn=e}add(...e){e.sort(this._sortingFn);let t=0;for(let r=0;r<e.length;r++){let i=e[r],a=!1;for(;!a&&t<this._array.length;)this._sortingFn(i,this._array[t])<0?(this._array.splice(t,0,i),a=!0):t++;a||this._array.push(i)}}length(){return this._array.length}get(e){if(e<0||e>=this._array.length)throw new Error(\"Invalid index.\");return this._array[e]}toArray(){return this._array.slice()}findFirst(e){return K(this._array,e)}has(e){return se(this._array,e)}removeElement(e){let t=this._array.indexOf(e);if(t>=0)return this._array.splice(t,1),t}head(){return this._array[0]}last(){return this._array[this._array.length-1]}shift(){return this._array.shift()}pop(){return this._array.pop()}};var En=class{constructor(e){this._weakMap=new WeakMap,this._fn=e}get(e){let t=this._weakMap.get(e);if(t===void 0){let r=this._fn(e);return this._weakMap.set(e,r),r}else return t}destroy(e){this._weakMap.delete(e)}};var Ld=.016666666666666666;function ts(n,e){return Math.abs(n-e)<Ld}function rs(n,e){let t=Math.min(n.start,e.start),r=Math.max(n.end,e.end);return{start:t,end:r}}function Fd(n){for(let e=0;e<n.length;e++){let t=n[e];t.start===t.end&&n.splice(e--,1)}return n}function zd(n){for(let e=1;e<n.length;e++){let t=n[e-1],r=n[e];if(as(t,r)){let i=rs(t,r);n.splice(--e,2,i)}}return n}function ea(n,e){return n.end<=e.start}function ns({start:n,end:e},t){return n<=t&&t<e}function is(n,e){return ns(n,e.start)||n.start<e.end&&e.end<n.end||ns(e,n.start)}function as(n,e){return ts(e.start,n.end)||ts(e.end,n.start)}function ta(n){let e=[];for(let t=0;t<n.length;t++)e.push({start:n.start(t),end:n.end(t)});return e}function Wd(n,e){for(let t=n.length-1;t>=0;t--){let r=n[t].start;if(e>=r){let i=n[t].end;if(e<i)return n[t]}}return null}function os(n,e){let t=null,r=[];for(let i=0;i<n.length;i++){let a=n[i].start,o=n[i].end;e<a||e>=o?r.push({start:a,end:o}):t={start:a,end:o}}return{outerRanges:r,innerRange:t}}function Cr(n,e){let t=Wd(n,e);return t!==null?t.end-e:1/0}function zt(n,e){if(e.start===e.end)return n;let t=e,r=0;for(;r<n.length;r++){let i=n[r],a=is(t,i),o=as(t,i);if(a||o)t=rs(t,i),n.splice(r--,1);else if(r===0){if(ea(t,n[0]))break}else if(ea(n[r-1],t)&&ea(t,i))break}return n.splice(r,0,t),zd(Fd(n))}function Vd(n,e){let t=[];for(let r=0;r<e.length;r++)is(n,e[r])&&t.push(e[r]);return t}function Ar(n,e){let t=[];for(let r=0;r<n.length;r++){let i=n[r],a=[],o=Vd(i,e);if(o.length>0)for(let s=0;s<o.length;s++){let u=o[s];a.push({start:Math.max(i.start,u.start),end:Math.min(i.end,u.end)})}if(a.length===0)t.push(i);else{let s=i.start;for(let u=0;u<a.length;u++)a[u].start>s&&t.push({start:s,end:a[u].start}),s=a[u].end;s<i.end&&t.push({start:s,end:i.end})}}return t}function kr({segmentSink:n,playbackObserver:e,maxBufferBehind:t,maxBufferAhead:r},i){let a,o=[];e.listen(u=>{a=u.position.getWanted(),o=u.buffered[n.bufferType],s()},{includeLastObservation:!0,clearSignal:i});function s(){o!==null&&qd(n,a,o,t.getValue(),r.getValue(),i).catch(u=>{let d=u instanceof Error?u.message:\"Unknown error\";c.error(\"Could not run BufferGarbageCollector:\",d)})}t.onUpdate(s,{clearSignal:i}),r.onUpdate(s,{clearSignal:i}),s()}async function qd(n,e,t,r,i,a){if(!isFinite(r)&&!isFinite(i))return Promise.resolve();let o=[],{innerRange:s,outerRanges:u}=os(t,e),d=()=>{if(isFinite(r)){for(let m=0;m<u.length;m++){let l=u[m];e-r>=l.end?o.push(l):e>=l.end&&e-r>l.start&&e-r<l.end&&o.push({start:l.start,end:e-r})}R(s)||e-r>s.start&&o.push({start:s.start,end:e-r})}},f=()=>{if(isFinite(i)){for(let m=0;m<u.length;m++){let l=u[m];e+i<=l.start?o.push(l):e<=l.start&&e+i<l.end&&e+i>l.start&&o.push({start:e+i,end:l.end})}R(s)||e+i<s.end&&o.push({start:e+i,end:s.end})}};d(),f();for(let m of o)if(m.start<m.end){if(c.debug(\"GC: cleaning range from SegmentSink\",m.start,m.end),a.cancellationError!==null)throw a.cancellationError;await n.removeBuffer(m.start,m.end)}}var Rn=class{constructor(e,t){this._history=[],this._lifetime=e,this._maxHistoryLength=t}addBufferedSegment(e,t){let r=L();this._history.push({date:r,buffered:t,context:e}),this._cleanHistory(r)}getHistoryFor(e){return this._history.filter(t=>Xe(t.context,e))}_cleanHistory(e){let t=e-this._lifetime,r=0;for(let i of this._history)if(i.date<t)r++;else break;if(r>0&&(this._history=this._history.splice(r)),this._history.length>this._maxHistoryLength){let i=this._history.length-this._maxHistoryLength;this._history=this._history.splice(i)}}};var Pn=class{constructor(){let{BUFFERED_HISTORY_RETENTION_TIME:e,BUFFERED_HISTORY_MAXIMUM_ENTRIES:t}=U.getCurrent();this._inventory=[],this._bufferedHistory=new Rn(e,t)}reset(){this._inventory.length=0}synchronizeBuffered(e){var u,d,f,m,l,p,g;let t=this._inventory,r=0,i=t[0],{MINIMUM_SEGMENT_SIZE:a}=U.getCurrent(),o=i==null?void 0:i.infos.adaptation.type,s=e.length;for(let h=0;h<s;h++){if(i===void 0)return;let I=e[h].start,y=e[h].end;if(y-I<a){c.warn(\"SI: skipped range when synchronizing because it was too small\",o,I,y);continue}let E=r;for(;i!==void 0&&((u=i.bufferedEnd)!=null?u:i.end)-I<a;)i=t[++r];let v=null,T=r-E;if(T>0){let P=t[E+T-1];v={end:(d=P.bufferedEnd)!=null?d:P.end,precizeEnd:P.precizeEnd},c.debug(`SI: ${T} segments GCed.`,o);let M=t.splice(E,T);for(let _ of M)_.bufferedStart===void 0&&_.bufferedEnd===void 0&&_.status!==2&&this._bufferedHistory.addBufferedSegment(_.infos,null);r=E}if(i===void 0)return;if(y-((f=i.bufferedStart)!=null?f:i.start)>=a){if(Hd(i,I,v,o),r===t.length-1){us(i,y,o);return}i=t[++r];let P=(m=i.bufferedStart)!=null?m:i.start,M=(l=i.bufferedEnd)!=null?l:i.end,_=h<s-1?e[h+1].start:void 0;for(;i!==void 0&&y-P>=a&&(_===void 0||y-P>=M-_);){let A=t[r-1];A.bufferedEnd===void 0&&(A.bufferedEnd=i.precizeStart?i.start:A.end,c.debug(\"SI: calculating buffered end of contiguous segment\",o,A.bufferedEnd,A.end)),i.bufferedStart=A.bufferedEnd,i=t[++r],i!==void 0&&(P=(p=i.bufferedStart)!=null?p:i.start,M=(g=i.bufferedEnd)!=null?g:i.end)}}let C=t[r-1];C!==void 0&&us(C,y,o)}if(!R(i)){c.debug(\"SI: last segments have been GCed\",o,r,t.length);let h=t.splice(r,t.length-r);for(let I of h)I.bufferedStart===void 0&&I.bufferedEnd===void 0&&I.status!==2&&this._bufferedHistory.addBufferedSegment(I.infos,null)}o!==void 0&&c.hasLevel(\"DEBUG\")&&c.debug(`SI: current ${o} inventory timeline:\n`+Gd(this._inventory))}insertChunk({period:e,adaptation:t,representation:r,segment:i,chunkSize:a,start:o,end:s},u,d){if(i.isInit)return;let f=t.type;if(o>=s){c.warn(\"SI: Invalid chunked inserted: starts before it ends\",f,o,s);return}let m=this._inventory,l={status:u?0:2,insertionTs:d,chunkSize:a,splitted:!1,start:o,end:s,precizeStart:!1,precizeEnd:!1,bufferedStart:void 0,bufferedEnd:void 0,infos:{segment:i,period:e,adaptation:t,representation:r}};for(let g=m.length-1;g>=0;g--){let h=m[g];if(h.start<=o)if(h.end<=o){for(c.debug(\"SI: Pushing segment strictly after previous one.\",f,o,h.end),this._inventory.splice(g+1,0,l),g+=2;g<m.length&&m[g].start<l.end;){if(m[g].end>l.end){c.debug(\"SI: Segment pushed updates the start of the next one\",f,l.end,m[g].start),m[g].start=l.end,m[g].bufferedStart=void 0,m[g].precizeStart=m[g].precizeStart&&l.precizeEnd;return}c.debug(\"SI: Segment pushed removes the next one\",f,o,s,m[g].start,m[g].end),m.splice(g,1)}return}else if(h.start===o)if(h.end<=s){for(c.debug(\"SI: Segment pushed replace another one\",f,o,s,h.end),this._inventory.splice(g,1,l),g+=1;g<m.length&&m[g].start<l.end;){if(m[g].end>l.end){c.debug(\"SI: Segment pushed updates the start of the next one\",f,l.end,m[g].start),m[g].start=l.end,m[g].bufferedStart=void 0,m[g].precizeStart=m[g].precizeStart&&l.precizeEnd;return}c.debug(\"SI: Segment pushed removes the next one\",f,o,s,m[g].start,m[g].end),m.splice(g,1)}return}else{c.debug(\"SI: Segment pushed ends before another with the same start\",f,o,s,h.end),m.splice(g,0,l),h.start=l.end,h.bufferedStart=void 0,h.precizeStart=h.precizeStart&&l.precizeEnd;return}else if(h.end<=l.end){for(c.debug(\"SI: Segment pushed updates end of previous one\",f,o,s,h.start,h.end),this._inventory.splice(g+1,0,l),h.end=l.start,h.bufferedEnd=void 0,h.precizeEnd=h.precizeEnd&&l.precizeStart,g+=2;g<m.length&&m[g].start<l.end;){if(m[g].end>l.end){c.debug(\"SI: Segment pushed updates the start of the next one\",f,l.end,m[g].start),m[g].start=l.end,m[g].bufferedStart=void 0,m[g].precizeStart=m[g].precizeStart&&l.precizeEnd;return}c.debug(\"SI: Segment pushed removes the next one\",f,o,s,m[g].start,m[g].end),m.splice(g,1)}return}else{c.warn(\"SI: Segment pushed is contained in a previous one\",f,o,s,h.start,h.end);let I={status:h.status,insertionTs:h.insertionTs,chunkSize:h.chunkSize,splitted:!0,start:l.end,end:h.end,precizeStart:h.precizeStart&&h.precizeEnd&&l.precizeEnd,precizeEnd:h.precizeEnd,bufferedStart:void 0,bufferedEnd:h.end,infos:h.infos};h.end=l.start,h.splitted=!0,h.bufferedEnd=void 0,h.precizeEnd=h.precizeEnd&&l.precizeStart,m.splice(g+1,0,l),m.splice(g+2,0,I);return}}let p=this._inventory[0];if(p===void 0){c.debug(\"SI: first segment pushed\",f,o,s),this._inventory.push(l);return}if(p.start>=s)c.debug(\"SI: Segment pushed comes before all previous ones\",f,o,s,p.start),this._inventory.splice(0,0,l);else if(p.end<=s){for(c.debug(\"SI: Segment pushed starts before and completely recovers the previous first one\",f,o,s,p.start,p.end),this._inventory.splice(0,1,l);m.length>1&&m[1].start<l.end;){if(m[1].end>l.end){c.debug(\"SI: Segment pushed updates the start of the next one\",f,l.end,m[1].start),m[1].start=l.end,m[1].bufferedStart=void 0,m[1].precizeStart=l.precizeEnd;return}c.debug(\"SI: Segment pushed removes the next one\",f,o,s,m[1].start,m[1].end),m.splice(1,1)}return}else{c.debug(\"SI: Segment pushed start of the next one\",f,o,s,p.start,p.end),p.start=s,p.bufferedStart=void 0,p.precizeStart=l.precizeEnd,this._inventory.splice(0,0,l);return}}completeSegment(e){if(e.segment.isInit)return;let t=this._inventory,r=[];for(let i=0;i<t.length;i++)if(Xe(t[i].infos,e)){let a=!1;r.length>0&&(a=!0,r.length===1&&(c.warn(\"SI: Completed Segment is splitted.\",e.segment.id,e.segment.time,e.segment.end),r[0].splitted=!0));let o=i,s=t[i].chunkSize;for(i+=1;i<t.length&&Xe(t[i].infos,e);){let l=t[i].chunkSize;s!==void 0&&l!==void 0&&(s+=l),i++}let u=i-1,d=u-o,f=t[u].end,m=t[u].bufferedEnd;d>0&&(this._inventory.splice(o+1,d),i-=d),this._inventory[o].status===0&&(this._inventory[o].status=1),this._inventory[o].chunkSize=s,this._inventory[o].end=f,this._inventory[o].bufferedEnd=m,this._inventory[o].splitted=a,r.push(this._inventory[o])}if(r.length===0)c.warn(\"SI: Completed Segment not found\",e.segment.id,e.segment.time);else for(let i of r)i.bufferedStart!==void 0&&i.bufferedEnd!==void 0?i.status!==2&&this._bufferedHistory.addBufferedSegment(i.infos,{start:i.bufferedStart,end:i.bufferedEnd}):c.debug(\"SI: buffered range not known after sync. Skipping history.\",i.start,i.end)}getInventory(){return this._inventory}getHistoryFor(e){return this._bufferedHistory.getHistoryFor(e)}};function na(n){if(n.bufferedStart===void 0||n.status!==1)return!1;let{start:e,end:t}=n,r=t-e,{MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE:i,MAX_MANIFEST_BUFFERED_DURATION_DIFFERENCE:a}=U.getCurrent();return Math.abs(e-n.bufferedStart)<=i&&(n.bufferedEnd===void 0||n.bufferedEnd>n.bufferedStart&&Math.abs(n.bufferedEnd-n.bufferedStart-r)<=Math.min(a,r/3))}function ss(n){if(n.bufferedEnd===void 0||n.status!==1)return!1;let{start:e,end:t}=n,r=t-e,{MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE:i,MAX_MANIFEST_BUFFERED_DURATION_DIFFERENCE:a}=U.getCurrent();return Math.abs(t-n.bufferedEnd)<=i&&n.bufferedStart!==void 0&&n.bufferedEnd>n.bufferedStart&&Math.abs(n.bufferedEnd-n.bufferedStart-r)<=Math.min(a,r/3)}function Hd(n,e,t,r){let{MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE:i,MISSING_DATA_TRIGGER_SYNC_DELAY:a,SEGMENT_SYNCHRONIZATION_DELAY:o}=U.getCurrent();if(n.bufferedStart!==void 0)n.bufferedStart<e&&(c.debug(\"SI: Segment partially GCed at the start\",r,n.bufferedStart,e),n.bufferedStart=e),!n.precizeStart&&na(n)&&(n.start=n.bufferedStart,n.precizeStart=!0);else if(n.precizeStart)c.debug(\"SI: buffered start is precize start\",r,n.start),n.bufferedStart=n.start;else if(t!==null&&t.end>e&&(t.precizeEnd||n.start-t.end<=i))c.debug(\"SI: buffered start is end of previous segment\",r,e,n.start,t.end),n.bufferedStart=t.end,na(n)&&(n.start=t.end,n.precizeStart=!0);else if(n.start-e<=i){let s=L();if(n.start-e>=a&&s-n.insertionTs<o){c.debug(\"SI: Ignored bufferedStart synchronization\",r,e,n.start,s-n.insertionTs);return}c.debug(\"SI: found true buffered start\",r,e,n.start),n.bufferedStart=e,na(n)&&(n.start=e,n.precizeStart=!0)}else if(e<n.start)c.debug(\"SI: range start too far from expected start\",r,e,n.start),n.bufferedStart=n.start;else{let s=L();if(n.start-e>=a&&s-n.insertionTs<o){c.debug(\"SI: Ignored bufferedStart synchronization\",r,e,n.start,s-n.insertionTs);return}c.debug(\"SI: Segment appears immediately garbage collected at the start\",r,e,n.start),n.bufferedStart=e}}function us(n,e,t){let{MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE:r,MISSING_DATA_TRIGGER_SYNC_DELAY:i,SEGMENT_SYNCHRONIZATION_DELAY:a}=U.getCurrent();if(n.bufferedEnd!==void 0)n.bufferedEnd>e&&(c.debug(\"SI: Segment partially GCed at the end\",t,n.bufferedEnd,e),n.bufferedEnd=e),!n.precizeEnd&&e-n.end<=r&&ss(n)&&(n.precizeEnd=!0,n.end=e);else if(n.precizeEnd)c.debug(\"SI: buffered end is precize end\",t,n.end),n.bufferedEnd=n.end;else if(e-n.end<=r){let o=L();if(e-n.end>=i&&o-n.insertionTs<a){c.debug(\"SI: Ignored bufferedEnd synchronization\",t,e,n.end,o-n.insertionTs);return}c.debug(\"SI: found true buffered end\",t,e,n.end),n.bufferedEnd=e,ss(n)&&(n.end=e,n.precizeEnd=!0)}else if(e>n.end)c.debug(\"SI: range end too far from expected end\",t,e,n.end),n.bufferedEnd=n.end;else{let o=L();if(e-n.end>=i&&o-n.insertionTs<a){c.debug(\"SI: Ignored bufferedEnd synchronization\",t,e,n.end,o-n.insertionTs);return}c.debug(\"SI: Segment appears immediately garbage collected at the end\",t,n.bufferedEnd,e),n.bufferedEnd=e}}function Gd(n){let e=.016666666666666666,t={},r=[],i=null,a=null;function o(u){let d=String.fromCharCode(r.length+65);return r.push({letter:d,periodId:u.period.id,representationId:u.representation.id,bitrate:u.representation.bitrate}),d}let s=\"\";for(let u=0;u<n.length;u++){let d=n[u];if(d.bufferedStart!==void 0&&d.bufferedEnd!==void 0){let f=d.infos.period.id,m=d.infos.representation.id,l=t[f],p;l===void 0?(p=o(d.infos),t[f]={[m]:p}):l[m]===void 0?(p=o(d.infos),l[m]=p):p=l[m],i===null?s+=`${d.bufferedStart.toFixed(2)}|${p}|`:a===p?i.bufferedEnd+e<d.bufferedStart&&(s+=`${i.bufferedEnd.toFixed(2)} ~ ${d.bufferedStart.toFixed(2)}|${p}|`):s+=`${i.bufferedEnd.toFixed(2)} ~ ${d.bufferedStart.toFixed(2)}|${p}|`,i=d,a=p}}return i!==null&&(s+=String(i.end.toFixed(2))),r.forEach(u=>{var d;s+=`\n[${u.letter}] P: ${u.periodId} || R: ${u.representationId}(${(d=u.bitrate)!=null?d:\"unknown bitrate\"})`}),s}function Wt(n,e){for(let t=0;t<n.length;t++)if(n[t].infos.period.start>=e.start)return t>0?n[t-1]:null;return n.length>0?n[n.length-1]:null}function Vt(n,e){for(let t=0;t<n.length;t++)if(n[t].infos.period.start>e.start)return n[t];return null}var ls=Pn;var qt=class{constructor(){this._segmentInventory=new ls}synchronizeInventory(e){this._segmentInventory.synchronizeBuffered(e)}getLastKnownInventory(){return this._segmentInventory.getInventory()}getSegmentHistory(e){return this._segmentInventory.getHistoryFor(e)}};var vn=class extends qt{constructor(e,t,r){super(),c.info(\"AVSB: calling `mediaSource.addSourceBuffer`\",t);let i=r.addSourceBuffer(e,t);this.bufferType=e,this._sourceBuffer=i,this._lastInitSegmentUniqueId=null,this.codec=t,this._initSegmentsMap=new Map,this._pendingOperations=[]}declareInitSegment(e,t){fs(t),this._initSegmentsMap.set(e,t)}freeInitSegment(e){this._initSegmentsMap.delete(e)}async pushChunk(e){fs(e.data.chunk),c.debug(\"AVSB: receiving order to push data to the SourceBuffer\",this.bufferType,St(e.inventoryInfos));let t=this._getActualDataToPush(e.data);t.length===0&&t.push(new Uint8Array);let r=Promise.all(t.map(o=>{let{codec:s,timestampOffset:u,appendWindow:d}=e.data;return c.debug(\"AVSB: pushing segment\",this.bufferType,St(e.inventoryInfos)),this._sourceBuffer.appendBuffer(o,{codec:s,timestampOffset:u,appendWindow:d})}));this._addToOperationQueue(r,{type:0,value:e});let i;try{i=await r}catch(o){throw this._segmentInventory.insertChunk(e.inventoryInfos,!1,L()),o}e.inventoryInfos!==null&&this._segmentInventory.insertChunk(e.inventoryInfos,!0,L());let a=i[i.length-1];return this._segmentInventory.synchronizeBuffered(a),a}async removeBuffer(e,t){c.debug(\"AVSB: receiving order to remove data from the SourceBuffer\",this.bufferType,e,t);let r=this._sourceBuffer.remove(e,t);this._addToOperationQueue(r,{type:1,value:{start:e,end:t}});let i=await r;return this._segmentInventory.synchronizeBuffered(i),i}async signalSegmentComplete(e){if(this._pendingOperations.length>0){let{promise:t}=this._pendingOperations[this._pendingOperations.length-1];this._addToOperationQueue(t,{type:2,value:e});try{await t}catch(r){}}this._segmentInventory.completeSegment(e)}getPendingOperations(){return this._pendingOperations.map(e=>e.operation)}dispose(){try{c.debug(\"AVSB: Calling `dispose` on the SourceBufferInterface\"),this._sourceBuffer.dispose()}catch(e){c.debug(`AVSB: Failed to dispose a ${this.bufferType} SourceBufferInterface:`,e instanceof Error?e:\"\")}}_getActualDataToPush(e){let t=[];if(e.initSegmentUniqueId!==null&&!this._isLastInitSegment(e.initSegmentUniqueId)){let r=this._initSegmentsMap.get(e.initSegmentUniqueId);if(r===void 0)throw new Error(\"Invalid initialization segment uniqueId\");let i=new ArrayBuffer(r.byteLength),a=new Uint8Array(i);a.set(r instanceof ArrayBuffer?new Uint8Array(r):new Uint8Array(r.buffer)),r=a,t.push(r),this._lastInitSegmentUniqueId=e.initSegmentUniqueId}return e.chunk!==null&&t.push(e.chunk),t}_isLastInitSegment(e){return this._lastInitSegmentUniqueId===null?!1:this._lastInitSegmentUniqueId===e}_addToOperationQueue(e,t){let r={operation:t,promise:e};this._pendingOperations.push(r);let i=()=>{let a=this._pendingOperations.indexOf(r);a>=0&&this._pendingOperations.splice(a,1)};e.then(i,i)}};function fs(n){if(b.CURRENT_ENV!==b.PRODUCTION&&(typeof n!=\"object\"||n!==null&&!(n instanceof ArrayBuffer)&&!(n.buffer instanceof ArrayBuffer)))throw new Error(\"Invalid data given to the AudioVideoSegmentSink\")}var Mr=vn;var Cn=class extends qt{constructor(e){c.debug(\"HTSB: Creating TextSegmentSink\"),super(),this.bufferType=\"text\",this._sender=e,this._pendingOperations=[],this._sender.reset()}declareInitSegment(e){c.warn(\"HTSB: Declaring initialization segment for Text SegmentSink\",e)}freeInitSegment(e){c.warn(\"HTSB: Freeing initialization segment for Text SegmentSink\",e)}async pushChunk(e){let{data:t}=e;Kd(t.chunk);let r=this._sender.pushTextData(Le(_e({},t),{chunk:t.chunk}));this._addToOperationQueue(r,{type:0,value:e});let i=await r;return e.inventoryInfos!==null&&this._segmentInventory.insertChunk(e.inventoryInfos,!0,L()),this._segmentInventory.synchronizeBuffered(i),i}async removeBuffer(e,t){let r=this._sender.remove(e,t);this._addToOperationQueue(r,{type:1,value:{start:e,end:t}});let i=await r;return this._segmentInventory.synchronizeBuffered(i),i}async signalSegmentComplete(e){if(this._pendingOperations.length>0){let{promise:t}=this._pendingOperations[this._pendingOperations.length-1];this._addToOperationQueue(t,{type:2,value:e});try{await t}catch(r){}}this._segmentInventory.completeSegment(e)}getPendingOperations(){return this._pendingOperations.map(e=>e.operation)}dispose(){c.debug(\"HTSB: Disposing TextSegmentSink\"),this._sender.reset()}_addToOperationQueue(e,t){let r={operation:t,promise:e};this._pendingOperations.push(r);let i=()=>{let a=this._pendingOperations.indexOf(r);a>=0&&this._pendingOperations.splice(a,1)};e.then(i,i)}};function Kd(n){if(b.CURRENT_ENV!==b.PRODUCTION&&(typeof n!=\"object\"||n===null||typeof n.data!=\"string\"||typeof n.type!=\"string\"||n.language!==void 0&&typeof n.language!=\"string\"||n.start!==void 0&&typeof n.start!=\"number\"||n.end!==void 0&&typeof n.end!=\"number\"))throw new Error(\"Invalid format given to a TextSegmentSink\")}b.CURRENT_ENV===b.DEV&&(jd=function(e){function t(r){}});var jd;var ms=Cn;function kt(n,e){let t;return new Promise((r,i)=>{if(n.cancellationError!==null)return i(n.cancellationError);let a=!1;t=e(function(u){n.deregister(o),a=!0,r(u)},function(u){n.deregister(o),a=!0,i(u)}),a||n.register(o);function o(s){t!==void 0&&t(),i(s)}})}var Yd=[\"audio\",\"video\",\"text\"],An=class n{static isNative(e){return cs(e)}constructor(e,t,r){this._mediaSource=e,this._textInterface=r,this._hasVideo=t,this._initializedSegmentSinks={},this._onNativeBufferAddedOrDisabled=[]}getBufferTypes(){let e=this.getNativeBufferTypes();return this._textInterface!==null&&e.push(\"text\"),e}getNativeBufferTypes(){return this._hasVideo?[\"video\",\"audio\"]:[\"audio\"]}getStatus(e){let t=this._initializedSegmentSinks[e];return t===void 0?{type:\"uninitialized\"}:t===null?{type:\"disabled\"}:{type:\"initialized\",value:t}}waitForUsableBuffers(e){return this._areNativeBuffersUsable()?Promise.resolve():kt(e,t=>{let r,i=()=>{let a=this._onNativeBufferAddedOrDisabled.indexOf(r);a>=0&&this._onNativeBufferAddedOrDisabled.splice(a,1)};return r=()=>{this._areNativeBuffersUsable()&&(i(),t())},this._onNativeBufferAddedOrDisabled.push(r),i})}disableSegmentSink(e){let t=this._initializedSegmentSinks[e];if(t===null){c.warn(`SBS: The ${e} SegmentSink was already disabled.`);return}if(t!==void 0)throw new Error(\"Cannot disable an active SegmentSink.\");this._initializedSegmentSinks[e]=null,n.isNative(e)&&this._onNativeBufferAddedOrDisabled.forEach(r=>r())}createSegmentSink(e,t){let r=this._initializedSegmentSinks[e];if(cs(e)){if(!R(r))return r instanceof Mr&&r.codec!==t?c.warn(\"SB: Reusing native SegmentSink with codec\",r.codec,\"for codec\",t):c.info(\"SB: Reusing native SegmentSink with codec\",t),r;c.info(\"SB: Adding native SegmentSink with codec\",t);let a=e===\"audio\"?\"audio\":\"video\",o=new Mr(a,t,this._mediaSource);return this._initializedSegmentSinks[e]=o,this._onNativeBufferAddedOrDisabled.forEach(s=>s()),o}if(!R(r))return c.info(\"SB: Reusing a previous custom SegmentSink for the type\",e),r;let i;if(e===\"text\"){if(c.info(\"SB: Creating a new text SegmentSink\"),this._textInterface===null)throw new Error(\"HTML Text track feature not activated\");return i=new ms(this._textInterface),this._initializedSegmentSinks.text=i,i}throw c.error(\"SB: Unknown buffer type:\",e),new j(\"BUFFER_TYPE_UNKNOWN\",\"The player wants to create a SegmentSink of an unknown type.\")}disposeSegmentSink(e){let t=this._initializedSegmentSinks[e];if(R(t)){c.warn(\"SB: Trying to dispose a SegmentSink that does not exist\");return}c.info(\"SB: Aborting SegmentSink\",e),t.dispose(),delete this._initializedSegmentSinks[e]}disposeAll(){Yd.forEach(e=>{this.getStatus(e).type===\"initialized\"&&this.disposeSegmentSink(e)})}_areNativeBuffersUsable(){let e=this.getNativeBufferTypes();return!(e.some(i=>this._initializedSegmentSinks[i]===void 0)||e.every(i=>this._initializedSegmentSinks[i]===null))}};function cs(n){return n===\"audio\"||n===\"video\"}var It=An;function kn(n,e){return kt(e,t=>{let r=setTimeout(()=>t(),n);return()=>clearTimeout(r)})}var xn=class extends oe{constructor(e,t,r,i){super(),this._content=e,this._currentCanceller=null,this._downloadQueue=t,this._initSegmentRequest=null,this._mediaSegmentRequest=null,this._segmentFetcher=r,this._initSegmentInfoRef=new G(void 0),this._mediaSegmentAwaitingInitMetadata=null,i||this._initSegmentInfoRef.setValue(null)}getRequestedInitSegment(){return this._initSegmentRequest===null?null:this._initSegmentRequest.segment}getRequestedMediaSegment(){return this._mediaSegmentRequest===null?null:this._mediaSegmentRequest.segment}start(){this._currentCanceller===null&&(this._currentCanceller=new W,this._downloadQueue.onUpdate(e=>{let{segmentQueue:t}=e;if(t.length>0&&t[0].segment.id===this._mediaSegmentAwaitingInitMetadata)return;let r=this._mediaSegmentRequest;if(t.length===0){if(r===null)return;c.debug(\"Stream: no more media segment to request. Cancelling queue.\",this._content.adaptation.type),this._restartMediaSegmentDownloadingQueue();return}else if(r===null){c.debug(\"Stream: Media segments now need to be requested. Starting queue.\",this._content.adaptation.type,t.length),this._restartMediaSegmentDownloadingQueue();return}else{let i=t[0];if(r.segment.id!==i.segment.id){c.debug(\"Stream: Next media segment changed, cancelling previous\",this._content.adaptation.type),this._restartMediaSegmentDownloadingQueue();return}r.priority!==i.priority&&(c.debug(\"Stream: Priority of next media segment changed, updating\",this._content.adaptation.type,r.priority,i.priority),this._segmentFetcher.updatePriority(r.request,i.priority));return}},{emitCurrentValue:!0,clearSignal:this._currentCanceller.signal}),this._downloadQueue.onUpdate(e=>{var r;let t=this._initSegmentRequest;if(e.initSegment!==null&&t!==null){e.initSegment.priority!==t.priority&&this._segmentFetcher.updatePriority(t.request,e.initSegment.priority);return}else if(((r=e.initSegment)==null?void 0:r.segment.id)===(t==null?void 0:t.segment.id))return;e.initSegment===null&&c.debug(\"Stream: no more init segment to request. Cancelling queue.\",this._content.adaptation.type),this._restartInitSegmentDownloadingQueue(e.initSegment)},{emitCurrentValue:!0,clearSignal:this._currentCanceller.signal}))}stop(){var e;(e=this._currentCanceller)==null||e.cancel(),this._currentCanceller=null}_restartMediaSegmentDownloadingQueue(){this._mediaSegmentRequest!==null&&this._mediaSegmentRequest.canceller.cancel();let{segmentQueue:e}=this._downloadQueue.getValue(),t=e[0],r=i=>{if(this._currentCanceller!==null&&this._currentCanceller.isUsed()){this._mediaSegmentRequest=null;return}if(i===void 0){this._mediaSegmentRequest=null,this.trigger(\"emptyQueue\",null);return}let a=new W,o=this._currentCanceller===null?N:a.linkToSignal(this._currentCanceller.signal),{segment:s,priority:u}=i,d=H({segment:s},this._content),f=!1,m=!1;a.signal.register(()=>{this._mediaSegmentRequest=null,!f&&(this._mediaSegmentAwaitingInitMetadata===s.id&&(this._mediaSegmentAwaitingInitMetadata=null),f=!0,m=!1)});let l=h=>{he(h.segmentType===\"media\",\"Should have loaded a media segment.\"),this.trigger(\"parsedMediaSegment\",H({},h,{segment:s}))},p=()=>{let h=this._downloadQueue.getValue().segmentQueue;if(h.length===0){f=!0,this.trigger(\"emptyQueue\",null);return}else h[0].segment.id===s.id&&h.shift();f=!0,r(h[0])},g=this._segmentFetcher.createRequest(d,u,{onRetry:h=>{this.trigger(\"requestRetry\",{segment:s,error:h})},beforeInterrupted(){c.info(\"Stream: segment request interrupted temporarly.\",s.id,s.time)},onChunk:h=>{let I=this._initSegmentInfoRef.getValue();I!==void 0?l(h(I!=null?I:void 0)):(m=!0,this._initSegmentInfoRef.waitUntilDefined(y=>{l(h(y!=null?y:void 0))},{clearSignal:a.signal}))},onAllChunksReceived:()=>{m?(this._mediaSegmentAwaitingInitMetadata=s.id,this._initSegmentInfoRef.waitUntilDefined(()=>{this._mediaSegmentAwaitingInitMetadata=null,m=!1,this.trigger(\"fullyLoadedSegment\",s)},{clearSignal:a.signal})):this.trigger(\"fullyLoadedSegment\",s)},beforeEnded:()=>{o(),this._mediaSegmentRequest=null,m?this._initSegmentInfoRef.waitUntilDefined(p,{clearSignal:a.signal}):p()}},a.signal);g.catch(h=>{o(),f||(f=!0,this.stop(),this.trigger(\"error\",h))}),this._mediaSegmentRequest={segment:s,priority:u,request:g,canceller:a}};r(t)}_restartInitSegmentDownloadingQueue(e){if(this._currentCanceller!==null&&this._currentCanceller.isUsed()||(this._initSegmentRequest!==null&&this._initSegmentRequest.canceller.cancel(),e===null))return;let t=new W,r=this._currentCanceller===null?N:t.linkToSignal(this._currentCanceller.signal),{segment:i,priority:a}=e,o=H({segment:i},this._content),s=!1,u=this._segmentFetcher.createRequest(o,a,{onRetry:d=>{this.trigger(\"requestRetry\",{segment:i,error:d})},beforeInterrupted:()=>{c.info(\"Stream: init segment request interrupted temporarly.\",i.id)},beforeEnded:()=>{r(),this._initSegmentRequest=null,s=!0},onChunk:d=>{var m;let f=d(void 0);he(f.segmentType===\"init\",\"Should have loaded an init segment.\"),this.trigger(\"parsedInitSegment\",H({},f,{segment:i})),f.segmentType===\"init\"&&this._initSegmentInfoRef.setValue((m=f.initTimescale)!=null?m:null)},onAllChunksReceived:()=>{this.trigger(\"fullyLoadedSegment\",i)}},t.signal);u.catch(d=>{r(),s||(s=!0,this.stop(),this.trigger(\"error\",d))}),t.signal.register(()=>{this._initSegmentRequest=null,!s&&(s=!0)}),this._initSegmentRequest={segment:i,priority:a,request:u,canceller:t}}};function ra(n,e,t,r,i){let{period:a,adaptation:o,representation:s}=n,u=Qd(i,e);if(u===null){if(t===null){if(r&&a.end!==void 0&&e.end>=a.end)return{start:void 0,end:null};let m=s.index.checkDiscontinuity(e.start);if(m!==null)return{start:void 0,end:m}}return null}let d=i[u];if(d.bufferedStart!==void 0&&d.bufferedStart>e.start&&(t===null||d.infos.segment.end<=t)){let m=d.bufferedStart;return!r&&s.index.awaitSegmentBetween(e.start,m)!==!1?null:(c.debug(\"RS: current discontinuity encountered\",o.type,d.bufferedStart),{start:void 0,end:m})}let f=$d(i,e,u+1);if(f!==null){let m=i[f-1],l=i[f];if(t===null||l.infos.segment.end<=t){if(!r&&s.index.awaitSegmentBetween(m.infos.segment.end,l.infos.segment.time)!==!1)return null;let p=m.bufferedEnd,g=l.bufferedStart;return c.debug(\"RS: future discontinuity encountered\",o.type,p,g),{start:p,end:g}}}if(t===null){if(r&&a.end!==void 0){if(e.end<a.end)return null;let m=Xd(i,a.end);if(m!==null){let l=i[m];if(l.bufferedEnd!==void 0&&l.bufferedEnd<a.end)return c.debug(\"RS: discontinuity encountered at the end of the current period\",o.type,l.bufferedEnd,a.end),{start:l.bufferedEnd,end:null}}}if(a.end!==void 0&&e.end>=a.end)return null;for(let m=i.length-1;m>=0;m--){let l=i[m];if(l.bufferedStart===void 0)break;if(l.bufferedStart<e.end){if(l.bufferedEnd!==void 0&&l.bufferedEnd<e.end){let p=s.index.checkDiscontinuity(e.end);if(p!==null)return{start:l.bufferedEnd,end:p}}return null}}}return null}function Qd(n,e){for(let t=0;t<n.length;t++){let r=n[t];if(r.bufferedStart===void 0||r.bufferedEnd===void 0||r.bufferedStart>=e.end)return null;if(r.bufferedEnd>e.start)return t}return null}function $d(n,e,t){if(t<=0)return c.error(\"RS: Asked to check a discontinuity before the first chunk.\"),null;for(let r=t;r<n.length;r++){let i=n[r],a=n[r-1];if(i.bufferedStart===void 0||a.bufferedEnd===void 0||i.bufferedStart>=e.end)return null;if(i.bufferedStart-a.bufferedEnd>0)return r}return null}function Xd(n,e){for(let t=n.length-1;t>=0;t--){let r=n[t];if(r.bufferedStart===void 0)return null;if(r.bufferedStart<e)return t}return null}function ia({bufferedSegments:n,content:e,currentPlaybackTime:t,fastSwitchThreshold:r,getBufferedHistory:i,neededRange:a,segmentsBeingPushed:o,maxBufferSize:s}){let{adaptation:u,representation:d}=e,f=Zd(n,o,s),m=d.index.getSegments(a.start,a.end-a.start),l=n.filter(T=>!ps(T.infos,e,t,r)).filter((T,C,P)=>{let M=C===0?null:P[C-1],_=C>=P.length-1?null:P[C+1],A=null;if(tl(T,M,a.start)){if(A=i(T.infos),rl(A,T.bufferedStart))return!1;c.debug(\"Stream: skipping segment gc-ed at the start\",T.start,T.bufferedStart)}if(nl(T,_,a.end)){if(A=A!=null?A:i(T.infos),il(A,T.bufferedEnd))return!1;c.debug(\"Stream: skipping segment gc-ed at the end\",T.end,T.bufferedEnd)}return!0}),{MINIMUM_SEGMENT_SIZE:p,MIN_BUFFER_AHEAD:g}=U.getCurrent(),h=!1,I=Math.min(1/60,p),y=!1,E=[];return{segmentsToLoad:m.filter(T=>{let C=H({segment:T},e);if(o.length>0&&o.some(D=>Xe(C,D)))return!1;let{duration:P,time:M,end:_}=T;if(T.isInit)return!0;if(h)return E.push(T),!1;if(T.complete&&P<p||o.length>0&&o.some(D=>{if(D.period.id!==e.period.id||D.adaptation.id!==e.adaptation.id)return!1;let{segment:w}=D;return w.time-I>M||w.end+I<_?!1:!ps(D,C,t,r)}))return!1;for(let k=0;k<l.length;k++){let D=l[k];if(D.infos.period.id===e.period.id){let O=D.infos.segment;if(M-O.time>-I&&O.end-_>-I)return!1}}let A=P*e.representation.bitrate;if(f-A<0&&(y=!0,M>a.start+g))return h=!0,E.push(T),!1;let x=i(C);if(x.length>1){let k=x[x.length-1],D=x[x.length-2];if(k.buffered===null&&D.buffered===null)return c.warn(\"Stream: Segment GCed multiple times in a row, ignoring it.\",\"If this happens a lot and lead to unpleasant experience, please check your device's available memory. If it's low when this message is emitted, you might want to update the RxPlayer's settings (`maxBufferAhead`, `maxVideoBufferSize` etc.) so less memory is used by regular media data buffering.\"+u.type,d.id,T.time),!1}for(let k=0;k<l.length;k++){let D=l[k];if(D.end+I>M){let w=D.start>M+I||Jd(l,k).end<_-I;return w&&(f-=A),w}}return f-=A,!0}),segmentsOnHold:E,isBufferFull:y}}function Zd(n,e,t){let r=t*8e3;return r-=e.reduce((i,a)=>{let{bitrate:o}=a.representation,{duration:s}=a.segment;return i+o*s},0),n.reduce((i,a)=>a.chunkSize!==void 0?i-a.chunkSize*8:i,r)}function Jd(n,e){let t=e+1,{MINIMUM_SEGMENT_SIZE:r}=U.getCurrent(),i=Math.min(1/60,r);for(;t<n.length-1&&n[t-1].end+i>n[t].start;)t++;return t--,n[t]}function ps(n,e,t,r){let{CONTENT_REPLACEMENT_PADDING:i}=U.getCurrent();if(n.period.id!==e.period.id)return!1;let{segment:a}=n;return a.time<t+i?!1:n.adaptation.id!==e.adaptation.id?!0:el(n.representation,e.representation,r)}function el(n,e,t){let r=n.bitrate,{BITRATE_REBUFFERING_RATIO:i}=U.getCurrent();if(t===void 0){let a=r*i;return e.bitrate>a}return r<t&&e.bitrate>r}function tl(n,e,t){let{MAX_TIME_MISSING_FROM_COMPLETE_SEGMENT:r}=U.getCurrent();return n.bufferedStart===void 0||e!==null&&e.bufferedEnd!==void 0&&n.bufferedStart-e.bufferedEnd<.1?!1:t<n.bufferedStart&&n.bufferedStart-n.start>r?(c.info(\"Stream: The start of the wanted segment has been garbage collected\",n.start,n.bufferedStart),!0):!1}function nl(n,e,t){let{MAX_TIME_MISSING_FROM_COMPLETE_SEGMENT:r}=U.getCurrent();return n.bufferedEnd===void 0||e!==null&&e.bufferedStart!==void 0&&e.bufferedStart-n.bufferedEnd<.1?!1:t>n.bufferedEnd&&n.end-n.bufferedEnd>r?(c.info(\"Stream: The end of the wanted segment has been garbage collected\",n.end,n.bufferedEnd),!0):!1}function rl(n,e){var o,s;if(n.length<2)return!0;let r=(o=n[n.length-1].buffered)==null?void 0:o.start;if(e!==void 0&&r!==void 0&&e-r>.05)return!0;let a=(s=n[n.length-2].buffered)==null?void 0:s.start;return a===void 0||r===void 0?!0:Math.abs(a-r)>.01}function il(n,e){var o,s;if(n.length<2)return!0;let r=(o=n[n.length-1].buffered)==null?void 0:o.end;if(e!==void 0&&r!==void 0&&r-e>.05)return!0;let a=(s=n[n.length-2].buffered)==null?void 0:s.end;return a===void 0||r===void 0?!0:Math.abs(a-r)>.01}function Mn(n,e){let t=n-e,{SEGMENT_PRIORITIES_STEPS:r}=U.getCurrent();for(let i=0;i<r.length;i++)if(t<r[i])return i;return r.length}function aa(n,e,t,r,i,a,o){var _,A,x;let{representation:s}=n,u=(A=(_=t.getIsPaused())!=null?_:t.getReference().getValue().paused.pending)!=null?A:t.getReference().getValue().paused.last,d=(x=t.getPlaybackRate())!=null?x:t.getReference().getValue().speed,f=e;(u===void 0||d===void 0||u||d<=0)&&(f-=.1);let m=al(n,f,i),l=s.index.shouldRefresh(m.start,m.end),p=o.getPendingOperations().filter(k=>k.type===2).map(k=>k.value),g=sl({start:Math.max(m.start-.5,0),end:m.end+.5},o.getLastKnownInventory()),h=t.getCurrentTime();h===void 0&&(h=t.getReference().getValue().position.getWanted());let I=o.getSegmentHistory.bind(o),{segmentsToLoad:y,segmentsOnHold:E,isBufferFull:v}=ia({content:n,bufferedSegments:g,currentPlaybackTime:h,fastSwitchThreshold:r,getBufferedHistory:I,neededRange:m,segmentsBeingPushed:p,maxBufferSize:a}),T=y.map(k=>({priority:Mn(k.time,f),segment:k})),C=s.index.isInitialized()&&!s.index.isStillAwaitingFutureSegments()&&m.hasReachedPeriodEnd&&T.length===0&&E.length===0,P=null;return p.length>0&&(P=Math.min(...p.map(k=>k.segment.time))),E.length>0&&(P=P!==null?Math.min(P,E[0].time):E[0].time),T.length>0&&(P=P!==null?Math.min(P,T[0].segment.time):T[0].segment.time),{imminentDiscontinuity:ra(n,m,P,C,g),hasFinishedLoading:C,neededSegments:T,isBufferFull:v,shouldRefreshManifest:l}}function al(n,e,t){var m;let r,{manifest:i,period:a,representation:o}=n,s=o.index.getLastAvailablePosition(),u=o.index;!R(s)&&It.isNative(n.adaptation.type)&&e>=s&&u.isInitialized()&&!u.isStillAwaitingFutureSegments()&&ol(i,a,e)?r=s-1:r=e-.1;let d=r+t,f;return!o.index.isInitialized()||o.index.isStillAwaitingFutureSegments()||a.end===void 0?f=!1:s===void 0?f=d>=a.end:s===null?f=!0:f=d>=s,{start:Math.max(r,a.start),end:Math.min(d,(m=a.end)!=null?m:1/0),hasReachedPeriodEnd:f}}function ol(n,e,t){var i;let r=n.getPeriodAfter(e);return e.containsTime(t,r)&&n.isLastPeriodKnown&&e.id===((i=n.periods[n.periods.length-1])==null?void 0:i.id)}function sl(n,e){let{MINIMUM_SEGMENT_SIZE:t}=U.getCurrent(),r=Math.max(1/60,t),i=n.start+r,a=n.end-r,o=[];for(let s=e.length-1;s>=0;s--){let u=e[s],{representation:d}=u.infos;if(u.status===1&&d.decipherable!==!1&&d.isSupported!==!1){let f=u.infos.segment,m=f.time/f.timescale;((f.complete?m+f.duration/f.timescale:u.end)>i&&m<a||u.end>i&&u.start<a)&&o.unshift(u)}}return o}function oa(n){return new Promise(e=>{setTimeout(e,n)})}async function On(n,e,t,r,i){try{return await e.pushChunk(t)}catch(a){if(i.isCancelled()&&a instanceof ie)throw a;if(!(a instanceof Ce)||!a.isBufferFull){let u=a instanceof Error?a.toString():\"An unknown error happened when pushing content\";throw new j(\"BUFFER_APPEND_ERROR\",u,{tracks:[dt(t.inventoryInfos.adaptation)]})}let{position:o}=n.getReference().getValue(),s=o.getWanted();try{c.warn(\"Stream: Running garbage collector\");let u=Math.max(s-5,0),d=s+r.getValue()+12;if(await e.removeBuffer(0,u),await e.removeBuffer(d,Number.MAX_VALUE),await oa(200),i.cancellationError!==null)throw i.cancellationError;return await e.pushChunk(t)}catch(u){if(u instanceof ie)throw u;let d=u instanceof Error?u.toString():\"Could not clean the buffer\";throw new j(\"BUFFER_FULL_ERROR\",d,{tracks:[dt(t.inventoryInfos.adaptation)]})}}}async function sa({playbackObserver:n,content:e,initSegmentUniqueId:t,segment:r,segmentSink:i,bufferGoal:a},o){if(o.cancellationError!==null)throw o.cancellationError;let s=e.representation.getMimeTypeString(),u={initSegmentUniqueId:t,chunk:null,timestampOffset:0,appendWindow:[void 0,void 0],codec:s},d=H({segment:r,chunkSize:void 0,start:0,end:0},e),f=await On(n,i,{data:u,inventoryInfos:d},a,o);return{content:e,segment:r,buffered:f}}async function ua({playbackObserver:n,bufferGoal:e,content:t,initSegmentUniqueId:r,parsedSegment:i,segment:a,segmentSink:o},s){var P,M;if(i.chunkData===null)return null;if(s.cancellationError!==null)throw s.cancellationError;let{chunkData:u,chunkInfos:d,chunkOffset:f,chunkSize:m,appendWindow:l}=i,p=t.representation.getMimeTypeString(),{APPEND_WINDOW_SECURITIES:g}=U.getCurrent(),h=[l[0]!==void 0?Math.max(0,l[0]-g.START):void 0,l[1]!==void 0?l[1]+g.END:void 0],I={initSegmentUniqueId:r,chunk:u,timestampOffset:f,appendWindow:h,codec:p},y=(P=d==null?void 0:d.time)!=null?P:a.time,E=(M=d==null?void 0:d.duration)!=null?M:a.duration,v=y+E;h[0]!==void 0&&(y=Math.max(y,h[0])),h[1]!==void 0&&(v=Math.min(v,h[1]));let T=H({segment:a,chunkSize:m,start:y,end:v},t),C=await On(n,o,{data:I,inventoryInfos:T},e,s);return{content:t,segment:a,buffered:C}}function da({content:n,options:e,playbackObserver:t,segmentSink:r,segmentFetcher:i,terminate:a},o,s){let{period:u,adaptation:d,representation:f}=n,{bufferGoal:m,maxBufferSize:l,drmSystemId:p,fastSwitchThreshold:g}=e,h=d.type,I=new W;I.linkToSignal(s);let y=new W;y.linkToSignal(I.signal);let E={segment:f.index.getInitSegment(),uniqueId:null,isLoaded:!1};I.signal.register(()=>{E.uniqueId!==null&&r.freeInitSegment(E.uniqueId)});let v=new G({initSegment:null,segmentQueue:[]},y.signal),T=E.segment!==null;T||(E.isLoaded=!0);let C=!1;if(p!==void 0){let x=f.getEncryptionData(p);if(x.length>0&&x.every(k=>k.keyIds!==void 0)&&(C=!0,o.encryptionDataEncountered(x.map(k=>H({content:n},k))),I.isUsed()))return}let P=new xn(n,v,i,T);P.addEventListener(\"error\",x=>{y.signal.isCancelled()||(I.cancel(),o.error(x))}),P.addEventListener(\"parsedInitSegment\",_),P.addEventListener(\"parsedMediaSegment\",_),P.addEventListener(\"emptyQueue\",M),P.addEventListener(\"requestRetry\",x=>{if(o.warning(x.error),y.signal.isCancelled())return;let k=x.segment,{index:D}=f;D.isSegmentStillAvailable(k)===!1?M():D.canBeOutOfSyncError(x.error,k)&&o.manifestMightBeOufOfSync()}),P.addEventListener(\"fullyLoadedSegment\",x=>{r.signalSegmentComplete(H({segment:x},n)).catch(A)}),P.start(),y.signal.register(()=>{P.removeEventListener(),P.stop()}),t.listen(M,{includeLastObservation:!1,clearSignal:y.signal}),n.manifest.addEventListener(\"manifestUpdate\",M,y.signal),m.onUpdate(M,{emitCurrentValue:!1,clearSignal:y.signal}),l.onUpdate(M,{emitCurrentValue:!1,clearSignal:y.signal}),a.onUpdate(M,{emitCurrentValue:!1,clearSignal:y.signal}),M();return;function M(){if(y.isUsed())return;let x=t.getReference().getValue(),k=x.position.getWanted(),D=aa(n,k,t,g.getValue(),m.getValue(),l.getValue(),r),{neededSegments:w}=D,O=null;if(f.index.isInitialized()){if(w.length>0&&!E.isLoaded&&E.segment!==null){let q=w[0].priority;O={segment:E.segment,priority:q}}}else if(E.segment===null)c.warn(\"Stream: Uninitialized index without an initialization segment\");else if(E.isLoaded)c.warn(\"Stream: Uninitialized index with an already loaded initialization segment\");else{let q=x.position.getWanted();O={segment:E.segment,priority:Mn(u.start,q)}}let B=a.getValue();if(B===null)v.setValue({initSegment:O,segmentQueue:w});else if(B.urgent){c.debug(\"Stream: Urgent switch, terminate now.\",h),v.setValue({initSegment:null,segmentQueue:[]}),v.finish(),y.cancel(),o.terminating();return}else{let q=w[0],J=P.getRequestedInitSegment(),$=P.getRequestedMediaSegment(),V=$===null||q===void 0||$.id!==q.segment.id?[]:[q],Y=J===null?null:O;if(v.setValue({initSegment:Y,segmentQueue:V}),V.length===0&&Y===null){c.debug(\"Stream: No request left, terminate\",h),v.finish(),y.cancel(),o.terminating();return}}if(o.streamStatusUpdate({period:u,position:x.position.getWanted(),bufferType:h,imminentDiscontinuity:D.imminentDiscontinuity,isEmptyStream:!1,hasFinishedLoading:D.hasFinishedLoading,neededSegments:D.neededSegments}),y.signal.isCancelled())return;let{UPTO_CURRENT_POSITION_CLEANUP:z}=U.getCurrent();if(D.isBufferFull){let q=Math.max(0,k-z);q>0&&r.removeBuffer(0,q).catch(A)}D.shouldRefreshManifest&&o.needsManifestRefresh()}function _(x){if(!I.isUsed()){for(let k of x.protectionData)f.addProtectionData(k.initDataType,k.keyId,k.initData);if(!C){let k=f.getAllEncryptionData();if(k.length>0&&(o.encryptionDataEncountered(k.map(D=>H({content:n},D))),C=!0,I.isUsed()))return}if(x.segmentType===\"init\"){if(!f.index.isInitialized()&&x.segmentList!==void 0&&f.index.initialize(x.segmentList),E.isLoaded=!0,x.initializationData!==null){let k=f.uniqueId;E.uniqueId=k,r.declareInitSegment(k,x.initializationData),sa({playbackObserver:t,bufferGoal:m,content:n,initSegmentUniqueId:k,segment:x.segment,segmentData:x.initializationData,segmentSink:r},I.signal).then(D=>{D!==null&&o.addedSegment(D)}).catch(A)}M();return}else{let{inbandEvents:k,predictedSegments:D,needsManifestRefresh:w}=x;if(D!==void 0&&f.index.addPredictedSegments(D,x.segment),w===!0&&(o.needsManifestRefresh(),I.isUsed())||k!==void 0&&k.length>0&&(o.inbandEvent(k),I.isUsed()))return;let O=E.uniqueId;ua({playbackObserver:t,bufferGoal:m,content:n,initSegmentUniqueId:O,parsedSegment:x,segment:x.segment,segmentSink:r},I.signal).then(B=>{B!==null&&o.addedSegment(B)}).catch(A)}}}function A(x){I.isUsed()&&x instanceof ie||(I.cancel(),o.error(x))}}var gs=da;function la(n,e,t,r,i){var l,p,g,h;if(t.switchingMode===\"lazy\")return{type:\"continue\",value:void 0};let a=r.getLastKnownInventory(),o=[];for(let I of a)I.infos.period.id===n.id&&(I.infos.adaptation.id!==e.id||!se(t.representationIds,I.infos.representation.id))&&zt(o,{start:(l=I.bufferedStart)!=null?l:I.start,end:(p=I.bufferedEnd)!=null?p:I.end});let s=r.getPendingOperations();for(let I of s)if(I.type===0){let y=I.value.inventoryInfos;if(y.period.id===n.id&&(y.adaptation.id!==e.id||!se(t.representationIds,y.representation.id))){let E=y.segment.time,v=E+y.segment.duration;zt(o,{start:E,end:v})}}if(o.length===0)return{type:\"continue\",value:void 0};if(t.switchingMode===\"reload\"){let I=i.getReadyState();if(I===void 0||I>1)return{type:\"needs-reload\",value:void 0}}let u=t.switchingMode===\"direct\",d=[],f=Wt(a,n);if(f!==null&&(f.bufferedEnd===void 0||n.start-f.bufferedEnd<1)&&d.push({start:0,end:n.start+1}),!u){let{ADAP_REP_SWITCH_BUFFER_PADDINGS:I}=U.getCurrent(),y=e.type,E=(g=I[y].before)!=null?g:0,v=(h=I[y].after)!=null?h:0,T=i.getCurrentTime();T===void 0&&(T=i.getReference().getValue().position.getPolled()),d.push({start:T-E,end:T+v})}if(n.end!==void 0){let I=Vt(a,n);I!==null&&(I.bufferedStart===void 0||I.bufferedStart-n.end<1)&&d.push({start:n.end-1,end:Number.MAX_VALUE})}let m=Ar(o,d);return m.length===0?{type:\"continue\",value:void 0}:u?{type:\"flush-buffer\",value:m}:{type:\"clean-buffer\",value:m}}function fa({playbackObserver:n,content:e,options:t,representationEstimator:r,segmentSink:i,segmentFetcherCreator:a,wantedBufferAhead:o,maxVideoBufferSize:s},u,d){let{manifest:f,period:m,adaptation:l}=e,p=new W;p.linkToSignal(d);let g=new Map,h=new G(null,p.signal),I,y=e.representations.getValue().representationIds,E=e.adaptation.representations.filter(w=>se(y,w.id)&&w.decipherable!==!1&&w.isSupported!==!1),v=new G(E,p.signal),{estimates:T,callbacks:C}=r({manifest:f,period:m,adaptation:l},h,v,n,p.signal),P=a.createSegmentFetcher(l.type,{onRequestBegin:C.requestBegin,onRequestEnd:C.requestEnd,onProgress:C.requestProgress,onMetrics:C.metrics}),M=new G(0);T.onUpdate(({bitrate:w,knownStableBitrate:O})=>{t.enableFastSwitching&&M.setValueIfChanged(O),!(w===void 0||w===I)&&(I=w,c.debug(`Stream: new ${l.type} bitrate estimate`,w),u.bitrateEstimateChange({type:l.type,bitrate:w}))},{emitCurrentValue:!0,clearSignal:p.signal});let _;e.representations.onUpdate(w=>{_!==void 0&&_.cancel();let O=e.representations.getValue().representationIds,B=e.adaptation.representations.filter(z=>se(O,z.id));v.setValueIfChanged(B),_=new W,_.linkToSignal(p.signal),A(w,_.signal).catch(z=>{(_==null?void 0:_.isUsed())===!0&&W.isCancellationError(z)||(p.cancel(),u.error(z))})},{clearSignal:p.signal,emitCurrentValue:!0});return;async function A(w,O){let B=la(m,l,w,i,n);switch(B.type){case\"continue\":break;case\"needs-reload\":return Ct(()=>{n.listen(()=>{if(O.isCancelled())return;let{DELTA_POSITION_AFTER_RELOAD:z}=U.getCurrent(),q=z.bitrateSwitch;return u.waitingMediaSourceReload({bufferType:l.type,period:m,timeOffset:q,stayInPeriod:!0})},{includeLastObservation:!0,clearSignal:O})});case\"flush-buffer\":case\"clean-buffer\":for(let z of B.value)if(await i.removeBuffer(z.start,z.end),O.isCancelled())return;if(B.type===\"flush-buffer\"&&(u.needsBufferFlush(),O.isCancelled()))return;break;default:ze(B)}x(O)}function x(w){let O=new W;O.linkToSignal(w);let{representation:B}=T.getValue();if(B===null)return;let z=new G(null,O.signal);T.onUpdate($=>{if(!($.representation===null||$.representation.id===B.id))return $.urgent?(c.info(\"Stream: urgent Representation switch\",l.type),z.setValue({urgent:!0})):(c.info(\"Stream: slow Representation switch\",l.type),z.setValue({urgent:!1}))},{clearSignal:O.signal,emitCurrentValue:!0});let q={type:l.type,adaptation:l,period:m,representation:B};if(h.setValue(B),p.isUsed()||(u.representationChange(q),p.isUsed()))return;let J={streamStatusUpdate:u.streamStatusUpdate,encryptionDataEncountered:u.encryptionDataEncountered,manifestMightBeOufOfSync:u.manifestMightBeOufOfSync,needsManifestRefresh:u.needsManifestRefresh,inbandEvent:u.inbandEvent,warning:u.warning,error($){p.cancel(),u.error($)},addedSegment($){C.addedSegment($)},terminating(){if(!O.isUsed())return O.cancel(),x(w)}};k(B,z,J,w)}function k(w,O,B,z){let q=new W;q.linkToSignal(z);let J=Qt(o,Y=>Y*D(w),q.signal),$=l.type===\"video\"?s:new G(1/0);c.info(\"Stream: changing representation\",l.type,w.id,w.bitrate);let V=H({},B,{error(Y){var me;let X=ge(Y,{defaultCode:\"NONE\",defaultReason:\"Unknown `RepresentationStream` error\"});if(X.code!==\"BUFFER_FULL_ERROR\")B.error(Y);else{let ce=o.getValue(),Ie=((me=g.get(w.id))!=null?me:1)*.7;if(Ie<=.05||ce*Ie<=2)throw X;g.set(w.id,Ie),kn(4e3,p.signal).then(()=>k(w,O,B,z)).catch(N)}},terminating(){q.cancel(),B.terminating()}});gs({playbackObserver:n,content:{representation:w,adaptation:l,period:m,manifest:f},segmentSink:i,segmentFetcher:P,terminate:O,options:{bufferGoal:J,maxBufferSize:$,drmSystemId:t.drmSystemId,fastSwitchThreshold:M}},V,z),f.addEventListener(\"manifestUpdate\",Y=>{for(let X of Y.updatedPeriods)if(X.period.id===m.id){for(let me of X.result.updatedAdaptations)if(me.adaptation===l.id){for(let ce of me.removedRepresentations)if(ce===w.id)return z.isCancelled()?void 0:u.waitingMediaSourceReload({bufferType:l.type,period:m,timeOffset:0,stayInPeriod:!0})}}else if(X.period.start>m.start)break},z)}function D(w){let O=g.get(w.id),B=O!==void 0?O:1;return O===void 0&&g.set(w.id,B),B}}var hs=fa;function ul(n,e){let[t,...r]=n.split(\";\"),[i,...a]=e.split(\";\");if(t!==i)return!1;let o=K(r,f=>Ye(f,\"codecs=\")),s=K(a,f=>Ye(f,\"codecs=\"));if(o===void 0||s===void 0)return!1;let u=o.substring(7),d=s.substring(7);return u.split(\".\")[0]===d.split(\".\")[0]}var Is=ul;function ma(n,e,t,r,i,a){var p,g,h,I;if(n.codec!==void 0&&a.onCodecSwitch===\"reload\"&&!dl(t,n.codec))return{type:\"needs-reload\",value:void 0};let o=n.getLastKnownInventory(),s=[];for(let y of o)y.infos.period.id===e.id&&y.infos.adaptation.id!==t.id&&zt(s,{start:(p=y.bufferedStart)!=null?p:y.start,end:(g=y.bufferedEnd)!=null?g:y.end});let u=n.getPendingOperations();for(let y of u)if(y.type===0){let E=y.value.inventoryInfos;if(E.period.id===e.id&&E.adaptation.id!==t.id){let v=E.segment.time,T=v+E.segment.duration;zt(s,{start:v,end:T})}}if(s.length===0)return{type:\"continue\",value:void 0};if(r===\"reload\"){let y=i.getReadyState();if(y===void 0||y>1)return{type:\"needs-reload\",value:void 0}}let d=r===\"direct\",f=[],m=Wt(o,e);if(m!==null&&(m.bufferedEnd===void 0||e.start-m.bufferedEnd<1)&&f.push({start:0,end:e.start+1}),!d){let y=t.type,{ADAP_REP_SWITCH_BUFFER_PADDINGS:E}=U.getCurrent(),v=(h=E[y].before)!=null?h:0,T=(I=E[y].after)!=null?I:0,C=i.getCurrentTime();C===void 0&&(C=i.getReference().getValue().position.getPolled()),f.push({start:C-v,end:C+T})}if(e.end!==void 0){let y=Vt(o,e);y!==null&&(y.bufferedStart===void 0||y.bufferedStart-e.end<1)&&f.push({start:e.end-1,end:Number.MAX_VALUE})}let l=Ar(s,f);return l.length===0?{type:\"continue\",value:void 0}:d&&t.type!==\"text\"?{type:\"flush-buffer\",value:l}:{type:\"clean-buffer\",value:l}}function dl(n,e){return n.representations.some(t=>t.isSupported===!0&&t.decipherable!==!1&&Is(t.getMimeTypeString(),e))}function ca({bufferType:n,content:e,garbageCollectors:t,playbackObserver:r,representationEstimator:i,segmentFetcherCreator:a,segmentSinksStore:o,options:s,wantedBufferAhead:u,maxVideoBufferSize:d},f,m){let{manifest:l,period:p}=e,g=new G(void 0,m);if(f.periodStreamReady({type:n,manifest:l,period:p,adaptationRef:g}),m.isCancelled())return;let h,I=!0;g.onUpdate(v=>{(async()=>{var w;if(v===void 0)return;let T=new W;if(T.linkToSignal(m),h==null||h.cancel(),h=T,v===null){c.info(`Stream: Set no ${n} Adaptation. P:`,p.start);let O=o.getStatus(n);if(O.type===\"initialized\"){if(c.info(`Stream: Clearing previous ${n} SegmentSink`),It.isNative(n))return E(0,!0,T.signal);{let B=(w=p.end)!=null?w:1/0;if(p.start>B)c.warn(\"Stream: Can't free buffer: period's start is after its end\");else if(await O.value.removeBuffer(p.start,B),T.isUsed())return}}else if(O.type===\"uninitialized\"&&(o.disableSegmentSink(n),T.isUsed()))return;return f.adaptationChange({type:n,adaptation:null,period:p}),T.isUsed()?void 0:bs(r,u,n,{period:p},f,T.signal)}let C=p.adaptations[n],P=K(C!=null?C:[],O=>O.id===v.adaptationId);if(P===void 0){h.cancel(),c.warn(\"Stream: Unfound chosen Adaptation choice\",v.adaptationId);return}let{DELTA_POSITION_AFTER_RELOAD:M}=U.getCurrent(),_=!1,A;if(I)A=0;else if(v.relativeResumingPosition!==void 0)A=v.relativeResumingPosition;else switch(_=!0,n){case\"audio\":A=M.trackSwitch.audio;break;case\"video\":A=M.trackSwitch.video;break;default:A=M.trackSwitch.other;break}if(I=!1,It.isNative(n)&&o.getStatus(n).type===\"disabled\")return E(A,!0,T.signal);l.addEventListener(\"manifestUpdate\",O=>{for(let B of O.updatedPeriods)if(B.period.id===p.id){for(let z of B.result.removedAdaptations)if(z.id===P.id)return E(A,!0,T.signal)}else if(B.period.start>p.start)break},h.signal);let{representations:x}=v;if(c.info(`Stream: Updating ${n} adaptation`,`A: ${P.id}`,`P: ${p.start}`),f.adaptationChange({type:n,adaptation:P,period:p}),T.isUsed())return;let k=ll(o,n,P),D=ma(k,p,P,v.switchingMode,r,s);if(D.type===\"needs-reload\")return E(A,!0,T.signal);if(await o.waitForUsableBuffers(T.signal),!T.isUsed()){if(D.type===\"flush-buffer\"||D.type===\"clean-buffer\"){for(let{start:O,end:B}of D.value)if(await k.removeBuffer(O,B),T.isUsed())return;if(D.type===\"flush-buffer\"&&(f.needsBufferFlush({relativeResumingPosition:A,relativePosHasBeenDefaulted:_}),T.isUsed()))return}t.get(k)(T.signal),y(P,x,k,T.signal)}})().catch(T=>{T instanceof ie||(h==null||h.cancel(),f.error(T))})},{clearSignal:m,emitCurrentValue:!0});function y(v,T,C,P){let M=ml(r,v.type);hs({content:{manifest:l,period:p,adaptation:v,representations:T},options:s,playbackObserver:M,representationEstimator:i,segmentSink:C,segmentFetcherCreator:a,wantedBufferAhead:u,maxVideoBufferSize:d},Le(_e({},f),{error:_}),P);function _(A){if(!It.isNative(n)){c.error(`Stream: ${n} Stream crashed. Aborting it.`,A instanceof Error?A:\"\"),o.disposeSegmentSink(n);let x=ge(A,{defaultCode:\"NONE\",defaultReason:\"Unknown `AdaptationStream` error\"});return f.warning(x),P.isCancelled()?void 0:bs(r,u,n,{period:p},f,P)}c.error(`Stream: ${n} Stream crashed. Stopping playback.`,A instanceof Error?A:\"\"),f.error(A)}}function E(v,T,C){Ct(()=>{r.listen(()=>{C.isCancelled()||f.waitingMediaSourceReload({bufferType:n,period:p,timeOffset:v,stayInPeriod:T})},{includeLastObservation:!0,clearSignal:C})})}}function ll(n,e,t){let r=n.getStatus(e);if(r.type===\"initialized\")return c.info(\"Stream: Reusing a previous SegmentSink for the type\",e),r.value;let i=fl(t);return n.createSegmentSink(e,i)}function fl(n){let e=n.representations.filter(t=>t.isSupported===!0&&t.decipherable!==!1);if(e.length===0)throw new j(\"NO_PLAYABLE_REPRESENTATION\",\"No Representation in the chosen \"+n.type+\" Adaptation can be played\",{tracks:[dt(n)]});return e[0].getMimeTypeString()}function ml(n,e){return n.deriveReadOnlyObserver(function(r,i){let a=new G(o(),i);return r.onUpdate(s,{clearSignal:i,emitCurrentValue:!1}),a;function o(){let u=r.getValue(),d=u.buffered[e],f=d!==null?Cr(d,u.position.getWanted()):0;return H({},u,{bufferGap:f,buffered:d})}function s(){a.setValue(o())}})}function bs(n,e,t,r,i,a){let{period:o}=r,s=!1;e.onUpdate(u,{emitCurrentValue:!1,clearSignal:a}),n.listen(u,{includeLastObservation:!1,clearSignal:a}),u();function u(){let d=n.getReference().getValue(),f=e.getValue(),m=d.position.getWanted();o.end!==void 0&&m+f>=o.end&&(c.debug('Stream: full \"empty\" AdaptationStream',t),s=!0),i.streamStatusUpdate({period:o,bufferType:t,imminentDiscontinuity:null,position:m,isEmptyStream:!0,hasFinishedLoading:s,neededSegments:[]})}}var Ss=ca;function Or(n,e){if(e.length===0)return[];let t=[],r=n.getLastKnownInventory();for(let i=0;i<r.length;i++){let a=r[i];if(e.some(s=>a.infos.period.id===s.period.id&&a.infos.adaptation.id===s.adaptation.id&&a.infos.representation.id===s.representation.id)){let{bufferedStart:s,bufferedEnd:u}=a;if(s===void 0||u===void 0)return c.warn(\"SO: No buffered start or end found from a segment.\"),[{start:0,end:Number.MAX_VALUE}];let d=t[t.length-1];d!==void 0&&d.end===s?d.end=u:t.push({start:s,end:u})}}return t}function pa(n,e,t,r,i,a,o,s){let{manifest:u,initialPeriod:d}=n,{maxBufferAhead:f,maxBufferBehind:m,wantedBufferAhead:l,maxVideoBufferSize:p}=a,{MINIMUM_MAX_BUFFER_AHEAD:g,MAXIMUM_MAX_BUFFER_AHEAD:h,MAXIMUM_MAX_BUFFER_BEHIND:I}=U.getCurrent(),y=new En(T=>{var _,A;let{bufferType:C}=T,P=(_=I[C])!=null?_:1/0,M=(A=h[C])!=null?A:1/0;return x=>{kr({segmentSink:T,playbackObserver:e,maxBufferBehind:Qt(m,k=>Math.min(k,P),x),maxBufferAhead:Qt(f,k=>{var w;let D=Math.max(k,(w=g[C])!=null?w:0);return Math.min(D,M)},x)},x)}});for(let T of r.getBufferTypes())E(T,d);function E(T,C){let P=new At((D,w)=>D.start-w.start),M=!1,_=new W;return _.linkToSignal(s),e.listen(({position:D})=>{var B;let w=D.getWanted();if(!M||!x(w))return;for(c.info(\"Stream: Destroying all PeriodStreams due to out of bounds situation\",T,w),M=!1;P.length()>0;){let z=P.get(P.length()-1);P.removeElement(z),o.periodStreamCleared({type:T,manifest:u,period:z})}_.cancel(),_=new W,_.linkToSignal(s);let O=(B=u.getPeriodForTime(w))!=null?B:u.getNextPeriod(w);if(O===void 0){c.warn(\"Stream: The wanted position is not found in the Manifest.\"),M=!0;return}A(O)},{clearSignal:s,includeLastObservation:!0}),u.addEventListener(\"decipherabilityUpdate\",D=>{s.isCancelled()||k(D).catch(w=>{s.isCancelled()||(_.cancel(),o.error(w))})},s),A(C);function A(D){let w=Le(_e({},o),{waitingMediaSourceReload(O){let B=P.head();B===void 0||B.id!==O.period.id?o.lockedStream({bufferType:O.bufferType,period:O.period}):o.needsMediaSourceReload({timeOffset:O.timeOffset,minimumPosition:O.stayInPeriod?O.period.start:void 0,maximumPosition:O.stayInPeriod?O.period.end:void 0})},periodStreamReady(O){M=!0,P.add(O.period),o.periodStreamReady(O)},periodStreamCleared(O){P.removeElement(O.period),o.periodStreamCleared(O)},error(O){_.cancel(),o.error(O)}});v(T,D,w,_.signal)}function x(D){let w=P.head(),O=P.last();return w===void 0||O===void 0?!0:w.start>D||(R(O.end)?1/0:O.end)<D}async function k(D){let w=r.getStatus(T),O=D.filter(V=>V.adaptation.type===T);if(O.length===0||w.type!==\"initialized\"||O.every(V=>V.representation.decipherable===!0))return;let B=w.value,z=O.filter(V=>V.representation.decipherable===void 0),q=O.filter(V=>V.representation.decipherable===!1),J=Or(B,q),$=Or(B,z);for(M=!1,c.info(\"Stream: Destroying all PeriodStreams for decipherability matters\",T);P.length()>0;){let V=P.get(P.length()-1);P.removeElement(V),o.periodStreamCleared({type:T,manifest:u,period:V})}_.cancel(),_=new W,_.linkToSignal(s);for(let{start:V,end:Y}of[...J,...$]){if(s.isCancelled())return;if(V<Y){if(s.isCancelled())return;await B.removeBuffer(V,Y)}}Ct(()=>{if(s.isCancelled())return;let V=e.getReference().getValue();if(ys(V,J)){if(o.needsDecipherabilityFlush(),s.isCancelled())return}else if(ys(V,$)&&(o.needsBufferFlush(),s.isCancelled()))return;let Y=V.position.getWanted(),X=u.getPeriodForTime(Y);if(X===void 0){o.error(new j(\"MEDIA_TIME_NOT_FOUND\",\"The wanted position is not found in the Manifest.\"));return}A(X)})}}function v(T,C,P,M){c.info(\"Stream: Creating new Stream for\",T,C.start);let _=null,A=new W;A.linkToSignal(M),e.listen(({position:O},B)=>{if(C.end!==void 0&&O.getWanted()>=C.end){let z=u.getPeriodAfter(C);if(C.containsTime(O.getWanted(),z))return;c.info(\"Stream: Destroying PeriodStream as the current playhead moved above it\",T,C.start,O.getWanted(),C.end),B(),P.periodStreamCleared({type:T,manifest:u,period:C}),A.cancel()}},{clearSignal:M,includeLastObservation:!0});let x={bufferType:T,content:{manifest:u,period:C},garbageCollectors:y,maxVideoBufferSize:p,segmentFetcherCreator:i,segmentSinksStore:r,options:a,playbackObserver:e,representationEstimator:t,wantedBufferAhead:l},k=Le(_e({},P),{streamStatusUpdate(O){if(O.hasFinishedLoading){let B=u.getPeriodAfter(C);B!==null&&D(B)}else _!==null&&(c.info(\"Stream: Destroying next PeriodStream due to current one being active\",T,_.period.start),P.periodStreamCleared({type:T,manifest:u,period:_.period}),_.canceller.cancel(),_=null);P.streamStatusUpdate(O)},error(O){_!==null&&(_.canceller.cancel(),_=null),A.cancel(),P.error(O)}});Ss(x,k,A.signal),w(A.signal);function D(O){if(_!==null){if(_.period.id===O.id)return;c.warn(\"Stream: Creating next `PeriodStream` while one was already created.\",T,O.id,_.period.id),P.periodStreamCleared({type:T,manifest:u,period:_.period}),_.canceller.cancel()}let B=new W;B.linkToSignal(M),_={canceller:B,period:O},v(T,O,P,_.canceller.signal)}function w(O){u.addEventListener(\"manifestUpdate\",B=>{for(let z of B.removedPeriods)if(z.id===C.id){if(u.periods.length>0&&u.periods[0].start<=z.start)return Ct(()=>{if(!O.isCancelled())return o.needsMediaSourceReload({timeOffset:0,minimumPosition:void 0,maximumPosition:void 0})})}else if(z.start>C.start)break;if(B.addedPeriods.length>0&&_!==null){let z=u.getPeriodAfter(C);(z===null||_.period.id!==z.id)&&(c.warn(\"Stream: Destroying next PeriodStream due to new one being added\",T,_.period.start),P.periodStreamCleared({type:T,manifest:u,period:_.period}),_.canceller.cancel(),_=null)}},O)}}}function ys(n,e){if(e.length===0)return!1;let t=n.position.getPolled();return n.speed>=0?e[e.length-1].end>=t-5:e[0].start<=t+5}var Ts=pa;var _s=Ts;var wn=class extends oe{constructor(e,t,r){super(),this._canceller=new W,this._manifest=e,this._activeStreams=new Map,this._allBufferTypes=r,this._lastCurrentPeriodId=null;let i=new ga(e);this._maximumPositionCalculator=i;let a=this._canceller.signal;t.listen(({position:o})=>{let s=o.getWanted();if(s<e.getMinimumSafePosition()){let u=new j(\"MEDIA_TIME_BEFORE_MANIFEST\",\"The current position is behind the earliest time announced in the Manifest.\");this.trigger(\"warning\",u)}else if(s>i.getMaximumAvailablePosition()){let u=new j(\"MEDIA_TIME_AFTER_MANIFEST\",\"The current position is after the latest time announced in the Manifest.\");this.trigger(\"warning\",u)}},{includeLastObservation:!0,clearSignal:a}),e.addEventListener(\"manifestUpdate\",()=>{this.trigger(\"endingPositionChange\",this._getManifestEndTime()),!a.isCancelled()&&this._checkEndOfStream()},a)}getCurrentEndingTime(){return this._getManifestEndTime()}onAdaptationChange(e,t,r){if(this._manifest.isLastPeriodKnown){let i=this._manifest.periods[this._manifest.periods.length-1];if(t.id===(i==null?void 0:i.id)&&(e===\"audio\"||e===\"video\")){e===\"audio\"?this._maximumPositionCalculator.updateLastAudioAdaptation(r):this._maximumPositionCalculator.updateLastVideoAdaptation(r);let a=this._maximumPositionCalculator.getEndingPosition(),o=a!==void 0?{isEnd:!0,endingPosition:a}:{isEnd:!1,endingPosition:this._maximumPositionCalculator.getMaximumAvailablePosition()};this.trigger(\"endingPositionChange\",o)}}this._canceller.isUsed()||r===null&&this._addActivelyLoadedPeriod(t,e)}onRepresentationChange(e,t){this._addActivelyLoadedPeriod(t,e)}onPeriodCleared(e,t){this._removeActivelyLoadedPeriod(t,e)}onLastSegmentFinishedLoading(e){let t=this._lazilyCreateActiveStreamInfo(e);t.hasFinishedLoadingLastPeriod||(t.hasFinishedLoadingLastPeriod=!0,this._checkEndOfStream())}onLastSegmentLoadingResume(e){let t=this._lazilyCreateActiveStreamInfo(e);t.hasFinishedLoadingLastPeriod&&(t.hasFinishedLoadingLastPeriod=!1,this._checkEndOfStream())}dispose(){this.removeEventListener(),this._canceller.cancel()}_addActivelyLoadedPeriod(e,t){let r=this._lazilyCreateActiveStreamInfo(t);r.activePeriods.has(e)||(r.activePeriods.add(e),this._checkCurrentPeriod())}_removeActivelyLoadedPeriod(e,t){let r=this._activeStreams.get(t);r!==void 0&&r.activePeriods.has(e)&&(r.activePeriods.removeElement(e),this._checkCurrentPeriod())}_checkCurrentPeriod(){if(this._allBufferTypes.length===0)return;let e=this._activeStreams.get(this._allBufferTypes[0]);if(e!==void 0)for(let t of e.activePeriods.toArray()){let r=!0;for(let i=1;i<this._allBufferTypes.length;i++){let a=this._activeStreams.get(this._allBufferTypes[i]);if(a===void 0)return;if(!a.activePeriods.toArray().some(u=>u.id===t.id)){r=!1;break}}if(r){this._lastCurrentPeriodId!==t.id&&(this._lastCurrentPeriodId=t.id,this.trigger(\"periodChange\",t));return}}}_getManifestEndTime(){let e=this._maximumPositionCalculator.getEndingPosition();return e!==void 0?{isEnd:!0,endingPosition:e}:{isEnd:!1,endingPosition:this._maximumPositionCalculator.getMaximumAvailablePosition()}}_lazilyCreateActiveStreamInfo(e){let t=this._activeStreams.get(e);return t===void 0&&(t={activePeriods:new At((r,i)=>r.start-i.start),hasFinishedLoadingLastPeriod:!1},this._activeStreams.set(e,t)),t}_checkEndOfStream(){if(!this._manifest.isLastPeriodKnown)return;this._allBufferTypes.every(t=>{let r=this._activeStreams.get(t);return r!==void 0&&r.hasFinishedLoadingLastPeriod})?this.trigger(\"endOfStream\",null):this.trigger(\"resumeStream\",null)}},ga=class{constructor(e){this._manifest=e,this._lastAudioAdaptation=void 0,this._lastVideoAdaptation=void 0}updateLastAudioAdaptation(e){this._lastAudioAdaptation=e}updateLastVideoAdaptation(e){this._lastVideoAdaptation=e}getMaximumAvailablePosition(){if(this._manifest.isDynamic)return this._manifest.getMaximumSafePosition();if(this._lastVideoAdaptation===void 0||this._lastAudioAdaptation===void 0)return this._manifest.getMaximumSafePosition();if(this._lastAudioAdaptation===null){if(this._lastVideoAdaptation===null)return this._manifest.getMaximumSafePosition();{let e=wr(this._lastVideoAdaptation);return typeof e!=\"number\"?this._manifest.getMaximumSafePosition():e}}else if(this._lastVideoAdaptation===null){let e=wr(this._lastAudioAdaptation);return typeof e!=\"number\"?this._manifest.getMaximumSafePosition():e}else{let e=wr(this._lastAudioAdaptation),t=wr(this._lastVideoAdaptation);return typeof e!=\"number\"||typeof t!=\"number\"?this._manifest.getMaximumSafePosition():Math.min(e,t)}}getEndingPosition(){var e,t;if(!this._manifest.isDynamic)return this.getMaximumAvailablePosition();if(!(this._lastVideoAdaptation===void 0||this._lastAudioAdaptation===void 0)){if(this._lastAudioAdaptation===null)return this._lastVideoAdaptation===null?void 0:(e=Dr(this._lastVideoAdaptation))!=null?e:void 0;if(this._lastVideoAdaptation===null)return(t=Dr(this._lastAudioAdaptation))!=null?t:void 0;{let r=Dr(this._lastAudioAdaptation),i=Dr(this._lastVideoAdaptation);return typeof r!=\"number\"||typeof i!=\"number\"?void 0:Math.min(r,i)}}}};function wr(n){let{representations:e}=n,t=null,r;for(let i=0;i<e.length;i++)if(e[i].index!==r){r=e[i].index;let a=e[i].index.getLastAvailablePosition();if(a===void 0)return;a!==null&&(t=R(t)?a:Math.min(t,a))}return t}function Dr(n){let{representations:e}=n,t=null,r;for(let i=0;i<e.length;i++)if(e[i].index!==r){r=e[i].index;let a=e[i].index.getEnd();if(a===void 0)return;a!==null&&(t=R(t)?a:Math.min(t,a))}return t}function ha(n,e,t,r,i,a){a.register(()=>{e.interruptDurationSetting()});let o=new wn(n,t,r.getBufferTypes());a.register(()=>{o.dispose()}),o.addEventListener(\"warning\",u=>i.onWarning(u)),o.addEventListener(\"periodChange\",u=>i.onPeriodChanged(u)),o.addEventListener(\"endingPositionChange\",u=>{e.setDuration(u.endingPosition,u.isEnd)}),o.addEventListener(\"endOfStream\",()=>{c.debug(\"Init: end-of-stream order received.\"),e.maintainEndOfStream()}),o.addEventListener(\"resumeStream\",()=>{e.stopEndOfStream()});let s=o.getCurrentEndingTime();return e.setDuration(s.endingPosition,s.isEnd),o}function Ia(n,e){let t={audio:null,video:null,text:null};if(e!==null&&(t.text=e.getBufferedRanges()),n===null)return t;let r=K(n.sourceBuffers,s=>s.type===\"audio\"),i=K(n.sourceBuffers,s=>s.type===\"video\"),a=r==null?void 0:r.getBuffered();a!==void 0&&(t.audio=a);let o=i==null?void 0:i.getBuffered();return o!==void 0&&(t.video=o),t}function ba(n,e){if(typeof n.changeType==\"function\"){try{n.changeType(e)}catch(t){return c.warn(\"Could not call 'changeType' on the given SourceBuffer:\",t instanceof Error?t:\"\"),!1}return!0}return!1}var cl=[\"\",\"webkit\",\"moz\",\"ms\"];function pl(n,e){let t=document.createElement(n.tagName),r=\"on\"+e;return r in t?!0:(t.setAttribute(r,\"return;\"),typeof t[r]==\"function\")}function gl(n,e){return e.filter(t=>pl(n,t))[0]}function hl(n,e){return n.reduce((t,r)=>t.concat((e===void 0?cl:e).map(i=>i+r)),[])}function Te(n,e){let t,r=hl(n,e);return(i,a,o)=>{if(!o.isCancelled()){if(typeof HTMLElement!=\"undefined\"&&i instanceof HTMLElement)if(typeof t==\"undefined\"&&(t=gl(i,r)),Z(t))i.addEventListener(t,a),o.register(()=>{t!==void 0&&i.removeEventListener(t,a)});else{b.CURRENT_ENV===b.DEV&&c.warn(`compat: element ${i.tagName} does not support any of these events: `+r.join(\", \"));return}r.forEach(s=>{let u=!1;typeof i.addEventListener==\"function\"?i.addEventListener(s,a):(u=!0,i[\"on\"+s]=a),o.register(()=>{typeof i.removeEventListener==\"function\"&&i.removeEventListener(s,a),u&&delete i[\"on\"+s]})})}}}var RD=Te([\"loadedmetadata\"]),PD=Te([\"timeupdate\"]),vD=Te([\"addtrack\"]),CD=Te([\"removetrack\"]),Ht=Te([\"sourceopen\",\"webkitsourceopen\"]),Nr=Te([\"sourceclose\",\"webkitsourceclose\"]),Br=Te([\"sourceended\",\"webkitsourceended\"]),Es=Te([\"update\"]),Rs=Te([\"removesourcebuffer\"]),AD=Te([\"keymessage\",\"message\"]),kD=Te([\"keyadded\",\"ready\"]),xD=Te([\"keyerror\",\"error\"]),MD=Te([\"keystatuseschange\"]),OD=Te([\"seeking\"]),wD=Te([\"seeked\"]),DD=Te([\"ended\"]);function Il(n){let e=[];for(let t=0;t<n.length;t++){let r=n[t];r.updating&&e.push(r)}return e}function Dn(n,e){if(c.debug(\"Init: Trying to call endOfStream\"),n.readyState!==\"open\"){c.debug(\"Init: MediaSource not open, cancel endOfStream\");return}let{sourceBuffers:t}=n,r=Il(t);if(r.length===0){c.info(\"Init: Triggering end of stream\"),n.endOfStream();return}c.debug(\"Init: Waiting SourceBuffers to be updated before calling endOfStream.\");let i=new W;i.linkToSignal(e);for(let a of r)Es(a,()=>{i.cancel(),Dn(n,e)},i.signal);Rs(t,()=>{i.cancel(),Dn(n,e)},i.signal)}function Ps(n,e){let t=new W;t.linkToSignal(e),Ht(n,()=>{c.debug(\"Init: MediaSource re-opened while end-of-stream is active\"),t.cancel(),t=new W,t.linkToSignal(e),Dn(n,t.signal)},e),Dn(n,t.signal)}var bl=!1,Sl=!1,vs=!1,yl=!1,Tl=!1,_l=!1,El=!1,Rl=!1,Pl=!1,vl=!1,Cl=!1,Al=!1,Sa=!1,kl=!1;(function(){var e,t,r;er||(typeof Ee.MSInputMethodContext!=\"undefined\"&&typeof document.documentMode!=\"undefined\"?(Sl=!0,vs=!0):navigator.appName===\"Microsoft Internet Explorer\"||navigator.appName===\"Netscape\"&&/(Trident|Edge)\\//.test(navigator.userAgent)?vs=!0:navigator.userAgent.toLowerCase().indexOf(\"edg/\")!==-1?bl=!0:navigator.userAgent.toLowerCase().indexOf(\"firefox\")!==-1?yl=!0:typeof navigator.platform==\"string\"&&/iPad|iPhone|iPod/.test(navigator.platform)?_l=!0:(Object.prototype.toString.call(Ee.HTMLElement).indexOf(\"Constructor\")>=0||((t=(e=Ee.safari)==null?void 0:e.pushNotification)==null?void 0:t.toString())===\"[object SafariRemoteNotification]\"||/Safari\\/(\\d+)/.test(navigator.userAgent)&&/Version\\/(\\d+)/.test(navigator.userAgent)&&((r=navigator.vendor)==null?void 0:r.indexOf(\"Apple\"))!==-1&&!/Chrome\\/(\\d+)/.test(navigator.userAgent)&&!/Chromium\\/(\\d+)/.test(navigator.userAgent))&&(Tl=!0),/SamsungBrowser/.test(navigator.userAgent)&&(El=!0),navigator.userAgent.indexOf(\"PlayStation 5\")!==-1?Sa=!0:/Tizen/.test(navigator.userAgent)?Rl=!0:/[Ww]eb[O0]S/.test(navigator.userAgent)?(Pl=!0,/[Ww]eb[O0]S.TV-2022/.test(navigator.userAgent)||/[Cc]hr[o0]me\\/87/.test(navigator.userAgent)?Cl=!0:(/[Ww]eb[O0]S.TV-2021/.test(navigator.userAgent)||/[Cc]hr[o0]me\\/79/.test(navigator.userAgent))&&(vl=!0)):/[Pp]anasonic/.test(navigator.userAgent)?Al=!0:navigator.userAgent.indexOf(\"Xbox\")!==-1&&(kl=!0))})();function ya(){return Sa}var xl=365*24*3600,Nn=class{constructor(e){this._mediaSource=e,this._currentMediaSourceDurationUpdateCanceller=null}updateDuration(e,t){this._currentMediaSourceDurationUpdateCanceller!==null&&this._currentMediaSourceDurationUpdateCanceller.cancel(),this._currentMediaSourceDurationUpdateCanceller=new W;let r=this._mediaSource,i=this._currentMediaSourceDurationUpdateCanceller.signal,a=wl(r,i),o=new W;o.linkToSignal(i),a.onUpdate(s,{emitCurrentValue:!0,clearSignal:i});function s(){if(o.cancel(),!a.getValue())return;o=new W,o.linkToSignal(i);let u=Ol(r.sourceBuffers,o.signal),d=new W;return d.linkToSignal(o.signal),u.onUpdate(f=>{d.cancel(),d=new W,d.linkToSignal(o.signal),!f&&As(r,e,t,d.signal)},{clearSignal:o.signal,emitCurrentValue:!0})}}stopUpdating(){this._currentMediaSourceDurationUpdateCanceller!==null&&(this._currentMediaSourceDurationUpdateCanceller.cancel(),this._currentMediaSourceDurationUpdateCanceller=null)}};function Ml(n,e,t){let r=e;t||(r=ya()?1/0:Cs(e));let i=0;for(let a=0;a<n.sourceBuffers.length;a++){let o=n.sourceBuffers[a],s=o.buffered.length;s>0&&(i=Math.max(o.buffered.end(s-1)))}if(r===n.duration)return\"success\";if(i>r){if(i<n.duration)try{c.info(\"Init: Updating duration to what is currently buffered\",i),n.duration=i}catch(a){return c.warn(\"Duration Updater: Can't update duration on the MediaSource.\",a instanceof Error?a:\"\"),\"failed\"}return\"partial\"}else{let a=n.duration;try{if(c.info(\"Init: Updating duration\",r),n.duration=r,n.readyState===\"open\"&&!isFinite(r)){let s=Cs(e);c.info(\"Init: calling `mediaSource.setLiveSeekableRange`\",s),n.setLiveSeekableRange(0,s)}}catch(s){return c.warn(\"Duration Updater: Can't update duration on the MediaSource.\",s instanceof Error?s:\"\"),\"failed\"}let o=Math.abs(n.duration-r);if(o>=.1){let s=Math.abs(n.duration-a);return o<s?\"partial\":\"failed\"}return\"success\"}}function Ol(n,e){if(n.length===0){let i=new G(!1);return i.finish(),i}let t=new G(!1,e);r();for(let i=0;i<n.length;i++){let a=n[i];a.addEventListener(\"updatestart\",r),a.addEventListener(\"update\",r),e.register(()=>{a.removeEventListener(\"updatestart\",r),a.removeEventListener(\"update\",r)})}return t;function r(){for(let i=0;i<n.length;i++)if(n[i].updating){t.setValueIfChanged(!0);return}t.setValueIfChanged(!1)}}function wl(n,e){let t=new G(n.readyState===\"open\",e);return Ht(n,()=>{c.debug(\"Init: Reacting to MediaSource open in duration updater\"),t.setValueIfChanged(!0)},e),Br(n,()=>{c.debug(\"Init: Reacting to MediaSource ended in duration updater\"),t.setValueIfChanged(!1)},e),Nr(n,()=>{c.debug(\"Init: Reacting to MediaSource close in duration updater\"),t.setValueIfChanged(!1)},e),t}function As(n,e,t,r){if(Ml(n,e,t)===\"success\")return;let a=setTimeout(()=>{o(),As(n,e,t,r)},2e3),o=r.register(()=>{clearTimeout(a)})}function Cs(n){return Math.max(Math.pow(2,32),n+xl)}var Bn=class extends oe{constructor(e){if(super(),this.id=e,this.sourceBuffers=[],this._canceller=new W,R(yt))throw new j(\"MEDIA_SOURCE_NOT_SUPPORTED\",\"No MediaSource Object was found in the current browser.\");c.info(\"Init: Creating MediaSource\");let t=new yt;this.readyState=t.readyState;let r=t.handle;this.handle=R(r)?{type:\"media-source\",value:t}:{type:\"handle\",value:r},this._mediaSource=t,this._durationUpdater=new Nn(t),this._endOfStreamCanceller=null,Ht(t,()=>{this.readyState=t.readyState,this.trigger(\"mediaSourceOpen\",null)},this._canceller.signal),Br(t,()=>{this.readyState=t.readyState,this.trigger(\"mediaSourceEnded\",null)},this._canceller.signal),Nr(t,()=>{this.readyState=t.readyState,this.trigger(\"mediaSourceClose\",null)},this._canceller.signal)}addSourceBuffer(e,t){let r=this._mediaSource.addSourceBuffer(t),i=new Ta(e,t,r);return this.sourceBuffers.push(i),i}setDuration(e,t){this._durationUpdater.updateDuration(e,t)}interruptDurationSetting(){this._durationUpdater.stopUpdating()}maintainEndOfStream(){this._endOfStreamCanceller===null&&(this._endOfStreamCanceller=new W,this._endOfStreamCanceller.linkToSignal(this._canceller.signal),c.debug(\"Init: end-of-stream order received.\"),Ps(this._mediaSource,this._endOfStreamCanceller.signal))}stopEndOfStream(){this._endOfStreamCanceller!==null&&(c.debug(\"Init: resume-stream order received.\"),this._endOfStreamCanceller.cancel(),this._endOfStreamCanceller=null)}dispose(){this.sourceBuffers.forEach(e=>e.dispose()),this._canceller.cancel(),Dl(this._mediaSource)}},Ta=class{constructor(e,t,r){this.type=e,this.codec=t,this._canceller=new W,this._sourceBuffer=r,this._operationQueue=[],this._currentOperations=[];let i=o=>{let s;o instanceof Error?s=o:o.error instanceof Error?s=o.error:s=new Error(\"Unknown SourceBuffer Error\");let u=this._currentOperations;if(this._currentOperations=[],u.length===0)c.error(\"SBI: error for an unknown operation\",s);else{let d=new Ce(s.name,s.message,s.name===\"QuotaExceededError\");for(let f of u)f.reject(d)}},a=()=>{let o=this._currentOperations;this._currentOperations=[];try{for(let s of o)s.resolve(ta(this._sourceBuffer.buffered))}catch(s){for(let u of o)s instanceof Error&&s.name===\"InvalidStateError\"?u.resolve([]):u.reject(s)}this._performNextOperation()};r.addEventListener(\"error\",i),r.addEventListener(\"updateend\",a),this._canceller.signal.register(()=>{r.removeEventListener(\"error\",i),r.removeEventListener(\"updateend\",a)})}appendBuffer(...e){return c.debug(\"SBI: receiving order to push data to the SourceBuffer\",this.type),this._addToQueue({operationName:0,params:e})}remove(e,t){return c.debug(\"SBI: receiving order to remove data from the SourceBuffer\",this.type,e,t),this._addToQueue({operationName:1,params:[e,t]})}getBuffered(){try{return ta(this._sourceBuffer.buffered)}catch(e){return c.error(\"Failed to get buffered time range of SourceBuffer\",this.type,e instanceof Error?e:null),[]}}abort(){try{this._sourceBuffer.abort()}catch(e){c.debug(\"Init: Failed to abort SourceBuffer:\",e instanceof Error?e:null)}this._emptyCurrentQueue()}dispose(){try{this._sourceBuffer.abort()}catch(e){}this._emptyCurrentQueue()}_emptyCurrentQueue(){let e=new ie;this._currentOperations.length>0&&(this._currentOperations.forEach(t=>{t.reject(e)}),this._currentOperations=[]),this._operationQueue.length>0&&(this._operationQueue.forEach(t=>{t.reject(e)}),this._operationQueue=[])}_addToQueue(e){return new Promise((t,r)=>{let i=this._operationQueue.length===0&&this._currentOperations.length===0,a=H({resolve:t,reject:r},e);this._operationQueue.push(a),i&&this._performNextOperation()})}_performNextOperation(){var t,r,i,a,o;if(this._currentOperations.length!==0||this._sourceBuffer.updating)return;let e=this._operationQueue.shift();if(e!==void 0)if(e.operationName===0){this._currentOperations=[{operationName:0,resolve:e.resolve,reject:e.reject}];let s=e.params[0],u=e.params[1],d=s;if(this._operationQueue.length>0&&this._operationQueue[0].operationName===0){let f;s instanceof ArrayBuffer?f=new Uint8Array(s):s instanceof Uint8Array?f=s:f=new Uint8Array(s.buffer);let m=[f];for(;((t=this._operationQueue[0])==null?void 0:t.operationName)===0;){let l=this._operationQueue[0],p=(r=u.appendWindow)!=null?r:[void 0,void 0],g=(i=l.params[1].appendWindow)!=null?i:[void 0,void 0],h=(a=u.timestampOffset)!=null?a:0,I=(o=l.params[1].timestampOffset)!=null?o:0;if(p[0]===g[0]&&p[1]===g[1]&&u.codec===l.params[1].codec&&h===I){let y=l.params[0],E;y instanceof ArrayBuffer?E=new Uint8Array(y):y instanceof Uint8Array?E=y:E=new Uint8Array(y.buffer),m.push(E),this._operationQueue.splice(0,1),this._currentOperations.push({operationName:0,resolve:l.resolve,reject:l.reject})}else break}m.length>1&&(c.info(`MMSI: Merging ${m.length} segments together for perf`,this.type),d=nt(...m))}try{this._appendBufferNow(d,u)}catch(f){let m=f instanceof Error?new Ce(f.name,f.message,f.name===\"QuotaExceededError\"):new Ce(\"Error\",\"Unknown SourceBuffer Error during appendBuffer\",!1);this._currentOperations.forEach(l=>{l.reject(m)}),this._currentOperations=[]}}else{this._currentOperations=[e];let[s,u]=e.params;c.debug(\"SBI: removing data from SourceBuffer\",this.type,s,u);try{this._sourceBuffer.remove(s,u)}catch(d){let f=d instanceof Error?new Ce(d.name,d.message,!1):new Ce(\"Error\",\"Unknown SourceBuffer Error during remove\",!1);e.reject(f),this._currentOperations=[]}}}_appendBufferNow(e,t){let r=this._sourceBuffer,{codec:i,timestampOffset:a,appendWindow:o=[]}=t;if(i!==void 0&&i!==this.codec&&(c.debug(\"SBI: updating codec\",i),ba(r,i)?this.codec=i:c.debug(\"SBI: could not update codec\",i,this.codec)),a!==void 0&&r.timestampOffset!==a){let s=a;c.debug(\"SBI: updating timestampOffset\",i,r.timestampOffset,s),r.timestampOffset=s}if(o[0]===void 0)r.appendWindowStart>0&&(c.debug(\"SBI: re-setting `appendWindowStart` to `0`\"),r.appendWindowStart=0);else if(o[0]!==r.appendWindowStart){if(o[0]>=r.appendWindowEnd){let s=o[0]+1;c.debug(\"SBI: pre-updating `appendWindowEnd`\",s),r.appendWindowEnd=s}c.debug(\"SBI: setting `appendWindowStart`\",o[0]),r.appendWindowStart=o[0]}o[1]===void 0?r.appendWindowEnd!==1/0&&(c.debug(\"SBI: re-setting `appendWindowEnd` to `Infinity`\"),r.appendWindowEnd=1/0):o[1]!==r.appendWindowEnd&&(c.debug(\"SBI: setting `appendWindowEnd`\",o[1]),r.appendWindowEnd=o[1]),c.debug(\"SBI: pushing segment\",this.type),r.appendBuffer(e)}};function Dl(n){if(n.readyState!==\"closed\"){let{readyState:e,sourceBuffers:t}=n;for(let r=t.length-1;r>=0;r--){let i=t[r];try{if(e===\"open\"){c.info(\"Init: Aborting SourceBuffer before removing\");try{i.abort()}catch(a){}}c.info(\"Init: Removing SourceBuffer from mediaSource\"),n.removeSourceBuffer(i)}catch(a){}}t.length>0&&c.info(\"Init: Not all SourceBuffers could have been removed.\")}}var Nl=Ae(),Ur=Ae(),ks=1/0,Un=class extends oe{constructor(e,t,r){super(),this.id=e,this.sourceBuffers=[],this._canceller=new W,this.readyState=\"closed\",this._messageSender=r;let i=Nl();this._messageSender({type:\"create-media-source\",contentId:t,mediaSourceId:i})}onMediaSourceReadyStateChanged(e){switch(e){case\"closed\":this.readyState=\"closed\",this.trigger(\"mediaSourceClose\",null);break;case\"open\":this.readyState=\"open\",this.trigger(\"mediaSourceOpen\",null);break;case\"ended\":this.readyState=\"ended\",this.trigger(\"mediaSourceEnded\",null);break}}addSourceBuffer(e,t){this._messageSender({type:\"add-source-buffer\",mediaSourceId:this.id,value:{sourceBufferType:e,codec:t}});let r=new _a(e,t,this.id,this._messageSender);return this.sourceBuffers.push(r),r}setDuration(e,t){this._messageSender({type:\"update-media-source-duration\",mediaSourceId:this.id,value:{duration:e,isRealEndKnown:t}})}interruptDurationSetting(){this._messageSender({type:\"stop-media-source-duration\",mediaSourceId:this.id,value:null})}maintainEndOfStream(){this._messageSender({type:\"end-of-stream\",mediaSourceId:this.id,value:null})}stopEndOfStream(){this._messageSender({type:\"stop-end-of-stream\",mediaSourceId:this.id,value:null})}dispose(){this.sourceBuffers.forEach(e=>e.dispose()),this._canceller.cancel(),this._messageSender({type:\"dispose-media-source\",mediaSourceId:this.id,value:null})}},_a=class{constructor(e,t,r,i){this.type=e,this.codec=t,this._canceller=new W,this._mediaSourceId=r,this._queuedOperations=[],this._pendingOperations=new Map,this._messageSender=i}onOperationSuccess(e,t){let r=this._pendingOperations.get(e);r===void 0?c.warn(\"SBI: unknown SourceBuffer operation succeeded\"):(this._pendingOperations.delete(e),r.resolve(t)),this._performNextQueuedOperationIfItExists()}onOperationFailure(e,t){let r=t.errorName===\"CancellationError\"?new ie:new Ce(t.errorName,t.message,t.isBufferFull),i=this._pendingOperations.get(e);i===void 0?c.info(\"SBI: unknown SourceBuffer operation failed\",r):(this._pendingOperations.delete(e),i.reject(r));let a=new ie;for(let o of this._queuedOperations)o.reject(a);this._queuedOperations=[]}appendBuffer(e,t){return new Promise((r,i)=>{if(this._queuedOperations.length>0||this._pendingOperations.size>=ks){this._queuedOperations.push({operationName:0,params:[e,t],resolve:r,reject:i});return}try{let a;e instanceof ArrayBuffer?a=e:e.byteLength===e.buffer.byteLength?a=e.buffer:a=e.buffer.slice(e.byteOffset,e.byteLength+e.byteOffset);let o=Ur();this._messageSender({type:\"source-buffer-append\",mediaSourceId:this._mediaSourceId,sourceBufferType:this.type,operationId:o,value:{data:a,params:t}},[a]),this._addOperationToQueue(o,r,i)}catch(a){i(a)}})}remove(e,t){return new Promise((r,i)=>{if(this._queuedOperations.length>0||this._pendingOperations.size>=ks){this._queuedOperations.push({operationName:1,params:[e,t],resolve:r,reject:i});return}try{let a=Ur();this._messageSender({type:\"source-buffer-remove\",mediaSourceId:this._mediaSourceId,sourceBufferType:this.type,operationId:a,value:{start:e,end:t}}),this._addOperationToQueue(a,r,i)}catch(a){i(a)}})}abort(){this._messageSender({type:\"abort-source-buffer\",mediaSourceId:this._mediaSourceId,sourceBufferType:this.type,value:null})}dispose(){this.abort(),this._canceller.cancel()}getBuffered(){}_addOperationToQueue(e,t,r){this._pendingOperations.set(e,{resolve:a,reject:o});let i=this._canceller.signal.register(s=>{this._pendingOperations.delete(e),r(s)});function a(s){i(),t(s)}function o(s){i(),r(s)}}_performNextQueuedOperationIfItExists(){let e=this._queuedOperations.shift();if(e!==void 0)try{if(e.operationName===0){let[t,r]=e.params,i;t instanceof ArrayBuffer?i=t:t.byteLength===t.buffer.byteLength?i=t.buffer:i=t.buffer.slice(t.byteOffset,t.byteLength+t.byteOffset);let a=Ur();this._messageSender({type:\"source-buffer-append\",mediaSourceId:this._mediaSourceId,sourceBufferType:this.type,operationId:a,value:{data:i,params:r}},[i]),this._addOperationToQueue(a,e.resolve,e.reject)}else{let[t,r]=e.params,i=Ur();this._messageSender({type:\"source-buffer-remove\",mediaSourceId:this._mediaSourceId,sourceBufferType:this.type,operationId:i,value:{start:t,end:r}}),this._addOperationToQueue(i,e.resolve,e.reject)}}catch(t){e.reject(t)}}};function Ea(n){let e=n.map(o=>Math.log(o/n[0])),t=e.map(o=>o-e[0]+1),r=(t[t.length-1]-1)/(n.length*2+10),i=1/r;return n.map((o,s)=>a(s));function a(o){if(o===0)return 0;let s=Math.min(Math.max(1,o),n.length-1);return n[s]===n[s-1]?a(o-1):i*(r+(n[s]*t[s-1]-n[s-1]*t[s])/(n[s]-n[s-1]))+4}}var Ue=class{constructor(e){this._alpha=Math.exp(Math.log(.5)/e),this._lastEstimate=0,this._totalWeight=0}addSample(e,t){let r=Math.pow(this._alpha,e),i=t*(1-r)+r*this._lastEstimate;isNaN(i)||(this._lastEstimate=i,this._totalWeight+=e)}getEstimate(){let e=1-Math.pow(this._alpha,this._totalWeight);return this._lastEstimate/e}};var Ln=class{constructor(){this._currentRepresentationData=null,this._lastRepresentationWithGoodScore=null}addSample(e,t,r){let i=r/t,a=this._currentRepresentationData,o;a!==null&&a.representation.id===e.id?(o=a.ewma,a.ewma.addSample(t,i),a.loadedDuration+=r,a.loadedSegments++):(o=new Ue(5),o.addSample(t,i),this._currentRepresentationData={representation:e,ewma:o,loadedDuration:r,loadedSegments:0}),o.getEstimate()>1&&this._lastRepresentationWithGoodScore!==e&&(c.debug(\"ABR: New last stable representation\",e.bitrate),this._lastRepresentationWithGoodScore=e)}getEstimate(e){if(this._currentRepresentationData===null||this._currentRepresentationData.representation.id!==e.id)return;let{ewma:t,loadedSegments:r,loadedDuration:i}=this._currentRepresentationData,a=t.getEstimate(),o=r>=5&&i>=10?1:0;return{score:a,confidenceLevel:o}}getLastStableRepresentation(){return this._lastRepresentationWithGoodScore}};var xs=6e3,Bl=15e3,Ul=3e3,Ll=1e3,Fl=9e3,Fn=class{constructor(e){this._levelsMap=Ea(e).map(t=>t+4),this._bitrates=e,this._lastUnsuitableQualityTimestamp=void 0,this._blockRaiseDelay=xs,c.debug(\"ABR: Steps for buffer based chooser.\",this._levelsMap.map((t,r)=>`bufferLevel: ${t}, bitrate: ${e[r]}`).join(\" ,\"))}onAddedSegment(e){let t=this._levelsMap,r=this._bitrates,{bufferGap:i,currentBitrate:a,currentScore:o,speed:s}=e;if(R(a)){this._currentEstimate=r[0];return}let u=-1;for(let g=0;g<r.length;g++){let h=r[g];if(h===a)u=g;else if(h>a)break}if(u<0||r.length!==t.length){c.info(\"ABR: Current Bitrate not found in the calculated levels\"),this._currentEstimate=r[0];return}let d;o!==void 0&&(d=s===0?o.score:o.score/s);let f=isFinite(i)?i:0,m=L();if(f<t[u]||d!==void 0&&d<1&&(o==null?void 0:o.confidenceLevel)===1){if((this._lastUnsuitableQualityTimestamp===void 0?-1:m-this._lastUnsuitableQualityTimestamp)<this._blockRaiseDelay+Fl){let I=this._blockRaiseDelay+Ul;this._blockRaiseDelay=Math.min(I,Bl),c.debug(\"ABR: Incrementing blocking raise in BufferBasedChooser due to unstable quality\",this._blockRaiseDelay)}else{let I=this._blockRaiseDelay-Ll;this._blockRaiseDelay=Math.max(xs,I),c.debug(\"ABR: Lowering quality in BufferBasedChooser\",this._blockRaiseDelay)}this._lastUnsuitableQualityTimestamp=m;let h=ne(r,I=>I===a);for(let I=h-1;I>=0;I--)if(f>=t[I]){this._currentEstimate=r[I];return}this._currentEstimate=r[0];return}if(this._lastUnsuitableQualityTimestamp!==void 0&&m-this._lastUnsuitableQualityTimestamp<this._blockRaiseDelay||d===void 0||d<1.15||(o==null?void 0:o.confidenceLevel)!==1){this._currentEstimate=a;return}let l=t[u],p=(()=>{for(let g=u+1;g<t.length;g++)if(t[g]>l)return g})();if(p!==void 0){let g=t[p];if(i>=g){c.debug(\"ABR: Raising quality in BufferBasedChooser\",r[p]),this._currentEstimate=r[p];return}}this._currentEstimate=a}getLastEstimate(){return this._currentEstimate}};function zl(n,e){let t=-1;for(let o=0;o<n.length;o++){let{segment:s}=n[o].content;if(s.duration<=0)continue;let u=s.time+s.duration;if(!s.complete&&o===n.length-1&&e-s.time>-1.2){t=o;break}if(u>e&&e-s.time>-1.2){t=o;break}}if(t<0)return[];let r=n[t],i=r.content.segment.time,a=[r];for(let o=t+1;o<n.length&&n[o].content.segment.time===i;o++)a.push(n[o]);return a}function Lr(n){if(n.progress.length<5)return;let e=new Ue(2),{progress:t}=n;for(let r=1;r<t.length;r++){let i=t[r].size-t[r-1].size,a=t[r].timestamp-t[r-1].timestamp,o=i*8/(a/1e3);e.addSample(a/1e3,o)}return e.getEstimate()}function Ms(n,e){let t=(n.totalSize-n.size)*8;return Math.max(t/e,0)}function Wl(n,e,t,r,i){if(r)return;let{bufferGap:a,speed:o,position:s}=e,u=isFinite(a)?a:0,d=s.getWanted()+u,f=zl(n,d);if(f.length!==1)return;let m=f[0],l=L(),p=m.content.segment.duration*1.5;if(p=Math.min(p,3e3),p=Math.max(p,12e3),l-m.requestTimestamp<p)return;let g=m.progress.length>0?m.progress[m.progress.length-1]:void 0,h=Lr(m);if(g!==void 0&&h!==void 0){let C=Ms(g,h);if((l-g.timestamp)/1e3<=C&&C-u/o>2500)return h}if(!m.content.segment.complete)return;let I=m.content.segment.duration,y=(l-m.requestTimestamp)/1e3,E=y<=(I*1.5+2)/o;if(R(t)||E)return;let v=I/y,T=t.bitrate*Math.min(.7,v);if(i===void 0||T<i)return T}function Vl(n,e,t){if(t)return!0;let r=isFinite(n.bufferGap)?n.bufferGap:0,i=n.position.getWanted()+r,a=K(e,({content:m})=>m.segment.duration>0&&m.segment.time+m.segment.duration>i);if(a===void 0)return!0;let o=L(),s=a.progress.length>0?a.progress[a.progress.length-1]:void 0,u=Lr(a);if(s===void 0||u===void 0)return!0;let d=Ms(s,u);return(o-s.timestamp)/1e3>d*1.2?!0:d-r/n.speed>-1.5}var zn=class{constructor(e,t){let{ABR_STARVATION_GAP:r,OUT_OF_STARVATION_GAP:i,ABR_STARVATION_FACTOR:a,ABR_REGULAR_FACTOR:o}=U.getCurrent();this._initialBitrate=e,this._inStarvationMode=!1,this._lowLatencyMode=t,t?this._config={starvationGap:r.LOW_LATENCY,outOfStarvationGap:i.LOW_LATENCY,starvationBitrateFactor:a.LOW_LATENCY,regularBitrateFactor:o.LOW_LATENCY}:this._config={starvationGap:r.DEFAULT,outOfStarvationGap:i.DEFAULT,starvationBitrateFactor:a.DEFAULT,regularBitrateFactor:o.DEFAULT}}getBandwidthEstimate(e,t,r,i,a){let o,s,u=this._config,{bufferGap:d,position:f,duration:m}=e,l=isFinite(d)?d:0,{ABR_STARVATION_DURATION_DELTA:p}=U.getCurrent();return isNaN(m)||l+f.getWanted()<m-p?!this._inStarvationMode&&l<=u.starvationGap?(c.info(\"ABR: enter starvation mode.\"),this._inStarvationMode=!0):this._inStarvationMode&&l>=u.outOfStarvationGap&&(c.info(\"ABR: exit starvation mode.\"),this._inStarvationMode=!1):this._inStarvationMode&&(c.info(\"ABR: exit starvation mode.\"),this._inStarvationMode=!1),this._inStarvationMode&&(s=Wl(i,e,r,this._lowLatencyMode,a),s!==void 0&&(c.info(\"ABR: starvation mode emergency estimate:\",s),t.reset(),o=R(r)?s:Math.min(s,r.bitrate))),R(o)&&(s=t.getEstimate(),s!==void 0?o=s*(this._inStarvationMode?u.starvationBitrateFactor:u.regularBitrateFactor):a!==void 0?o=a*(this._inStarvationMode?u.starvationBitrateFactor:u.regularBitrateFactor):o=this._initialBitrate),e.speed>1&&(o/=e.speed),{bandwidthEstimate:s,bitrateChosen:o}}isUrgent(e,t,r,i){return t===null?!0:e>=t.bitrate?!1:Vl(i,r,this._lowLatencyMode)}};var Wn=class{constructor(){this.bandwidth=void 0,this.representation=null,this.algorithmType=3}update(e,t,r){this.representation=e,this.bandwidth=t,this.algorithmType=r}};var Vn=class{constructor(e,t){this._scoreCalculator=e,this._lastAbrEstimate=t,this._consecutiveWrongGuesses=0,this._blockGuessesUntil=0,this._lastMaintanableBitrate=null}getGuess(e,t,r,i,a){let{bufferGap:o,speed:s}=t,u=this._lastAbrEstimate.representation;if(u===null)return null;if(i>u.bitrate)return this._lastAbrEstimate.algorithmType===2&&(this._lastAbrEstimate.representation!==null&&(this._lastMaintanableBitrate=this._lastAbrEstimate.representation.bitrate),this._consecutiveWrongGuesses=0),null;let d=this._scoreCalculator.getEstimate(r);if(this._lastAbrEstimate.algorithmType!==2){if(d===void 0)return null;if(this._canGuessHigher(o,s,d)){let m=Os(e,r);if(m!==null)return m}return null}if(this._isLastGuessValidated(u,i,d)&&(c.debug(\"ABR: Guessed Representation validated\",u.bitrate),this._lastMaintanableBitrate=u.bitrate,this._consecutiveWrongGuesses=0),r.id!==u.id)return u;if(this._shouldStopGuess(r,d,o,a))return this._consecutiveWrongGuesses++,this._blockGuessesUntil=L()+Math.min(this._consecutiveWrongGuesses*15e3,12e4),ql(e,r);if(d===void 0)return r;if(this._canGuessHigher(o,s,d)){let m=Os(e,r);if(m!==null)return m}return r}_canGuessHigher(e,t,{score:r,confidenceLevel:i}){return isFinite(e)&&e>=2.5&&L()>this._blockGuessesUntil&&i===1&&r/t>1.01}_shouldStopGuess(e,t,r,i){if(t!==void 0&&t.score<1.01)return!0;if((t===void 0||t.score<1.2)&&r<.6)return!0;let a=i.filter(s=>s.content.representation.id===e.id),o=L();for(let s of a){let u=o-s.requestTimestamp;if(s.content.segment.isInit){if(u>1e3)return!0}else{if(u>s.content.segment.duration*1e3+200)return!0;{let d=Lr(s);if(d!==void 0&&d<e.bitrate*.8)return!0}}}return!1}_isLastGuessValidated(e,t,r){return r!==void 0&&r.confidenceLevel===1&&r.score>1.5?!0:t>=e.bitrate&&(this._lastMaintanableBitrate===null||this._lastMaintanableBitrate<e.bitrate)}};function Os(n,e){let t=n.length,r=ne(n,({id:i})=>i===e.id);if(r<0)return c.error(\"ABR: Current Representation not found.\"),null;for(;++r<t;)if(n[r].bitrate>e.bitrate)return n[r];return null}function ql(n,e){let t=ne(n,({id:r})=>r===e.id);if(t<0)return c.error(\"ABR: Current Representation not found.\"),null;for(;--t>=0;)if(n[t].bitrate<e.bitrate)return n[t];return null}var qn=class{constructor(){let{ABR_FAST_EMA:e,ABR_SLOW_EMA:t}=U.getCurrent();this._fastEWMA=new Ue(e),this._slowEWMA=new Ue(t),this._bytesSampled=0}addSample(e,t){let{ABR_MINIMUM_CHUNK_SIZE:r}=U.getCurrent();if(t<r)return;let i=t*8e3/e,a=e/1e3;this._bytesSampled+=t,this._fastEWMA.addSample(a,i),this._slowEWMA.addSample(a,i)}getEstimate(){let{ABR_MINIMUM_TOTAL_BYTES:e}=U.getCurrent();if(!(this._bytesSampled<e))return Math.min(this._fastEWMA.getEstimate(),this._slowEWMA.getEstimate())}reset(){let{ABR_FAST_EMA:e,ABR_SLOW_EMA:t}=U.getCurrent();this._fastEWMA=new Ue(e),this._slowEWMA=new Ue(t),this._bytesSampled=0}};function Ra(n,e){if(n.length===0)return[];n.sort((a,o)=>a.bitrate-o.bitrate);let t=n[0].bitrate,r=Math.max(e,t),i=ne(n,a=>a.bitrate>r);return i===-1?n:n.slice(0,i)}function Pa(n,e){if(e.width===void 0||e.height===void 0)return n;let t=e.width*e.pixelRatio,r=e.height*e.pixelRatio,i=n.slice().sort((s,u)=>{var d,f;return((d=s.width)!=null?d:0)-((f=u.width)!=null?f:0)}),a=K(i,s=>typeof s.width==\"number\"&&s.width>=t&&typeof s.height==\"number\"&&s.height>=r);if(a===void 0)return n;let o=typeof a.width==\"number\"?a.width:0;return n.filter(s=>typeof s.width==\"number\"?s.width<=o:!0)}var Hn=class{constructor(){this._currentRequests={}}add(e){let{id:t,requestTimestamp:r,content:i}=e;this._currentRequests[t]={requestTimestamp:r,progress:[],content:i}}addProgress(e){let t=this._currentRequests[e.id];if(R(t)){if(b.CURRENT_ENV===b.DEV)throw new Error(\"ABR: progress for a request not added\");c.warn(\"ABR: progress for a request not added\");return}t.progress.push(e)}remove(e){if(R(this._currentRequests[e])){if(b.CURRENT_ENV===b.DEV)throw new Error(\"ABR: can't remove unknown request\");c.warn(\"ABR: can't remove unknown request\")}delete this._currentRequests[e]}getRequests(){return ar(this._currentRequests).filter(e=>!R(e)).sort((e,t)=>e.content.segment.time-t.content.segment.time)}};function Fr(n,e){let t=ne(n,r=>r.bitrate>e);return t===-1?n[n.length-1]:t===0?n[0]:n[t-1]}var ws=new G(void 0);ws.finish();var Ds=new G(1/0);Ds.finish();function va(n){let e={},{initialBitrates:t,throttlers:r,lowLatencyMode:i}=n;return function(s,u,d,f,m){var I,y,E;let{type:l}=s.adaptation,p=a(l),g=(I=t[l])!=null?I:0,h={limitResolution:(y=r.limitResolution[l])!=null?y:ws,throttleBitrate:(E=r.throttleBitrate[l])!=null?E:Ds};return Hl({bandwidthEstimator:p,context:s,currentRepresentation:u,filters:h,initialBitrate:g,playbackObserver:f,representations:d,lowLatencyMode:i},m)};function a(o){let s=e[o];if(R(s)){c.debug(\"ABR: Creating new BandwidthEstimator for \",o);let u=new qn;return e[o]=u,u}return s}}function Hl({bandwidthEstimator:n,context:e,currentRepresentation:t,filters:r,initialBitrate:i,lowLatencyMode:a,playbackObserver:o,representations:s},u){let d=new Ln,f=new zn(i!=null?i:0,a),m=new Hn,l=N,p={metrics:E,requestBegin:v,requestProgress:T,requestEnd:C,addedSegment(P){l(P)}},g=new W;g.linkToSignal(u);let h=I(s.getValue(),g.signal);return s.onUpdate(y,{clearSignal:u}),{estimates:h,callbacks:p};function I(P,M){if(P.length<=1)return new G({bitrate:void 0,representation:P[0],urgent:!0,knownStableBitrate:void 0});let _=!1,A=P.sort((q,J)=>q.bitrate-J.bitrate),x=new Fn(A.map(q=>q.bitrate)),k=new Wn,D=new Vn(d,k),w=o.getReference().getValue(),O=new G(z());return o.listen(q=>{w=q,B()},{includeLastObservation:!1,clearSignal:M}),l=function(q){if(w===null)return;let{position:J,speed:$}=w,V=q.buffered,Y=Cr(V,J.getWanted()),{representation:X}=q.content,me=d.getEstimate(X),ce=X.bitrate,de={bufferGap:Y,currentBitrate:ce,currentScore:me,speed:$};x.onAddedSegment(de),B()},M.register(()=>{l=N}),r.throttleBitrate.onUpdate(B,{clearSignal:M}),r.limitResolution.onUpdate(B,{clearSignal:M}),O;function B(){O.setValue(z())}function z(){let{bufferGap:q,position:J,maximumPosition:$}=w,V=r.limitResolution.getValue(),Y=r.throttleBitrate.getValue(),X=t.getValue(),me=Gl(A,V,Y),ce=m.getRequests(),{bandwidthEstimate:de,bitrateChosen:Ie}=f.getBandwidthEstimate(w,n,X,ce,k.bandwidth),Jn=d.getLastStableRepresentation(),pe=Jn===null?void 0:Jn.bitrate/(w.speed>0?w.speed:1),{ABR_ENTER_BUFFER_BASED_ALGO:be,ABR_EXIT_BUFFER_BASED_ALGO:Kt}=U.getCurrent();_&&q<=Kt?_=!1:!_&&isFinite(q)&&q>=be&&(_=!0);let He=Fr(me,Ie),xe=x.getLastEstimate(),xt=He.bitrate,at=null;_&&xe!==void 0&&xe>xt&&(at=Fr(me,xe),xt=at.bitrate);let ot=null;return a&&X!==null&&e.manifest.isDynamic&&$-J.getWanted()<40&&(ot=D.getGuess(A,w,X,xt,ce)),ot!==null&&ot.bitrate>xt?(c.debug(\"ABR: Choosing representation with guess-based estimation.\",ot.bitrate,ot.id),k.update(ot,de,2),{bitrate:de,representation:ot,urgent:X===null||ot.bitrate<X.bitrate,knownStableBitrate:pe}):at!==null?(c.debug(\"ABR: Choosing representation with buffer-based estimation.\",at.bitrate,at.id),k.update(at,de,0),{bitrate:de,representation:at,urgent:f.isUrgent(at.bitrate,X,ce,w),knownStableBitrate:pe}):(c.debug(\"ABR: Choosing representation with bandwidth estimation.\",He.bitrate,He.id),k.update(He,de,1),{bitrate:de,representation:He,urgent:f.isUrgent(He.bitrate,X,ce,w),knownStableBitrate:pe})}}function y(){let P=s.getValue();g.cancel(),g=new W,g.linkToSignal(u),I(P,g.signal).onUpdate(function(A){h.setValue(A)},{clearSignal:g.signal,emitCurrentValue:!0})}function E(P){let{requestDuration:M,segmentDuration:_,size:A,content:x}=P;if(n.addSample(M,A),!x.segment.isInit){let{segment:k,representation:D}=x;if(_===void 0&&!k.complete)return;let w=_!=null?_:k.duration;d.addSample(D,M/1e3,w)}}function v(P){m.add(P)}function T(P){m.addProgress(P)}function C(P){m.remove(P.id)}}function Gl(n,e,t){let r=n;return t!==void 0&&t<1/0&&(r=Ra(r,t)),e!==void 0&&(r=Pa(r,e)),r}var Ns=va;function it(n){return n instanceof re?new Ke(\"PIPELINE_LOAD_ERROR\",n):ge(n,{defaultCode:\"PIPELINE_LOAD_ERROR\",defaultReason:\"Unknown error when fetching the Manifest\"})}function Ca(n){let e=(Math.random()*2-1)*.3;return n*(e+1)}function Kl(n){return n instanceof re?n.type===bt.ERROR_HTTP_CODE?n.status>=500||n.status===404||n.status===415||n.status===412:n.type===bt.TIMEOUT||n.type===bt.ERROR_EVENT:n instanceof Ge?typeof n.canRetry==\"boolean\"?n.canRetry:n.xhr!==void 0?n.xhr.status>=500||n.xhr.status===404||n.xhr.status===415||n.xhr.status===412:!1:Mt(n)&&n.code===\"INTEGRITY_ERROR\"}async function Aa(n,e,t,r,i){if(i.cancellationError!==null)return Promise.reject(i.cancellationError);let{baseDelay:a,maxDelay:o,maxRetry:s,onRetry:u}=r;n!==null&&n.length===0&&c.warn(\"Fetchers: no CDN given to `scheduleRequestWithCdns`.\");let d=new Map,f=m();if(f===void 0)throw new Error(\"No CDN to request\");return l(f);function m(){if(n===null){let I=d.get(null);return I!==void 0&&I.isBlacklisted?void 0:null}else{if(e===null)return h(n);{let I=e.getCdnPreferenceForResource(n);return h(I)}}}async function l(I){try{return await t(I,i)}catch(y){if(W.isCancellationError(y))throw y;I!==null&&e!==null&&e.downgradeCdn(I);let E=d.get(I);if(E===void 0?(E={errorCounter:1,blockedUntil:void 0,isBlacklisted:!1},d.set(I,E)):E.errorCounter++,!Kl(y))return E.blockedUntil=void 0,E.isBlacklisted=!0,p(y);if(E.errorCounter>s)E.blockedUntil=void 0,E.isBlacklisted=!0;else{let v=E.errorCounter,T=Math.min(a*Math.pow(2,v-1),o),C=Ca(T);E.blockedUntil=L()+C}return p(y)}}async function p(I){let y=m();if(i.isCancelled())throw i.cancellationError;if(y===void 0)throw I;if(u(I),i.isCancelled())throw i.cancellationError;return g(y,I)}function g(I,y){let E=d.get(I);if(E===void 0||E.blockedUntil===void 0)return l(I);let v=L(),T=E.blockedUntil-v;if(T<=0)return l(I);let C=new W,P=C.linkToSignal(i);return new Promise((M,_)=>{e==null||e.addEventListener(\"priorityChange\",()=>{let k=m();if(i.isCancelled())throw i.cancellationError;if(k===void 0)return x(y);k!==I&&(C.cancel(),g(k,y).then(A,x))},C.signal),kn(T,C.signal).then(()=>l(I).then(A,x),N);function A(k){P(),M(k)}function x(k){P(),_(k)}})}function h(I){var E;if(d.size===0)return I[0];let y=L();return(E=I.filter(v=>{var T;return((T=d.get(v))==null?void 0:T.isBlacklisted)!==!0}).reduce((v,T)=>{var P;let C=(P=d.get(T))==null?void 0:P.blockedUntil;return C!==void 0&&C<=y&&(C=void 0),v===void 0?[T,C]:v[1]===void 0?v:C===void 0?[T,void 0]:C<v[1]?[T,C]:v},void 0))==null?void 0:E[0]}}function ka(n,e,t){return Aa(null,null,n,e,t)}var Gn=class extends oe{constructor(e,t,r){super(),this.scheduleManualRefresh=N,this._manifestUrls=e,this._pipelines=t.manifest,this._settings=r,this._canceller=new W,this._isStarted=!1,this._isRefreshPending=!1,this._consecutiveUnsafeMode=0,this._prioritizedContentUrl=null}dispose(){this._canceller.cancel(),this.removeEventListener()}start(){if(this._isStarted)return;this._isStarted=!0;let e,t=this._settings.initialManifest;t instanceof wt?e=Promise.resolve({manifest:t}):t!==void 0?e=this.parse(t,{previousManifest:null,unsafeMode:!1},void 0):e=this._fetchManifest(void 0).then(r=>r.parse({previousManifest:null,unsafeMode:!1})),e.then(r=>{this.trigger(\"manifestReady\",r.manifest),this._canceller.isUsed()||this._recursivelyRefreshManifest(r.manifest,r)}).catch(r=>this._onFatalError(r))}updateContentUrls(e,t){var r;this._prioritizedContentUrl=(r=e==null?void 0:e[0])!=null?r:void 0,t&&this.scheduleManualRefresh({enablePartialRefresh:!1,delay:0,canUseUnsafeMode:!1})}async _fetchManifest(e){var u;let t=this._canceller.signal,r=this._settings,i=this._pipelines,a=e!=null?e:(u=this._manifestUrls)==null?void 0:u[0],o=this._getBackoffSetting(d=>{this.trigger(\"warning\",it(d))});try{let d=await s(a);return{parse:f=>this._parseLoadedManifest(d,f,a)}}catch(d){throw it(d)}function s(d){let{loadManifest:f}=i,m=r.requestTimeout===void 0?U.getCurrent().DEFAULT_REQUEST_TIMEOUT:r.requestTimeout,l=r.connectionTimeout===void 0?U.getCurrent().DEFAULT_CONNECTION_TIMEOUT:r.connectionTimeout;return m<0&&(m=void 0),l<0&&(l=void 0),ka(()=>f(d,{timeout:m,connectionTimeout:l},t),o,t)}}parse(e,t,r){return this._parseLoadedManifest({responseData:e,size:void 0,requestDuration:void 0},t,r)}async _parseLoadedManifest(e,t,r){var h;let i=L(),a=this._canceller.signal,o=this.trigger.bind(this),{sendingTime:s,receivedTime:u}=e,d=this._getBackoffSetting(I=>{this.trigger(\"warning\",it(I))}),f=r!=null?r:(h=this._manifestUrls)==null?void 0:h[0],m={externalClockOffset:t.externalClockOffset,unsafeMode:t.unsafeMode,previousManifest:t.previousManifest,originalUrl:f};try{let I=this._pipelines.parseManifest(e,m,p,a,l);if(jl(I)){let{manifest:y,warnings:E}=await I;return g(y,E)}else return g(I.manifest,I.warnings)}catch(I){throw ge(I,{defaultCode:\"PIPELINE_PARSE_ERROR\",defaultReason:\"Unknown error when parsing the Manifest\"})}async function l(I){try{return await ka(I,d,a)}catch(y){throw it(y)}}function p(I){for(let y of I){if(a.isCancelled())return;let E=ge(y,{defaultCode:\"PIPELINE_PARSE_ERROR\",defaultReason:\"Unknown error when parsing the Manifest\"});o(\"warning\",E)}}function g(I,y){p(y);let E=L()-i;return c.info(`MF: Manifest parsed in ${E}ms`),{manifest:I,sendingTime:s,receivedTime:u,parsingTime:E}}}_getBackoffSetting(e){let{DEFAULT_MAX_MANIFEST_REQUEST_RETRY:t,INITIAL_BACKOFF_DELAY_BASE:r,MAX_BACKOFF_DELAY_BASE:i}=U.getCurrent(),{lowLatencyMode:a,maxRetry:o}=this._settings,s=a?r.LOW_LATENCY:r.REGULAR,u=a?i.LOW_LATENCY:i.REGULAR,d=o!=null?o:t;return{onRetry:e,baseDelay:s,maxDelay:u,maxRetry:d}}_recursivelyRefreshManifest(e,{sendingTime:t,parsingTime:r,updatingTime:i}){let{MAX_CONSECUTIVE_MANIFEST_PARSING_IN_UNSAFE_MODE:a,MIN_MANIFEST_PARSING_TIME_TO_ENTER_UNSAFE_MODE:o}=U.getCurrent(),s=r!==void 0?r+(i!=null?i:0):void 0,u=!1;this._consecutiveUnsafeMode>0?u=this._consecutiveUnsafeMode<a:s!==void 0&&(u=s>=o);let d=t===void 0?0:L()-t,f=Math.max(this._settings.minimumManifestUpdateInterval-d,0),m=new W;if(m.linkToSignal(this._canceller.signal),this.scheduleManualRefresh=l=>{let{enablePartialRefresh:p,delay:g,canUseUnsafeMode:h}=l,I=h&&u,y=t===void 0?0:L()-t,E=Math.max(this._settings.minimumManifestUpdateInterval-y,0),v=setTimeout(()=>{m.cancel(),this._triggerNextManifestRefresh(e,{enablePartialRefresh:p,unsafeMode:I})},Math.max((g!=null?g:0)-y,E));m.signal.register(()=>{clearTimeout(v)})},e.expired!==null){let l=setTimeout(()=>{var p;(p=e.expired)==null||p.then(()=>{m.cancel(),this._triggerNextManifestRefresh(e,{enablePartialRefresh:!1,unsafeMode:u})},N)},f);m.signal.register(()=>{clearTimeout(l)})}if(e.lifetime!==void 0&&e.lifetime>=0){let l=e.lifetime*1e3-d,p;s===void 0?p=l:e.lifetime<3&&s>=100?(p=Math.min(Math.max(3e3-d,Math.max(l,0)+s),l*6),c.info(\"MUS: Manifest update rythm is too frequent. Postponing next request.\",l,p)):s>=e.lifetime*1e3/10?(p=Math.min(Math.max(l,0)+s,l*6),c.info(\"MUS: Manifest took too long to parse. Postponing next request\",p,p)):p=l;let g=setTimeout(()=>{m.cancel(),this._triggerNextManifestRefresh(e,{enablePartialRefresh:!1,unsafeMode:u})},Math.max(p,f));m.signal.register(()=>{clearTimeout(g)})}}_triggerNextManifestRefresh(e,{enablePartialRefresh:t,unsafeMode:r}){let i=e.updateUrl,a,o;this._prioritizedContentUrl!==null?(a=!0,o=this._prioritizedContentUrl,this._prioritizedContentUrl=null):(a=!t||i===void 0,o=a?e.getUrls()[0]:i);let s=e.clockOffset;r?(this._consecutiveUnsafeMode+=1,c.info('Init: Refreshing the Manifest in \"unsafeMode\" for the '+String(this._consecutiveUnsafeMode)+\" consecutive time.\")):this._consecutiveUnsafeMode>0&&(c.info('Init: Not parsing the Manifest in \"unsafeMode\" anymore after '+String(this._consecutiveUnsafeMode)+\" consecutive times.\"),this._consecutiveUnsafeMode=0),!this._isRefreshPending&&(this._isRefreshPending=!0,this._fetchManifest(o).then(u=>u.parse({externalClockOffset:s,previousManifest:e,unsafeMode:r})).then(u=>{this._isRefreshPending=!1;let{manifest:d,sendingTime:f,parsingTime:m}=u,l=L();if(a)e.replace(d);else try{e.update(d)}catch(g){let h=g instanceof Error?g.message:\"unknown error\";c.warn(`MUS: Attempt to update Manifest failed: ${h}`,\"Re-downloading the Manifest fully\");let{FAILED_PARTIAL_UPDATE_MANIFEST_REFRESH_DELAY:I}=U.getCurrent(),y=f===void 0?0:L()-f,E=Math.max(this._settings.minimumManifestUpdateInterval-y,0),v=N,T=setTimeout(()=>{v(),this._triggerNextManifestRefresh(e,{enablePartialRefresh:!1,unsafeMode:!1})},Math.max(I-y,E));v=this._canceller.signal.register(()=>{clearTimeout(T)});return}let p=L()-l;this._recursivelyRefreshManifest(e,{sendingTime:f,parsingTime:m,updatingTime:p})}).catch(u=>{this._isRefreshPending=!1,this._onFatalError(u)}))}_onFatalError(e){this._canceller.isUsed()||(this.trigger(\"error\",e),this.dispose())}};function jl(n){return n instanceof Promise}var xa=Gn;function Ma(n,e){let t=new WeakMap;return{createRequest(r,i,a,o){let s=d=>e(r,a,d),u=n.create(s,i,a,o);return t.set(u,s),u},updatePriority(r,i){let a=t.get(r);if(a===void 0){c.warn(\"Fetchers: Cannot update the priority of a request: task not found.\");return}n.updatePriority(a,i)}}}var Kn=class extends oe{constructor(e){super(),this._downgradedCdnList={metadata:[],timeouts:[]},e.register(()=>{for(let t of this._downgradedCdnList.timeouts)clearTimeout(t);this._downgradedCdnList={metadata:[],timeouts:[]}})}getCdnPreferenceForResource(e){return e.length<=1?e:this._innerGetCdnPreferenceForResource(e)}downgradeCdn(e){let t=Bs(this._downgradedCdnList.metadata,e);t>=0&&this._removeIndexFromDowngradeList(t);let{DEFAULT_CDN_DOWNGRADE_TIME:r}=U.getCurrent(),i=r;this._downgradedCdnList.metadata.push(e);let a=setTimeout(()=>{let o=Bs(this._downgradedCdnList.metadata,e);o>=0&&this._removeIndexFromDowngradeList(o),this.trigger(\"priorityChange\",null)},i);this._downgradedCdnList.timeouts.push(a),this.trigger(\"priorityChange\",null)}_innerGetCdnPreferenceForResource(e){let[t,r]=e.reduce((i,a)=>(this._downgradedCdnList.metadata.some(o=>o.id===a.id&&o.baseUrl===a.baseUrl)?i[1].push(a):i[0].push(a),i),[[],[]]);return t.concat(r)}_removeIndexFromDowngradeList(e){this._downgradedCdnList.metadata.splice(e,1);let t=this._downgradedCdnList.timeouts.splice(e,1);clearTimeout(t[0])}};function Bs(n,e){return n.length===0?-1:e.id!==void 0?ne(n,t=>t.id===e.id):ne(n,t=>t.baseUrl===e.baseUrl)}var Oa=class{constructor(){this._cache=new WeakMap}add({representation:e,segment:t},r){t.isInit&&this._cache.set(e,r)}get({representation:e,segment:t}){if(t.isInit){let r=this._cache.get(e);if(r!==void 0)return r}return null}},Us=Oa;var Yl=Ae();function wa(n,e,t,r,i){let a;i.connectionTimeout===void 0||i.connectionTimeout<0?a=void 0:a=i.connectionTimeout;let o={timeout:i.requestTimeout<0?void 0:i.requestTimeout,connectionTimeout:a},s=se([\"audio\",\"video\"],n)?new Us:void 0,{loadSegment:u,parseSegment:d}=e;return async function(m,l,p){var q,J,$;let{segment:g,adaptation:h,representation:I,manifest:y,period:E}=m,v=St(m),T=Yl(),C,P=[],M=0,_=!1,A={segment:g,type:h.type,language:h.language,isLive:y.isLive,periodStart:E.start,periodEnd:E.end,mimeType:I.mimeType,codecs:I.codecs[0],manifestPublishTime:y.publishTime},x={onProgress(V){var Y;C===void 0&&V.totalSize!==void 0&&V.size<V.totalSize&&((Y=r.onProgress)==null||Y.call(r,{duration:V.duration,size:V.size,totalSize:V.totalSize,timestamp:L(),id:T}))},onNewChunk(V){l.onChunk(O(V,!0))}},k=s!==void 0?s.get(m):null;if(k!==null)return c.debug(\"SF: Found wanted segment in cache\",v),l.onChunk(O(k,!1)),Promise.resolve();c.debug(\"SF: Beginning request\",v),(q=r.onRequestBegin)==null||q.call(r,{requestTimestamp:L(),id:T,content:m}),p.register(D);try{let V=await Aa(m.representation.cdnMetadata,t,w,H({onRetry:B},i),p);if(V.resultType===\"segment-loaded\"){let Y=V.resultData.responseData;s!==void 0&&s.add(m,V.resultData.responseData),l.onChunk(O(Y,!1))}else V.resultType===\"segment-created\"&&l.onChunk(O(V.resultData,!1));c.debug(\"SF: Segment request ended with success\",v),l.onAllChunksReceived(),V.resultType!==\"segment-created\"?(C=V.resultData,z()):C=null,p.isCancelled()||(J=r.onRequestEnd)==null||J.call(r,{id:T}),p.deregister(D)}catch(V){throw p.deregister(D),C=null,V instanceof ie?(c.debug(\"SF: Segment request aborted\",v),V):(c.debug(\"SF: Segment request failed\",v),($=r.onRequestEnd)==null||$.call(r,{id:T}),it(V))}function D(){var V;C===void 0&&(c.debug(\"SF: Segment request cancelled\",v),C=null,(V=r.onRequestEnd)==null||V.call(r,{id:T}))}function w(V){return u(V,A,o,p,x)}function O(V,Y){P.push(!1);let X=P.length-1;return function(ce){let de={data:V,isChunked:Y};try{let Ie=d(de,A,ce);return P[X]||(M=M!==void 0&&Ie.segmentType===\"media\"&&Ie.chunkInfos!==null&&Ie.chunkInfos.duration!==void 0?M+Ie.chunkInfos.duration:void 0,P[X]=!0,z()),Ie}catch(Ie){throw ge(Ie,{defaultCode:\"PIPELINE_PARSE_ERROR\",defaultReason:\"Unknown parsing error\"})}}}function B(V){l.onRetry(it(V))}function z(){var V;_||!R(C)&&C.size!==void 0&&C.requestDuration!==void 0&&P.length>0&&P.every(Y=>Y)&&(_=!0,(V=r.onMetrics)==null||V.call(r,{size:C.size,requestDuration:C.requestDuration,content:m,segmentDuration:M}))}}}function Ls({maxRetry:n,lowLatencyMode:e,requestTimeout:t,connectionTimeout:r}){let{DEFAULT_MAX_REQUESTS_RETRY_ON_ERROR:i,DEFAULT_REQUEST_TIMEOUT:a,DEFAULT_CONNECTION_TIMEOUT:o,INITIAL_BACKOFF_DELAY_BASE:s,MAX_BACKOFF_DELAY_BASE:u}=U.getCurrent();return{maxRetry:n!=null?n:i,baseDelay:e?s.LOW_LATENCY:s.REGULAR,maxDelay:e?u.LOW_LATENCY:u.REGULAR,requestTimeout:t===void 0?a:t,connectionTimeout:r===void 0?o:r}}var Yn=class{constructor({prioritySteps:e}){if(this._minPendingPriority=null,this._waitingQueue=[],this._pendingTasks=[],this._prioritySteps=e,this._prioritySteps.high>=this._prioritySteps.low)throw new Error(\"TP: the max high level priority should be given a lowerpriority number than the min low priority.\")}create(e,t,r,i){let a;return kt(i,(o,s)=>(a={hasEnded:!1,priority:t,trigger:()=>{if(a.hasEnded)return;let d=()=>{p(),this._endTask(a)},f=g=>{r.beforeEnded(),d(),o(g)},m=g=>{d(),s(g)},l=new W,p=l.linkToSignal(i);a.interrupter=l,l.signal.register(()=>{a.interrupter=null,i.isCancelled()||r.beforeInterrupted()}),this._minPendingPriority=this._minPendingPriority===null?a.priority:Math.min(this._minPendingPriority,a.priority),this._pendingTasks.push(a),a.taskFn(l.signal).then(f).catch(g=>{!i.isCancelled()&&l.isUsed()&&g instanceof ie||m(g)})},taskFn:e,interrupter:null},this._canBeStartedNow(a)?(a.trigger(),this._isRunningHighPriorityTasks()&&this._interruptCancellableTasks()):this._waitingQueue.push(a),()=>this._endTask(a)))}_endTask(e){e.hasEnded=!0;let t=jn(e.taskFn,this._waitingQueue);if(t>=0)this._waitingQueue.splice(t,1);else{let r=jn(e.taskFn,this._pendingTasks);if(r<0)return;this._pendingTasks.splice(r,1),this._pendingTasks.length>0?this._minPendingPriority===e.priority&&(this._minPendingPriority=Math.min(...this._pendingTasks.map(i=>i.priority))):this._minPendingPriority=null,this._loopThroughWaitingQueue()}}updatePriority(e,t){let r=jn(e,this._waitingQueue);if(r>=0){let s=this._waitingQueue[r];if(s.priority===t||(s.priority=t,!this._canBeStartedNow(s)))return;this._findAndRunWaitingQueueTask(r),this._isRunningHighPriorityTasks()&&this._interruptCancellableTasks();return}let i=jn(e,this._pendingTasks);if(i<0){c.warn(\"TP: request to update the priority of a non-existent task\");return}let a=this._pendingTasks[i];if(a.priority===t)return;let o=a.priority;a.priority=t,this._minPendingPriority===null||t<this._minPendingPriority?this._minPendingPriority=t:this._minPendingPriority===o&&(this._pendingTasks.length===1?this._minPendingPriority=t:this._minPendingPriority=Math.min(...this._pendingTasks.map(s=>s.priority)),this._loopThroughWaitingQueue()),this._isRunningHighPriorityTasks()&&this._interruptCancellableTasks()}_loopThroughWaitingQueue(){let e=this._waitingQueue.reduce((t,r)=>t===null||t>r.priority?r.priority:t,null);if(!(e===null||this._minPendingPriority!==null&&this._minPendingPriority<e))for(let t=0;t<this._waitingQueue.length;t++){let r=this._minPendingPriority===null?e:Math.min(this._minPendingPriority,e);this._waitingQueue[t].priority<=r&&(this._findAndRunWaitingQueueTask(t),t--)}}_interruptCancellableTasks(){for(let e=0;e<this._pendingTasks.length;e++){let t=this._pendingTasks[e];if(t.priority>=this._prioritySteps.low)return this._interruptPendingTask(t),this._interruptCancellableTasks()}}_findAndRunWaitingQueueTask(e){return e>=this._waitingQueue.length||e<0?(c.warn(\"TP : Tried to start a non existing task\"),!1):(this._waitingQueue.splice(e,1)[0].trigger(),!0)}_interruptPendingTask(e){var r;let t=jn(e.taskFn,this._pendingTasks);if(t<0){c.warn(\"TP: Interrupting a non-existent pending task. Aborting...\");return}this._pendingTasks.splice(t,1),this._waitingQueue.push(e),this._pendingTasks.length===0?this._minPendingPriority=null:this._minPendingPriority===e.priority&&(this._minPendingPriority=Math.min(...this._pendingTasks.map(i=>i.priority))),(r=e.interrupter)==null||r.cancel()}_canBeStartedNow(e){return this._minPendingPriority===null||e.priority<=this._minPendingPriority}_isRunningHighPriorityTasks(){return this._minPendingPriority!==null&&this._minPendingPriority<=this._prioritySteps.high}};function jn(n,e){return ne(e,t=>t.taskFn===n)}var Qn=class{constructor(e,t,r){let i=new Kn(r),{MIN_CANCELABLE_PRIORITY:a,MAX_HIGH_PRIORITY_LEVEL:o}=U.getCurrent();this._transport=e,this._prioritizer=new Yn({prioritySteps:{high:o,low:a}}),this._cdnPrioritizer=i,this._backoffOptions=t}createSegmentFetcher(e,t){let r=Ls(this._backoffOptions),i=this._transport[e],a=wa(e,i,this._cdnPrioritizer,t,r);return Ma(this._prioritizer,a)}};var Da=Qn;var $n=class{constructor(e){this._segmentSinksStore=e,this._currentFreezeTimestamp=null}needToReload(e){let{readyState:t,rebuffering:r,freezing:i}=e;if((e.bufferGap!==void 0&&isFinite(e.bufferGap)?e.bufferGap:0)<6||r===null&&i===null||t>1)return this._currentFreezeTimestamp=null,!1;let o=L();this._currentFreezeTimestamp===null&&(this._currentFreezeTimestamp=o);let s=r!==null&&o-r.timestamp>4e3,u=i!==null&&o-i.timestamp>4e3;if((s||u)&&L()-this._currentFreezeTimestamp>4e3){let d=this._segmentSinksStore.getStatus(\"audio\"),f=this._segmentSinksStore.getStatus(\"video\"),m=!0,l=!0;for(let p of[d,f])if(p.type===\"initialized\")for(let g of p.value.getLastKnownInventory()){let{representation:h}=g.infos;if(h.decipherable===!1)return c.warn(\"Init: we have undecipherable segments left in the buffer, reloading\"),this._currentFreezeTimestamp=null,!0;h.contentProtections!==void 0&&(l=!1,h.decipherable!==!0&&(m=!1))}if(!l&&m)return c.warn(\"Init: we are frozen despite only having decipherable segments left in the buffer, reloading\"),this._currentFreezeTimestamp=null,!0}return!1}};var{DEFAULT_WANTED_BUFFER_AHEAD:Ql,DEFAULT_MAX_VIDEO_BUFFER_SIZE:$l,DEFAULT_MAX_BUFFER_AHEAD:Xl,DEFAULT_MAX_BUFFER_BEHIND:Zl}=U.getCurrent(),Na=new G(Ql),Ba=new G($l),Ua=new G(Xl),La=new G(Zl),zr=new G({height:void 0,width:void 0,pixelRatio:1}),Wr=new G(1/0);function Q(n,e){c.debug(\"<--- Sending to Main:\",n.type),e===void 0?postMessage(n):postMessage(n,e)}function we(n){return ge(n,{defaultCode:\"NONE\",defaultReason:\"An unknown error stopped content playback.\"}).serialize()}var Xn=class{constructor(){this._refs=new Map}reset(){var e,t,r,i,a,o,s,u,d,f,m,l;for(let p of this._refs.keys())(t=(e=this._refs.get(p))==null?void 0:e.audio)==null||t.trackReference.finish(),(i=(r=this._refs.get(p))==null?void 0:r.audio)==null||i.representations.finish(),(o=(a=this._refs.get(p))==null?void 0:a.video)==null||o.trackReference.finish(),(u=(s=this._refs.get(p))==null?void 0:s.video)==null||u.representations.finish(),(f=(d=this._refs.get(p))==null?void 0:d.text)==null||f.trackReference.finish(),(l=(m=this._refs.get(p))==null?void 0:m.text)==null||l.representations.finish();this._refs=new Map}addTrackSetter(e,t,r){var s,u;let i=this._refs.get(e);i===void 0&&(i={},this._refs.set(e,i)),i[t]!==void 0&&(c.warn(\"WP: Track for periodId already declared\",e,t),(s=i[t])==null||s.trackReference.finish(),(u=i[t])==null||u.representations.finish());let a=r.getValue(),o;R(a)?o=new G({representationIds:[],switchingMode:\"lazy\"}):(o=new G(a.representations.getValue()),r.setValue(H({},a,{representations:o}))),i[t]={trackReference:r,representations:o}}setTrack(e,t,r){var a;let i=(a=this._refs.get(e))==null?void 0:a[t];return i===void 0?(c.debug(\"WP: Setting track for inexistent periodId\",e,t),!1):(R(r)?(i.representations=new G({representationIds:[],switchingMode:\"lazy\"}),i.trackReference.setValue(r)):(i.representations=new G(r.initialRepresentations),i.trackReference.setValue({adaptationId:r.adaptationId,switchingMode:r.switchingMode,representations:i.representations,relativeResumingPosition:r.relativeResumingPosition})),!0)}updateRepresentations(e,t,r,i){var s;let a=(s=this._refs.get(e))==null?void 0:s[r];if(a===void 0)return c.debug(\"WP: Setting track for inexistent periodId\",e,r),!1;let o=a.trackReference.getValue();return R(o)||o.adaptationId!==t?(c.debug(\"WP: Desynchronized Adaptation id\",o==null?void 0:o.adaptationId,t),!1):(a.representations.setValue(i),!0)}removeTrackSetter(e,t){let r=this._refs.get(e),i=r==null?void 0:r[t];return r===void 0||i===void 0?(c.debug(\"WP: Removing track setter for inexistent periodId\",e,t),!1):(i.trackReference.finish(),i.representations.finish(),delete r[t],Object.keys(r).length===0&&this._refs.delete(e),!0)}};var Zn=class{constructor(e,t){this._contentId=e,this._messageSender=t,this._queues={pushTextData:[],remove:[]}}pushTextData(e){return new Promise((t,r)=>{this._messageSender({type:\"push-text-data\",contentId:this._contentId,value:e}),this._queues.pushTextData.push({resolve:t,reject:r})})}remove(e,t){return new Promise((r,i)=>{this._messageSender({type:\"remove-text-data\",contentId:this._contentId,value:{start:e,end:t}}),this._queues.remove.push({resolve:r,reject:i})})}reset(){this._messageSender({type:\"reset-text-displayer\",contentId:this._contentId,value:null}),this._resetCurrentQueue()}stop(){this._messageSender({type:\"stop-text-displayer\",contentId:this._contentId,value:null}),this._resetCurrentQueue()}_resetCurrentQueue(){let e=new ie;this._queues.pushTextData.forEach(t=>{t.reject(e)}),this._queues.remove.forEach(t=>{t.reject(e)})}onPushedTrackSuccess(e){let t=this._queues.pushTextData.shift();if(t===void 0){c.error(\"WMS: pushTextData success for inexistant operation\");return}t.resolve(e)}onPushedTrackError(e){let t=this._queues.pushTextData.shift();if(t===void 0){c.error(\"WMS: pushTextData error for inexistant operation\");return}t.reject(e)}onRemoveSuccess(e){let t=this._queues.remove.shift();if(t===void 0){c.error(\"WMS: remove success for inexistant operation\");return}t.resolve(e)}onRemoveError(e){let t=this._queues.pushTextData.shift();if(t===void 0){c.error(\"WMS: pushTextData error for inexistant operation\");return}t.reject(e)}};var Fs=Ae(),Gt=class{constructor({hasMseInWorker:e,hasVideo:t}){this._currentContent=null,this._currentMediaSourceCanceller=new W,this._hasVideo=t,this._hasMseInWorker=e;let r=new W;this._contentCanceller=r}initializeNewContent(e){return new Promise((t,r)=>{var M,_;this.disposeCurrentContent();let i=this._contentCanceller,a=new W;this._currentMediaSourceCanceller=a,a.linkToSignal(i.signal);let{contentId:o,url:s,hasText:u,transportOptions:d}=e,f=null;he(ae.transports.dash!==void 0,\"Multithread RxPlayer should have access to the DASH feature\");let m=typeof d.representationFilter==\"string\"?no(d.representationFilter):void 0,l=ae.transports.dash(Le(_e({},d),{representationFilter:m})),p=new xa(s===void 0?void 0:[s],l,e.manifestRetryOptions),g=Ns({initialBitrates:{audio:(M=e.initialAudioBitrate)!=null?M:0,video:(_=e.initialVideoBitrate)!=null?_:0},lowLatencyMode:d.lowLatencyMode,throttlers:{limitResolution:{video:zr},throttleBitrate:{video:Wr}}}),h=a.signal.register(A=>{r(A)}),I=new Da(l,e.segmentRetryOptions,i.signal),y=new Xn,[E,v,T]=zs(o,{hasMseInWorker:this._hasMseInWorker,hasVideo:this._hasVideo,hasText:u},a.signal),C=new $n(v);this._currentContent={contentId:o,decipherabilityFreezeDetector:C,mediaSource:E,manifest:null,manifestFetcher:p,representationEstimator:g,segmentSinksStore:v,segmentFetcherCreator:I,workerTextSender:T,trackChoiceSetter:y},E.addEventListener(\"mediaSourceOpen\",function(){P()},a.signal),i.signal.register(()=>{p.dispose()}),p.addEventListener(\"warning\",A=>{Q({type:\"warning\",contentId:o,value:we(A)})},i.signal),p.addEventListener(\"manifestReady\",A=>{if(f!==null){c.warn(\"WP: Multiple `manifestReady` events, ignoring\");return}f=A,this._currentContent!==null&&(this._currentContent.manifest=f),P()},a.signal),p.addEventListener(\"error\",A=>{r(A)},i.signal),p.start();function P(){if(f===null||E.readyState===\"closed\"||a.isUsed())return;let A=f.getMetadataSnapshot();f.addEventListener(\"manifestUpdate\",x=>{if(f===null)return;let k=H(f.getMetadataSnapshot(),{periods:[]});Q({type:\"manifest-update\",contentId:o,value:{manifest:k,updates:x}})},i.signal),h(),t(A)}})}getCurrentContent(){return this._currentContent}scheduleManifestRefresh(e){var t;(t=this._currentContent)==null||t.manifestFetcher.scheduleManualRefresh(e)}reloadMediaSource(e){if(this._currentMediaSourceCanceller.cancel(),this._currentContent===null)return Promise.reject(new Error(\"CP: No content anymore\"));this._currentContent.trackChoiceSetter.reset(),this._currentMediaSourceCanceller=new W,Q({type:\"reloading-media-source\",contentId:this._currentContent.contentId,value:e},[]);let[t,r,i]=zs(this._currentContent.contentId,{hasMseInWorker:this._hasMseInWorker,hasVideo:this._hasVideo,hasText:this._currentContent.workerTextSender!==null},this._currentMediaSourceCanceller.signal);return this._currentContent.mediaSource=t,this._currentContent.segmentSinksStore=r,this._currentContent.workerTextSender=i,new Promise((a,o)=>{t.addEventListener(\"mediaSourceOpen\",function(){a()},this._currentMediaSourceCanceller.signal),t.addEventListener(\"mediaSourceClose\",function(){o(new Error(\"MediaSource ReadyState changed to close during init.\"))},this._currentMediaSourceCanceller.signal),this._currentMediaSourceCanceller.signal.register(s=>{o(s)})})}disposeCurrentContent(){this._contentCanceller.cancel(),this._contentCanceller=new W}};function zs(n,e,t){let r;if(e.hasMseInWorker){let s=new Bn(Fs());r=s;let u,d=s.handle;if(d.type===\"handle\")u={type:\"handle\",value:d.value};else{let f=URL.createObjectURL(d.value);u={type:\"url\",value:f},t.register(()=>{URL.revokeObjectURL(f)})}Q({type:\"attach-media-source\",contentId:n,value:u,mediaSourceId:r.id},[d.value])}else r=new Un(Fs(),n,Q);let i=e.hasText?new Zn(n,Q):null,{hasVideo:a}=e,o=new It(r,a,i);return t.register(()=>{o.disposeAll(),i==null||i.stop(),r.dispose()}),[r,o,i]}function Fa(){let n=!1,e=new Gt({hasMseInWorker:!1,hasVideo:!0}),t=null,r=new zo;ae.dashParsers.wasm=r,ae.dashParsers.fastJs=Co,ae.transports.dash=es;let i=null;onmessage=function(a){var s,u,d;c.debug(\"Worker: received message\",a.data.type);let o=a.data;switch(o.type){case\"init\":he(!n),n=!0;let f=o.value.date-o.value.timestamp,m=Date.now()-performance.now();Hr.setValueIfChanged(m-f),Ws(o.value.logLevel,o.value.sendBackLogs),o.value.dashWasmUrl!==void 0&&r.isCompatible()&&r.initialize({wasmUrl:o.value.dashWasmUrl}).catch(l=>{let p=l instanceof Error?l.toString():\"Unknown Error\";c.error(\"Worker: Could not initialize DASH_WASM parser\",p)}),(!o.value.hasVideo||o.value.hasMseInWorker)&&(e.disposeCurrentContent(),e=new Gt({hasMseInWorker:o.value.hasMseInWorker,hasVideo:o.value.hasVideo})),ae.codecSupportProber=o.value.hasMseInWorker?ao:oo,Q({type:\"init-success\",value:null});break;case\"log-level-update\":Ws(o.value.logLevel,o.value.sendBackLogs);break;case\"prepare\":Jl(e,o.value);break;case\"start\":{let l=e.getCurrentContent();if(o.contentId!==(l==null?void 0:l.contentId))return;t!==null&&(t.cancel(),t=null);let p=new W,g=new G(H(o.value.initialObservation,{position:new vt(...o.value.initialObservation.position)}));i=g,t=p,t.signal.register(()=>{g.finish()}),Vs(o.value,e,g,p.signal);break}case\"observation\":{let l=e.getCurrentContent();if(o.contentId!==(l==null?void 0:l.contentId))return;let p=o.value,{buffered:g}=p,h=Ia(l.mediaSource,null);h.audio!==null&&(g.audio=h.audio),h.video!==null&&(g.video=h.video),i==null||i.setValue(H(p,{position:new vt(...o.value.position)}));break}case\"ref-update\":ef(o);break;case\"stop\":if(o.contentId!==((s=e.getCurrentContent())==null?void 0:s.contentId))return;e.disposeCurrentContent(),t!==null&&(t.cancel(),t=null);break;case\"sb-success\":{let l=e.getCurrentContent();if(o.mediaSourceId!==(l==null?void 0:l.mediaSource.id))return;let{sourceBuffers:p}=l.mediaSource,g=K(p,h=>h.type===o.sourceBufferType);if(g===void 0){c.info(\"WP: Success for an unknown SourceBuffer\",o.sourceBufferType);return}if(g.onOperationSuccess===void 0){c.warn(\"WP: A SourceBufferInterface with MSE performed a cross-thread operation\",o.sourceBufferType);return}g.onOperationSuccess(o.operationId,o.value.buffered);break}case\"sb-error\":{let l=e.getCurrentContent();if(o.mediaSourceId!==(l==null?void 0:l.mediaSource.id))return;let{sourceBuffers:p}=l.mediaSource,g=K(p,h=>h.type===o.sourceBufferType);if(g===void 0){c.info(\"WP: Error for an unknown SourceBuffer\",o.sourceBufferType);return}if(g.onOperationFailure===void 0){c.warn(\"WP: A SourceBufferInterface with MSE performed a cross-thread operation\",o.sourceBufferType);return}g.onOperationFailure(o.operationId,o.value);break}case\"media-source-ready-state-change\":{let l=e.getCurrentContent();if(o.mediaSourceId!==(l==null?void 0:l.mediaSource.id))return;if(l.mediaSource.onMediaSourceReadyStateChanged===void 0){c.warn(\"WP: A MediaSourceInterface with MSE performed a cross-thread operation\");return}l.mediaSource.onMediaSourceReadyStateChanged(o.value);break}case\"decipherability-update\":{if(o.contentId!==((u=e.getCurrentContent())==null?void 0:u.contentId))return;let l=e.getCurrentContent();if(l===null||l.manifest===null)return;let p=o.value;l.manifest.updateRepresentationsDeciperability(g=>{for(let h of p)if(g.representation.uniqueId===h.representationUniqueId)return h.decipherable;return g.representation.decipherable});break}case\"codec-support-update\":{let l=e.getCurrentContent();if(l===null||l.manifest===null)return;if(typeof((d=ae.codecSupportProber)==null?void 0:d.updateCache)==\"function\")for(let{mimeType:p,codec:g,result:h}of o.value)ae.codecSupportProber.updateCache(p,g,h);try{let p=l.manifest.refreshCodecSupport(o.value);p!==null&&Q({type:\"warning\",contentId:l.contentId,value:we(p)})}catch(p){Q({type:\"error\",contentId:l.contentId,value:we(p)})}break}case\"urls-update\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;l.manifestFetcher.updateContentUrls(o.value.urls,o.value.refreshNow);break}case\"track-update\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;l.trackChoiceSetter.setTrack(o.value.periodId,o.value.bufferType,o.value.choice);break}case\"rep-update\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;l.trackChoiceSetter.updateRepresentations(o.value.periodId,o.value.adaptationId,o.value.bufferType,o.value.choice);break}case\"add-text-success\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;if(l.workerTextSender===null){c.error(\"WP: Added text track but text track aren't enabled\");return}l.workerTextSender.onPushedTrackSuccess(o.value.ranges);break}case\"push-text-error\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;if(l.workerTextSender===null){c.error(\"WP: Added text track but text track aren't enabled\");return}l.workerTextSender.onPushedTrackError(new Error(o.value.message));break}case\"remove-text-success\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;if(l.workerTextSender===null){c.error(\"WP: Removed text track but text track aren't enabled\");return}l.workerTextSender.onRemoveSuccess(o.value.ranges);break}case\"remove-text-error\":{let l=e.getCurrentContent();if(l===null||l.contentId!==o.contentId)return;if(l.workerTextSender===null){c.error(\"WP: Removed text track but text track aren't enabled\");return}l.workerTextSender.onRemoveError(new Error(o.value.message));break}default:ze(o)}}}function Jl(n,e){n.initializeNewContent(e).then(t=>{Q({type:\"manifest-ready\",contentId:e.contentId,value:{manifest:t}})},t=>{Q({type:\"error\",contentId:e.contentId,value:we(t)})})}function ef(n){switch(n.value.name){case\"wantedBufferAhead\":Na.setValueIfChanged(n.value.newVal);break;case\"maxVideoBufferSize\":Ba.setValueIfChanged(n.value.newVal);break;case\"maxBufferBehind\":La.setValueIfChanged(n.value.newVal);break;case\"maxBufferAhead\":Ua.setValueIfChanged(n.value.newVal);break;case\"limitVideoResolution\":zr.setValueIfChanged(n.value.newVal);break;case\"throttleVideoBitrate\":Wr.setValueIfChanged(n.value.newVal);break;default:ze(n.value)}}function Vs(n,e,t,r){var M;let i=new W;i.linkToSignal(r);let a=new Map,o=e.getCurrentContent();if(o===null||o.manifest===null){let _=new Re(\"NONE\",\"Loading content when none is prepared\");Q({type:\"error\",contentId:void 0,value:we(_)});return}let{contentId:s,manifest:u,mediaSource:d,representationEstimator:f,segmentSinksStore:m,segmentFetcherCreator:l}=o,{drmSystemId:p,enableFastSwitching:g,initialTime:h,onCodecSwitch:I}=n;if(t.onUpdate(_=>{o.decipherabilityFreezeDetector.needToReload(_)&&P({timeOffset:0,minimumPosition:0,maximumPosition:1/0}),[\"video\",\"audio\",\"text\"].forEach(A=>{var k;let x=m.getStatus(A);x.type===\"initialized\"&&x.value.synchronizeInventory((k=_.buffered[A])!=null?k:[])})}),((M=u.getPeriodForTime(h))!=null?M:u.getNextPeriod(h))===void 0){let _=new j(\"MEDIA_STARTING_TIME_NOT_FOUND\",\"Wanted starting time not found in the Manifest.\");Q({type:\"error\",contentId:s,value:we(_)});return}let E=new gn(t,s,Q,i.signal),v=ha(u,d,E,m,{onWarning:_=>Q({type:\"warning\",contentId:s,value:we(_)}),onPeriodChanged:_=>{Q({type:\"active-period-changed\",contentId:s,value:{periodId:_.id}})}},i.signal);_s({initialPeriod:u.periods[0],manifest:u},E,f,m,l,{wantedBufferAhead:Na,maxVideoBufferSize:Ba,maxBufferAhead:Ua,maxBufferBehind:La,drmSystemId:p,enableFastSwitching:g,onCodecSwitch:I},T(),i.signal);function T(){return{needsBufferFlush(_){Q({type:\"needs-buffer-flush\",contentId:s,value:_})},streamStatusUpdate(_){C(_),u.isLastPeriodKnown&&_.period.id===u.periods[u.periods.length-1].id&&(_.hasFinishedLoading||_.isEmptyStream?v.onLastSegmentFinishedLoading(_.bufferType):v.onLastSegmentLoadingResume(_.bufferType))},needsManifestRefresh(){e.scheduleManifestRefresh({enablePartialRefresh:!0,canUseUnsafeMode:!0})},manifestMightBeOufOfSync(){let{OUT_OF_SYNC_MANIFEST_REFRESH_DELAY:_}=U.getCurrent();e.scheduleManifestRefresh({enablePartialRefresh:!1,canUseUnsafeMode:!1,delay:_})},lockedStream(_){Q({type:\"locked-stream\",contentId:s,value:{periodId:_.period.id,bufferType:_.bufferType}})},adaptationChange(_){var A,x;v.onAdaptationChange(_.type,_.period,_.adaptation),!i.signal.isCancelled()&&Q({type:\"adaptation-changed\",contentId:s,value:{adaptationId:(x=(A=_.adaptation)==null?void 0:A.id)!=null?x:null,periodId:_.period.id,type:_.type}})},representationChange(_){var A,x;v.onRepresentationChange(_.type,_.period),!i.signal.isCancelled()&&Q({type:\"representation-changed\",contentId:s,value:{adaptationId:_.adaptation.id,representationId:(x=(A=_.representation)==null?void 0:A.id)!=null?x:null,periodId:_.period.id,type:_.type}})},inbandEvent(_){Q({type:\"inband-event\",contentId:s,value:_})},warning(_){Q({type:\"warning\",contentId:s,value:we(_)})},periodStreamReady(_){o!==null&&(o.trackChoiceSetter.addTrackSetter(_.period.id,_.type,_.adaptationRef),Q({type:\"period-stream-ready\",contentId:s,value:{periodId:_.period.id,bufferType:_.type}}))},periodStreamCleared(_){if(o===null)return;let A=a.get(_.period);A!==void 0&&(A.delete(_.type),A.size===0&&a.delete(_.period)),o.trackChoiceSetter.removeTrackSetter(_.period.id,_.type),Q({type:\"period-stream-cleared\",contentId:s,value:{periodId:_.period.id,bufferType:_.type}})},bitrateEstimateChange(_){Q({type:\"bitrate-estimate-change\",contentId:s,value:{bitrate:_.bitrate,bufferType:_.type}})},needsMediaSourceReload(_){P(_)},needsDecipherabilityFlush(){Q({type:\"needs-decipherability-flush\",contentId:s,value:null})},encryptionDataEncountered(_){for(let A of _){let x=A.content,k=_e({},x);k.manifest instanceof wt&&(k.manifest=k.manifest.getMetadataSnapshot()),k.period instanceof lt&&(k.period=k.period.getMetadataSnapshot()),k.adaptation instanceof ut&&(k.adaptation=k.adaptation.getMetadataSnapshot()),k.representation instanceof Zt&&(k.representation=k.representation.getMetadataSnapshot()),Q({type:\"encryption-data-encountered\",contentId:s,value:{keyIds:A.keyIds,values:A.values,content:k,type:A.type}})}},error(_){Q({type:\"error\",contentId:s,value:we(_)})}}}function C(_){let{imminentDiscontinuity:A}=_,x=a.get(_.period),k=x==null?void 0:x.get(_.bufferType);if(k!==void 0){if(k.discontinuity===null){if(A===null)return}else if(A!==null&&k.discontinuity.start===A.start&&k.discontinuity.end===A.end)return}x===void 0&&(x=new Map,a.set(_.period,x));let D={periodId:_.period.id,bufferType:_.bufferType,discontinuity:_.imminentDiscontinuity,position:_.position};x.set(_.bufferType,D),Q({type:\"discontinuity-update\",contentId:s,value:D})}function P(_){let x=t.getValue().position.getWanted();i!==null&&i.cancel(),e.reloadMediaSource(_).then(()=>{Vs({initialTime:x,drmSystemId:n.drmSystemId,enableFastSwitching:n.enableFastSwitching,onCodecSwitch:n.onCodecSwitch},e,t,r)},k=>{Q({type:\"error\",contentId:s,value:we(k)})})}}function Ws(n,e){e?c.setLevel(n,(t,r)=>{let i=r.map(a=>a instanceof Error?we(a):a);postMessage({type:\"log\",value:{logLevel:t,logs:i}})}):c.setLevel(n)}var qs=Fa;qs();})();\n" + "})()"], { type: "application/javascript" });
|
|
5
5
|
exports.EMBEDDED_WORKER = blob;
|
|
6
6
|
exports.default = blob;
|