{"version":3,"file":"index.js","sources":["../../../../node_modules/.pnpm/@splidejs+splide@4.1.4/node_modules/@splidejs/splide/dist/js/splide.esm.js","../../../../node_modules/.pnpm/@zip.js+zip.js@2.4.1/node_modules/@zip.js/zip.js/lib/core/codecs/deflate.js","../../../../node_modules/.pnpm/@zip.js+zip.js@2.4.1/node_modules/@zip.js/zip.js/lib/core/codecs/inflate.js","../../../../node_modules/.pnpm/@zip.js+zip.js@2.4.1/node_modules/@zip.js/zip.js/lib/core/configuration.js","../../../../node_modules/.pnpm/@zip.js+zip.js@2.4.1/node_modules/@zip.js/zip.js/lib/core/util/mime-type.js","../../../../node_modules/.pnpm/@zip.js+zip.js@2.4.1/node_modules/@zip.js/zip.js/lib/core/codecs/sjcl.js","../../../../node_modules/.pnpm/@zip.js+zip.js@2.4.1/node_modules/@zip.js/zip.js/lib/core/codecs/aes-crypto.js","../../../../node_modules/.pnpm/@zip.js+zip.js@2.4.1/node_modules/@zip.js/zip.js/lib/zip-fs.js","../../../../node_modules/.pnpm/@zip.js+zip.js@2.4.1/node_modules/@zip.js/zip.js/lib/z-worker-inline.js","../../../../node_modules/.pnpm/@zip.js+zip.js@2.4.1/node_modules/@zip.js/zip.js/index.js","../../../../libs/ts_utils/dist/index.mjs","../../../../libs/audio_utils/dist/index.mjs","../../../../node_modules/.pnpm/fix-webm-duration@1.0.5/node_modules/fix-webm-duration/fix-webm-duration.js","../../../../libs/audio_input/dist/index.mjs","../src/settings/AppSettings.ts","../src/community/PublicCommunityLI.ts","../src/ui/Templates.ts","../../other_apps/index_page/index.ts"],"sourcesContent":["function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\n/*!\n * Splide.js\n * Version : 4.1.4\n * License : MIT\n * Copyright: 2022 Naotoshi Fujita\n */\nvar MEDIA_PREFERS_REDUCED_MOTION = \"(prefers-reduced-motion: reduce)\";\nvar CREATED = 1;\nvar MOUNTED = 2;\nvar IDLE = 3;\nvar MOVING = 4;\nvar SCROLLING = 5;\nvar DRAGGING = 6;\nvar DESTROYED = 7;\nvar STATES = {\n CREATED: CREATED,\n MOUNTED: MOUNTED,\n IDLE: IDLE,\n MOVING: MOVING,\n SCROLLING: SCROLLING,\n DRAGGING: DRAGGING,\n DESTROYED: DESTROYED\n};\n\nfunction empty(array) {\n array.length = 0;\n}\n\nfunction slice(arrayLike, start, end) {\n return Array.prototype.slice.call(arrayLike, start, end);\n}\n\nfunction apply(func) {\n return func.bind.apply(func, [null].concat(slice(arguments, 1)));\n}\n\nvar nextTick = setTimeout;\n\nvar noop = function noop() {};\n\nfunction raf(func) {\n return requestAnimationFrame(func);\n}\n\nfunction typeOf(type, subject) {\n return typeof subject === type;\n}\n\nfunction isObject(subject) {\n return !isNull(subject) && typeOf(\"object\", subject);\n}\n\nvar isArray = Array.isArray;\nvar isFunction = apply(typeOf, \"function\");\nvar isString = apply(typeOf, \"string\");\nvar isUndefined = apply(typeOf, \"undefined\");\n\nfunction isNull(subject) {\n return subject === null;\n}\n\nfunction isHTMLElement(subject) {\n try {\n return subject instanceof (subject.ownerDocument.defaultView || window).HTMLElement;\n } catch (e) {\n return false;\n }\n}\n\nfunction toArray(value) {\n return isArray(value) ? value : [value];\n}\n\nfunction forEach(values, iteratee) {\n toArray(values).forEach(iteratee);\n}\n\nfunction includes(array, value) {\n return array.indexOf(value) > -1;\n}\n\nfunction push(array, items) {\n array.push.apply(array, toArray(items));\n return array;\n}\n\nfunction toggleClass(elm, classes, add) {\n if (elm) {\n forEach(classes, function (name) {\n if (name) {\n elm.classList[add ? \"add\" : \"remove\"](name);\n }\n });\n }\n}\n\nfunction addClass(elm, classes) {\n toggleClass(elm, isString(classes) ? classes.split(\" \") : classes, true);\n}\n\nfunction append(parent, children) {\n forEach(children, parent.appendChild.bind(parent));\n}\n\nfunction before(nodes, ref) {\n forEach(nodes, function (node) {\n var parent = (ref || node).parentNode;\n\n if (parent) {\n parent.insertBefore(node, ref);\n }\n });\n}\n\nfunction matches(elm, selector) {\n return isHTMLElement(elm) && (elm[\"msMatchesSelector\"] || elm.matches).call(elm, selector);\n}\n\nfunction children(parent, selector) {\n var children2 = parent ? slice(parent.children) : [];\n return selector ? children2.filter(function (child) {\n return matches(child, selector);\n }) : children2;\n}\n\nfunction child(parent, selector) {\n return selector ? children(parent, selector)[0] : parent.firstElementChild;\n}\n\nvar ownKeys = Object.keys;\n\nfunction forOwn(object, iteratee, right) {\n if (object) {\n (right ? ownKeys(object).reverse() : ownKeys(object)).forEach(function (key) {\n key !== \"__proto__\" && iteratee(object[key], key);\n });\n }\n\n return object;\n}\n\nfunction assign(object) {\n slice(arguments, 1).forEach(function (source) {\n forOwn(source, function (value, key) {\n object[key] = source[key];\n });\n });\n return object;\n}\n\nfunction merge(object) {\n slice(arguments, 1).forEach(function (source) {\n forOwn(source, function (value, key) {\n if (isArray(value)) {\n object[key] = value.slice();\n } else if (isObject(value)) {\n object[key] = merge({}, isObject(object[key]) ? object[key] : {}, value);\n } else {\n object[key] = value;\n }\n });\n });\n return object;\n}\n\nfunction omit(object, keys) {\n forEach(keys || ownKeys(object), function (key) {\n delete object[key];\n });\n}\n\nfunction removeAttribute(elms, attrs) {\n forEach(elms, function (elm) {\n forEach(attrs, function (attr) {\n elm && elm.removeAttribute(attr);\n });\n });\n}\n\nfunction setAttribute(elms, attrs, value) {\n if (isObject(attrs)) {\n forOwn(attrs, function (value2, name) {\n setAttribute(elms, name, value2);\n });\n } else {\n forEach(elms, function (elm) {\n isNull(value) || value === \"\" ? removeAttribute(elm, attrs) : elm.setAttribute(attrs, String(value));\n });\n }\n}\n\nfunction create(tag, attrs, parent) {\n var elm = document.createElement(tag);\n\n if (attrs) {\n isString(attrs) ? addClass(elm, attrs) : setAttribute(elm, attrs);\n }\n\n parent && append(parent, elm);\n return elm;\n}\n\nfunction style(elm, prop, value) {\n if (isUndefined(value)) {\n return getComputedStyle(elm)[prop];\n }\n\n if (!isNull(value)) {\n elm.style[prop] = \"\" + value;\n }\n}\n\nfunction display(elm, display2) {\n style(elm, \"display\", display2);\n}\n\nfunction focus(elm) {\n elm[\"setActive\"] && elm[\"setActive\"]() || elm.focus({\n preventScroll: true\n });\n}\n\nfunction getAttribute(elm, attr) {\n return elm.getAttribute(attr);\n}\n\nfunction hasClass(elm, className) {\n return elm && elm.classList.contains(className);\n}\n\nfunction rect(target) {\n return target.getBoundingClientRect();\n}\n\nfunction remove(nodes) {\n forEach(nodes, function (node) {\n if (node && node.parentNode) {\n node.parentNode.removeChild(node);\n }\n });\n}\n\nfunction parseHtml(html) {\n return child(new DOMParser().parseFromString(html, \"text/html\").body);\n}\n\nfunction prevent(e, stopPropagation) {\n e.preventDefault();\n\n if (stopPropagation) {\n e.stopPropagation();\n e.stopImmediatePropagation();\n }\n}\n\nfunction query(parent, selector) {\n return parent && parent.querySelector(selector);\n}\n\nfunction queryAll(parent, selector) {\n return selector ? slice(parent.querySelectorAll(selector)) : [];\n}\n\nfunction removeClass(elm, classes) {\n toggleClass(elm, classes, false);\n}\n\nfunction timeOf(e) {\n return e.timeStamp;\n}\n\nfunction unit(value) {\n return isString(value) ? value : value ? value + \"px\" : \"\";\n}\n\nvar PROJECT_CODE = \"splide\";\nvar DATA_ATTRIBUTE = \"data-\" + PROJECT_CODE;\n\nfunction assert(condition, message) {\n if (!condition) {\n throw new Error(\"[\" + PROJECT_CODE + \"] \" + (message || \"\"));\n }\n}\n\nvar min = Math.min,\n max = Math.max,\n floor = Math.floor,\n ceil = Math.ceil,\n abs = Math.abs;\n\nfunction approximatelyEqual(x, y, epsilon) {\n return abs(x - y) < epsilon;\n}\n\nfunction between(number, x, y, exclusive) {\n var minimum = min(x, y);\n var maximum = max(x, y);\n return exclusive ? minimum < number && number < maximum : minimum <= number && number <= maximum;\n}\n\nfunction clamp(number, x, y) {\n var minimum = min(x, y);\n var maximum = max(x, y);\n return min(max(minimum, number), maximum);\n}\n\nfunction sign(x) {\n return +(x > 0) - +(x < 0);\n}\n\nfunction camelToKebab(string) {\n return string.replace(/([a-z0-9])([A-Z])/g, \"$1-$2\").toLowerCase();\n}\n\nfunction format(string, replacements) {\n forEach(replacements, function (replacement) {\n string = string.replace(\"%s\", \"\" + replacement);\n });\n return string;\n}\n\nfunction pad(number) {\n return number < 10 ? \"0\" + number : \"\" + number;\n}\n\nvar ids = {};\n\nfunction uniqueId(prefix) {\n return \"\" + prefix + pad(ids[prefix] = (ids[prefix] || 0) + 1);\n}\n\nfunction EventBinder() {\n var listeners = [];\n\n function bind(targets, events, callback, options) {\n forEachEvent(targets, events, function (target, event, namespace) {\n var isEventTarget = (\"addEventListener\" in target);\n var remover = isEventTarget ? target.removeEventListener.bind(target, event, callback, options) : target[\"removeListener\"].bind(target, callback);\n isEventTarget ? target.addEventListener(event, callback, options) : target[\"addListener\"](callback);\n listeners.push([target, event, namespace, callback, remover]);\n });\n }\n\n function unbind(targets, events, callback) {\n forEachEvent(targets, events, function (target, event, namespace) {\n listeners = listeners.filter(function (listener) {\n if (listener[0] === target && listener[1] === event && listener[2] === namespace && (!callback || listener[3] === callback)) {\n listener[4]();\n return false;\n }\n\n return true;\n });\n });\n }\n\n function dispatch(target, type, detail) {\n var e;\n var bubbles = true;\n\n if (typeof CustomEvent === \"function\") {\n e = new CustomEvent(type, {\n bubbles: bubbles,\n detail: detail\n });\n } else {\n e = document.createEvent(\"CustomEvent\");\n e.initCustomEvent(type, bubbles, false, detail);\n }\n\n target.dispatchEvent(e);\n return e;\n }\n\n function forEachEvent(targets, events, iteratee) {\n forEach(targets, function (target) {\n target && forEach(events, function (events2) {\n events2.split(\" \").forEach(function (eventNS) {\n var fragment = eventNS.split(\".\");\n iteratee(target, fragment[0], fragment[1]);\n });\n });\n });\n }\n\n function destroy() {\n listeners.forEach(function (data) {\n data[4]();\n });\n empty(listeners);\n }\n\n return {\n bind: bind,\n unbind: unbind,\n dispatch: dispatch,\n destroy: destroy\n };\n}\n\nvar EVENT_MOUNTED = \"mounted\";\nvar EVENT_READY = \"ready\";\nvar EVENT_MOVE = \"move\";\nvar EVENT_MOVED = \"moved\";\nvar EVENT_CLICK = \"click\";\nvar EVENT_ACTIVE = \"active\";\nvar EVENT_INACTIVE = \"inactive\";\nvar EVENT_VISIBLE = \"visible\";\nvar EVENT_HIDDEN = \"hidden\";\nvar EVENT_REFRESH = \"refresh\";\nvar EVENT_UPDATED = \"updated\";\nvar EVENT_RESIZE = \"resize\";\nvar EVENT_RESIZED = \"resized\";\nvar EVENT_DRAG = \"drag\";\nvar EVENT_DRAGGING = \"dragging\";\nvar EVENT_DRAGGED = \"dragged\";\nvar EVENT_SCROLL = \"scroll\";\nvar EVENT_SCROLLED = \"scrolled\";\nvar EVENT_OVERFLOW = \"overflow\";\nvar EVENT_DESTROY = \"destroy\";\nvar EVENT_ARROWS_MOUNTED = \"arrows:mounted\";\nvar EVENT_ARROWS_UPDATED = \"arrows:updated\";\nvar EVENT_PAGINATION_MOUNTED = \"pagination:mounted\";\nvar EVENT_PAGINATION_UPDATED = \"pagination:updated\";\nvar EVENT_NAVIGATION_MOUNTED = \"navigation:mounted\";\nvar EVENT_AUTOPLAY_PLAY = \"autoplay:play\";\nvar EVENT_AUTOPLAY_PLAYING = \"autoplay:playing\";\nvar EVENT_AUTOPLAY_PAUSE = \"autoplay:pause\";\nvar EVENT_LAZYLOAD_LOADED = \"lazyload:loaded\";\nvar EVENT_SLIDE_KEYDOWN = \"sk\";\nvar EVENT_SHIFTED = \"sh\";\nvar EVENT_END_INDEX_CHANGED = \"ei\";\n\nfunction EventInterface(Splide2) {\n var bus = Splide2 ? Splide2.event.bus : document.createDocumentFragment();\n var binder = EventBinder();\n\n function on(events, callback) {\n binder.bind(bus, toArray(events).join(\" \"), function (e) {\n callback.apply(callback, isArray(e.detail) ? e.detail : []);\n });\n }\n\n function emit(event) {\n binder.dispatch(bus, event, slice(arguments, 1));\n }\n\n if (Splide2) {\n Splide2.event.on(EVENT_DESTROY, binder.destroy);\n }\n\n return assign(binder, {\n bus: bus,\n on: on,\n off: apply(binder.unbind, bus),\n emit: emit\n });\n}\n\nfunction RequestInterval(interval, onInterval, onUpdate, limit) {\n var now = Date.now;\n var startTime;\n var rate = 0;\n var id;\n var paused = true;\n var count = 0;\n\n function update() {\n if (!paused) {\n rate = interval ? min((now() - startTime) / interval, 1) : 1;\n onUpdate && onUpdate(rate);\n\n if (rate >= 1) {\n onInterval();\n startTime = now();\n\n if (limit && ++count >= limit) {\n return pause();\n }\n }\n\n id = raf(update);\n }\n }\n\n function start(resume) {\n resume || cancel();\n startTime = now() - (resume ? rate * interval : 0);\n paused = false;\n id = raf(update);\n }\n\n function pause() {\n paused = true;\n }\n\n function rewind() {\n startTime = now();\n rate = 0;\n\n if (onUpdate) {\n onUpdate(rate);\n }\n }\n\n function cancel() {\n id && cancelAnimationFrame(id);\n rate = 0;\n id = 0;\n paused = true;\n }\n\n function set(time) {\n interval = time;\n }\n\n function isPaused() {\n return paused;\n }\n\n return {\n start: start,\n rewind: rewind,\n pause: pause,\n cancel: cancel,\n set: set,\n isPaused: isPaused\n };\n}\n\nfunction State(initialState) {\n var state = initialState;\n\n function set(value) {\n state = value;\n }\n\n function is(states) {\n return includes(toArray(states), state);\n }\n\n return {\n set: set,\n is: is\n };\n}\n\nfunction Throttle(func, duration) {\n var interval = RequestInterval(duration || 0, func, null, 1);\n return function () {\n interval.isPaused() && interval.start();\n };\n}\n\nfunction Media(Splide2, Components2, options) {\n var state = Splide2.state;\n var breakpoints = options.breakpoints || {};\n var reducedMotion = options.reducedMotion || {};\n var binder = EventBinder();\n var queries = [];\n\n function setup() {\n var isMin = options.mediaQuery === \"min\";\n ownKeys(breakpoints).sort(function (n, m) {\n return isMin ? +n - +m : +m - +n;\n }).forEach(function (key) {\n register(breakpoints[key], \"(\" + (isMin ? \"min\" : \"max\") + \"-width:\" + key + \"px)\");\n });\n register(reducedMotion, MEDIA_PREFERS_REDUCED_MOTION);\n update();\n }\n\n function destroy(completely) {\n if (completely) {\n binder.destroy();\n }\n }\n\n function register(options2, query) {\n var queryList = matchMedia(query);\n binder.bind(queryList, \"change\", update);\n queries.push([options2, queryList]);\n }\n\n function update() {\n var destroyed = state.is(DESTROYED);\n var direction = options.direction;\n var merged = queries.reduce(function (merged2, entry) {\n return merge(merged2, entry[1].matches ? entry[0] : {});\n }, {});\n omit(options);\n set(merged);\n\n if (options.destroy) {\n Splide2.destroy(options.destroy === \"completely\");\n } else if (destroyed) {\n destroy(true);\n Splide2.mount();\n } else {\n direction !== options.direction && Splide2.refresh();\n }\n }\n\n function reduce(enable) {\n if (matchMedia(MEDIA_PREFERS_REDUCED_MOTION).matches) {\n enable ? merge(options, reducedMotion) : omit(options, ownKeys(reducedMotion));\n }\n }\n\n function set(opts, base, notify) {\n merge(options, opts);\n base && merge(Object.getPrototypeOf(options), opts);\n\n if (notify || !state.is(CREATED)) {\n Splide2.emit(EVENT_UPDATED, options);\n }\n }\n\n return {\n setup: setup,\n destroy: destroy,\n reduce: reduce,\n set: set\n };\n}\n\nvar ARROW = \"Arrow\";\nvar ARROW_LEFT = ARROW + \"Left\";\nvar ARROW_RIGHT = ARROW + \"Right\";\nvar ARROW_UP = ARROW + \"Up\";\nvar ARROW_DOWN = ARROW + \"Down\";\nvar LTR = \"ltr\";\nvar RTL = \"rtl\";\nvar TTB = \"ttb\";\nvar ORIENTATION_MAP = {\n width: [\"height\"],\n left: [\"top\", \"right\"],\n right: [\"bottom\", \"left\"],\n x: [\"y\"],\n X: [\"Y\"],\n Y: [\"X\"],\n ArrowLeft: [ARROW_UP, ARROW_RIGHT],\n ArrowRight: [ARROW_DOWN, ARROW_LEFT]\n};\n\nfunction Direction(Splide2, Components2, options) {\n function resolve(prop, axisOnly, direction) {\n direction = direction || options.direction;\n var index = direction === RTL && !axisOnly ? 1 : direction === TTB ? 0 : -1;\n return ORIENTATION_MAP[prop] && ORIENTATION_MAP[prop][index] || prop.replace(/width|left|right/i, function (match, offset) {\n var replacement = ORIENTATION_MAP[match.toLowerCase()][index] || match;\n return offset > 0 ? replacement.charAt(0).toUpperCase() + replacement.slice(1) : replacement;\n });\n }\n\n function orient(value) {\n return value * (options.direction === RTL ? 1 : -1);\n }\n\n return {\n resolve: resolve,\n orient: orient\n };\n}\n\nvar ROLE = \"role\";\nvar TAB_INDEX = \"tabindex\";\nvar DISABLED = \"disabled\";\nvar ARIA_PREFIX = \"aria-\";\nvar ARIA_CONTROLS = ARIA_PREFIX + \"controls\";\nvar ARIA_CURRENT = ARIA_PREFIX + \"current\";\nvar ARIA_SELECTED = ARIA_PREFIX + \"selected\";\nvar ARIA_LABEL = ARIA_PREFIX + \"label\";\nvar ARIA_LABELLEDBY = ARIA_PREFIX + \"labelledby\";\nvar ARIA_HIDDEN = ARIA_PREFIX + \"hidden\";\nvar ARIA_ORIENTATION = ARIA_PREFIX + \"orientation\";\nvar ARIA_ROLEDESCRIPTION = ARIA_PREFIX + \"roledescription\";\nvar ARIA_LIVE = ARIA_PREFIX + \"live\";\nvar ARIA_BUSY = ARIA_PREFIX + \"busy\";\nvar ARIA_ATOMIC = ARIA_PREFIX + \"atomic\";\nvar ALL_ATTRIBUTES = [ROLE, TAB_INDEX, DISABLED, ARIA_CONTROLS, ARIA_CURRENT, ARIA_LABEL, ARIA_LABELLEDBY, ARIA_HIDDEN, ARIA_ORIENTATION, ARIA_ROLEDESCRIPTION];\nvar CLASS_PREFIX = PROJECT_CODE + \"__\";\nvar STATUS_CLASS_PREFIX = \"is-\";\nvar CLASS_ROOT = PROJECT_CODE;\nvar CLASS_TRACK = CLASS_PREFIX + \"track\";\nvar CLASS_LIST = CLASS_PREFIX + \"list\";\nvar CLASS_SLIDE = CLASS_PREFIX + \"slide\";\nvar CLASS_CLONE = CLASS_SLIDE + \"--clone\";\nvar CLASS_CONTAINER = CLASS_SLIDE + \"__container\";\nvar CLASS_ARROWS = CLASS_PREFIX + \"arrows\";\nvar CLASS_ARROW = CLASS_PREFIX + \"arrow\";\nvar CLASS_ARROW_PREV = CLASS_ARROW + \"--prev\";\nvar CLASS_ARROW_NEXT = CLASS_ARROW + \"--next\";\nvar CLASS_PAGINATION = CLASS_PREFIX + \"pagination\";\nvar CLASS_PAGINATION_PAGE = CLASS_PAGINATION + \"__page\";\nvar CLASS_PROGRESS = CLASS_PREFIX + \"progress\";\nvar CLASS_PROGRESS_BAR = CLASS_PROGRESS + \"__bar\";\nvar CLASS_TOGGLE = CLASS_PREFIX + \"toggle\";\nvar CLASS_TOGGLE_PLAY = CLASS_TOGGLE + \"__play\";\nvar CLASS_TOGGLE_PAUSE = CLASS_TOGGLE + \"__pause\";\nvar CLASS_SPINNER = CLASS_PREFIX + \"spinner\";\nvar CLASS_SR = CLASS_PREFIX + \"sr\";\nvar CLASS_INITIALIZED = STATUS_CLASS_PREFIX + \"initialized\";\nvar CLASS_ACTIVE = STATUS_CLASS_PREFIX + \"active\";\nvar CLASS_PREV = STATUS_CLASS_PREFIX + \"prev\";\nvar CLASS_NEXT = STATUS_CLASS_PREFIX + \"next\";\nvar CLASS_VISIBLE = STATUS_CLASS_PREFIX + \"visible\";\nvar CLASS_LOADING = STATUS_CLASS_PREFIX + \"loading\";\nvar CLASS_FOCUS_IN = STATUS_CLASS_PREFIX + \"focus-in\";\nvar CLASS_OVERFLOW = STATUS_CLASS_PREFIX + \"overflow\";\nvar STATUS_CLASSES = [CLASS_ACTIVE, CLASS_VISIBLE, CLASS_PREV, CLASS_NEXT, CLASS_LOADING, CLASS_FOCUS_IN, CLASS_OVERFLOW];\nvar CLASSES = {\n slide: CLASS_SLIDE,\n clone: CLASS_CLONE,\n arrows: CLASS_ARROWS,\n arrow: CLASS_ARROW,\n prev: CLASS_ARROW_PREV,\n next: CLASS_ARROW_NEXT,\n pagination: CLASS_PAGINATION,\n page: CLASS_PAGINATION_PAGE,\n spinner: CLASS_SPINNER\n};\n\nfunction closest(from, selector) {\n if (isFunction(from.closest)) {\n return from.closest(selector);\n }\n\n var elm = from;\n\n while (elm && elm.nodeType === 1) {\n if (matches(elm, selector)) {\n break;\n }\n\n elm = elm.parentElement;\n }\n\n return elm;\n}\n\nvar FRICTION = 5;\nvar LOG_INTERVAL = 200;\nvar POINTER_DOWN_EVENTS = \"touchstart mousedown\";\nvar POINTER_MOVE_EVENTS = \"touchmove mousemove\";\nvar POINTER_UP_EVENTS = \"touchend touchcancel mouseup click\";\n\nfunction Elements(Splide2, Components2, options) {\n var _EventInterface = EventInterface(Splide2),\n on = _EventInterface.on,\n bind = _EventInterface.bind;\n\n var root = Splide2.root;\n var i18n = options.i18n;\n var elements = {};\n var slides = [];\n var rootClasses = [];\n var trackClasses = [];\n var track;\n var list;\n var isUsingKey;\n\n function setup() {\n collect();\n init();\n update();\n }\n\n function mount() {\n on(EVENT_REFRESH, destroy);\n on(EVENT_REFRESH, setup);\n on(EVENT_UPDATED, update);\n bind(document, POINTER_DOWN_EVENTS + \" keydown\", function (e) {\n isUsingKey = e.type === \"keydown\";\n }, {\n capture: true\n });\n bind(root, \"focusin\", function () {\n toggleClass(root, CLASS_FOCUS_IN, !!isUsingKey);\n });\n }\n\n function destroy(completely) {\n var attrs = ALL_ATTRIBUTES.concat(\"style\");\n empty(slides);\n removeClass(root, rootClasses);\n removeClass(track, trackClasses);\n removeAttribute([track, list], attrs);\n removeAttribute(root, completely ? attrs : [\"style\", ARIA_ROLEDESCRIPTION]);\n }\n\n function update() {\n removeClass(root, rootClasses);\n removeClass(track, trackClasses);\n rootClasses = getClasses(CLASS_ROOT);\n trackClasses = getClasses(CLASS_TRACK);\n addClass(root, rootClasses);\n addClass(track, trackClasses);\n setAttribute(root, ARIA_LABEL, options.label);\n setAttribute(root, ARIA_LABELLEDBY, options.labelledby);\n }\n\n function collect() {\n track = find(\".\" + CLASS_TRACK);\n list = child(track, \".\" + CLASS_LIST);\n assert(track && list, \"A track/list element is missing.\");\n push(slides, children(list, \".\" + CLASS_SLIDE + \":not(.\" + CLASS_CLONE + \")\"));\n forOwn({\n arrows: CLASS_ARROWS,\n pagination: CLASS_PAGINATION,\n prev: CLASS_ARROW_PREV,\n next: CLASS_ARROW_NEXT,\n bar: CLASS_PROGRESS_BAR,\n toggle: CLASS_TOGGLE\n }, function (className, key) {\n elements[key] = find(\".\" + className);\n });\n assign(elements, {\n root: root,\n track: track,\n list: list,\n slides: slides\n });\n }\n\n function init() {\n var id = root.id || uniqueId(PROJECT_CODE);\n var role = options.role;\n root.id = id;\n track.id = track.id || id + \"-track\";\n list.id = list.id || id + \"-list\";\n\n if (!getAttribute(root, ROLE) && root.tagName !== \"SECTION\" && role) {\n setAttribute(root, ROLE, role);\n }\n\n setAttribute(root, ARIA_ROLEDESCRIPTION, i18n.carousel);\n setAttribute(list, ROLE, \"presentation\");\n }\n\n function find(selector) {\n var elm = query(root, selector);\n return elm && closest(elm, \".\" + CLASS_ROOT) === root ? elm : void 0;\n }\n\n function getClasses(base) {\n return [base + \"--\" + options.type, base + \"--\" + options.direction, options.drag && base + \"--draggable\", options.isNavigation && base + \"--nav\", base === CLASS_ROOT && CLASS_ACTIVE];\n }\n\n return assign(elements, {\n setup: setup,\n mount: mount,\n destroy: destroy\n });\n}\n\nvar SLIDE = \"slide\";\nvar LOOP = \"loop\";\nvar FADE = \"fade\";\n\nfunction Slide$1(Splide2, index, slideIndex, slide) {\n var event = EventInterface(Splide2);\n var on = event.on,\n emit = event.emit,\n bind = event.bind;\n var Components = Splide2.Components,\n root = Splide2.root,\n options = Splide2.options;\n var isNavigation = options.isNavigation,\n updateOnMove = options.updateOnMove,\n i18n = options.i18n,\n pagination = options.pagination,\n slideFocus = options.slideFocus;\n var resolve = Components.Direction.resolve;\n var styles = getAttribute(slide, \"style\");\n var label = getAttribute(slide, ARIA_LABEL);\n var isClone = slideIndex > -1;\n var container = child(slide, \".\" + CLASS_CONTAINER);\n var destroyed;\n\n function mount() {\n if (!isClone) {\n slide.id = root.id + \"-slide\" + pad(index + 1);\n setAttribute(slide, ROLE, pagination ? \"tabpanel\" : \"group\");\n setAttribute(slide, ARIA_ROLEDESCRIPTION, i18n.slide);\n setAttribute(slide, ARIA_LABEL, label || format(i18n.slideLabel, [index + 1, Splide2.length]));\n }\n\n listen();\n }\n\n function listen() {\n bind(slide, \"click\", apply(emit, EVENT_CLICK, self));\n bind(slide, \"keydown\", apply(emit, EVENT_SLIDE_KEYDOWN, self));\n on([EVENT_MOVED, EVENT_SHIFTED, EVENT_SCROLLED], update);\n on(EVENT_NAVIGATION_MOUNTED, initNavigation);\n\n if (updateOnMove) {\n on(EVENT_MOVE, onMove);\n }\n }\n\n function destroy() {\n destroyed = true;\n event.destroy();\n removeClass(slide, STATUS_CLASSES);\n removeAttribute(slide, ALL_ATTRIBUTES);\n setAttribute(slide, \"style\", styles);\n setAttribute(slide, ARIA_LABEL, label || \"\");\n }\n\n function initNavigation() {\n var controls = Splide2.splides.map(function (target) {\n var Slide2 = target.splide.Components.Slides.getAt(index);\n return Slide2 ? Slide2.slide.id : \"\";\n }).join(\" \");\n setAttribute(slide, ARIA_LABEL, format(i18n.slideX, (isClone ? slideIndex : index) + 1));\n setAttribute(slide, ARIA_CONTROLS, controls);\n setAttribute(slide, ROLE, slideFocus ? \"button\" : \"\");\n slideFocus && removeAttribute(slide, ARIA_ROLEDESCRIPTION);\n }\n\n function onMove() {\n if (!destroyed) {\n update();\n }\n }\n\n function update() {\n if (!destroyed) {\n var curr = Splide2.index;\n updateActivity();\n updateVisibility();\n toggleClass(slide, CLASS_PREV, index === curr - 1);\n toggleClass(slide, CLASS_NEXT, index === curr + 1);\n }\n }\n\n function updateActivity() {\n var active = isActive();\n\n if (active !== hasClass(slide, CLASS_ACTIVE)) {\n toggleClass(slide, CLASS_ACTIVE, active);\n setAttribute(slide, ARIA_CURRENT, isNavigation && active || \"\");\n emit(active ? EVENT_ACTIVE : EVENT_INACTIVE, self);\n }\n }\n\n function updateVisibility() {\n var visible = isVisible();\n var hidden = !visible && (!isActive() || isClone);\n\n if (!Splide2.state.is([MOVING, SCROLLING])) {\n setAttribute(slide, ARIA_HIDDEN, hidden || \"\");\n }\n\n setAttribute(queryAll(slide, options.focusableNodes || \"\"), TAB_INDEX, hidden ? -1 : \"\");\n\n if (slideFocus) {\n setAttribute(slide, TAB_INDEX, hidden ? -1 : 0);\n }\n\n if (visible !== hasClass(slide, CLASS_VISIBLE)) {\n toggleClass(slide, CLASS_VISIBLE, visible);\n emit(visible ? EVENT_VISIBLE : EVENT_HIDDEN, self);\n }\n\n if (!visible && document.activeElement === slide) {\n var Slide2 = Components.Slides.getAt(Splide2.index);\n Slide2 && focus(Slide2.slide);\n }\n }\n\n function style$1(prop, value, useContainer) {\n style(useContainer && container || slide, prop, value);\n }\n\n function isActive() {\n var curr = Splide2.index;\n return curr === index || options.cloneStatus && curr === slideIndex;\n }\n\n function isVisible() {\n if (Splide2.is(FADE)) {\n return isActive();\n }\n\n var trackRect = rect(Components.Elements.track);\n var slideRect = rect(slide);\n var left = resolve(\"left\", true);\n var right = resolve(\"right\", true);\n return floor(trackRect[left]) <= ceil(slideRect[left]) && floor(slideRect[right]) <= ceil(trackRect[right]);\n }\n\n function isWithin(from, distance) {\n var diff = abs(from - index);\n\n if (!isClone && (options.rewind || Splide2.is(LOOP))) {\n diff = min(diff, Splide2.length - diff);\n }\n\n return diff <= distance;\n }\n\n var self = {\n index: index,\n slideIndex: slideIndex,\n slide: slide,\n container: container,\n isClone: isClone,\n mount: mount,\n destroy: destroy,\n update: update,\n style: style$1,\n isWithin: isWithin\n };\n return self;\n}\n\nfunction Slides(Splide2, Components2, options) {\n var _EventInterface2 = EventInterface(Splide2),\n on = _EventInterface2.on,\n emit = _EventInterface2.emit,\n bind = _EventInterface2.bind;\n\n var _Components2$Elements = Components2.Elements,\n slides = _Components2$Elements.slides,\n list = _Components2$Elements.list;\n var Slides2 = [];\n\n function mount() {\n init();\n on(EVENT_REFRESH, destroy);\n on(EVENT_REFRESH, init);\n }\n\n function init() {\n slides.forEach(function (slide, index) {\n register(slide, index, -1);\n });\n }\n\n function destroy() {\n forEach$1(function (Slide2) {\n Slide2.destroy();\n });\n empty(Slides2);\n }\n\n function update() {\n forEach$1(function (Slide2) {\n Slide2.update();\n });\n }\n\n function register(slide, index, slideIndex) {\n var object = Slide$1(Splide2, index, slideIndex, slide);\n object.mount();\n Slides2.push(object);\n Slides2.sort(function (Slide1, Slide2) {\n return Slide1.index - Slide2.index;\n });\n }\n\n function get(excludeClones) {\n return excludeClones ? filter(function (Slide2) {\n return !Slide2.isClone;\n }) : Slides2;\n }\n\n function getIn(page) {\n var Controller = Components2.Controller;\n var index = Controller.toIndex(page);\n var max = Controller.hasFocus() ? 1 : options.perPage;\n return filter(function (Slide2) {\n return between(Slide2.index, index, index + max - 1);\n });\n }\n\n function getAt(index) {\n return filter(index)[0];\n }\n\n function add(items, index) {\n forEach(items, function (slide) {\n if (isString(slide)) {\n slide = parseHtml(slide);\n }\n\n if (isHTMLElement(slide)) {\n var ref = slides[index];\n ref ? before(slide, ref) : append(list, slide);\n addClass(slide, options.classes.slide);\n observeImages(slide, apply(emit, EVENT_RESIZE));\n }\n });\n emit(EVENT_REFRESH);\n }\n\n function remove$1(matcher) {\n remove(filter(matcher).map(function (Slide2) {\n return Slide2.slide;\n }));\n emit(EVENT_REFRESH);\n }\n\n function forEach$1(iteratee, excludeClones) {\n get(excludeClones).forEach(iteratee);\n }\n\n function filter(matcher) {\n return Slides2.filter(isFunction(matcher) ? matcher : function (Slide2) {\n return isString(matcher) ? matches(Slide2.slide, matcher) : includes(toArray(matcher), Slide2.index);\n });\n }\n\n function style(prop, value, useContainer) {\n forEach$1(function (Slide2) {\n Slide2.style(prop, value, useContainer);\n });\n }\n\n function observeImages(elm, callback) {\n var images = queryAll(elm, \"img\");\n var length = images.length;\n\n if (length) {\n images.forEach(function (img) {\n bind(img, \"load error\", function () {\n if (! --length) {\n callback();\n }\n });\n });\n } else {\n callback();\n }\n }\n\n function getLength(excludeClones) {\n return excludeClones ? slides.length : Slides2.length;\n }\n\n function isEnough() {\n return Slides2.length > options.perPage;\n }\n\n return {\n mount: mount,\n destroy: destroy,\n update: update,\n register: register,\n get: get,\n getIn: getIn,\n getAt: getAt,\n add: add,\n remove: remove$1,\n forEach: forEach$1,\n filter: filter,\n style: style,\n getLength: getLength,\n isEnough: isEnough\n };\n}\n\nfunction Layout(Splide2, Components2, options) {\n var _EventInterface3 = EventInterface(Splide2),\n on = _EventInterface3.on,\n bind = _EventInterface3.bind,\n emit = _EventInterface3.emit;\n\n var Slides = Components2.Slides;\n var resolve = Components2.Direction.resolve;\n var _Components2$Elements2 = Components2.Elements,\n root = _Components2$Elements2.root,\n track = _Components2$Elements2.track,\n list = _Components2$Elements2.list;\n var getAt = Slides.getAt,\n styleSlides = Slides.style;\n var vertical;\n var rootRect;\n var overflow;\n\n function mount() {\n init();\n bind(window, \"resize load\", Throttle(apply(emit, EVENT_RESIZE)));\n on([EVENT_UPDATED, EVENT_REFRESH], init);\n on(EVENT_RESIZE, resize);\n }\n\n function init() {\n vertical = options.direction === TTB;\n style(root, \"maxWidth\", unit(options.width));\n style(track, resolve(\"paddingLeft\"), cssPadding(false));\n style(track, resolve(\"paddingRight\"), cssPadding(true));\n resize(true);\n }\n\n function resize(force) {\n var newRect = rect(root);\n\n if (force || rootRect.width !== newRect.width || rootRect.height !== newRect.height) {\n style(track, \"height\", cssTrackHeight());\n styleSlides(resolve(\"marginRight\"), unit(options.gap));\n styleSlides(\"width\", cssSlideWidth());\n styleSlides(\"height\", cssSlideHeight(), true);\n rootRect = newRect;\n emit(EVENT_RESIZED);\n\n if (overflow !== (overflow = isOverflow())) {\n toggleClass(root, CLASS_OVERFLOW, overflow);\n emit(EVENT_OVERFLOW, overflow);\n }\n }\n }\n\n function cssPadding(right) {\n var padding = options.padding;\n var prop = resolve(right ? \"right\" : \"left\");\n return padding && unit(padding[prop] || (isObject(padding) ? 0 : padding)) || \"0px\";\n }\n\n function cssTrackHeight() {\n var height = \"\";\n\n if (vertical) {\n height = cssHeight();\n assert(height, \"height or heightRatio is missing.\");\n height = \"calc(\" + height + \" - \" + cssPadding(false) + \" - \" + cssPadding(true) + \")\";\n }\n\n return height;\n }\n\n function cssHeight() {\n return unit(options.height || rect(list).width * options.heightRatio);\n }\n\n function cssSlideWidth() {\n return options.autoWidth ? null : unit(options.fixedWidth) || (vertical ? \"\" : cssSlideSize());\n }\n\n function cssSlideHeight() {\n return unit(options.fixedHeight) || (vertical ? options.autoHeight ? null : cssSlideSize() : cssHeight());\n }\n\n function cssSlideSize() {\n var gap = unit(options.gap);\n return \"calc((100%\" + (gap && \" + \" + gap) + \")/\" + (options.perPage || 1) + (gap && \" - \" + gap) + \")\";\n }\n\n function listSize() {\n return rect(list)[resolve(\"width\")];\n }\n\n function slideSize(index, withoutGap) {\n var Slide = getAt(index || 0);\n return Slide ? rect(Slide.slide)[resolve(\"width\")] + (withoutGap ? 0 : getGap()) : 0;\n }\n\n function totalSize(index, withoutGap) {\n var Slide = getAt(index);\n\n if (Slide) {\n var right = rect(Slide.slide)[resolve(\"right\")];\n var left = rect(list)[resolve(\"left\")];\n return abs(right - left) + (withoutGap ? 0 : getGap());\n }\n\n return 0;\n }\n\n function sliderSize(withoutGap) {\n return totalSize(Splide2.length - 1) - totalSize(0) + slideSize(0, withoutGap);\n }\n\n function getGap() {\n var Slide = getAt(0);\n return Slide && parseFloat(style(Slide.slide, resolve(\"marginRight\"))) || 0;\n }\n\n function getPadding(right) {\n return parseFloat(style(track, resolve(\"padding\" + (right ? \"Right\" : \"Left\")))) || 0;\n }\n\n function isOverflow() {\n return Splide2.is(FADE) || sliderSize(true) > listSize();\n }\n\n return {\n mount: mount,\n resize: resize,\n listSize: listSize,\n slideSize: slideSize,\n sliderSize: sliderSize,\n totalSize: totalSize,\n getPadding: getPadding,\n isOverflow: isOverflow\n };\n}\n\nvar MULTIPLIER = 2;\n\nfunction Clones(Splide2, Components2, options) {\n var event = EventInterface(Splide2);\n var on = event.on;\n var Elements = Components2.Elements,\n Slides = Components2.Slides;\n var resolve = Components2.Direction.resolve;\n var clones = [];\n var cloneCount;\n\n function mount() {\n on(EVENT_REFRESH, remount);\n on([EVENT_UPDATED, EVENT_RESIZE], observe);\n\n if (cloneCount = computeCloneCount()) {\n generate(cloneCount);\n Components2.Layout.resize(true);\n }\n }\n\n function remount() {\n destroy();\n mount();\n }\n\n function destroy() {\n remove(clones);\n empty(clones);\n event.destroy();\n }\n\n function observe() {\n var count = computeCloneCount();\n\n if (cloneCount !== count) {\n if (cloneCount < count || !count) {\n event.emit(EVENT_REFRESH);\n }\n }\n }\n\n function generate(count) {\n var slides = Slides.get().slice();\n var length = slides.length;\n\n if (length) {\n while (slides.length < count) {\n push(slides, slides);\n }\n\n push(slides.slice(-count), slides.slice(0, count)).forEach(function (Slide, index) {\n var isHead = index < count;\n var clone = cloneDeep(Slide.slide, index);\n isHead ? before(clone, slides[0].slide) : append(Elements.list, clone);\n push(clones, clone);\n Slides.register(clone, index - count + (isHead ? 0 : length), Slide.index);\n });\n }\n }\n\n function cloneDeep(elm, index) {\n var clone = elm.cloneNode(true);\n addClass(clone, options.classes.clone);\n clone.id = Splide2.root.id + \"-clone\" + pad(index + 1);\n return clone;\n }\n\n function computeCloneCount() {\n var clones2 = options.clones;\n\n if (!Splide2.is(LOOP)) {\n clones2 = 0;\n } else if (isUndefined(clones2)) {\n var fixedSize = options[resolve(\"fixedWidth\")] && Components2.Layout.slideSize(0);\n var fixedCount = fixedSize && ceil(rect(Elements.track)[resolve(\"width\")] / fixedSize);\n clones2 = fixedCount || options[resolve(\"autoWidth\")] && Splide2.length || options.perPage * MULTIPLIER;\n }\n\n return clones2;\n }\n\n return {\n mount: mount,\n destroy: destroy\n };\n}\n\nfunction Move(Splide2, Components2, options) {\n var _EventInterface4 = EventInterface(Splide2),\n on = _EventInterface4.on,\n emit = _EventInterface4.emit;\n\n var set = Splide2.state.set;\n var _Components2$Layout = Components2.Layout,\n slideSize = _Components2$Layout.slideSize,\n getPadding = _Components2$Layout.getPadding,\n totalSize = _Components2$Layout.totalSize,\n listSize = _Components2$Layout.listSize,\n sliderSize = _Components2$Layout.sliderSize;\n var _Components2$Directio = Components2.Direction,\n resolve = _Components2$Directio.resolve,\n orient = _Components2$Directio.orient;\n var _Components2$Elements3 = Components2.Elements,\n list = _Components2$Elements3.list,\n track = _Components2$Elements3.track;\n var Transition;\n\n function mount() {\n Transition = Components2.Transition;\n on([EVENT_MOUNTED, EVENT_RESIZED, EVENT_UPDATED, EVENT_REFRESH], reposition);\n }\n\n function reposition() {\n if (!Components2.Controller.isBusy()) {\n Components2.Scroll.cancel();\n jump(Splide2.index);\n Components2.Slides.update();\n }\n }\n\n function move(dest, index, prev, callback) {\n if (dest !== index && canShift(dest > prev)) {\n cancel();\n translate(shift(getPosition(), dest > prev), true);\n }\n\n set(MOVING);\n emit(EVENT_MOVE, index, prev, dest);\n Transition.start(index, function () {\n set(IDLE);\n emit(EVENT_MOVED, index, prev, dest);\n callback && callback();\n });\n }\n\n function jump(index) {\n translate(toPosition(index, true));\n }\n\n function translate(position, preventLoop) {\n if (!Splide2.is(FADE)) {\n var destination = preventLoop ? position : loop(position);\n style(list, \"transform\", \"translate\" + resolve(\"X\") + \"(\" + destination + \"px)\");\n position !== destination && emit(EVENT_SHIFTED);\n }\n }\n\n function loop(position) {\n if (Splide2.is(LOOP)) {\n var index = toIndex(position);\n var exceededMax = index > Components2.Controller.getEnd();\n var exceededMin = index < 0;\n\n if (exceededMin || exceededMax) {\n position = shift(position, exceededMax);\n }\n }\n\n return position;\n }\n\n function shift(position, backwards) {\n var excess = position - getLimit(backwards);\n var size = sliderSize();\n position -= orient(size * (ceil(abs(excess) / size) || 1)) * (backwards ? 1 : -1);\n return position;\n }\n\n function cancel() {\n translate(getPosition(), true);\n Transition.cancel();\n }\n\n function toIndex(position) {\n var Slides = Components2.Slides.get();\n var index = 0;\n var minDistance = Infinity;\n\n for (var i = 0; i < Slides.length; i++) {\n var slideIndex = Slides[i].index;\n var distance = abs(toPosition(slideIndex, true) - position);\n\n if (distance <= minDistance) {\n minDistance = distance;\n index = slideIndex;\n } else {\n break;\n }\n }\n\n return index;\n }\n\n function toPosition(index, trimming) {\n var position = orient(totalSize(index - 1) - offset(index));\n return trimming ? trim(position) : position;\n }\n\n function getPosition() {\n var left = resolve(\"left\");\n return rect(list)[left] - rect(track)[left] + orient(getPadding(false));\n }\n\n function trim(position) {\n if (options.trimSpace && Splide2.is(SLIDE)) {\n position = clamp(position, 0, orient(sliderSize(true) - listSize()));\n }\n\n return position;\n }\n\n function offset(index) {\n var focus = options.focus;\n return focus === \"center\" ? (listSize() - slideSize(index, true)) / 2 : +focus * slideSize(index) || 0;\n }\n\n function getLimit(max) {\n return toPosition(max ? Components2.Controller.getEnd() : 0, !!options.trimSpace);\n }\n\n function canShift(backwards) {\n var shifted = orient(shift(getPosition(), backwards));\n return backwards ? shifted >= 0 : shifted <= list[resolve(\"scrollWidth\")] - rect(track)[resolve(\"width\")];\n }\n\n function exceededLimit(max, position) {\n position = isUndefined(position) ? getPosition() : position;\n var exceededMin = max !== true && orient(position) < orient(getLimit(false));\n var exceededMax = max !== false && orient(position) > orient(getLimit(true));\n return exceededMin || exceededMax;\n }\n\n return {\n mount: mount,\n move: move,\n jump: jump,\n translate: translate,\n shift: shift,\n cancel: cancel,\n toIndex: toIndex,\n toPosition: toPosition,\n getPosition: getPosition,\n getLimit: getLimit,\n exceededLimit: exceededLimit,\n reposition: reposition\n };\n}\n\nfunction Controller(Splide2, Components2, options) {\n var _EventInterface5 = EventInterface(Splide2),\n on = _EventInterface5.on,\n emit = _EventInterface5.emit;\n\n var Move = Components2.Move;\n var getPosition = Move.getPosition,\n getLimit = Move.getLimit,\n toPosition = Move.toPosition;\n var _Components2$Slides = Components2.Slides,\n isEnough = _Components2$Slides.isEnough,\n getLength = _Components2$Slides.getLength;\n var omitEnd = options.omitEnd;\n var isLoop = Splide2.is(LOOP);\n var isSlide = Splide2.is(SLIDE);\n var getNext = apply(getAdjacent, false);\n var getPrev = apply(getAdjacent, true);\n var currIndex = options.start || 0;\n var endIndex;\n var prevIndex = currIndex;\n var slideCount;\n var perMove;\n var perPage;\n\n function mount() {\n init();\n on([EVENT_UPDATED, EVENT_REFRESH, EVENT_END_INDEX_CHANGED], init);\n on(EVENT_RESIZED, onResized);\n }\n\n function init() {\n slideCount = getLength(true);\n perMove = options.perMove;\n perPage = options.perPage;\n endIndex = getEnd();\n var index = clamp(currIndex, 0, omitEnd ? endIndex : slideCount - 1);\n\n if (index !== currIndex) {\n currIndex = index;\n Move.reposition();\n }\n }\n\n function onResized() {\n if (endIndex !== getEnd()) {\n emit(EVENT_END_INDEX_CHANGED);\n }\n }\n\n function go(control, allowSameIndex, callback) {\n if (!isBusy()) {\n var dest = parse(control);\n var index = loop(dest);\n\n if (index > -1 && (allowSameIndex || index !== currIndex)) {\n setIndex(index);\n Move.move(dest, index, prevIndex, callback);\n }\n }\n }\n\n function scroll(destination, duration, snap, callback) {\n Components2.Scroll.scroll(destination, duration, snap, function () {\n var index = loop(Move.toIndex(getPosition()));\n setIndex(omitEnd ? min(index, endIndex) : index);\n callback && callback();\n });\n }\n\n function parse(control) {\n var index = currIndex;\n\n if (isString(control)) {\n var _ref = control.match(/([+\\-<>])(\\d+)?/) || [],\n indicator = _ref[1],\n number = _ref[2];\n\n if (indicator === \"+\" || indicator === \"-\") {\n index = computeDestIndex(currIndex + +(\"\" + indicator + (+number || 1)), currIndex);\n } else if (indicator === \">\") {\n index = number ? toIndex(+number) : getNext(true);\n } else if (indicator === \"<\") {\n index = getPrev(true);\n }\n } else {\n index = isLoop ? control : clamp(control, 0, endIndex);\n }\n\n return index;\n }\n\n function getAdjacent(prev, destination) {\n var number = perMove || (hasFocus() ? 1 : perPage);\n var dest = computeDestIndex(currIndex + number * (prev ? -1 : 1), currIndex, !(perMove || hasFocus()));\n\n if (dest === -1 && isSlide) {\n if (!approximatelyEqual(getPosition(), getLimit(!prev), 1)) {\n return prev ? 0 : endIndex;\n }\n }\n\n return destination ? dest : loop(dest);\n }\n\n function computeDestIndex(dest, from, snapPage) {\n if (isEnough() || hasFocus()) {\n var index = computeMovableDestIndex(dest);\n\n if (index !== dest) {\n from = dest;\n dest = index;\n snapPage = false;\n }\n\n if (dest < 0 || dest > endIndex) {\n if (!perMove && (between(0, dest, from, true) || between(endIndex, from, dest, true))) {\n dest = toIndex(toPage(dest));\n } else {\n if (isLoop) {\n dest = snapPage ? dest < 0 ? -(slideCount % perPage || perPage) : slideCount : dest;\n } else if (options.rewind) {\n dest = dest < 0 ? endIndex : 0;\n } else {\n dest = -1;\n }\n }\n } else {\n if (snapPage && dest !== from) {\n dest = toIndex(toPage(from) + (dest < from ? -1 : 1));\n }\n }\n } else {\n dest = -1;\n }\n\n return dest;\n }\n\n function computeMovableDestIndex(dest) {\n if (isSlide && options.trimSpace === \"move\" && dest !== currIndex) {\n var position = getPosition();\n\n while (position === toPosition(dest, true) && between(dest, 0, Splide2.length - 1, !options.rewind)) {\n dest < currIndex ? --dest : ++dest;\n }\n }\n\n return dest;\n }\n\n function loop(index) {\n return isLoop ? (index + slideCount) % slideCount || 0 : index;\n }\n\n function getEnd() {\n var end = slideCount - (hasFocus() || isLoop && perMove ? 1 : perPage);\n\n while (omitEnd && end-- > 0) {\n if (toPosition(slideCount - 1, true) !== toPosition(end, true)) {\n end++;\n break;\n }\n }\n\n return clamp(end, 0, slideCount - 1);\n }\n\n function toIndex(page) {\n return clamp(hasFocus() ? page : perPage * page, 0, endIndex);\n }\n\n function toPage(index) {\n return hasFocus() ? min(index, endIndex) : floor((index >= endIndex ? slideCount - 1 : index) / perPage);\n }\n\n function toDest(destination) {\n var closest = Move.toIndex(destination);\n return isSlide ? clamp(closest, 0, endIndex) : closest;\n }\n\n function setIndex(index) {\n if (index !== currIndex) {\n prevIndex = currIndex;\n currIndex = index;\n }\n }\n\n function getIndex(prev) {\n return prev ? prevIndex : currIndex;\n }\n\n function hasFocus() {\n return !isUndefined(options.focus) || options.isNavigation;\n }\n\n function isBusy() {\n return Splide2.state.is([MOVING, SCROLLING]) && !!options.waitForTransition;\n }\n\n return {\n mount: mount,\n go: go,\n scroll: scroll,\n getNext: getNext,\n getPrev: getPrev,\n getAdjacent: getAdjacent,\n getEnd: getEnd,\n setIndex: setIndex,\n getIndex: getIndex,\n toIndex: toIndex,\n toPage: toPage,\n toDest: toDest,\n hasFocus: hasFocus,\n isBusy: isBusy\n };\n}\n\nvar XML_NAME_SPACE = \"http://www.w3.org/2000/svg\";\nvar PATH = \"m15.5 0.932-4.3 4.38 14.5 14.6-14.5 14.5 4.3 4.4 14.6-14.6 4.4-4.3-4.4-4.4-14.6-14.6z\";\nvar SIZE = 40;\n\nfunction Arrows(Splide2, Components2, options) {\n var event = EventInterface(Splide2);\n var on = event.on,\n bind = event.bind,\n emit = event.emit;\n var classes = options.classes,\n i18n = options.i18n;\n var Elements = Components2.Elements,\n Controller = Components2.Controller;\n var placeholder = Elements.arrows,\n track = Elements.track;\n var wrapper = placeholder;\n var prev = Elements.prev;\n var next = Elements.next;\n var created;\n var wrapperClasses;\n var arrows = {};\n\n function mount() {\n init();\n on(EVENT_UPDATED, remount);\n }\n\n function remount() {\n destroy();\n mount();\n }\n\n function init() {\n var enabled = options.arrows;\n\n if (enabled && !(prev && next)) {\n createArrows();\n }\n\n if (prev && next) {\n assign(arrows, {\n prev: prev,\n next: next\n });\n display(wrapper, enabled ? \"\" : \"none\");\n addClass(wrapper, wrapperClasses = CLASS_ARROWS + \"--\" + options.direction);\n\n if (enabled) {\n listen();\n update();\n setAttribute([prev, next], ARIA_CONTROLS, track.id);\n emit(EVENT_ARROWS_MOUNTED, prev, next);\n }\n }\n }\n\n function destroy() {\n event.destroy();\n removeClass(wrapper, wrapperClasses);\n\n if (created) {\n remove(placeholder ? [prev, next] : wrapper);\n prev = next = null;\n } else {\n removeAttribute([prev, next], ALL_ATTRIBUTES);\n }\n }\n\n function listen() {\n on([EVENT_MOUNTED, EVENT_MOVED, EVENT_REFRESH, EVENT_SCROLLED, EVENT_END_INDEX_CHANGED], update);\n bind(next, \"click\", apply(go, \">\"));\n bind(prev, \"click\", apply(go, \"<\"));\n }\n\n function go(control) {\n Controller.go(control, true);\n }\n\n function createArrows() {\n wrapper = placeholder || create(\"div\", classes.arrows);\n prev = createArrow(true);\n next = createArrow(false);\n created = true;\n append(wrapper, [prev, next]);\n !placeholder && before(wrapper, track);\n }\n\n function createArrow(prev2) {\n var arrow = \"\";\n };\n\n _proto3.html = function html() {\n var _this$config = this.config,\n rootClass = _this$config.rootClass,\n listTag = _this$config.listTag,\n arrows = _this$config.arrows,\n beforeTrack = _this$config.beforeTrack,\n afterTrack = _this$config.afterTrack,\n slider = _this$config.slider,\n beforeSlider = _this$config.beforeSlider,\n afterSlider = _this$config.afterSlider;\n var html = \"\";\n html += \"
\";\n html += \"\";\n\n if (slider) {\n html += beforeSlider || \"\";\n html += \"
\";\n }\n\n html += beforeTrack || \"\";\n\n if (arrows) {\n html += this.renderArrows();\n }\n\n html += \"
\";\n html += \"<\" + listTag + \" class=\\\"splide__list\\\">\";\n html += this.renderSlides();\n html += \"\";\n html += \"
\";\n html += afterTrack || \"\";\n\n if (slider) {\n html += \"
\";\n html += afterSlider || \"\";\n }\n\n html += \"
\";\n return html;\n };\n\n return SplideRenderer;\n}();\n\nexport { CLASSES, CLASS_ACTIVE, CLASS_ARROW, CLASS_ARROWS, CLASS_ARROW_NEXT, CLASS_ARROW_PREV, CLASS_CLONE, CLASS_CONTAINER, CLASS_FOCUS_IN, CLASS_INITIALIZED, CLASS_LIST, CLASS_LOADING, CLASS_NEXT, CLASS_OVERFLOW, CLASS_PAGINATION, CLASS_PAGINATION_PAGE, CLASS_PREV, CLASS_PROGRESS, CLASS_PROGRESS_BAR, CLASS_ROOT, CLASS_SLIDE, CLASS_SPINNER, CLASS_SR, CLASS_TOGGLE, CLASS_TOGGLE_PAUSE, CLASS_TOGGLE_PLAY, CLASS_TRACK, CLASS_VISIBLE, DEFAULTS, EVENT_ACTIVE, EVENT_ARROWS_MOUNTED, EVENT_ARROWS_UPDATED, EVENT_AUTOPLAY_PAUSE, EVENT_AUTOPLAY_PLAY, EVENT_AUTOPLAY_PLAYING, EVENT_CLICK, EVENT_DESTROY, EVENT_DRAG, EVENT_DRAGGED, EVENT_DRAGGING, EVENT_END_INDEX_CHANGED, EVENT_HIDDEN, EVENT_INACTIVE, EVENT_LAZYLOAD_LOADED, EVENT_MOUNTED, EVENT_MOVE, EVENT_MOVED, EVENT_NAVIGATION_MOUNTED, EVENT_OVERFLOW, EVENT_PAGINATION_MOUNTED, EVENT_PAGINATION_UPDATED, EVENT_READY, EVENT_REFRESH, EVENT_RESIZE, EVENT_RESIZED, EVENT_SCROLL, EVENT_SCROLLED, EVENT_SHIFTED, EVENT_SLIDE_KEYDOWN, EVENT_UPDATED, EVENT_VISIBLE, EventBinder, EventInterface, FADE, LOOP, LTR, RTL, RequestInterval, SLIDE, STATUS_CLASSES, Splide, SplideRenderer, State, TTB, Throttle, Splide as default };\n","/*\n Copyright (c) 2022 Gildas Lormeau. All rights reserved.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright \n notice, this list of conditions and the following disclaimer in \n the documentation and/or other materials provided with the distribution.\n\n 3. The names of the authors may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\n FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,\n INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n/*\n * This program is based on JZlib 1.0.2 ymnk, JCraft,Inc.\n * JZlib is based on zlib-1.1.3, so all credit should go authors\n * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu)\n * and contributors of zlib.\n */\n\n\"use strict\";\n\n// Global\n\nconst MAX_BITS = 15;\nconst D_CODES = 30;\nconst BL_CODES = 19;\n\nconst LENGTH_CODES = 29;\nconst LITERALS = 256;\nconst L_CODES = (LITERALS + 1 + LENGTH_CODES);\nconst HEAP_SIZE = (2 * L_CODES + 1);\n\nconst END_BLOCK = 256;\n\n// Bit length codes must not exceed MAX_BL_BITS bits\nconst MAX_BL_BITS = 7;\n\n// repeat previous bit length 3-6 times (2 bits of repeat count)\nconst REP_3_6 = 16;\n\n// repeat a zero length 3-10 times (3 bits of repeat count)\nconst REPZ_3_10 = 17;\n\n// repeat a zero length 11-138 times (7 bits of repeat count)\nconst REPZ_11_138 = 18;\n\n// The lengths of the bit length codes are sent in order of decreasing\n// probability, to avoid transmitting the lengths for unused bit\n// length codes.\n\nconst Buf_size = 8 * 2;\n\n// JZlib version : \"1.0.2\"\nconst Z_DEFAULT_COMPRESSION = -1;\n\n// compression strategy\nconst Z_FILTERED = 1;\nconst Z_HUFFMAN_ONLY = 2;\nconst Z_DEFAULT_STRATEGY = 0;\n\nconst Z_NO_FLUSH = 0;\nconst Z_PARTIAL_FLUSH = 1;\nconst Z_FULL_FLUSH = 3;\nconst Z_FINISH = 4;\n\nconst Z_OK = 0;\nconst Z_STREAM_END = 1;\nconst Z_NEED_DICT = 2;\nconst Z_STREAM_ERROR = -2;\nconst Z_DATA_ERROR = -3;\nconst Z_BUF_ERROR = -5;\n\n// Tree\n\nfunction extractArray(array) {\n\treturn flatArray(array.map(([length, value]) => (new Array(length)).fill(value, 0, length)));\n}\n\nfunction flatArray(array) {\n\treturn array.reduce((a, b) => a.concat(Array.isArray(b) ? flatArray(b) : b), []);\n}\n\n// see definition of array dist_code below\nconst _dist_code = [0, 1, 2, 3].concat(...extractArray([\n\t[2, 4], [2, 5], [4, 6], [4, 7], [8, 8], [8, 9], [16, 10], [16, 11], [32, 12], [32, 13], [64, 14], [64, 15], [2, 0], [1, 16],\n\t[1, 17], [2, 18], [2, 19], [4, 20], [4, 21], [8, 22], [8, 23], [16, 24], [16, 25], [32, 26], [32, 27], [64, 28], [64, 29]\n]));\n\nfunction Tree() {\n\tconst that = this;\n\n\t// dyn_tree; // the dynamic tree\n\t// max_code; // largest code with non zero frequency\n\t// stat_desc; // the corresponding static tree\n\n\t// Compute the optimal bit lengths for a tree and update the total bit\n\t// length\n\t// for the current block.\n\t// IN assertion: the fields freq and dad are set, heap[heap_max] and\n\t// above are the tree nodes sorted by increasing frequency.\n\t// OUT assertions: the field len is set to the optimal bit length, the\n\t// array bl_count contains the frequencies for each bit length.\n\t// The length opt_len is updated; static_len is also updated if stree is\n\t// not null.\n\tfunction gen_bitlen(s) {\n\t\tconst tree = that.dyn_tree;\n\t\tconst stree = that.stat_desc.static_tree;\n\t\tconst extra = that.stat_desc.extra_bits;\n\t\tconst base = that.stat_desc.extra_base;\n\t\tconst max_length = that.stat_desc.max_length;\n\t\tlet h; // heap index\n\t\tlet n, m; // iterate over the tree elements\n\t\tlet bits; // bit length\n\t\tlet xbits; // extra bits\n\t\tlet f; // frequency\n\t\tlet overflow = 0; // number of elements with bit length too large\n\n\t\tfor (bits = 0; bits <= MAX_BITS; bits++)\n\t\t\ts.bl_count[bits] = 0;\n\n\t\t// In a first pass, compute the optimal bit lengths (which may\n\t\t// overflow in the case of the bit length tree).\n\t\ttree[s.heap[s.heap_max] * 2 + 1] = 0; // root of the heap\n\n\t\tfor (h = s.heap_max + 1; h < HEAP_SIZE; h++) {\n\t\t\tn = s.heap[h];\n\t\t\tbits = tree[tree[n * 2 + 1] * 2 + 1] + 1;\n\t\t\tif (bits > max_length) {\n\t\t\t\tbits = max_length;\n\t\t\t\toverflow++;\n\t\t\t}\n\t\t\ttree[n * 2 + 1] = bits;\n\t\t\t// We overwrite tree[n*2+1] which is no longer needed\n\n\t\t\tif (n > that.max_code)\n\t\t\t\tcontinue; // not a leaf node\n\n\t\t\ts.bl_count[bits]++;\n\t\t\txbits = 0;\n\t\t\tif (n >= base)\n\t\t\t\txbits = extra[n - base];\n\t\t\tf = tree[n * 2];\n\t\t\ts.opt_len += f * (bits + xbits);\n\t\t\tif (stree)\n\t\t\t\ts.static_len += f * (stree[n * 2 + 1] + xbits);\n\t\t}\n\t\tif (overflow === 0)\n\t\t\treturn;\n\n\t\t// This happens for example on obj2 and pic of the Calgary corpus\n\t\t// Find the first bit length which could increase:\n\t\tdo {\n\t\t\tbits = max_length - 1;\n\t\t\twhile (s.bl_count[bits] === 0)\n\t\t\t\tbits--;\n\t\t\ts.bl_count[bits]--; // move one leaf down the tree\n\t\t\ts.bl_count[bits + 1] += 2; // move one overflow item as its brother\n\t\t\ts.bl_count[max_length]--;\n\t\t\t// The brother of the overflow item also moves one step up,\n\t\t\t// but this does not affect bl_count[max_length]\n\t\t\toverflow -= 2;\n\t\t} while (overflow > 0);\n\n\t\tfor (bits = max_length; bits !== 0; bits--) {\n\t\t\tn = s.bl_count[bits];\n\t\t\twhile (n !== 0) {\n\t\t\t\tm = s.heap[--h];\n\t\t\t\tif (m > that.max_code)\n\t\t\t\t\tcontinue;\n\t\t\t\tif (tree[m * 2 + 1] != bits) {\n\t\t\t\t\ts.opt_len += (bits - tree[m * 2 + 1]) * tree[m * 2];\n\t\t\t\t\ttree[m * 2 + 1] = bits;\n\t\t\t\t}\n\t\t\t\tn--;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Reverse the first len bits of a code, using straightforward code (a\n\t// faster\n\t// method would use a table)\n\t// IN assertion: 1 <= len <= 15\n\tfunction bi_reverse(code, // the value to invert\n\t\tlen // its bit length\n\t) {\n\t\tlet res = 0;\n\t\tdo {\n\t\t\tres |= code & 1;\n\t\t\tcode >>>= 1;\n\t\t\tres <<= 1;\n\t\t} while (--len > 0);\n\t\treturn res >>> 1;\n\t}\n\n\t// Generate the codes for a given tree and bit counts (which need not be\n\t// optimal).\n\t// IN assertion: the array bl_count contains the bit length statistics for\n\t// the given tree and the field len is set for all tree elements.\n\t// OUT assertion: the field code is set for all tree elements of non\n\t// zero code length.\n\tfunction gen_codes(tree, // the tree to decorate\n\t\tmax_code, // largest code with non zero frequency\n\t\tbl_count // number of codes at each bit length\n\t) {\n\t\tconst next_code = []; // next code value for each\n\t\t// bit length\n\t\tlet code = 0; // running code value\n\t\tlet bits; // bit index\n\t\tlet n; // code index\n\t\tlet len;\n\n\t\t// The distribution counts are first used to generate the code values\n\t\t// without bit reversal.\n\t\tfor (bits = 1; bits <= MAX_BITS; bits++) {\n\t\t\tnext_code[bits] = code = ((code + bl_count[bits - 1]) << 1);\n\t\t}\n\n\t\t// Check that the bit counts in bl_count are consistent. The last code\n\t\t// must be all ones.\n\t\t// Assert (code + bl_count[MAX_BITS]-1 == (1<= 1; n--)\n\t\t\ts.pqdownheap(tree, n);\n\n\t\t// Construct the Huffman tree by repeatedly combining the least two\n\t\t// frequent nodes.\n\n\t\tnode = elems; // next internal node of the tree\n\t\tdo {\n\t\t\t// n = node of least frequency\n\t\t\tn = s.heap[1];\n\t\t\ts.heap[1] = s.heap[s.heap_len--];\n\t\t\ts.pqdownheap(tree, 1);\n\t\t\tm = s.heap[1]; // m = node of next least frequency\n\n\t\t\ts.heap[--s.heap_max] = n; // keep the nodes sorted by frequency\n\t\t\ts.heap[--s.heap_max] = m;\n\n\t\t\t// Create a new node father of n and m\n\t\t\ttree[node * 2] = (tree[n * 2] + tree[m * 2]);\n\t\t\ts.depth[node] = Math.max(s.depth[n], s.depth[m]) + 1;\n\t\t\ttree[n * 2 + 1] = tree[m * 2 + 1] = node;\n\n\t\t\t// and insert the new node in the heap\n\t\t\ts.heap[1] = node++;\n\t\t\ts.pqdownheap(tree, 1);\n\t\t} while (s.heap_len >= 2);\n\n\t\ts.heap[--s.heap_max] = s.heap[1];\n\n\t\t// At this point, the fields freq and dad are set. We can now\n\t\t// generate the bit lengths.\n\n\t\tgen_bitlen(s);\n\n\t\t// The field len is now set, we can generate the bit codes\n\t\tgen_codes(tree, that.max_code, s.bl_count);\n\t};\n\n}\n\nTree._length_code = [0, 1, 2, 3, 4, 5, 6, 7].concat(...extractArray([\n\t[2, 8], [2, 9], [2, 10], [2, 11], [4, 12], [4, 13], [4, 14], [4, 15], [8, 16], [8, 17], [8, 18], [8, 19],\n\t[16, 20], [16, 21], [16, 22], [16, 23], [32, 24], [32, 25], [32, 26], [31, 27], [1, 28]]));\n\nTree.base_length = [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 14, 16, 20, 24, 28, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 0];\n\nTree.base_dist = [0, 1, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128, 192, 256, 384, 512, 768, 1024, 1536, 2048, 3072, 4096, 6144, 8192, 12288, 16384,\n\t24576];\n\n// Mapping from a distance to a distance code. dist is the distance - 1 and\n// must not have side effects. _dist_code[256] and _dist_code[257] are never\n// used.\nTree.d_code = function (dist) {\n\treturn ((dist) < 256 ? _dist_code[dist] : _dist_code[256 + ((dist) >>> 7)]);\n};\n\n// extra bits for each length code\nTree.extra_lbits = [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0];\n\n// extra bits for each distance code\nTree.extra_dbits = [0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13];\n\n// extra bits for each bit length code\nTree.extra_blbits = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7];\n\nTree.bl_order = [16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15];\n\n// StaticTree\n\nfunction StaticTree(static_tree, extra_bits, extra_base, elems, max_length) {\n\tconst that = this;\n\tthat.static_tree = static_tree;\n\tthat.extra_bits = extra_bits;\n\tthat.extra_base = extra_base;\n\tthat.elems = elems;\n\tthat.max_length = max_length;\n}\n\nStaticTree.static_ltree = [12, 8, 140, 8, 76, 8, 204, 8, 44, 8, 172, 8, 108, 8, 236, 8, 28, 8, 156, 8, 92, 8, 220, 8, 60, 8, 188, 8, 124, 8, 252, 8, 2, 8,\n\t130, 8, 66, 8, 194, 8, 34, 8, 162, 8, 98, 8, 226, 8, 18, 8, 146, 8, 82, 8, 210, 8, 50, 8, 178, 8, 114, 8, 242, 8, 10, 8, 138, 8, 74, 8, 202, 8, 42,\n\t8, 170, 8, 106, 8, 234, 8, 26, 8, 154, 8, 90, 8, 218, 8, 58, 8, 186, 8, 122, 8, 250, 8, 6, 8, 134, 8, 70, 8, 198, 8, 38, 8, 166, 8, 102, 8, 230, 8,\n\t22, 8, 150, 8, 86, 8, 214, 8, 54, 8, 182, 8, 118, 8, 246, 8, 14, 8, 142, 8, 78, 8, 206, 8, 46, 8, 174, 8, 110, 8, 238, 8, 30, 8, 158, 8, 94, 8,\n\t222, 8, 62, 8, 190, 8, 126, 8, 254, 8, 1, 8, 129, 8, 65, 8, 193, 8, 33, 8, 161, 8, 97, 8, 225, 8, 17, 8, 145, 8, 81, 8, 209, 8, 49, 8, 177, 8, 113,\n\t8, 241, 8, 9, 8, 137, 8, 73, 8, 201, 8, 41, 8, 169, 8, 105, 8, 233, 8, 25, 8, 153, 8, 89, 8, 217, 8, 57, 8, 185, 8, 121, 8, 249, 8, 5, 8, 133, 8,\n\t69, 8, 197, 8, 37, 8, 165, 8, 101, 8, 229, 8, 21, 8, 149, 8, 85, 8, 213, 8, 53, 8, 181, 8, 117, 8, 245, 8, 13, 8, 141, 8, 77, 8, 205, 8, 45, 8,\n\t173, 8, 109, 8, 237, 8, 29, 8, 157, 8, 93, 8, 221, 8, 61, 8, 189, 8, 125, 8, 253, 8, 19, 9, 275, 9, 147, 9, 403, 9, 83, 9, 339, 9, 211, 9, 467, 9,\n\t51, 9, 307, 9, 179, 9, 435, 9, 115, 9, 371, 9, 243, 9, 499, 9, 11, 9, 267, 9, 139, 9, 395, 9, 75, 9, 331, 9, 203, 9, 459, 9, 43, 9, 299, 9, 171, 9,\n\t427, 9, 107, 9, 363, 9, 235, 9, 491, 9, 27, 9, 283, 9, 155, 9, 411, 9, 91, 9, 347, 9, 219, 9, 475, 9, 59, 9, 315, 9, 187, 9, 443, 9, 123, 9, 379,\n\t9, 251, 9, 507, 9, 7, 9, 263, 9, 135, 9, 391, 9, 71, 9, 327, 9, 199, 9, 455, 9, 39, 9, 295, 9, 167, 9, 423, 9, 103, 9, 359, 9, 231, 9, 487, 9, 23,\n\t9, 279, 9, 151, 9, 407, 9, 87, 9, 343, 9, 215, 9, 471, 9, 55, 9, 311, 9, 183, 9, 439, 9, 119, 9, 375, 9, 247, 9, 503, 9, 15, 9, 271, 9, 143, 9,\n\t399, 9, 79, 9, 335, 9, 207, 9, 463, 9, 47, 9, 303, 9, 175, 9, 431, 9, 111, 9, 367, 9, 239, 9, 495, 9, 31, 9, 287, 9, 159, 9, 415, 9, 95, 9, 351, 9,\n\t223, 9, 479, 9, 63, 9, 319, 9, 191, 9, 447, 9, 127, 9, 383, 9, 255, 9, 511, 9, 0, 7, 64, 7, 32, 7, 96, 7, 16, 7, 80, 7, 48, 7, 112, 7, 8, 7, 72, 7,\n\t40, 7, 104, 7, 24, 7, 88, 7, 56, 7, 120, 7, 4, 7, 68, 7, 36, 7, 100, 7, 20, 7, 84, 7, 52, 7, 116, 7, 3, 8, 131, 8, 67, 8, 195, 8, 35, 8, 163, 8,\n\t99, 8, 227, 8];\n\nStaticTree.static_dtree = [0, 5, 16, 5, 8, 5, 24, 5, 4, 5, 20, 5, 12, 5, 28, 5, 2, 5, 18, 5, 10, 5, 26, 5, 6, 5, 22, 5, 14, 5, 30, 5, 1, 5, 17, 5, 9, 5,\n\t25, 5, 5, 5, 21, 5, 13, 5, 29, 5, 3, 5, 19, 5, 11, 5, 27, 5, 7, 5, 23, 5];\n\nStaticTree.static_l_desc = new StaticTree(StaticTree.static_ltree, Tree.extra_lbits, LITERALS + 1, L_CODES, MAX_BITS);\n\nStaticTree.static_d_desc = new StaticTree(StaticTree.static_dtree, Tree.extra_dbits, 0, D_CODES, MAX_BITS);\n\nStaticTree.static_bl_desc = new StaticTree(null, Tree.extra_blbits, 0, BL_CODES, MAX_BL_BITS);\n\n// Deflate\n\nconst MAX_MEM_LEVEL = 9;\nconst DEF_MEM_LEVEL = 8;\n\nfunction Config(good_length, max_lazy, nice_length, max_chain, func) {\n\tconst that = this;\n\tthat.good_length = good_length;\n\tthat.max_lazy = max_lazy;\n\tthat.nice_length = nice_length;\n\tthat.max_chain = max_chain;\n\tthat.func = func;\n}\n\nconst STORED = 0;\nconst FAST = 1;\nconst SLOW = 2;\nconst config_table = [\n\tnew Config(0, 0, 0, 0, STORED),\n\tnew Config(4, 4, 8, 4, FAST),\n\tnew Config(4, 5, 16, 8, FAST),\n\tnew Config(4, 6, 32, 32, FAST),\n\tnew Config(4, 4, 16, 16, SLOW),\n\tnew Config(8, 16, 32, 32, SLOW),\n\tnew Config(8, 16, 128, 128, SLOW),\n\tnew Config(8, 32, 128, 256, SLOW),\n\tnew Config(32, 128, 258, 1024, SLOW),\n\tnew Config(32, 258, 258, 4096, SLOW)\n];\n\nconst z_errmsg = [\"need dictionary\", // Z_NEED_DICT\n\t// 2\n\t\"stream end\", // Z_STREAM_END 1\n\t\"\", // Z_OK 0\n\t\"\", // Z_ERRNO (-1)\n\t\"stream error\", // Z_STREAM_ERROR (-2)\n\t\"data error\", // Z_DATA_ERROR (-3)\n\t\"\", // Z_MEM_ERROR (-4)\n\t\"buffer error\", // Z_BUF_ERROR (-5)\n\t\"\",// Z_VERSION_ERROR (-6)\n\t\"\"];\n\n// block not completed, need more input or more output\nconst NeedMore = 0;\n\n// block flush performed\nconst BlockDone = 1;\n\n// finish started, need only more output at next deflate\nconst FinishStarted = 2;\n\n// finish done, accept no more input or output\nconst FinishDone = 3;\n\n// preset dictionary flag in zlib header\nconst PRESET_DICT = 0x20;\n\nconst INIT_STATE = 42;\nconst BUSY_STATE = 113;\nconst FINISH_STATE = 666;\n\n// The deflate compression method\nconst Z_DEFLATED = 8;\n\nconst STORED_BLOCK = 0;\nconst STATIC_TREES = 1;\nconst DYN_TREES = 2;\n\nconst MIN_MATCH = 3;\nconst MAX_MATCH = 258;\nconst MIN_LOOKAHEAD = (MAX_MATCH + MIN_MATCH + 1);\n\nfunction smaller(tree, n, m, depth) {\n\tconst tn2 = tree[n * 2];\n\tconst tm2 = tree[m * 2];\n\treturn (tn2 < tm2 || (tn2 == tm2 && depth[n] <= depth[m]));\n}\n\nfunction Deflate() {\n\n\tconst that = this;\n\tlet strm; // pointer back to this zlib stream\n\tlet status; // as the name implies\n\t// pending_buf; // output still pending\n\tlet pending_buf_size; // size of pending_buf\n\t// pending_out; // next pending byte to output to the stream\n\t// pending; // nb of bytes in the pending buffer\n\tlet last_flush; // value of flush param for previous deflate call\n\n\tlet w_size; // LZ77 window size (32K by default)\n\tlet w_bits; // log2(w_size) (8..16)\n\tlet w_mask; // w_size - 1\n\n\tlet window;\n\t// Sliding window. Input bytes are read into the second half of the window,\n\t// and move to the first half later to keep a dictionary of at least wSize\n\t// bytes. With this organization, matches are limited to a distance of\n\t// wSize-MAX_MATCH bytes, but this ensures that IO is always\n\t// performed with a length multiple of the block size. Also, it limits\n\t// the window size to 64K, which is quite useful on MSDOS.\n\t// To do: use the user input buffer as sliding window.\n\n\tlet window_size;\n\t// Actual size of window: 2*wSize, except when the user input buffer\n\t// is directly used as sliding window.\n\n\tlet prev;\n\t// Link to older string with same hash index. To limit the size of this\n\t// array to 64K, this link is maintained only for the last 32K strings.\n\t// An index in this array is thus a window index modulo 32K.\n\n\tlet head; // Heads of the hash chains or NIL.\n\n\tlet ins_h; // hash index of string to be inserted\n\tlet hash_size; // number of elements in hash table\n\tlet hash_bits; // log2(hash_size)\n\tlet hash_mask; // hash_size-1\n\n\t// Number of bits by which ins_h must be shifted at each input\n\t// step. It must be such that after MIN_MATCH steps, the oldest\n\t// byte no longer takes part in the hash key, that is:\n\t// hash_shift * MIN_MATCH >= hash_bits\n\tlet hash_shift;\n\n\t// Window position at the beginning of the current output block. Gets\n\t// negative when the window is moved backwards.\n\n\tlet block_start;\n\n\tlet match_length; // length of best match\n\tlet prev_match; // previous match\n\tlet match_available; // set if previous match exists\n\tlet strstart; // start of string to insert\n\tlet match_start; // start of matching string\n\tlet lookahead; // number of valid bytes ahead in window\n\n\t// Length of the best match at previous step. Matches not greater than this\n\t// are discarded. This is used in the lazy match evaluation.\n\tlet prev_length;\n\n\t// To speed up deflation, hash chains are never searched beyond this\n\t// length. A higher limit improves compression ratio but degrades the speed.\n\tlet max_chain_length;\n\n\t// Attempt to find a better match only when the current match is strictly\n\t// smaller than this value. This mechanism is used only for compression\n\t// levels >= 4.\n\tlet max_lazy_match;\n\n\t// Insert new strings in the hash table only if the match length is not\n\t// greater than this length. This saves time but degrades compression.\n\t// max_insert_length is used only for compression levels <= 3.\n\n\tlet level; // compression level (1..9)\n\tlet strategy; // favor or force Huffman coding\n\n\t// Use a faster search when the previous match is longer than this\n\tlet good_match;\n\n\t// Stop searching when current match exceeds this\n\tlet nice_match;\n\n\tlet dyn_ltree; // literal and length tree\n\tlet dyn_dtree; // distance tree\n\tlet bl_tree; // Huffman tree for bit lengths\n\n\tconst l_desc = new Tree(); // desc for literal tree\n\tconst d_desc = new Tree(); // desc for distance tree\n\tconst bl_desc = new Tree(); // desc for bit length tree\n\n\t// that.heap_len; // number of elements in the heap\n\t// that.heap_max; // element of largest frequency\n\t// The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.\n\t// The same heap array is used to build all trees.\n\n\t// Depth of each subtree used as tie breaker for trees of equal frequency\n\tthat.depth = [];\n\n\tlet l_buf; // index for literals or lengths */\n\n\t// Size of match buffer for literals/lengths. There are 4 reasons for\n\t// limiting lit_bufsize to 64K:\n\t// - frequencies can be kept in 16 bit counters\n\t// - if compression is not successful for the first block, all input\n\t// data is still in the window so we can still emit a stored block even\n\t// when input comes from standard input. (This can also be done for\n\t// all blocks if lit_bufsize is not greater than 32K.)\n\t// - if compression is not successful for a file smaller than 64K, we can\n\t// even emit a stored file instead of a stored block (saving 5 bytes).\n\t// This is applicable only for zip (not gzip or zlib).\n\t// - creating new Huffman trees less frequently may not provide fast\n\t// adaptation to changes in the input data statistics. (Take for\n\t// example a binary file with poorly compressible code followed by\n\t// a highly compressible string table.) Smaller buffer sizes give\n\t// fast adaptation but have of course the overhead of transmitting\n\t// trees more frequently.\n\t// - I can't count above 4\n\tlet lit_bufsize;\n\n\tlet last_lit; // running index in l_buf\n\n\t// Buffer for distances. To simplify the code, d_buf and l_buf have\n\t// the same number of elements. To use different lengths, an extra flag\n\t// array would be necessary.\n\n\tlet d_buf; // index of pendig_buf\n\n\t// that.opt_len; // bit length of current block with optimal trees\n\t// that.static_len; // bit length of current block with static trees\n\tlet matches; // number of string matches in current block\n\tlet last_eob_len; // bit length of EOB code for last block\n\n\t// Output buffer. bits are inserted starting at the bottom (least\n\t// significant bits).\n\tlet bi_buf;\n\n\t// Number of valid bits in bi_buf. All bits above the last valid bit\n\t// are always zero.\n\tlet bi_valid;\n\n\t// number of codes at each bit length for an optimal tree\n\tthat.bl_count = [];\n\n\t// heap used to build the Huffman trees\n\tthat.heap = [];\n\n\tdyn_ltree = [];\n\tdyn_dtree = [];\n\tbl_tree = [];\n\n\tfunction lm_init() {\n\t\twindow_size = 2 * w_size;\n\n\t\thead[hash_size - 1] = 0;\n\t\tfor (let i = 0; i < hash_size - 1; i++) {\n\t\t\thead[i] = 0;\n\t\t}\n\n\t\t// Set the default configuration parameters:\n\t\tmax_lazy_match = config_table[level].max_lazy;\n\t\tgood_match = config_table[level].good_length;\n\t\tnice_match = config_table[level].nice_length;\n\t\tmax_chain_length = config_table[level].max_chain;\n\n\t\tstrstart = 0;\n\t\tblock_start = 0;\n\t\tlookahead = 0;\n\t\tmatch_length = prev_length = MIN_MATCH - 1;\n\t\tmatch_available = 0;\n\t\tins_h = 0;\n\t}\n\n\tfunction init_block() {\n\t\tlet i;\n\t\t// Initialize the trees.\n\t\tfor (i = 0; i < L_CODES; i++)\n\t\t\tdyn_ltree[i * 2] = 0;\n\t\tfor (i = 0; i < D_CODES; i++)\n\t\t\tdyn_dtree[i * 2] = 0;\n\t\tfor (i = 0; i < BL_CODES; i++)\n\t\t\tbl_tree[i * 2] = 0;\n\n\t\tdyn_ltree[END_BLOCK * 2] = 1;\n\t\tthat.opt_len = that.static_len = 0;\n\t\tlast_lit = matches = 0;\n\t}\n\n\t// Initialize the tree data structures for a new zlib stream.\n\tfunction tr_init() {\n\n\t\tl_desc.dyn_tree = dyn_ltree;\n\t\tl_desc.stat_desc = StaticTree.static_l_desc;\n\n\t\td_desc.dyn_tree = dyn_dtree;\n\t\td_desc.stat_desc = StaticTree.static_d_desc;\n\n\t\tbl_desc.dyn_tree = bl_tree;\n\t\tbl_desc.stat_desc = StaticTree.static_bl_desc;\n\n\t\tbi_buf = 0;\n\t\tbi_valid = 0;\n\t\tlast_eob_len = 8; // enough lookahead for inflate\n\n\t\t// Initialize the first block of the first file:\n\t\tinit_block();\n\t}\n\n\t// Restore the heap property by moving down the tree starting at node k,\n\t// exchanging a node with the smallest of its two sons if necessary,\n\t// stopping\n\t// when the heap property is re-established (each father smaller than its\n\t// two sons).\n\tthat.pqdownheap = function (tree, // the tree to restore\n\t\tk // node to move down\n\t) {\n\t\tconst heap = that.heap;\n\t\tconst v = heap[k];\n\t\tlet j = k << 1; // left son of k\n\t\twhile (j <= that.heap_len) {\n\t\t\t// Set j to the smallest of the two sons:\n\t\t\tif (j < that.heap_len && smaller(tree, heap[j + 1], heap[j], that.depth)) {\n\t\t\t\tj++;\n\t\t\t}\n\t\t\t// Exit if v is smaller than both sons\n\t\t\tif (smaller(tree, v, heap[j], that.depth))\n\t\t\t\tbreak;\n\n\t\t\t// Exchange v with the smallest son\n\t\t\theap[k] = heap[j];\n\t\t\tk = j;\n\t\t\t// And continue down the tree, setting j to the left son of k\n\t\t\tj <<= 1;\n\t\t}\n\t\theap[k] = v;\n\t};\n\n\t// Scan a literal or distance tree to determine the frequencies of the codes\n\t// in the bit length tree.\n\tfunction scan_tree(tree,// the tree to be scanned\n\t\tmax_code // and its largest code of non zero frequency\n\t) {\n\t\tlet prevlen = -1; // last emitted length\n\t\tlet curlen; // length of current code\n\t\tlet nextlen = tree[0 * 2 + 1]; // length of next code\n\t\tlet count = 0; // repeat count of the current code\n\t\tlet max_count = 7; // max repeat count\n\t\tlet min_count = 4; // min repeat count\n\n\t\tif (nextlen === 0) {\n\t\t\tmax_count = 138;\n\t\t\tmin_count = 3;\n\t\t}\n\t\ttree[(max_code + 1) * 2 + 1] = 0xffff; // guard\n\n\t\tfor (let n = 0; n <= max_code; n++) {\n\t\t\tcurlen = nextlen;\n\t\t\tnextlen = tree[(n + 1) * 2 + 1];\n\t\t\tif (++count < max_count && curlen == nextlen) {\n\t\t\t\tcontinue;\n\t\t\t} else if (count < min_count) {\n\t\t\t\tbl_tree[curlen * 2] += count;\n\t\t\t} else if (curlen !== 0) {\n\t\t\t\tif (curlen != prevlen)\n\t\t\t\t\tbl_tree[curlen * 2]++;\n\t\t\t\tbl_tree[REP_3_6 * 2]++;\n\t\t\t} else if (count <= 10) {\n\t\t\t\tbl_tree[REPZ_3_10 * 2]++;\n\t\t\t} else {\n\t\t\t\tbl_tree[REPZ_11_138 * 2]++;\n\t\t\t}\n\t\t\tcount = 0;\n\t\t\tprevlen = curlen;\n\t\t\tif (nextlen === 0) {\n\t\t\t\tmax_count = 138;\n\t\t\t\tmin_count = 3;\n\t\t\t} else if (curlen == nextlen) {\n\t\t\t\tmax_count = 6;\n\t\t\t\tmin_count = 3;\n\t\t\t} else {\n\t\t\t\tmax_count = 7;\n\t\t\t\tmin_count = 4;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Construct the Huffman tree for the bit lengths and return the index in\n\t// bl_order of the last bit length code to send.\n\tfunction build_bl_tree() {\n\t\tlet max_blindex; // index of last bit length code of non zero freq\n\n\t\t// Determine the bit length frequencies for literal and distance trees\n\t\tscan_tree(dyn_ltree, l_desc.max_code);\n\t\tscan_tree(dyn_dtree, d_desc.max_code);\n\n\t\t// Build the bit length tree:\n\t\tbl_desc.build_tree(that);\n\t\t// opt_len now includes the length of the tree representations, except\n\t\t// the lengths of the bit lengths codes and the 5+5+4 bits for the\n\t\t// counts.\n\n\t\t// Determine the number of bit length codes to send. The pkzip format\n\t\t// requires that at least 4 bit length codes be sent. (appnote.txt says\n\t\t// 3 but the actual value used is 4.)\n\t\tfor (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {\n\t\t\tif (bl_tree[Tree.bl_order[max_blindex] * 2 + 1] !== 0)\n\t\t\t\tbreak;\n\t\t}\n\t\t// Update opt_len to include the bit length tree and counts\n\t\tthat.opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;\n\n\t\treturn max_blindex;\n\t}\n\n\t// Output a byte on the stream.\n\t// IN assertion: there is enough room in pending_buf.\n\tfunction put_byte(p) {\n\t\tthat.pending_buf[that.pending++] = p;\n\t}\n\n\tfunction put_short(w) {\n\t\tput_byte(w & 0xff);\n\t\tput_byte((w >>> 8) & 0xff);\n\t}\n\n\tfunction putShortMSB(b) {\n\t\tput_byte((b >> 8) & 0xff);\n\t\tput_byte((b & 0xff) & 0xff);\n\t}\n\n\tfunction send_bits(value, length) {\n\t\tlet val;\n\t\tconst len = length;\n\t\tif (bi_valid > Buf_size - len) {\n\t\t\tval = value;\n\t\t\t// bi_buf |= (val << bi_valid);\n\t\t\tbi_buf |= ((val << bi_valid) & 0xffff);\n\t\t\tput_short(bi_buf);\n\t\t\tbi_buf = val >>> (Buf_size - bi_valid);\n\t\t\tbi_valid += len - Buf_size;\n\t\t} else {\n\t\t\t// bi_buf |= (value) << bi_valid;\n\t\t\tbi_buf |= (((value) << bi_valid) & 0xffff);\n\t\t\tbi_valid += len;\n\t\t}\n\t}\n\n\tfunction send_code(c, tree) {\n\t\tconst c2 = c * 2;\n\t\tsend_bits(tree[c2] & 0xffff, tree[c2 + 1] & 0xffff);\n\t}\n\n\t// Send a literal or distance tree in compressed form, using the codes in\n\t// bl_tree.\n\tfunction send_tree(tree,// the tree to be sent\n\t\tmax_code // and its largest code of non zero frequency\n\t) {\n\t\tlet n; // iterates over all tree elements\n\t\tlet prevlen = -1; // last emitted length\n\t\tlet curlen; // length of current code\n\t\tlet nextlen = tree[0 * 2 + 1]; // length of next code\n\t\tlet count = 0; // repeat count of the current code\n\t\tlet max_count = 7; // max repeat count\n\t\tlet min_count = 4; // min repeat count\n\n\t\tif (nextlen === 0) {\n\t\t\tmax_count = 138;\n\t\t\tmin_count = 3;\n\t\t}\n\n\t\tfor (n = 0; n <= max_code; n++) {\n\t\t\tcurlen = nextlen;\n\t\t\tnextlen = tree[(n + 1) * 2 + 1];\n\t\t\tif (++count < max_count && curlen == nextlen) {\n\t\t\t\tcontinue;\n\t\t\t} else if (count < min_count) {\n\t\t\t\tdo {\n\t\t\t\t\tsend_code(curlen, bl_tree);\n\t\t\t\t} while (--count !== 0);\n\t\t\t} else if (curlen !== 0) {\n\t\t\t\tif (curlen != prevlen) {\n\t\t\t\t\tsend_code(curlen, bl_tree);\n\t\t\t\t\tcount--;\n\t\t\t\t}\n\t\t\t\tsend_code(REP_3_6, bl_tree);\n\t\t\t\tsend_bits(count - 3, 2);\n\t\t\t} else if (count <= 10) {\n\t\t\t\tsend_code(REPZ_3_10, bl_tree);\n\t\t\t\tsend_bits(count - 3, 3);\n\t\t\t} else {\n\t\t\t\tsend_code(REPZ_11_138, bl_tree);\n\t\t\t\tsend_bits(count - 11, 7);\n\t\t\t}\n\t\t\tcount = 0;\n\t\t\tprevlen = curlen;\n\t\t\tif (nextlen === 0) {\n\t\t\t\tmax_count = 138;\n\t\t\t\tmin_count = 3;\n\t\t\t} else if (curlen == nextlen) {\n\t\t\t\tmax_count = 6;\n\t\t\t\tmin_count = 3;\n\t\t\t} else {\n\t\t\t\tmax_count = 7;\n\t\t\t\tmin_count = 4;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Send the header for a block using dynamic Huffman trees: the counts, the\n\t// lengths of the bit length codes, the literal tree and the distance tree.\n\t// IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.\n\tfunction send_all_trees(lcodes, dcodes, blcodes) {\n\t\tlet rank; // index in bl_order\n\n\t\tsend_bits(lcodes - 257, 5); // not +255 as stated in appnote.txt\n\t\tsend_bits(dcodes - 1, 5);\n\t\tsend_bits(blcodes - 4, 4); // not -3 as stated in appnote.txt\n\t\tfor (rank = 0; rank < blcodes; rank++) {\n\t\t\tsend_bits(bl_tree[Tree.bl_order[rank] * 2 + 1], 3);\n\t\t}\n\t\tsend_tree(dyn_ltree, lcodes - 1); // literal tree\n\t\tsend_tree(dyn_dtree, dcodes - 1); // distance tree\n\t}\n\n\t// Flush the bit buffer, keeping at most 7 bits in it.\n\tfunction bi_flush() {\n\t\tif (bi_valid == 16) {\n\t\t\tput_short(bi_buf);\n\t\t\tbi_buf = 0;\n\t\t\tbi_valid = 0;\n\t\t} else if (bi_valid >= 8) {\n\t\t\tput_byte(bi_buf & 0xff);\n\t\t\tbi_buf >>>= 8;\n\t\t\tbi_valid -= 8;\n\t\t}\n\t}\n\n\t// Send one empty static block to give enough lookahead for inflate.\n\t// This takes 10 bits, of which 7 may remain in the bit buffer.\n\t// The current inflate code requires 9 bits of lookahead. If the\n\t// last two codes for the previous block (real code plus EOB) were coded\n\t// on 5 bits or less, inflate may have only 5+3 bits of lookahead to decode\n\t// the last real code. In this case we send two empty static blocks instead\n\t// of one. (There are no problems if the previous block is stored or fixed.)\n\t// To simplify the code, we assume the worst case of last real code encoded\n\t// on one bit only.\n\tfunction _tr_align() {\n\t\tsend_bits(STATIC_TREES << 1, 3);\n\t\tsend_code(END_BLOCK, StaticTree.static_ltree);\n\n\t\tbi_flush();\n\n\t\t// Of the 10 bits for the empty block, we have already sent\n\t\t// (10 - bi_valid) bits. The lookahead for the last real code (before\n\t\t// the EOB of the previous block) was thus at least one plus the length\n\t\t// of the EOB plus what we have just sent of the empty static block.\n\t\tif (1 + last_eob_len + 10 - bi_valid < 9) {\n\t\t\tsend_bits(STATIC_TREES << 1, 3);\n\t\t\tsend_code(END_BLOCK, StaticTree.static_ltree);\n\t\t\tbi_flush();\n\t\t}\n\t\tlast_eob_len = 7;\n\t}\n\n\t// Save the match info and tally the frequency counts. Return true if\n\t// the current block must be flushed.\n\tfunction _tr_tally(dist, // distance of matched string\n\t\tlc // match length-MIN_MATCH or unmatched char (if dist==0)\n\t) {\n\t\tlet out_length, in_length, dcode;\n\t\tthat.pending_buf[d_buf + last_lit * 2] = (dist >>> 8) & 0xff;\n\t\tthat.pending_buf[d_buf + last_lit * 2 + 1] = dist & 0xff;\n\n\t\tthat.pending_buf[l_buf + last_lit] = lc & 0xff;\n\t\tlast_lit++;\n\n\t\tif (dist === 0) {\n\t\t\t// lc is the unmatched char\n\t\t\tdyn_ltree[lc * 2]++;\n\t\t} else {\n\t\t\tmatches++;\n\t\t\t// Here, lc is the match length - MIN_MATCH\n\t\t\tdist--; // dist = match distance - 1\n\t\t\tdyn_ltree[(Tree._length_code[lc] + LITERALS + 1) * 2]++;\n\t\t\tdyn_dtree[Tree.d_code(dist) * 2]++;\n\t\t}\n\n\t\tif ((last_lit & 0x1fff) === 0 && level > 2) {\n\t\t\t// Compute an upper bound for the compressed length\n\t\t\tout_length = last_lit * 8;\n\t\t\tin_length = strstart - block_start;\n\t\t\tfor (dcode = 0; dcode < D_CODES; dcode++) {\n\t\t\t\tout_length += dyn_dtree[dcode * 2] * (5 + Tree.extra_dbits[dcode]);\n\t\t\t}\n\t\t\tout_length >>>= 3;\n\t\t\tif ((matches < Math.floor(last_lit / 2)) && out_length < Math.floor(in_length / 2))\n\t\t\t\treturn true;\n\t\t}\n\n\t\treturn (last_lit == lit_bufsize - 1);\n\t\t// We avoid equality with lit_bufsize because of wraparound at 64K\n\t\t// on 16 bit machines and because stored blocks are restricted to\n\t\t// 64K-1 bytes.\n\t}\n\n\t// Send the block data compressed using the given Huffman trees\n\tfunction compress_block(ltree, dtree) {\n\t\tlet dist; // distance of matched string\n\t\tlet lc; // match length or unmatched char (if dist === 0)\n\t\tlet lx = 0; // running index in l_buf\n\t\tlet code; // the code to send\n\t\tlet extra; // number of extra bits to send\n\n\t\tif (last_lit !== 0) {\n\t\t\tdo {\n\t\t\t\tdist = ((that.pending_buf[d_buf + lx * 2] << 8) & 0xff00) | (that.pending_buf[d_buf + lx * 2 + 1] & 0xff);\n\t\t\t\tlc = (that.pending_buf[l_buf + lx]) & 0xff;\n\t\t\t\tlx++;\n\n\t\t\t\tif (dist === 0) {\n\t\t\t\t\tsend_code(lc, ltree); // send a literal byte\n\t\t\t\t} else {\n\t\t\t\t\t// Here, lc is the match length - MIN_MATCH\n\t\t\t\t\tcode = Tree._length_code[lc];\n\n\t\t\t\t\tsend_code(code + LITERALS + 1, ltree); // send the length\n\t\t\t\t\t// code\n\t\t\t\t\textra = Tree.extra_lbits[code];\n\t\t\t\t\tif (extra !== 0) {\n\t\t\t\t\t\tlc -= Tree.base_length[code];\n\t\t\t\t\t\tsend_bits(lc, extra); // send the extra length bits\n\t\t\t\t\t}\n\t\t\t\t\tdist--; // dist is now the match distance - 1\n\t\t\t\t\tcode = Tree.d_code(dist);\n\n\t\t\t\t\tsend_code(code, dtree); // send the distance code\n\t\t\t\t\textra = Tree.extra_dbits[code];\n\t\t\t\t\tif (extra !== 0) {\n\t\t\t\t\t\tdist -= Tree.base_dist[code];\n\t\t\t\t\t\tsend_bits(dist, extra); // send the extra distance bits\n\t\t\t\t\t}\n\t\t\t\t} // literal or match pair ?\n\n\t\t\t\t// Check that the overlay between pending_buf and d_buf+l_buf is\n\t\t\t\t// ok:\n\t\t\t} while (lx < last_lit);\n\t\t}\n\n\t\tsend_code(END_BLOCK, ltree);\n\t\tlast_eob_len = ltree[END_BLOCK * 2 + 1];\n\t}\n\n\t// Flush the bit buffer and align the output on a byte boundary\n\tfunction bi_windup() {\n\t\tif (bi_valid > 8) {\n\t\t\tput_short(bi_buf);\n\t\t} else if (bi_valid > 0) {\n\t\t\tput_byte(bi_buf & 0xff);\n\t\t}\n\t\tbi_buf = 0;\n\t\tbi_valid = 0;\n\t}\n\n\t// Copy a stored block, storing first the length and its\n\t// one's complement if requested.\n\tfunction copy_block(buf, // the input data\n\t\tlen, // its length\n\t\theader // true if block header must be written\n\t) {\n\t\tbi_windup(); // align on byte boundary\n\t\tlast_eob_len = 8; // enough lookahead for inflate\n\n\t\tif (header) {\n\t\t\tput_short(len);\n\t\t\tput_short(~len);\n\t\t}\n\n\t\tthat.pending_buf.set(window.subarray(buf, buf + len), that.pending);\n\t\tthat.pending += len;\n\t}\n\n\t// Send a stored block\n\tfunction _tr_stored_block(buf, // input block\n\t\tstored_len, // length of input block\n\t\teof // true if this is the last block for a file\n\t) {\n\t\tsend_bits((STORED_BLOCK << 1) + (eof ? 1 : 0), 3); // send block type\n\t\tcopy_block(buf, stored_len, true); // with header\n\t}\n\n\t// Determine the best encoding for the current block: dynamic trees, static\n\t// trees or store, and output the encoded block to the zip file.\n\tfunction _tr_flush_block(buf, // input block, or NULL if too old\n\t\tstored_len, // length of input block\n\t\teof // true if this is the last block for a file\n\t) {\n\t\tlet opt_lenb, static_lenb;// opt_len and static_len in bytes\n\t\tlet max_blindex = 0; // index of last bit length code of non zero freq\n\n\t\t// Build the Huffman trees unless a stored block is forced\n\t\tif (level > 0) {\n\t\t\t// Construct the literal and distance trees\n\t\t\tl_desc.build_tree(that);\n\n\t\t\td_desc.build_tree(that);\n\n\t\t\t// At this point, opt_len and static_len are the total bit lengths\n\t\t\t// of\n\t\t\t// the compressed block data, excluding the tree representations.\n\n\t\t\t// Build the bit length tree for the above two trees, and get the\n\t\t\t// index\n\t\t\t// in bl_order of the last bit length code to send.\n\t\t\tmax_blindex = build_bl_tree();\n\n\t\t\t// Determine the best encoding. Compute first the block length in\n\t\t\t// bytes\n\t\t\topt_lenb = (that.opt_len + 3 + 7) >>> 3;\n\t\t\tstatic_lenb = (that.static_len + 3 + 7) >>> 3;\n\n\t\t\tif (static_lenb <= opt_lenb)\n\t\t\t\topt_lenb = static_lenb;\n\t\t} else {\n\t\t\topt_lenb = static_lenb = stored_len + 5; // force a stored block\n\t\t}\n\n\t\tif ((stored_len + 4 <= opt_lenb) && buf != -1) {\n\t\t\t// 4: two words for the lengths\n\t\t\t// The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.\n\t\t\t// Otherwise we can't have processed more than WSIZE input bytes\n\t\t\t// since\n\t\t\t// the last block flush, because compression would have been\n\t\t\t// successful. If LIT_BUFSIZE <= WSIZE, it is never too late to\n\t\t\t// transform a block into a stored block.\n\t\t\t_tr_stored_block(buf, stored_len, eof);\n\t\t} else if (static_lenb == opt_lenb) {\n\t\t\tsend_bits((STATIC_TREES << 1) + (eof ? 1 : 0), 3);\n\t\t\tcompress_block(StaticTree.static_ltree, StaticTree.static_dtree);\n\t\t} else {\n\t\t\tsend_bits((DYN_TREES << 1) + (eof ? 1 : 0), 3);\n\t\t\tsend_all_trees(l_desc.max_code + 1, d_desc.max_code + 1, max_blindex + 1);\n\t\t\tcompress_block(dyn_ltree, dyn_dtree);\n\t\t}\n\n\t\t// The above check is made mod 2^32, for files larger than 512 MB\n\t\t// and uLong implemented on 32 bits.\n\n\t\tinit_block();\n\n\t\tif (eof) {\n\t\t\tbi_windup();\n\t\t}\n\t}\n\n\tfunction flush_block_only(eof) {\n\t\t_tr_flush_block(block_start >= 0 ? block_start : -1, strstart - block_start, eof);\n\t\tblock_start = strstart;\n\t\tstrm.flush_pending();\n\t}\n\n\t// Fill the window when the lookahead becomes insufficient.\n\t// Updates strstart and lookahead.\n\t//\n\t// IN assertion: lookahead < MIN_LOOKAHEAD\n\t// OUT assertions: strstart <= window_size-MIN_LOOKAHEAD\n\t// At least one byte has been read, or avail_in === 0; reads are\n\t// performed for at least two bytes (required for the zip translate_eol\n\t// option -- not supported here).\n\tfunction fill_window() {\n\t\tlet n, m;\n\t\tlet p;\n\t\tlet more; // Amount of free space at the end of the window.\n\n\t\tdo {\n\t\t\tmore = (window_size - lookahead - strstart);\n\n\t\t\t// Deal with !@#$% 64K limit:\n\t\t\tif (more === 0 && strstart === 0 && lookahead === 0) {\n\t\t\t\tmore = w_size;\n\t\t\t} else if (more == -1) {\n\t\t\t\t// Very unlikely, but possible on 16 bit machine if strstart ==\n\t\t\t\t// 0\n\t\t\t\t// and lookahead == 1 (input done one byte at time)\n\t\t\t\tmore--;\n\n\t\t\t\t// If the window is almost full and there is insufficient\n\t\t\t\t// lookahead,\n\t\t\t\t// move the upper half to the lower one to make room in the\n\t\t\t\t// upper half.\n\t\t\t} else if (strstart >= w_size + w_size - MIN_LOOKAHEAD) {\n\t\t\t\twindow.set(window.subarray(w_size, w_size + w_size), 0);\n\n\t\t\t\tmatch_start -= w_size;\n\t\t\t\tstrstart -= w_size; // we now have strstart >= MAX_DIST\n\t\t\t\tblock_start -= w_size;\n\n\t\t\t\t// Slide the hash table (could be avoided with 32 bit values\n\t\t\t\t// at the expense of memory usage). We slide even when level ==\n\t\t\t\t// 0\n\t\t\t\t// to keep the hash table consistent if we switch back to level\n\t\t\t\t// > 0\n\t\t\t\t// later. (Using level 0 permanently is not an optimal usage of\n\t\t\t\t// zlib, so we don't care about this pathological case.)\n\n\t\t\t\tn = hash_size;\n\t\t\t\tp = n;\n\t\t\t\tdo {\n\t\t\t\t\tm = (head[--p] & 0xffff);\n\t\t\t\t\thead[p] = (m >= w_size ? m - w_size : 0);\n\t\t\t\t} while (--n !== 0);\n\n\t\t\t\tn = w_size;\n\t\t\t\tp = n;\n\t\t\t\tdo {\n\t\t\t\t\tm = (prev[--p] & 0xffff);\n\t\t\t\t\tprev[p] = (m >= w_size ? m - w_size : 0);\n\t\t\t\t\t// If n is not on any hash chain, prev[n] is garbage but\n\t\t\t\t\t// its value will never be used.\n\t\t\t\t} while (--n !== 0);\n\t\t\t\tmore += w_size;\n\t\t\t}\n\n\t\t\tif (strm.avail_in === 0)\n\t\t\t\treturn;\n\n\t\t\t// If there was no sliding:\n\t\t\t// strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&\n\t\t\t// more == window_size - lookahead - strstart\n\t\t\t// => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)\n\t\t\t// => more >= window_size - 2*WSIZE + 2\n\t\t\t// In the BIG_MEM or MMAP case (not yet supported),\n\t\t\t// window_size == input_size + MIN_LOOKAHEAD &&\n\t\t\t// strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.\n\t\t\t// Otherwise, window_size == 2*WSIZE so more >= 2.\n\t\t\t// If there was sliding, more >= WSIZE. So in all cases, more >= 2.\n\n\t\t\tn = strm.read_buf(window, strstart + lookahead, more);\n\t\t\tlookahead += n;\n\n\t\t\t// Initialize the hash value now that we have some input:\n\t\t\tif (lookahead >= MIN_MATCH) {\n\t\t\t\tins_h = window[strstart] & 0xff;\n\t\t\t\tins_h = (((ins_h) << hash_shift) ^ (window[strstart + 1] & 0xff)) & hash_mask;\n\t\t\t}\n\t\t\t// If the whole input has less than MIN_MATCH bytes, ins_h is\n\t\t\t// garbage,\n\t\t\t// but this is not important since only literal bytes will be\n\t\t\t// emitted.\n\t\t} while (lookahead < MIN_LOOKAHEAD && strm.avail_in !== 0);\n\t}\n\n\t// Copy without compression as much as possible from the input stream,\n\t// return\n\t// the current block state.\n\t// This function does not insert new strings in the dictionary since\n\t// uncompressible data is probably not useful. This function is used\n\t// only for the level=0 compression option.\n\t// NOTE: this function should be optimized to avoid extra copying from\n\t// window to pending_buf.\n\tfunction deflate_stored(flush) {\n\t\t// Stored blocks are limited to 0xffff bytes, pending_buf is limited\n\t\t// to pending_buf_size, and each stored block has a 5 byte header:\n\n\t\tlet max_block_size = 0xffff;\n\t\tlet max_start;\n\n\t\tif (max_block_size > pending_buf_size - 5) {\n\t\t\tmax_block_size = pending_buf_size - 5;\n\t\t}\n\n\t\t// Copy as much as possible from input to output:\n\t\t// eslint-disable-next-line no-constant-condition\n\t\twhile (true) {\n\t\t\t// Fill the window as much as possible:\n\t\t\tif (lookahead <= 1) {\n\t\t\t\tfill_window();\n\t\t\t\tif (lookahead === 0 && flush == Z_NO_FLUSH)\n\t\t\t\t\treturn NeedMore;\n\t\t\t\tif (lookahead === 0)\n\t\t\t\t\tbreak; // flush the current block\n\t\t\t}\n\n\t\t\tstrstart += lookahead;\n\t\t\tlookahead = 0;\n\n\t\t\t// Emit a stored block if pending_buf will be full:\n\t\t\tmax_start = block_start + max_block_size;\n\t\t\tif (strstart === 0 || strstart >= max_start) {\n\t\t\t\t// strstart === 0 is possible when wraparound on 16-bit machine\n\t\t\t\tlookahead = (strstart - max_start);\n\t\t\t\tstrstart = max_start;\n\n\t\t\t\tflush_block_only(false);\n\t\t\t\tif (strm.avail_out === 0)\n\t\t\t\t\treturn NeedMore;\n\n\t\t\t}\n\n\t\t\t// Flush if we may have to slide, otherwise block_start may become\n\t\t\t// negative and the data will be gone:\n\t\t\tif (strstart - block_start >= w_size - MIN_LOOKAHEAD) {\n\t\t\t\tflush_block_only(false);\n\t\t\t\tif (strm.avail_out === 0)\n\t\t\t\t\treturn NeedMore;\n\t\t\t}\n\t\t}\n\n\t\tflush_block_only(flush == Z_FINISH);\n\t\tif (strm.avail_out === 0)\n\t\t\treturn (flush == Z_FINISH) ? FinishStarted : NeedMore;\n\n\t\treturn flush == Z_FINISH ? FinishDone : BlockDone;\n\t}\n\n\tfunction longest_match(cur_match) {\n\t\tlet chain_length = max_chain_length; // max hash chain length\n\t\tlet scan = strstart; // current string\n\t\tlet match; // matched string\n\t\tlet len; // length of current match\n\t\tlet best_len = prev_length; // best match length so far\n\t\tconst limit = strstart > (w_size - MIN_LOOKAHEAD) ? strstart - (w_size - MIN_LOOKAHEAD) : 0;\n\t\tlet _nice_match = nice_match;\n\n\t\t// Stop when cur_match becomes <= limit. To simplify the code,\n\t\t// we prevent matches with the string of window index 0.\n\n\t\tconst wmask = w_mask;\n\n\t\tconst strend = strstart + MAX_MATCH;\n\t\tlet scan_end1 = window[scan + best_len - 1];\n\t\tlet scan_end = window[scan + best_len];\n\n\t\t// The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of\n\t\t// 16.\n\t\t// It is easy to get rid of this optimization if necessary.\n\n\t\t// Do not waste too much time if we already have a good match:\n\t\tif (prev_length >= good_match) {\n\t\t\tchain_length >>= 2;\n\t\t}\n\n\t\t// Do not look for matches beyond the end of the input. This is\n\t\t// necessary\n\t\t// to make deflate deterministic.\n\t\tif (_nice_match > lookahead)\n\t\t\t_nice_match = lookahead;\n\n\t\tdo {\n\t\t\tmatch = cur_match;\n\n\t\t\t// Skip to next match if the match length cannot increase\n\t\t\t// or if the match length is less than 2:\n\t\t\tif (window[match + best_len] != scan_end || window[match + best_len - 1] != scan_end1 || window[match] != window[scan]\n\t\t\t\t|| window[++match] != window[scan + 1])\n\t\t\t\tcontinue;\n\n\t\t\t// The check at best_len-1 can be removed because it will be made\n\t\t\t// again later. (This heuristic is not always a win.)\n\t\t\t// It is not necessary to compare scan[2] and match[2] since they\n\t\t\t// are always equal when the other bytes match, given that\n\t\t\t// the hash keys are equal and that HASH_BITS >= 8.\n\t\t\tscan += 2;\n\t\t\tmatch++;\n\n\t\t\t// We check for insufficient lookahead only every 8th comparison;\n\t\t\t// the 256th check will be made at strstart+258.\n\t\t\t// eslint-disable-next-line no-empty\n\t\t\tdo {\n\t\t\t} while (window[++scan] == window[++match] && window[++scan] == window[++match] && window[++scan] == window[++match]\n\t\t\t&& window[++scan] == window[++match] && window[++scan] == window[++match] && window[++scan] == window[++match]\n\t\t\t&& window[++scan] == window[++match] && window[++scan] == window[++match] && scan < strend);\n\n\t\t\tlen = MAX_MATCH - (strend - scan);\n\t\t\tscan = strend - MAX_MATCH;\n\n\t\t\tif (len > best_len) {\n\t\t\t\tmatch_start = cur_match;\n\t\t\t\tbest_len = len;\n\t\t\t\tif (len >= _nice_match)\n\t\t\t\t\tbreak;\n\t\t\t\tscan_end1 = window[scan + best_len - 1];\n\t\t\t\tscan_end = window[scan + best_len];\n\t\t\t}\n\n\t\t} while ((cur_match = (prev[cur_match & wmask] & 0xffff)) > limit && --chain_length !== 0);\n\n\t\tif (best_len <= lookahead)\n\t\t\treturn best_len;\n\t\treturn lookahead;\n\t}\n\n\t// Compress as much as possible from the input stream, return the current\n\t// block state.\n\t// This function does not perform lazy evaluation of matches and inserts\n\t// new strings in the dictionary only for unmatched strings or for short\n\t// matches. It is used only for the fast compression options.\n\tfunction deflate_fast(flush) {\n\t\t// short hash_head = 0; // head of the hash chain\n\t\tlet hash_head = 0; // head of the hash chain\n\t\tlet bflush; // set if current block must be flushed\n\n\t\t// eslint-disable-next-line no-constant-condition\n\t\twhile (true) {\n\t\t\t// Make sure that we always have enough lookahead, except\n\t\t\t// at the end of the input file. We need MAX_MATCH bytes\n\t\t\t// for the next match, plus MIN_MATCH bytes to insert the\n\t\t\t// string following the next match.\n\t\t\tif (lookahead < MIN_LOOKAHEAD) {\n\t\t\t\tfill_window();\n\t\t\t\tif (lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {\n\t\t\t\t\treturn NeedMore;\n\t\t\t\t}\n\t\t\t\tif (lookahead === 0)\n\t\t\t\t\tbreak; // flush the current block\n\t\t\t}\n\n\t\t\t// Insert the string window[strstart .. strstart+2] in the\n\t\t\t// dictionary, and set hash_head to the head of the hash chain:\n\t\t\tif (lookahead >= MIN_MATCH) {\n\t\t\t\tins_h = (((ins_h) << hash_shift) ^ (window[(strstart) + (MIN_MATCH - 1)] & 0xff)) & hash_mask;\n\n\t\t\t\t// prev[strstart&w_mask]=hash_head=head[ins_h];\n\t\t\t\thash_head = (head[ins_h] & 0xffff);\n\t\t\t\tprev[strstart & w_mask] = head[ins_h];\n\t\t\t\thead[ins_h] = strstart;\n\t\t\t}\n\n\t\t\t// Find the longest match, discarding those <= prev_length.\n\t\t\t// At this point we have always match_length < MIN_MATCH\n\n\t\t\tif (hash_head !== 0 && ((strstart - hash_head) & 0xffff) <= w_size - MIN_LOOKAHEAD) {\n\t\t\t\t// To simplify the code, we prevent matches with the string\n\t\t\t\t// of window index 0 (in particular we have to avoid a match\n\t\t\t\t// of the string with itself at the start of the input file).\n\t\t\t\tif (strategy != Z_HUFFMAN_ONLY) {\n\t\t\t\t\tmatch_length = longest_match(hash_head);\n\t\t\t\t}\n\t\t\t\t// longest_match() sets match_start\n\t\t\t}\n\t\t\tif (match_length >= MIN_MATCH) {\n\t\t\t\t// check_match(strstart, match_start, match_length);\n\n\t\t\t\tbflush = _tr_tally(strstart - match_start, match_length - MIN_MATCH);\n\n\t\t\t\tlookahead -= match_length;\n\n\t\t\t\t// Insert new strings in the hash table only if the match length\n\t\t\t\t// is not too large. This saves time but degrades compression.\n\t\t\t\tif (match_length <= max_lazy_match && lookahead >= MIN_MATCH) {\n\t\t\t\t\tmatch_length--; // string at strstart already in hash table\n\t\t\t\t\tdo {\n\t\t\t\t\t\tstrstart++;\n\n\t\t\t\t\t\tins_h = ((ins_h << hash_shift) ^ (window[(strstart) + (MIN_MATCH - 1)] & 0xff)) & hash_mask;\n\t\t\t\t\t\t// prev[strstart&w_mask]=hash_head=head[ins_h];\n\t\t\t\t\t\thash_head = (head[ins_h] & 0xffff);\n\t\t\t\t\t\tprev[strstart & w_mask] = head[ins_h];\n\t\t\t\t\t\thead[ins_h] = strstart;\n\n\t\t\t\t\t\t// strstart never exceeds WSIZE-MAX_MATCH, so there are\n\t\t\t\t\t\t// always MIN_MATCH bytes ahead.\n\t\t\t\t\t} while (--match_length !== 0);\n\t\t\t\t\tstrstart++;\n\t\t\t\t} else {\n\t\t\t\t\tstrstart += match_length;\n\t\t\t\t\tmatch_length = 0;\n\t\t\t\t\tins_h = window[strstart] & 0xff;\n\n\t\t\t\t\tins_h = (((ins_h) << hash_shift) ^ (window[strstart + 1] & 0xff)) & hash_mask;\n\t\t\t\t\t// If lookahead < MIN_MATCH, ins_h is garbage, but it does\n\t\t\t\t\t// not\n\t\t\t\t\t// matter since it will be recomputed at next deflate call.\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// No match, output a literal byte\n\n\t\t\t\tbflush = _tr_tally(0, window[strstart] & 0xff);\n\t\t\t\tlookahead--;\n\t\t\t\tstrstart++;\n\t\t\t}\n\t\t\tif (bflush) {\n\n\t\t\t\tflush_block_only(false);\n\t\t\t\tif (strm.avail_out === 0)\n\t\t\t\t\treturn NeedMore;\n\t\t\t}\n\t\t}\n\n\t\tflush_block_only(flush == Z_FINISH);\n\t\tif (strm.avail_out === 0) {\n\t\t\tif (flush == Z_FINISH)\n\t\t\t\treturn FinishStarted;\n\t\t\telse\n\t\t\t\treturn NeedMore;\n\t\t}\n\t\treturn flush == Z_FINISH ? FinishDone : BlockDone;\n\t}\n\n\t// Same as above, but achieves better compression. We use a lazy\n\t// evaluation for matches: a match is finally adopted only if there is\n\t// no better match at the next window position.\n\tfunction deflate_slow(flush) {\n\t\t// short hash_head = 0; // head of hash chain\n\t\tlet hash_head = 0; // head of hash chain\n\t\tlet bflush; // set if current block must be flushed\n\t\tlet max_insert;\n\n\t\t// Process the input block.\n\t\t// eslint-disable-next-line no-constant-condition\n\t\twhile (true) {\n\t\t\t// Make sure that we always have enough lookahead, except\n\t\t\t// at the end of the input file. We need MAX_MATCH bytes\n\t\t\t// for the next match, plus MIN_MATCH bytes to insert the\n\t\t\t// string following the next match.\n\n\t\t\tif (lookahead < MIN_LOOKAHEAD) {\n\t\t\t\tfill_window();\n\t\t\t\tif (lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {\n\t\t\t\t\treturn NeedMore;\n\t\t\t\t}\n\t\t\t\tif (lookahead === 0)\n\t\t\t\t\tbreak; // flush the current block\n\t\t\t}\n\n\t\t\t// Insert the string window[strstart .. strstart+2] in the\n\t\t\t// dictionary, and set hash_head to the head of the hash chain:\n\n\t\t\tif (lookahead >= MIN_MATCH) {\n\t\t\t\tins_h = (((ins_h) << hash_shift) ^ (window[(strstart) + (MIN_MATCH - 1)] & 0xff)) & hash_mask;\n\t\t\t\t// prev[strstart&w_mask]=hash_head=head[ins_h];\n\t\t\t\thash_head = (head[ins_h] & 0xffff);\n\t\t\t\tprev[strstart & w_mask] = head[ins_h];\n\t\t\t\thead[ins_h] = strstart;\n\t\t\t}\n\n\t\t\t// Find the longest match, discarding those <= prev_length.\n\t\t\tprev_length = match_length;\n\t\t\tprev_match = match_start;\n\t\t\tmatch_length = MIN_MATCH - 1;\n\n\t\t\tif (hash_head !== 0 && prev_length < max_lazy_match && ((strstart - hash_head) & 0xffff) <= w_size - MIN_LOOKAHEAD) {\n\t\t\t\t// To simplify the code, we prevent matches with the string\n\t\t\t\t// of window index 0 (in particular we have to avoid a match\n\t\t\t\t// of the string with itself at the start of the input file).\n\n\t\t\t\tif (strategy != Z_HUFFMAN_ONLY) {\n\t\t\t\t\tmatch_length = longest_match(hash_head);\n\t\t\t\t}\n\t\t\t\t// longest_match() sets match_start\n\n\t\t\t\tif (match_length <= 5 && (strategy == Z_FILTERED || (match_length == MIN_MATCH && strstart - match_start > 4096))) {\n\n\t\t\t\t\t// If prev_match is also MIN_MATCH, match_start is garbage\n\t\t\t\t\t// but we will ignore the current match anyway.\n\t\t\t\t\tmatch_length = MIN_MATCH - 1;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// If there was a match at the previous step and the current\n\t\t\t// match is not better, output the previous match:\n\t\t\tif (prev_length >= MIN_MATCH && match_length <= prev_length) {\n\t\t\t\tmax_insert = strstart + lookahead - MIN_MATCH;\n\t\t\t\t// Do not insert strings in hash table beyond this.\n\n\t\t\t\t// check_match(strstart-1, prev_match, prev_length);\n\n\t\t\t\tbflush = _tr_tally(strstart - 1 - prev_match, prev_length - MIN_MATCH);\n\n\t\t\t\t// Insert in hash table all strings up to the end of the match.\n\t\t\t\t// strstart-1 and strstart are already inserted. If there is not\n\t\t\t\t// enough lookahead, the last two strings are not inserted in\n\t\t\t\t// the hash table.\n\t\t\t\tlookahead -= prev_length - 1;\n\t\t\t\tprev_length -= 2;\n\t\t\t\tdo {\n\t\t\t\t\tif (++strstart <= max_insert) {\n\t\t\t\t\t\tins_h = (((ins_h) << hash_shift) ^ (window[(strstart) + (MIN_MATCH - 1)] & 0xff)) & hash_mask;\n\t\t\t\t\t\t// prev[strstart&w_mask]=hash_head=head[ins_h];\n\t\t\t\t\t\thash_head = (head[ins_h] & 0xffff);\n\t\t\t\t\t\tprev[strstart & w_mask] = head[ins_h];\n\t\t\t\t\t\thead[ins_h] = strstart;\n\t\t\t\t\t}\n\t\t\t\t} while (--prev_length !== 0);\n\t\t\t\tmatch_available = 0;\n\t\t\t\tmatch_length = MIN_MATCH - 1;\n\t\t\t\tstrstart++;\n\n\t\t\t\tif (bflush) {\n\t\t\t\t\tflush_block_only(false);\n\t\t\t\t\tif (strm.avail_out === 0)\n\t\t\t\t\t\treturn NeedMore;\n\t\t\t\t}\n\t\t\t} else if (match_available !== 0) {\n\n\t\t\t\t// If there was no match at the previous position, output a\n\t\t\t\t// single literal. If there was a match but the current match\n\t\t\t\t// is longer, truncate the previous match to a single literal.\n\n\t\t\t\tbflush = _tr_tally(0, window[strstart - 1] & 0xff);\n\n\t\t\t\tif (bflush) {\n\t\t\t\t\tflush_block_only(false);\n\t\t\t\t}\n\t\t\t\tstrstart++;\n\t\t\t\tlookahead--;\n\t\t\t\tif (strm.avail_out === 0)\n\t\t\t\t\treturn NeedMore;\n\t\t\t} else {\n\t\t\t\t// There is no previous match to compare with, wait for\n\t\t\t\t// the next step to decide.\n\n\t\t\t\tmatch_available = 1;\n\t\t\t\tstrstart++;\n\t\t\t\tlookahead--;\n\t\t\t}\n\t\t}\n\n\t\tif (match_available !== 0) {\n\t\t\tbflush = _tr_tally(0, window[strstart - 1] & 0xff);\n\t\t\tmatch_available = 0;\n\t\t}\n\t\tflush_block_only(flush == Z_FINISH);\n\n\t\tif (strm.avail_out === 0) {\n\t\t\tif (flush == Z_FINISH)\n\t\t\t\treturn FinishStarted;\n\t\t\telse\n\t\t\t\treturn NeedMore;\n\t\t}\n\n\t\treturn flush == Z_FINISH ? FinishDone : BlockDone;\n\t}\n\n\tfunction deflateReset(strm) {\n\t\tstrm.total_in = strm.total_out = 0;\n\t\tstrm.msg = null; //\n\n\t\tthat.pending = 0;\n\t\tthat.pending_out = 0;\n\n\t\tstatus = BUSY_STATE;\n\n\t\tlast_flush = Z_NO_FLUSH;\n\n\t\ttr_init();\n\t\tlm_init();\n\t\treturn Z_OK;\n\t}\n\n\tthat.deflateInit = function (strm, _level, bits, _method, memLevel, _strategy) {\n\t\tif (!_method)\n\t\t\t_method = Z_DEFLATED;\n\t\tif (!memLevel)\n\t\t\tmemLevel = DEF_MEM_LEVEL;\n\t\tif (!_strategy)\n\t\t\t_strategy = Z_DEFAULT_STRATEGY;\n\n\t\t// byte[] my_version=ZLIB_VERSION;\n\n\t\t//\n\t\t// if (!version || version[0] != my_version[0]\n\t\t// || stream_size != sizeof(z_stream)) {\n\t\t// return Z_VERSION_ERROR;\n\t\t// }\n\n\t\tstrm.msg = null;\n\n\t\tif (_level == Z_DEFAULT_COMPRESSION)\n\t\t\t_level = 6;\n\n\t\tif (memLevel < 1 || memLevel > MAX_MEM_LEVEL || _method != Z_DEFLATED || bits < 9 || bits > 15 || _level < 0 || _level > 9 || _strategy < 0\n\t\t\t|| _strategy > Z_HUFFMAN_ONLY) {\n\t\t\treturn Z_STREAM_ERROR;\n\t\t}\n\n\t\tstrm.dstate = that;\n\n\t\tw_bits = bits;\n\t\tw_size = 1 << w_bits;\n\t\tw_mask = w_size - 1;\n\n\t\thash_bits = memLevel + 7;\n\t\thash_size = 1 << hash_bits;\n\t\thash_mask = hash_size - 1;\n\t\thash_shift = Math.floor((hash_bits + MIN_MATCH - 1) / MIN_MATCH);\n\n\t\twindow = new Uint8Array(w_size * 2);\n\t\tprev = [];\n\t\thead = [];\n\n\t\tlit_bufsize = 1 << (memLevel + 6); // 16K elements by default\n\n\t\t// We overlay pending_buf and d_buf+l_buf. This works since the average\n\t\t// output size for (length,distance) codes is <= 24 bits.\n\t\tthat.pending_buf = new Uint8Array(lit_bufsize * 4);\n\t\tpending_buf_size = lit_bufsize * 4;\n\n\t\td_buf = Math.floor(lit_bufsize / 2);\n\t\tl_buf = (1 + 2) * lit_bufsize;\n\n\t\tlevel = _level;\n\n\t\tstrategy = _strategy;\n\n\t\treturn deflateReset(strm);\n\t};\n\n\tthat.deflateEnd = function () {\n\t\tif (status != INIT_STATE && status != BUSY_STATE && status != FINISH_STATE) {\n\t\t\treturn Z_STREAM_ERROR;\n\t\t}\n\t\t// Deallocate in reverse order of allocations:\n\t\tthat.pending_buf = null;\n\t\thead = null;\n\t\tprev = null;\n\t\twindow = null;\n\t\t// free\n\t\tthat.dstate = null;\n\t\treturn status == BUSY_STATE ? Z_DATA_ERROR : Z_OK;\n\t};\n\n\tthat.deflateParams = function (strm, _level, _strategy) {\n\t\tlet err = Z_OK;\n\n\t\tif (_level == Z_DEFAULT_COMPRESSION) {\n\t\t\t_level = 6;\n\t\t}\n\t\tif (_level < 0 || _level > 9 || _strategy < 0 || _strategy > Z_HUFFMAN_ONLY) {\n\t\t\treturn Z_STREAM_ERROR;\n\t\t}\n\n\t\tif (config_table[level].func != config_table[_level].func && strm.total_in !== 0) {\n\t\t\t// Flush the last buffer:\n\t\t\terr = strm.deflate(Z_PARTIAL_FLUSH);\n\t\t}\n\n\t\tif (level != _level) {\n\t\t\tlevel = _level;\n\t\t\tmax_lazy_match = config_table[level].max_lazy;\n\t\t\tgood_match = config_table[level].good_length;\n\t\t\tnice_match = config_table[level].nice_length;\n\t\t\tmax_chain_length = config_table[level].max_chain;\n\t\t}\n\t\tstrategy = _strategy;\n\t\treturn err;\n\t};\n\n\tthat.deflateSetDictionary = function (strm, dictionary, dictLength) {\n\t\tlet length = dictLength;\n\t\tlet n, index = 0;\n\n\t\tif (!dictionary || status != INIT_STATE)\n\t\t\treturn Z_STREAM_ERROR;\n\n\t\tif (length < MIN_MATCH)\n\t\t\treturn Z_OK;\n\t\tif (length > w_size - MIN_LOOKAHEAD) {\n\t\t\tlength = w_size - MIN_LOOKAHEAD;\n\t\t\tindex = dictLength - length; // use the tail of the dictionary\n\t\t}\n\t\twindow.set(dictionary.subarray(index, index + length), 0);\n\n\t\tstrstart = length;\n\t\tblock_start = length;\n\n\t\t// Insert all strings in the hash table (except for the last two bytes).\n\t\t// s->lookahead stays null, so s->ins_h will be recomputed at the next\n\t\t// call of fill_window.\n\n\t\tins_h = window[0] & 0xff;\n\t\tins_h = (((ins_h) << hash_shift) ^ (window[1] & 0xff)) & hash_mask;\n\n\t\tfor (n = 0; n <= length - MIN_MATCH; n++) {\n\t\t\tins_h = (((ins_h) << hash_shift) ^ (window[(n) + (MIN_MATCH - 1)] & 0xff)) & hash_mask;\n\t\t\tprev[n & w_mask] = head[ins_h];\n\t\t\thead[ins_h] = n;\n\t\t}\n\t\treturn Z_OK;\n\t};\n\n\tthat.deflate = function (_strm, flush) {\n\t\tlet i, header, level_flags, old_flush, bstate;\n\n\t\tif (flush > Z_FINISH || flush < 0) {\n\t\t\treturn Z_STREAM_ERROR;\n\t\t}\n\n\t\tif (!_strm.next_out || (!_strm.next_in && _strm.avail_in !== 0) || (status == FINISH_STATE && flush != Z_FINISH)) {\n\t\t\t_strm.msg = z_errmsg[Z_NEED_DICT - (Z_STREAM_ERROR)];\n\t\t\treturn Z_STREAM_ERROR;\n\t\t}\n\t\tif (_strm.avail_out === 0) {\n\t\t\t_strm.msg = z_errmsg[Z_NEED_DICT - (Z_BUF_ERROR)];\n\t\t\treturn Z_BUF_ERROR;\n\t\t}\n\n\t\tstrm = _strm; // just in case\n\t\told_flush = last_flush;\n\t\tlast_flush = flush;\n\n\t\t// Write the zlib header\n\t\tif (status == INIT_STATE) {\n\t\t\theader = (Z_DEFLATED + ((w_bits - 8) << 4)) << 8;\n\t\t\tlevel_flags = ((level - 1) & 0xff) >> 1;\n\n\t\t\tif (level_flags > 3)\n\t\t\t\tlevel_flags = 3;\n\t\t\theader |= (level_flags << 6);\n\t\t\tif (strstart !== 0)\n\t\t\t\theader |= PRESET_DICT;\n\t\t\theader += 31 - (header % 31);\n\n\t\t\tstatus = BUSY_STATE;\n\t\t\tputShortMSB(header);\n\t\t}\n\n\t\t// Flush as much pending output as possible\n\t\tif (that.pending !== 0) {\n\t\t\tstrm.flush_pending();\n\t\t\tif (strm.avail_out === 0) {\n\t\t\t\t// console.log(\" avail_out==0\");\n\t\t\t\t// Since avail_out is 0, deflate will be called again with\n\t\t\t\t// more output space, but possibly with both pending and\n\t\t\t\t// avail_in equal to zero. There won't be anything to do,\n\t\t\t\t// but this is not an error situation so make sure we\n\t\t\t\t// return OK instead of BUF_ERROR at next call of deflate:\n\t\t\t\tlast_flush = -1;\n\t\t\t\treturn Z_OK;\n\t\t\t}\n\n\t\t\t// Make sure there is something to do and avoid duplicate\n\t\t\t// consecutive\n\t\t\t// flushes. For repeated and useless calls with Z_FINISH, we keep\n\t\t\t// returning Z_STREAM_END instead of Z_BUFF_ERROR.\n\t\t} else if (strm.avail_in === 0 && flush <= old_flush && flush != Z_FINISH) {\n\t\t\tstrm.msg = z_errmsg[Z_NEED_DICT - (Z_BUF_ERROR)];\n\t\t\treturn Z_BUF_ERROR;\n\t\t}\n\n\t\t// User must not provide more input after the first FINISH:\n\t\tif (status == FINISH_STATE && strm.avail_in !== 0) {\n\t\t\t_strm.msg = z_errmsg[Z_NEED_DICT - (Z_BUF_ERROR)];\n\t\t\treturn Z_BUF_ERROR;\n\t\t}\n\n\t\t// Start a new block or continue the current one.\n\t\tif (strm.avail_in !== 0 || lookahead !== 0 || (flush != Z_NO_FLUSH && status != FINISH_STATE)) {\n\t\t\tbstate = -1;\n\t\t\tswitch (config_table[level].func) {\n\t\t\t\tcase STORED:\n\t\t\t\t\tbstate = deflate_stored(flush);\n\t\t\t\t\tbreak;\n\t\t\t\tcase FAST:\n\t\t\t\t\tbstate = deflate_fast(flush);\n\t\t\t\t\tbreak;\n\t\t\t\tcase SLOW:\n\t\t\t\t\tbstate = deflate_slow(flush);\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t}\n\n\t\t\tif (bstate == FinishStarted || bstate == FinishDone) {\n\t\t\t\tstatus = FINISH_STATE;\n\t\t\t}\n\t\t\tif (bstate == NeedMore || bstate == FinishStarted) {\n\t\t\t\tif (strm.avail_out === 0) {\n\t\t\t\t\tlast_flush = -1; // avoid BUF_ERROR next call, see above\n\t\t\t\t}\n\t\t\t\treturn Z_OK;\n\t\t\t\t// If flush != Z_NO_FLUSH && avail_out === 0, the next call\n\t\t\t\t// of deflate should use the same flush parameter to make sure\n\t\t\t\t// that the flush is complete. So we don't have to output an\n\t\t\t\t// empty block here, this will be done at next call. This also\n\t\t\t\t// ensures that for a very small output buffer, we emit at most\n\t\t\t\t// one empty block.\n\t\t\t}\n\n\t\t\tif (bstate == BlockDone) {\n\t\t\t\tif (flush == Z_PARTIAL_FLUSH) {\n\t\t\t\t\t_tr_align();\n\t\t\t\t} else { // FULL_FLUSH or SYNC_FLUSH\n\t\t\t\t\t_tr_stored_block(0, 0, false);\n\t\t\t\t\t// For a full flush, this empty block will be recognized\n\t\t\t\t\t// as a special marker by inflate_sync().\n\t\t\t\t\tif (flush == Z_FULL_FLUSH) {\n\t\t\t\t\t\t// state.head[s.hash_size-1]=0;\n\t\t\t\t\t\tfor (i = 0; i < hash_size/*-1*/; i++)\n\t\t\t\t\t\t\t// forget history\n\t\t\t\t\t\t\thead[i] = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstrm.flush_pending();\n\t\t\t\tif (strm.avail_out === 0) {\n\t\t\t\t\tlast_flush = -1; // avoid BUF_ERROR at next call, see above\n\t\t\t\t\treturn Z_OK;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif (flush != Z_FINISH)\n\t\t\treturn Z_OK;\n\t\treturn Z_STREAM_END;\n\t};\n}\n\n// ZStream\n\nfunction ZStream() {\n\tconst that = this;\n\tthat.next_in_index = 0;\n\tthat.next_out_index = 0;\n\t// that.next_in; // next input byte\n\tthat.avail_in = 0; // number of bytes available at next_in\n\tthat.total_in = 0; // total nb of input bytes read so far\n\t// that.next_out; // next output byte should be put there\n\tthat.avail_out = 0; // remaining free space at next_out\n\tthat.total_out = 0; // total nb of bytes output so far\n\t// that.msg;\n\t// that.dstate;\n}\n\nZStream.prototype = {\n\tdeflateInit: function (level, bits) {\n\t\tconst that = this;\n\t\tthat.dstate = new Deflate();\n\t\tif (!bits)\n\t\t\tbits = MAX_BITS;\n\t\treturn that.dstate.deflateInit(that, level, bits);\n\t},\n\n\tdeflate: function (flush) {\n\t\tconst that = this;\n\t\tif (!that.dstate) {\n\t\t\treturn Z_STREAM_ERROR;\n\t\t}\n\t\treturn that.dstate.deflate(that, flush);\n\t},\n\n\tdeflateEnd: function () {\n\t\tconst that = this;\n\t\tif (!that.dstate)\n\t\t\treturn Z_STREAM_ERROR;\n\t\tconst ret = that.dstate.deflateEnd();\n\t\tthat.dstate = null;\n\t\treturn ret;\n\t},\n\n\tdeflateParams: function (level, strategy) {\n\t\tconst that = this;\n\t\tif (!that.dstate)\n\t\t\treturn Z_STREAM_ERROR;\n\t\treturn that.dstate.deflateParams(that, level, strategy);\n\t},\n\n\tdeflateSetDictionary: function (dictionary, dictLength) {\n\t\tconst that = this;\n\t\tif (!that.dstate)\n\t\t\treturn Z_STREAM_ERROR;\n\t\treturn that.dstate.deflateSetDictionary(that, dictionary, dictLength);\n\t},\n\n\t// Read a new buffer from the current input stream, update the\n\t// total number of bytes read. All deflate() input goes through\n\t// this function so some applications may wish to modify it to avoid\n\t// allocating a large strm->next_in buffer and copying from it.\n\t// (See also flush_pending()).\n\tread_buf: function (buf, start, size) {\n\t\tconst that = this;\n\t\tlet len = that.avail_in;\n\t\tif (len > size)\n\t\t\tlen = size;\n\t\tif (len === 0)\n\t\t\treturn 0;\n\t\tthat.avail_in -= len;\n\t\tbuf.set(that.next_in.subarray(that.next_in_index, that.next_in_index + len), start);\n\t\tthat.next_in_index += len;\n\t\tthat.total_in += len;\n\t\treturn len;\n\t},\n\n\t// Flush as much pending output as possible. All deflate() output goes\n\t// through this function so some applications may wish to modify it\n\t// to avoid allocating a large strm->next_out buffer and copying into it.\n\t// (See also read_buf()).\n\tflush_pending: function () {\n\t\tconst that = this;\n\t\tlet len = that.dstate.pending;\n\n\t\tif (len > that.avail_out)\n\t\t\tlen = that.avail_out;\n\t\tif (len === 0)\n\t\t\treturn;\n\n\t\t// if (that.dstate.pending_buf.length <= that.dstate.pending_out || that.next_out.length <= that.next_out_index\n\t\t// || that.dstate.pending_buf.length < (that.dstate.pending_out + len) || that.next_out.length < (that.next_out_index +\n\t\t// len)) {\n\t\t// console.log(that.dstate.pending_buf.length + \", \" + that.dstate.pending_out + \", \" + that.next_out.length + \", \" +\n\t\t// that.next_out_index + \", \" + len);\n\t\t// console.log(\"avail_out=\" + that.avail_out);\n\t\t// }\n\n\t\tthat.next_out.set(that.dstate.pending_buf.subarray(that.dstate.pending_out, that.dstate.pending_out + len), that.next_out_index);\n\n\t\tthat.next_out_index += len;\n\t\tthat.dstate.pending_out += len;\n\t\tthat.total_out += len;\n\t\tthat.avail_out -= len;\n\t\tthat.dstate.pending -= len;\n\t\tif (that.dstate.pending === 0) {\n\t\t\tthat.dstate.pending_out = 0;\n\t\t}\n\t}\n};\n\n// Deflate\n\nfunction ZipDeflate(options) {\n\tconst that = this;\n\tconst z = new ZStream();\n\tconst bufsize = getMaximumCompressedSize(options && options.chunkSize ? options.chunkSize : 64 * 1024);\n\tconst flush = Z_NO_FLUSH;\n\tconst buf = new Uint8Array(bufsize);\n\tlet level = options ? options.level : Z_DEFAULT_COMPRESSION;\n\tif (typeof level == \"undefined\")\n\t\tlevel = Z_DEFAULT_COMPRESSION;\n\tz.deflateInit(level);\n\tz.next_out = buf;\n\n\tthat.append = function (data, onprogress) {\n\t\tlet err, array, lastIndex = 0, bufferIndex = 0, bufferSize = 0;\n\t\tconst buffers = [];\n\t\tif (!data.length)\n\t\t\treturn;\n\t\tz.next_in_index = 0;\n\t\tz.next_in = data;\n\t\tz.avail_in = data.length;\n\t\tdo {\n\t\t\tz.next_out_index = 0;\n\t\t\tz.avail_out = bufsize;\n\t\t\terr = z.deflate(flush);\n\t\t\tif (err != Z_OK)\n\t\t\t\tthrow new Error(\"deflating: \" + z.msg);\n\t\t\tif (z.next_out_index)\n\t\t\t\tif (z.next_out_index == bufsize)\n\t\t\t\t\tbuffers.push(new Uint8Array(buf));\n\t\t\t\telse\n\t\t\t\t\tbuffers.push(buf.slice(0, z.next_out_index));\n\t\t\tbufferSize += z.next_out_index;\n\t\t\tif (onprogress && z.next_in_index > 0 && z.next_in_index != lastIndex) {\n\t\t\t\tonprogress(z.next_in_index);\n\t\t\t\tlastIndex = z.next_in_index;\n\t\t\t}\n\t\t} while (z.avail_in > 0 || z.avail_out === 0);\n\t\tif (buffers.length > 1) {\n\t\t\tarray = new Uint8Array(bufferSize);\n\t\t\tbuffers.forEach(function (chunk) {\n\t\t\t\tarray.set(chunk, bufferIndex);\n\t\t\t\tbufferIndex += chunk.length;\n\t\t\t});\n\t\t} else {\n\t\t\tarray = buffers[0] || new Uint8Array(0);\n\t\t}\n\t\treturn array;\n\t};\n\tthat.flush = function () {\n\t\tlet err, array, bufferIndex = 0, bufferSize = 0;\n\t\tconst buffers = [];\n\t\tdo {\n\t\t\tz.next_out_index = 0;\n\t\t\tz.avail_out = bufsize;\n\t\t\terr = z.deflate(Z_FINISH);\n\t\t\tif (err != Z_STREAM_END && err != Z_OK)\n\t\t\t\tthrow new Error(\"deflating: \" + z.msg);\n\t\t\tif (bufsize - z.avail_out > 0)\n\t\t\t\tbuffers.push(buf.slice(0, z.next_out_index));\n\t\t\tbufferSize += z.next_out_index;\n\t\t} while (z.avail_in > 0 || z.avail_out === 0);\n\t\tz.deflateEnd();\n\t\tarray = new Uint8Array(bufferSize);\n\t\tbuffers.forEach(function (chunk) {\n\t\t\tarray.set(chunk, bufferIndex);\n\t\t\tbufferIndex += chunk.length;\n\t\t});\n\t\treturn array;\n\t};\n}\n\nfunction getMaximumCompressedSize(uncompressedSize) {\n\treturn uncompressedSize + (5 * (Math.floor(uncompressedSize / 16383) + 1));\n}\n\nexport default ZipDeflate;","/*\n Copyright (c) 2022 Gildas Lormeau. All rights reserved.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright \n notice, this list of conditions and the following disclaimer in \n the documentation and/or other materials provided with the distribution.\n\n 3. The names of the authors may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\n FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,\n INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n/*\n * This program is based on JZlib 1.0.2 ymnk, JCraft,Inc.\n * JZlib is based on zlib-1.1.3, so all credit should go authors\n * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu)\n * and contributors of zlib.\n */\n\n\"use strict\";\n\n// Global\nconst MAX_BITS = 15;\n\nconst Z_OK = 0;\nconst Z_STREAM_END = 1;\nconst Z_NEED_DICT = 2;\nconst Z_STREAM_ERROR = -2;\nconst Z_DATA_ERROR = -3;\nconst Z_MEM_ERROR = -4;\nconst Z_BUF_ERROR = -5;\n\nconst inflate_mask = [0x00000000, 0x00000001, 0x00000003, 0x00000007, 0x0000000f, 0x0000001f, 0x0000003f, 0x0000007f, 0x000000ff, 0x000001ff, 0x000003ff,\n\t0x000007ff, 0x00000fff, 0x00001fff, 0x00003fff, 0x00007fff, 0x0000ffff];\n\nconst MANY = 1440;\n\n// JZlib version : \"1.0.2\"\nconst Z_NO_FLUSH = 0;\nconst Z_FINISH = 4;\n\n// InfTree\nconst fixed_bl = 9;\nconst fixed_bd = 5;\n\nconst fixed_tl = [96, 7, 256, 0, 8, 80, 0, 8, 16, 84, 8, 115, 82, 7, 31, 0, 8, 112, 0, 8, 48, 0, 9, 192, 80, 7, 10, 0, 8, 96, 0, 8, 32, 0, 9, 160, 0, 8, 0,\n\t0, 8, 128, 0, 8, 64, 0, 9, 224, 80, 7, 6, 0, 8, 88, 0, 8, 24, 0, 9, 144, 83, 7, 59, 0, 8, 120, 0, 8, 56, 0, 9, 208, 81, 7, 17, 0, 8, 104, 0, 8, 40,\n\t0, 9, 176, 0, 8, 8, 0, 8, 136, 0, 8, 72, 0, 9, 240, 80, 7, 4, 0, 8, 84, 0, 8, 20, 85, 8, 227, 83, 7, 43, 0, 8, 116, 0, 8, 52, 0, 9, 200, 81, 7, 13,\n\t0, 8, 100, 0, 8, 36, 0, 9, 168, 0, 8, 4, 0, 8, 132, 0, 8, 68, 0, 9, 232, 80, 7, 8, 0, 8, 92, 0, 8, 28, 0, 9, 152, 84, 7, 83, 0, 8, 124, 0, 8, 60,\n\t0, 9, 216, 82, 7, 23, 0, 8, 108, 0, 8, 44, 0, 9, 184, 0, 8, 12, 0, 8, 140, 0, 8, 76, 0, 9, 248, 80, 7, 3, 0, 8, 82, 0, 8, 18, 85, 8, 163, 83, 7,\n\t35, 0, 8, 114, 0, 8, 50, 0, 9, 196, 81, 7, 11, 0, 8, 98, 0, 8, 34, 0, 9, 164, 0, 8, 2, 0, 8, 130, 0, 8, 66, 0, 9, 228, 80, 7, 7, 0, 8, 90, 0, 8,\n\t26, 0, 9, 148, 84, 7, 67, 0, 8, 122, 0, 8, 58, 0, 9, 212, 82, 7, 19, 0, 8, 106, 0, 8, 42, 0, 9, 180, 0, 8, 10, 0, 8, 138, 0, 8, 74, 0, 9, 244, 80,\n\t7, 5, 0, 8, 86, 0, 8, 22, 192, 8, 0, 83, 7, 51, 0, 8, 118, 0, 8, 54, 0, 9, 204, 81, 7, 15, 0, 8, 102, 0, 8, 38, 0, 9, 172, 0, 8, 6, 0, 8, 134, 0,\n\t8, 70, 0, 9, 236, 80, 7, 9, 0, 8, 94, 0, 8, 30, 0, 9, 156, 84, 7, 99, 0, 8, 126, 0, 8, 62, 0, 9, 220, 82, 7, 27, 0, 8, 110, 0, 8, 46, 0, 9, 188, 0,\n\t8, 14, 0, 8, 142, 0, 8, 78, 0, 9, 252, 96, 7, 256, 0, 8, 81, 0, 8, 17, 85, 8, 131, 82, 7, 31, 0, 8, 113, 0, 8, 49, 0, 9, 194, 80, 7, 10, 0, 8, 97,\n\t0, 8, 33, 0, 9, 162, 0, 8, 1, 0, 8, 129, 0, 8, 65, 0, 9, 226, 80, 7, 6, 0, 8, 89, 0, 8, 25, 0, 9, 146, 83, 7, 59, 0, 8, 121, 0, 8, 57, 0, 9, 210,\n\t81, 7, 17, 0, 8, 105, 0, 8, 41, 0, 9, 178, 0, 8, 9, 0, 8, 137, 0, 8, 73, 0, 9, 242, 80, 7, 4, 0, 8, 85, 0, 8, 21, 80, 8, 258, 83, 7, 43, 0, 8, 117,\n\t0, 8, 53, 0, 9, 202, 81, 7, 13, 0, 8, 101, 0, 8, 37, 0, 9, 170, 0, 8, 5, 0, 8, 133, 0, 8, 69, 0, 9, 234, 80, 7, 8, 0, 8, 93, 0, 8, 29, 0, 9, 154,\n\t84, 7, 83, 0, 8, 125, 0, 8, 61, 0, 9, 218, 82, 7, 23, 0, 8, 109, 0, 8, 45, 0, 9, 186, 0, 8, 13, 0, 8, 141, 0, 8, 77, 0, 9, 250, 80, 7, 3, 0, 8, 83,\n\t0, 8, 19, 85, 8, 195, 83, 7, 35, 0, 8, 115, 0, 8, 51, 0, 9, 198, 81, 7, 11, 0, 8, 99, 0, 8, 35, 0, 9, 166, 0, 8, 3, 0, 8, 131, 0, 8, 67, 0, 9, 230,\n\t80, 7, 7, 0, 8, 91, 0, 8, 27, 0, 9, 150, 84, 7, 67, 0, 8, 123, 0, 8, 59, 0, 9, 214, 82, 7, 19, 0, 8, 107, 0, 8, 43, 0, 9, 182, 0, 8, 11, 0, 8, 139,\n\t0, 8, 75, 0, 9, 246, 80, 7, 5, 0, 8, 87, 0, 8, 23, 192, 8, 0, 83, 7, 51, 0, 8, 119, 0, 8, 55, 0, 9, 206, 81, 7, 15, 0, 8, 103, 0, 8, 39, 0, 9, 174,\n\t0, 8, 7, 0, 8, 135, 0, 8, 71, 0, 9, 238, 80, 7, 9, 0, 8, 95, 0, 8, 31, 0, 9, 158, 84, 7, 99, 0, 8, 127, 0, 8, 63, 0, 9, 222, 82, 7, 27, 0, 8, 111,\n\t0, 8, 47, 0, 9, 190, 0, 8, 15, 0, 8, 143, 0, 8, 79, 0, 9, 254, 96, 7, 256, 0, 8, 80, 0, 8, 16, 84, 8, 115, 82, 7, 31, 0, 8, 112, 0, 8, 48, 0, 9,\n\t193, 80, 7, 10, 0, 8, 96, 0, 8, 32, 0, 9, 161, 0, 8, 0, 0, 8, 128, 0, 8, 64, 0, 9, 225, 80, 7, 6, 0, 8, 88, 0, 8, 24, 0, 9, 145, 83, 7, 59, 0, 8,\n\t120, 0, 8, 56, 0, 9, 209, 81, 7, 17, 0, 8, 104, 0, 8, 40, 0, 9, 177, 0, 8, 8, 0, 8, 136, 0, 8, 72, 0, 9, 241, 80, 7, 4, 0, 8, 84, 0, 8, 20, 85, 8,\n\t227, 83, 7, 43, 0, 8, 116, 0, 8, 52, 0, 9, 201, 81, 7, 13, 0, 8, 100, 0, 8, 36, 0, 9, 169, 0, 8, 4, 0, 8, 132, 0, 8, 68, 0, 9, 233, 80, 7, 8, 0, 8,\n\t92, 0, 8, 28, 0, 9, 153, 84, 7, 83, 0, 8, 124, 0, 8, 60, 0, 9, 217, 82, 7, 23, 0, 8, 108, 0, 8, 44, 0, 9, 185, 0, 8, 12, 0, 8, 140, 0, 8, 76, 0, 9,\n\t249, 80, 7, 3, 0, 8, 82, 0, 8, 18, 85, 8, 163, 83, 7, 35, 0, 8, 114, 0, 8, 50, 0, 9, 197, 81, 7, 11, 0, 8, 98, 0, 8, 34, 0, 9, 165, 0, 8, 2, 0, 8,\n\t130, 0, 8, 66, 0, 9, 229, 80, 7, 7, 0, 8, 90, 0, 8, 26, 0, 9, 149, 84, 7, 67, 0, 8, 122, 0, 8, 58, 0, 9, 213, 82, 7, 19, 0, 8, 106, 0, 8, 42, 0, 9,\n\t181, 0, 8, 10, 0, 8, 138, 0, 8, 74, 0, 9, 245, 80, 7, 5, 0, 8, 86, 0, 8, 22, 192, 8, 0, 83, 7, 51, 0, 8, 118, 0, 8, 54, 0, 9, 205, 81, 7, 15, 0, 8,\n\t102, 0, 8, 38, 0, 9, 173, 0, 8, 6, 0, 8, 134, 0, 8, 70, 0, 9, 237, 80, 7, 9, 0, 8, 94, 0, 8, 30, 0, 9, 157, 84, 7, 99, 0, 8, 126, 0, 8, 62, 0, 9,\n\t221, 82, 7, 27, 0, 8, 110, 0, 8, 46, 0, 9, 189, 0, 8, 14, 0, 8, 142, 0, 8, 78, 0, 9, 253, 96, 7, 256, 0, 8, 81, 0, 8, 17, 85, 8, 131, 82, 7, 31, 0,\n\t8, 113, 0, 8, 49, 0, 9, 195, 80, 7, 10, 0, 8, 97, 0, 8, 33, 0, 9, 163, 0, 8, 1, 0, 8, 129, 0, 8, 65, 0, 9, 227, 80, 7, 6, 0, 8, 89, 0, 8, 25, 0, 9,\n\t147, 83, 7, 59, 0, 8, 121, 0, 8, 57, 0, 9, 211, 81, 7, 17, 0, 8, 105, 0, 8, 41, 0, 9, 179, 0, 8, 9, 0, 8, 137, 0, 8, 73, 0, 9, 243, 80, 7, 4, 0, 8,\n\t85, 0, 8, 21, 80, 8, 258, 83, 7, 43, 0, 8, 117, 0, 8, 53, 0, 9, 203, 81, 7, 13, 0, 8, 101, 0, 8, 37, 0, 9, 171, 0, 8, 5, 0, 8, 133, 0, 8, 69, 0, 9,\n\t235, 80, 7, 8, 0, 8, 93, 0, 8, 29, 0, 9, 155, 84, 7, 83, 0, 8, 125, 0, 8, 61, 0, 9, 219, 82, 7, 23, 0, 8, 109, 0, 8, 45, 0, 9, 187, 0, 8, 13, 0, 8,\n\t141, 0, 8, 77, 0, 9, 251, 80, 7, 3, 0, 8, 83, 0, 8, 19, 85, 8, 195, 83, 7, 35, 0, 8, 115, 0, 8, 51, 0, 9, 199, 81, 7, 11, 0, 8, 99, 0, 8, 35, 0, 9,\n\t167, 0, 8, 3, 0, 8, 131, 0, 8, 67, 0, 9, 231, 80, 7, 7, 0, 8, 91, 0, 8, 27, 0, 9, 151, 84, 7, 67, 0, 8, 123, 0, 8, 59, 0, 9, 215, 82, 7, 19, 0, 8,\n\t107, 0, 8, 43, 0, 9, 183, 0, 8, 11, 0, 8, 139, 0, 8, 75, 0, 9, 247, 80, 7, 5, 0, 8, 87, 0, 8, 23, 192, 8, 0, 83, 7, 51, 0, 8, 119, 0, 8, 55, 0, 9,\n\t207, 81, 7, 15, 0, 8, 103, 0, 8, 39, 0, 9, 175, 0, 8, 7, 0, 8, 135, 0, 8, 71, 0, 9, 239, 80, 7, 9, 0, 8, 95, 0, 8, 31, 0, 9, 159, 84, 7, 99, 0, 8,\n\t127, 0, 8, 63, 0, 9, 223, 82, 7, 27, 0, 8, 111, 0, 8, 47, 0, 9, 191, 0, 8, 15, 0, 8, 143, 0, 8, 79, 0, 9, 255];\nconst fixed_td = [80, 5, 1, 87, 5, 257, 83, 5, 17, 91, 5, 4097, 81, 5, 5, 89, 5, 1025, 85, 5, 65, 93, 5, 16385, 80, 5, 3, 88, 5, 513, 84, 5, 33, 92, 5,\n\t8193, 82, 5, 9, 90, 5, 2049, 86, 5, 129, 192, 5, 24577, 80, 5, 2, 87, 5, 385, 83, 5, 25, 91, 5, 6145, 81, 5, 7, 89, 5, 1537, 85, 5, 97, 93, 5,\n\t24577, 80, 5, 4, 88, 5, 769, 84, 5, 49, 92, 5, 12289, 82, 5, 13, 90, 5, 3073, 86, 5, 193, 192, 5, 24577];\n\n// Tables for deflate from PKZIP's appnote.txt.\nconst cplens = [ // Copy lengths for literal codes 257..285\n\t3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0];\n\n// see note #13 above about 258\nconst cplext = [ // Extra bits for literal codes 257..285\n\t0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 112, 112 // 112==invalid\n];\n\nconst cpdist = [ // Copy offsets for distance codes 0..29\n\t1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577];\n\nconst cpdext = [ // Extra bits for distance codes\n\t0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13];\n\n// If BMAX needs to be larger than 16, then h and x[] should be uLong.\nconst BMAX = 15; // maximum bit length of any code\n\nfunction InfTree() {\n\tconst that = this;\n\n\tlet hn; // hufts used in space\n\tlet v; // work area for huft_build\n\tlet c; // bit length count table\n\tlet r; // table entry for structure assignment\n\tlet u; // table stack\n\tlet x; // bit offsets, then code stack\n\n\tfunction huft_build(b, // code lengths in bits (all assumed <=\n\t\t// BMAX)\n\t\tbindex, n, // number of codes (assumed <= 288)\n\t\ts, // number of simple-valued codes (0..s-1)\n\t\td, // list of base values for non-simple codes\n\t\te, // list of extra bits for non-simple codes\n\t\tt, // result: starting table\n\t\tm, // maximum lookup bits, returns actual\n\t\thp,// space for trees\n\t\thn,// hufts used in space\n\t\tv // working area: values in order of bit length\n\t) {\n\t\t// Given a list of code lengths and a maximum table size, make a set of\n\t\t// tables to decode that set of codes. Return Z_OK on success,\n\t\t// Z_BUF_ERROR\n\t\t// if the given code set is incomplete (the tables are still built in\n\t\t// this\n\t\t// case), Z_DATA_ERROR if the input is invalid (an over-subscribed set\n\t\t// of\n\t\t// lengths), or Z_MEM_ERROR if not enough memory.\n\n\t\tlet a; // counter for codes of length k\n\t\tlet f; // i repeats in table every f entries\n\t\tlet g; // maximum code length\n\t\tlet h; // table level\n\t\tlet i; // counter, current code\n\t\tlet j; // counter\n\t\tlet k; // number of bits in current code\n\t\tlet l; // bits per table (returned in m)\n\t\tlet mask; // (1 << w) - 1, to avoid cc -O bug on HP\n\t\tlet p; // pointer into c[], b[], or v[]\n\t\tlet q; // points to current table\n\t\tlet w; // bits before this table == (l * h)\n\t\tlet xp; // pointer into x\n\t\tlet y; // number of dummy codes added\n\t\tlet z; // number of entries in current table\n\n\t\t// Generate counts for each bit length\n\n\t\tp = 0;\n\t\ti = n;\n\t\tdo {\n\t\t\tc[b[bindex + p]]++;\n\t\t\tp++;\n\t\t\ti--; // assume all entries <= BMAX\n\t\t} while (i !== 0);\n\n\t\tif (c[0] == n) { // null input--all zero length codes\n\t\t\tt[0] = -1;\n\t\t\tm[0] = 0;\n\t\t\treturn Z_OK;\n\t\t}\n\n\t\t// Find minimum and maximum length, bound *m by those\n\t\tl = m[0];\n\t\tfor (j = 1; j <= BMAX; j++)\n\t\t\tif (c[j] !== 0)\n\t\t\t\tbreak;\n\t\tk = j; // minimum code length\n\t\tif (l < j) {\n\t\t\tl = j;\n\t\t}\n\t\tfor (i = BMAX; i !== 0; i--) {\n\t\t\tif (c[i] !== 0)\n\t\t\t\tbreak;\n\t\t}\n\t\tg = i; // maximum code length\n\t\tif (l > i) {\n\t\t\tl = i;\n\t\t}\n\t\tm[0] = l;\n\n\t\t// Adjust last length count to fill out codes, if needed\n\t\tfor (y = 1 << j; j < i; j++, y <<= 1) {\n\t\t\tif ((y -= c[j]) < 0) {\n\t\t\t\treturn Z_DATA_ERROR;\n\t\t\t}\n\t\t}\n\t\tif ((y -= c[i]) < 0) {\n\t\t\treturn Z_DATA_ERROR;\n\t\t}\n\t\tc[i] += y;\n\n\t\t// Generate starting offsets into the value table for each length\n\t\tx[1] = j = 0;\n\t\tp = 1;\n\t\txp = 2;\n\t\twhile (--i !== 0) { // note that i == g from above\n\t\t\tx[xp] = (j += c[p]);\n\t\t\txp++;\n\t\t\tp++;\n\t\t}\n\n\t\t// Make a table of values in order of bit lengths\n\t\ti = 0;\n\t\tp = 0;\n\t\tdo {\n\t\t\tif ((j = b[bindex + p]) !== 0) {\n\t\t\t\tv[x[j]++] = i;\n\t\t\t}\n\t\t\tp++;\n\t\t} while (++i < n);\n\t\tn = x[g]; // set n to length of v\n\n\t\t// Generate the Huffman codes and for each, make the table entries\n\t\tx[0] = i = 0; // first Huffman code is zero\n\t\tp = 0; // grab values in bit order\n\t\th = -1; // no tables yet--level -1\n\t\tw = -l; // bits decoded == (l * h)\n\t\tu[0] = 0; // just to keep compilers happy\n\t\tq = 0; // ditto\n\t\tz = 0; // ditto\n\n\t\t// go through the bit lengths (k already is bits in shortest code)\n\t\tfor (; k <= g; k++) {\n\t\t\ta = c[k];\n\t\t\twhile (a-- !== 0) {\n\t\t\t\t// here i is the Huffman code of length k bits for value *p\n\t\t\t\t// make tables up to required level\n\t\t\t\twhile (k > w + l) {\n\t\t\t\t\th++;\n\t\t\t\t\tw += l; // previous table always l bits\n\t\t\t\t\t// compute minimum size table less than or equal to l bits\n\t\t\t\t\tz = g - w;\n\t\t\t\t\tz = (z > l) ? l : z; // table size upper limit\n\t\t\t\t\tif ((f = 1 << (j = k - w)) > a + 1) { // try a k-w bit table\n\t\t\t\t\t\t// too few codes for\n\t\t\t\t\t\t// k-w bit table\n\t\t\t\t\t\tf -= a + 1; // deduct codes from patterns left\n\t\t\t\t\t\txp = k;\n\t\t\t\t\t\tif (j < z) {\n\t\t\t\t\t\t\twhile (++j < z) { // try smaller tables up to z bits\n\t\t\t\t\t\t\t\tif ((f <<= 1) <= c[++xp])\n\t\t\t\t\t\t\t\t\tbreak; // enough codes to use up j bits\n\t\t\t\t\t\t\t\tf -= c[xp]; // else deduct codes from patterns\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tz = 1 << j; // table entries for j-bit table\n\n\t\t\t\t\t// allocate new table\n\t\t\t\t\tif (hn[0] + z > MANY) { // (note: doesn't matter for fixed)\n\t\t\t\t\t\treturn Z_DATA_ERROR; // overflow of MANY\n\t\t\t\t\t}\n\t\t\t\t\tu[h] = q = /* hp+ */hn[0]; // DEBUG\n\t\t\t\t\thn[0] += z;\n\n\t\t\t\t\t// connect to last table, if there is one\n\t\t\t\t\tif (h !== 0) {\n\t\t\t\t\t\tx[h] = i; // save pattern for backing up\n\t\t\t\t\t\tr[0] = /* (byte) */j; // bits in this table\n\t\t\t\t\t\tr[1] = /* (byte) */l; // bits to dump before this table\n\t\t\t\t\t\tj = i >>> (w - l);\n\t\t\t\t\t\tr[2] = /* (int) */(q - u[h - 1] - j); // offset to this table\n\t\t\t\t\t\thp.set(r, (u[h - 1] + j) * 3);\n\t\t\t\t\t\t// to\n\t\t\t\t\t\t// last\n\t\t\t\t\t\t// table\n\t\t\t\t\t} else {\n\t\t\t\t\t\tt[0] = q; // first table is returned result\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// set up table entry in r\n\t\t\t\tr[1] = /* (byte) */(k - w);\n\t\t\t\tif (p >= n) {\n\t\t\t\t\tr[0] = 128 + 64; // out of values--invalid code\n\t\t\t\t} else if (v[p] < s) {\n\t\t\t\t\tr[0] = /* (byte) */(v[p] < 256 ? 0 : 32 + 64); // 256 is\n\t\t\t\t\t// end-of-block\n\t\t\t\t\tr[2] = v[p++]; // simple code is just the value\n\t\t\t\t} else {\n\t\t\t\t\tr[0] = /* (byte) */(e[v[p] - s] + 16 + 64); // non-simple--look\n\t\t\t\t\t// up in lists\n\t\t\t\t\tr[2] = d[v[p++] - s];\n\t\t\t\t}\n\n\t\t\t\t// fill code-like entries with r\n\t\t\t\tf = 1 << (k - w);\n\t\t\t\tfor (j = i >>> w; j < z; j += f) {\n\t\t\t\t\thp.set(r, (q + j) * 3);\n\t\t\t\t}\n\n\t\t\t\t// backwards increment the k-bit code i\n\t\t\t\tfor (j = 1 << (k - 1); (i & j) !== 0; j >>>= 1) {\n\t\t\t\t\ti ^= j;\n\t\t\t\t}\n\t\t\t\ti ^= j;\n\n\t\t\t\t// backup over finished tables\n\t\t\t\tmask = (1 << w) - 1; // needed on HP, cc -O bug\n\t\t\t\twhile ((i & mask) != x[h]) {\n\t\t\t\t\th--; // don't need to update q\n\t\t\t\t\tw -= l;\n\t\t\t\t\tmask = (1 << w) - 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t// Return Z_BUF_ERROR if we were given an incomplete table\n\t\treturn y !== 0 && g != 1 ? Z_BUF_ERROR : Z_OK;\n\t}\n\n\tfunction initWorkArea(vsize) {\n\t\tlet i;\n\t\tif (!hn) {\n\t\t\thn = []; // []; //new Array(1);\n\t\t\tv = []; // new Array(vsize);\n\t\t\tc = new Int32Array(BMAX + 1); // new Array(BMAX + 1);\n\t\t\tr = []; // new Array(3);\n\t\t\tu = new Int32Array(BMAX); // new Array(BMAX);\n\t\t\tx = new Int32Array(BMAX + 1); // new Array(BMAX + 1);\n\t\t}\n\t\tif (v.length < vsize) {\n\t\t\tv = []; // new Array(vsize);\n\t\t}\n\t\tfor (i = 0; i < vsize; i++) {\n\t\t\tv[i] = 0;\n\t\t}\n\t\tfor (i = 0; i < BMAX + 1; i++) {\n\t\t\tc[i] = 0;\n\t\t}\n\t\tfor (i = 0; i < 3; i++) {\n\t\t\tr[i] = 0;\n\t\t}\n\t\t// for(int i=0; i 257)) {\n\t\t\tif (result == Z_DATA_ERROR) {\n\t\t\t\tz.msg = \"oversubscribed distance tree\";\n\t\t\t} else if (result == Z_BUF_ERROR) {\n\t\t\t\tz.msg = \"incomplete distance tree\";\n\t\t\t\tresult = Z_DATA_ERROR;\n\t\t\t} else if (result != Z_MEM_ERROR) {\n\t\t\t\tz.msg = \"empty distance tree with lengths\";\n\t\t\t\tresult = Z_DATA_ERROR;\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\n\t\treturn Z_OK;\n\t};\n\n}\n\nInfTree.inflate_trees_fixed = function (bl, // literal desired/actual bit depth\n\tbd, // distance desired/actual bit depth\n\ttl,// literal/length tree result\n\ttd// distance tree result\n) {\n\tbl[0] = fixed_bl;\n\tbd[0] = fixed_bd;\n\ttl[0] = fixed_tl;\n\ttd[0] = fixed_td;\n\treturn Z_OK;\n};\n\n// InfCodes\n\n// waiting for \"i:\"=input,\n// \"o:\"=output,\n// \"x:\"=nothing\nconst START = 0; // x: set up for LEN\nconst LEN = 1; // i: get length/literal/eob next\nconst LENEXT = 2; // i: getting length extra (have base)\nconst DIST = 3; // i: get distance next\nconst DISTEXT = 4;// i: getting distance extra\nconst COPY = 5; // o: copying bytes in window, waiting\n// for space\nconst LIT = 6; // o: got literal, waiting for output\n// space\nconst WASH = 7; // o: got eob, possibly still output\n// waiting\nconst END = 8; // x: got eob and all data flushed\nconst BADCODE = 9;// x: got error\n\nfunction InfCodes() {\n\tconst that = this;\n\n\tlet mode; // current inflate_codes mode\n\n\t// mode dependent information\n\tlet len = 0;\n\n\tlet tree; // pointer into tree\n\tlet tree_index = 0;\n\tlet need = 0; // bits needed\n\n\tlet lit = 0;\n\n\t// if EXT or COPY, where and how much\n\tlet get = 0; // bits to get for extra\n\tlet dist = 0; // distance back to copy from\n\n\tlet lbits = 0; // ltree bits decoded per branch\n\tlet dbits = 0; // dtree bits decoder per branch\n\tlet ltree; // literal/length/eob tree\n\tlet ltree_index = 0; // literal/length/eob tree\n\tlet dtree; // distance tree\n\tlet dtree_index = 0; // distance tree\n\n\t// Called with number of bytes left to write in window at least 258\n\t// (the maximum string length) and number of input bytes available\n\t// at least ten. The ten bytes are six bytes for the longest length/\n\t// distance pair plus four bytes for overloading the bit buffer.\n\n\tfunction inflate_fast(bl, bd, tl, tl_index, td, td_index, s, z) {\n\t\tlet t; // temporary pointer\n\t\tlet tp; // temporary pointer\n\t\tlet tp_index; // temporary pointer\n\t\tlet e; // extra bits or operation\n\t\tlet b; // bit buffer\n\t\tlet k; // bits in bit buffer\n\t\tlet p; // input data pointer\n\t\tlet n; // bytes available there\n\t\tlet q; // output window write pointer\n\t\tlet m; // bytes to end of window or read pointer\n\t\tlet ml; // mask for literal/length tree\n\t\tlet md; // mask for distance tree\n\t\tlet c; // bytes to copy\n\t\tlet d; // distance back to copy from\n\t\tlet r; // copy source pointer\n\n\t\tlet tp_index_t_3; // (tp_index+t)*3\n\n\t\t// load input, output, bit values\n\t\tp = z.next_in_index;\n\t\tn = z.avail_in;\n\t\tb = s.bitb;\n\t\tk = s.bitk;\n\t\tq = s.write;\n\t\tm = q < s.read ? s.read - q - 1 : s.end - q;\n\n\t\t// initialize masks\n\t\tml = inflate_mask[bl];\n\t\tmd = inflate_mask[bd];\n\n\t\t// do until not enough input or output space for fast loop\n\t\tdo { // assume called with m >= 258 && n >= 10\n\t\t\t// get literal/length code\n\t\t\twhile (k < (20)) { // max bits for literal/length code\n\t\t\t\tn--;\n\t\t\t\tb |= (z.read_byte(p++) & 0xff) << k;\n\t\t\t\tk += 8;\n\t\t\t}\n\n\t\t\tt = b & ml;\n\t\t\ttp = tl;\n\t\t\ttp_index = tl_index;\n\t\t\ttp_index_t_3 = (tp_index + t) * 3;\n\t\t\tif ((e = tp[tp_index_t_3]) === 0) {\n\t\t\t\tb >>= (tp[tp_index_t_3 + 1]);\n\t\t\t\tk -= (tp[tp_index_t_3 + 1]);\n\n\t\t\t\ts.window[q++] = /* (byte) */tp[tp_index_t_3 + 2];\n\t\t\t\tm--;\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tdo {\n\n\t\t\t\tb >>= (tp[tp_index_t_3 + 1]);\n\t\t\t\tk -= (tp[tp_index_t_3 + 1]);\n\n\t\t\t\tif ((e & 16) !== 0) {\n\t\t\t\t\te &= 15;\n\t\t\t\t\tc = tp[tp_index_t_3 + 2] + (/* (int) */b & inflate_mask[e]);\n\n\t\t\t\t\tb >>= e;\n\t\t\t\t\tk -= e;\n\n\t\t\t\t\t// decode distance base of block to copy\n\t\t\t\t\twhile (k < (15)) { // max bits for distance code\n\t\t\t\t\t\tn--;\n\t\t\t\t\t\tb |= (z.read_byte(p++) & 0xff) << k;\n\t\t\t\t\t\tk += 8;\n\t\t\t\t\t}\n\n\t\t\t\t\tt = b & md;\n\t\t\t\t\ttp = td;\n\t\t\t\t\ttp_index = td_index;\n\t\t\t\t\ttp_index_t_3 = (tp_index + t) * 3;\n\t\t\t\t\te = tp[tp_index_t_3];\n\n\t\t\t\t\tdo {\n\n\t\t\t\t\t\tb >>= (tp[tp_index_t_3 + 1]);\n\t\t\t\t\t\tk -= (tp[tp_index_t_3 + 1]);\n\n\t\t\t\t\t\tif ((e & 16) !== 0) {\n\t\t\t\t\t\t\t// get extra bits to add to distance base\n\t\t\t\t\t\t\te &= 15;\n\t\t\t\t\t\t\twhile (k < (e)) { // get extra bits (up to 13)\n\t\t\t\t\t\t\t\tn--;\n\t\t\t\t\t\t\t\tb |= (z.read_byte(p++) & 0xff) << k;\n\t\t\t\t\t\t\t\tk += 8;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\td = tp[tp_index_t_3 + 2] + (b & inflate_mask[e]);\n\n\t\t\t\t\t\t\tb >>= (e);\n\t\t\t\t\t\t\tk -= (e);\n\n\t\t\t\t\t\t\t// do the copy\n\t\t\t\t\t\t\tm -= c;\n\t\t\t\t\t\t\tif (q >= d) { // offset before dest\n\t\t\t\t\t\t\t\t// just copy\n\t\t\t\t\t\t\t\tr = q - d;\n\t\t\t\t\t\t\t\tif (q - r > 0 && 2 > (q - r)) {\n\t\t\t\t\t\t\t\t\ts.window[q++] = s.window[r++]; // minimum\n\t\t\t\t\t\t\t\t\t// count is\n\t\t\t\t\t\t\t\t\t// three,\n\t\t\t\t\t\t\t\t\ts.window[q++] = s.window[r++]; // so unroll\n\t\t\t\t\t\t\t\t\t// loop a\n\t\t\t\t\t\t\t\t\t// little\n\t\t\t\t\t\t\t\t\tc -= 2;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\ts.window.set(s.window.subarray(r, r + 2), q);\n\t\t\t\t\t\t\t\t\tq += 2;\n\t\t\t\t\t\t\t\t\tr += 2;\n\t\t\t\t\t\t\t\t\tc -= 2;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else { // else offset after destination\n\t\t\t\t\t\t\t\tr = q - d;\n\t\t\t\t\t\t\t\tdo {\n\t\t\t\t\t\t\t\t\tr += s.end; // force pointer in window\n\t\t\t\t\t\t\t\t} while (r < 0); // covers invalid distances\n\t\t\t\t\t\t\t\te = s.end - r;\n\t\t\t\t\t\t\t\tif (c > e) { // if source crosses,\n\t\t\t\t\t\t\t\t\tc -= e; // wrapped copy\n\t\t\t\t\t\t\t\t\tif (q - r > 0 && e > (q - r)) {\n\t\t\t\t\t\t\t\t\t\tdo {\n\t\t\t\t\t\t\t\t\t\t\ts.window[q++] = s.window[r++];\n\t\t\t\t\t\t\t\t\t\t} while (--e !== 0);\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\ts.window.set(s.window.subarray(r, r + e), q);\n\t\t\t\t\t\t\t\t\t\tq += e;\n\t\t\t\t\t\t\t\t\t\tr += e;\n\t\t\t\t\t\t\t\t\t\te = 0;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tr = 0; // copy rest from start of window\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// copy all or what's left\n\t\t\t\t\t\t\tif (q - r > 0 && c > (q - r)) {\n\t\t\t\t\t\t\t\tdo {\n\t\t\t\t\t\t\t\t\ts.window[q++] = s.window[r++];\n\t\t\t\t\t\t\t\t} while (--c !== 0);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\ts.window.set(s.window.subarray(r, r + c), q);\n\t\t\t\t\t\t\t\tq += c;\n\t\t\t\t\t\t\t\tr += c;\n\t\t\t\t\t\t\t\tc = 0;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t} else if ((e & 64) === 0) {\n\t\t\t\t\t\t\tt += tp[tp_index_t_3 + 2];\n\t\t\t\t\t\t\tt += (b & inflate_mask[e]);\n\t\t\t\t\t\t\ttp_index_t_3 = (tp_index + t) * 3;\n\t\t\t\t\t\t\te = tp[tp_index_t_3];\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tz.msg = \"invalid distance code\";\n\n\t\t\t\t\t\t\tc = z.avail_in - n;\n\t\t\t\t\t\t\tc = (k >> 3) < c ? k >> 3 : c;\n\t\t\t\t\t\t\tn += c;\n\t\t\t\t\t\t\tp -= c;\n\t\t\t\t\t\t\tk -= c << 3;\n\n\t\t\t\t\t\t\ts.bitb = b;\n\t\t\t\t\t\t\ts.bitk = k;\n\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\ts.write = q;\n\n\t\t\t\t\t\t\treturn Z_DATA_ERROR;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// eslint-disable-next-line no-constant-condition\n\t\t\t\t\t} while (true);\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tif ((e & 64) === 0) {\n\t\t\t\t\tt += tp[tp_index_t_3 + 2];\n\t\t\t\t\tt += (b & inflate_mask[e]);\n\t\t\t\t\ttp_index_t_3 = (tp_index + t) * 3;\n\t\t\t\t\tif ((e = tp[tp_index_t_3]) === 0) {\n\n\t\t\t\t\t\tb >>= (tp[tp_index_t_3 + 1]);\n\t\t\t\t\t\tk -= (tp[tp_index_t_3 + 1]);\n\n\t\t\t\t\t\ts.window[q++] = /* (byte) */tp[tp_index_t_3 + 2];\n\t\t\t\t\t\tm--;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t} else if ((e & 32) !== 0) {\n\n\t\t\t\t\tc = z.avail_in - n;\n\t\t\t\t\tc = (k >> 3) < c ? k >> 3 : c;\n\t\t\t\t\tn += c;\n\t\t\t\t\tp -= c;\n\t\t\t\t\tk -= c << 3;\n\n\t\t\t\t\ts.bitb = b;\n\t\t\t\t\ts.bitk = k;\n\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\ts.write = q;\n\n\t\t\t\t\treturn Z_STREAM_END;\n\t\t\t\t} else {\n\t\t\t\t\tz.msg = \"invalid literal/length code\";\n\n\t\t\t\t\tc = z.avail_in - n;\n\t\t\t\t\tc = (k >> 3) < c ? k >> 3 : c;\n\t\t\t\t\tn += c;\n\t\t\t\t\tp -= c;\n\t\t\t\t\tk -= c << 3;\n\n\t\t\t\t\ts.bitb = b;\n\t\t\t\t\ts.bitk = k;\n\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\ts.write = q;\n\n\t\t\t\t\treturn Z_DATA_ERROR;\n\t\t\t\t}\n\t\t\t\t// eslint-disable-next-line no-constant-condition\n\t\t\t} while (true);\n\t\t} while (m >= 258 && n >= 10);\n\n\t\t// not enough input or output--restore pointers and return\n\t\tc = z.avail_in - n;\n\t\tc = (k >> 3) < c ? k >> 3 : c;\n\t\tn += c;\n\t\tp -= c;\n\t\tk -= c << 3;\n\n\t\ts.bitb = b;\n\t\ts.bitk = k;\n\t\tz.avail_in = n;\n\t\tz.total_in += p - z.next_in_index;\n\t\tz.next_in_index = p;\n\t\ts.write = q;\n\n\t\treturn Z_OK;\n\t}\n\n\tthat.init = function (bl, bd, tl, tl_index, td, td_index) {\n\t\tmode = START;\n\t\tlbits = /* (byte) */bl;\n\t\tdbits = /* (byte) */bd;\n\t\tltree = tl;\n\t\tltree_index = tl_index;\n\t\tdtree = td;\n\t\tdtree_index = td_index;\n\t\ttree = null;\n\t};\n\n\tthat.proc = function (s, z, r) {\n\t\tlet j; // temporary storage\n\t\tlet tindex; // temporary pointer\n\t\tlet e; // extra bits or operation\n\t\tlet b = 0; // bit buffer\n\t\tlet k = 0; // bits in bit buffer\n\t\tlet p = 0; // input data pointer\n\t\tlet n; // bytes available there\n\t\tlet q; // output window write pointer\n\t\tlet m; // bytes to end of window or read pointer\n\t\tlet f; // pointer to copy strings from\n\n\t\t// copy input/output information to locals (UPDATE macro restores)\n\t\tp = z.next_in_index;\n\t\tn = z.avail_in;\n\t\tb = s.bitb;\n\t\tk = s.bitk;\n\t\tq = s.write;\n\t\tm = q < s.read ? s.read - q - 1 : s.end - q;\n\n\t\t// process input and output based on current state\n\t\t// eslint-disable-next-line no-constant-condition\n\t\twhile (true) {\n\t\t\tswitch (mode) {\n\t\t\t\t// waiting for \"i:\"=input, \"o:\"=output, \"x:\"=nothing\n\t\t\t\tcase START: // x: set up for LEN\n\t\t\t\t\tif (m >= 258 && n >= 10) {\n\n\t\t\t\t\t\ts.bitb = b;\n\t\t\t\t\t\ts.bitk = k;\n\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\ts.write = q;\n\t\t\t\t\t\tr = inflate_fast(lbits, dbits, ltree, ltree_index, dtree, dtree_index, s, z);\n\n\t\t\t\t\t\tp = z.next_in_index;\n\t\t\t\t\t\tn = z.avail_in;\n\t\t\t\t\t\tb = s.bitb;\n\t\t\t\t\t\tk = s.bitk;\n\t\t\t\t\t\tq = s.write;\n\t\t\t\t\t\tm = q < s.read ? s.read - q - 1 : s.end - q;\n\n\t\t\t\t\t\tif (r != Z_OK) {\n\t\t\t\t\t\t\tmode = r == Z_STREAM_END ? WASH : BADCODE;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tneed = lbits;\n\t\t\t\t\ttree = ltree;\n\t\t\t\t\ttree_index = ltree_index;\n\n\t\t\t\t\tmode = LEN;\n\t\t\t\t/* falls through */\n\t\t\t\tcase LEN: // i: get length/literal/eob next\n\t\t\t\t\tj = need;\n\n\t\t\t\t\twhile (k < (j)) {\n\t\t\t\t\t\tif (n !== 0)\n\t\t\t\t\t\t\tr = Z_OK;\n\t\t\t\t\t\telse {\n\n\t\t\t\t\t\t\ts.bitb = b;\n\t\t\t\t\t\t\ts.bitk = k;\n\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\ts.write = q;\n\t\t\t\t\t\t\treturn s.inflate_flush(z, r);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tn--;\n\t\t\t\t\t\tb |= (z.read_byte(p++) & 0xff) << k;\n\t\t\t\t\t\tk += 8;\n\t\t\t\t\t}\n\n\t\t\t\t\ttindex = (tree_index + (b & inflate_mask[j])) * 3;\n\n\t\t\t\t\tb >>>= (tree[tindex + 1]);\n\t\t\t\t\tk -= (tree[tindex + 1]);\n\n\t\t\t\t\te = tree[tindex];\n\n\t\t\t\t\tif (e === 0) { // literal\n\t\t\t\t\t\tlit = tree[tindex + 2];\n\t\t\t\t\t\tmode = LIT;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tif ((e & 16) !== 0) { // length\n\t\t\t\t\t\tget = e & 15;\n\t\t\t\t\t\tlen = tree[tindex + 2];\n\t\t\t\t\t\tmode = LENEXT;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tif ((e & 64) === 0) { // next table\n\t\t\t\t\t\tneed = e;\n\t\t\t\t\t\ttree_index = tindex / 3 + tree[tindex + 2];\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tif ((e & 32) !== 0) { // end of block\n\t\t\t\t\t\tmode = WASH;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tmode = BADCODE; // invalid code\n\t\t\t\t\tz.msg = \"invalid literal/length code\";\n\t\t\t\t\tr = Z_DATA_ERROR;\n\n\t\t\t\t\ts.bitb = b;\n\t\t\t\t\ts.bitk = k;\n\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\ts.write = q;\n\t\t\t\t\treturn s.inflate_flush(z, r);\n\n\t\t\t\tcase LENEXT: // i: getting length extra (have base)\n\t\t\t\t\tj = get;\n\n\t\t\t\t\twhile (k < (j)) {\n\t\t\t\t\t\tif (n !== 0)\n\t\t\t\t\t\t\tr = Z_OK;\n\t\t\t\t\t\telse {\n\n\t\t\t\t\t\t\ts.bitb = b;\n\t\t\t\t\t\t\ts.bitk = k;\n\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\ts.write = q;\n\t\t\t\t\t\t\treturn s.inflate_flush(z, r);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tn--;\n\t\t\t\t\t\tb |= (z.read_byte(p++) & 0xff) << k;\n\t\t\t\t\t\tk += 8;\n\t\t\t\t\t}\n\n\t\t\t\t\tlen += (b & inflate_mask[j]);\n\n\t\t\t\t\tb >>= j;\n\t\t\t\t\tk -= j;\n\n\t\t\t\t\tneed = dbits;\n\t\t\t\t\ttree = dtree;\n\t\t\t\t\ttree_index = dtree_index;\n\t\t\t\t\tmode = DIST;\n\t\t\t\t/* falls through */\n\t\t\t\tcase DIST: // i: get distance next\n\t\t\t\t\tj = need;\n\n\t\t\t\t\twhile (k < (j)) {\n\t\t\t\t\t\tif (n !== 0)\n\t\t\t\t\t\t\tr = Z_OK;\n\t\t\t\t\t\telse {\n\n\t\t\t\t\t\t\ts.bitb = b;\n\t\t\t\t\t\t\ts.bitk = k;\n\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\ts.write = q;\n\t\t\t\t\t\t\treturn s.inflate_flush(z, r);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tn--;\n\t\t\t\t\t\tb |= (z.read_byte(p++) & 0xff) << k;\n\t\t\t\t\t\tk += 8;\n\t\t\t\t\t}\n\n\t\t\t\t\ttindex = (tree_index + (b & inflate_mask[j])) * 3;\n\n\t\t\t\t\tb >>= tree[tindex + 1];\n\t\t\t\t\tk -= tree[tindex + 1];\n\n\t\t\t\t\te = (tree[tindex]);\n\t\t\t\t\tif ((e & 16) !== 0) { // distance\n\t\t\t\t\t\tget = e & 15;\n\t\t\t\t\t\tdist = tree[tindex + 2];\n\t\t\t\t\t\tmode = DISTEXT;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tif ((e & 64) === 0) { // next table\n\t\t\t\t\t\tneed = e;\n\t\t\t\t\t\ttree_index = tindex / 3 + tree[tindex + 2];\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tmode = BADCODE; // invalid code\n\t\t\t\t\tz.msg = \"invalid distance code\";\n\t\t\t\t\tr = Z_DATA_ERROR;\n\n\t\t\t\t\ts.bitb = b;\n\t\t\t\t\ts.bitk = k;\n\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\ts.write = q;\n\t\t\t\t\treturn s.inflate_flush(z, r);\n\n\t\t\t\tcase DISTEXT: // i: getting distance extra\n\t\t\t\t\tj = get;\n\n\t\t\t\t\twhile (k < (j)) {\n\t\t\t\t\t\tif (n !== 0)\n\t\t\t\t\t\t\tr = Z_OK;\n\t\t\t\t\t\telse {\n\n\t\t\t\t\t\t\ts.bitb = b;\n\t\t\t\t\t\t\ts.bitk = k;\n\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\ts.write = q;\n\t\t\t\t\t\t\treturn s.inflate_flush(z, r);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tn--;\n\t\t\t\t\t\tb |= (z.read_byte(p++) & 0xff) << k;\n\t\t\t\t\t\tk += 8;\n\t\t\t\t\t}\n\n\t\t\t\t\tdist += (b & inflate_mask[j]);\n\n\t\t\t\t\tb >>= j;\n\t\t\t\t\tk -= j;\n\n\t\t\t\t\tmode = COPY;\n\t\t\t\t/* falls through */\n\t\t\t\tcase COPY: // o: copying bytes in window, waiting for space\n\t\t\t\t\tf = q - dist;\n\t\t\t\t\twhile (f < 0) { // modulo window size-\"while\" instead\n\t\t\t\t\t\tf += s.end; // of \"if\" handles invalid distances\n\t\t\t\t\t}\n\t\t\t\t\twhile (len !== 0) {\n\n\t\t\t\t\t\tif (m === 0) {\n\t\t\t\t\t\t\tif (q == s.end && s.read !== 0) {\n\t\t\t\t\t\t\t\tq = 0;\n\t\t\t\t\t\t\t\tm = q < s.read ? s.read - q - 1 : s.end - q;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (m === 0) {\n\t\t\t\t\t\t\t\ts.write = q;\n\t\t\t\t\t\t\t\tr = s.inflate_flush(z, r);\n\t\t\t\t\t\t\t\tq = s.write;\n\t\t\t\t\t\t\t\tm = q < s.read ? s.read - q - 1 : s.end - q;\n\n\t\t\t\t\t\t\t\tif (q == s.end && s.read !== 0) {\n\t\t\t\t\t\t\t\t\tq = 0;\n\t\t\t\t\t\t\t\t\tm = q < s.read ? s.read - q - 1 : s.end - q;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tif (m === 0) {\n\t\t\t\t\t\t\t\t\ts.bitb = b;\n\t\t\t\t\t\t\t\t\ts.bitk = k;\n\t\t\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\t\t\ts.write = q;\n\t\t\t\t\t\t\t\t\treturn s.inflate_flush(z, r);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\ts.window[q++] = s.window[f++];\n\t\t\t\t\t\tm--;\n\n\t\t\t\t\t\tif (f == s.end)\n\t\t\t\t\t\t\tf = 0;\n\t\t\t\t\t\tlen--;\n\t\t\t\t\t}\n\t\t\t\t\tmode = START;\n\t\t\t\t\tbreak;\n\t\t\t\tcase LIT: // o: got literal, waiting for output space\n\t\t\t\t\tif (m === 0) {\n\t\t\t\t\t\tif (q == s.end && s.read !== 0) {\n\t\t\t\t\t\t\tq = 0;\n\t\t\t\t\t\t\tm = q < s.read ? s.read - q - 1 : s.end - q;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (m === 0) {\n\t\t\t\t\t\t\ts.write = q;\n\t\t\t\t\t\t\tr = s.inflate_flush(z, r);\n\t\t\t\t\t\t\tq = s.write;\n\t\t\t\t\t\t\tm = q < s.read ? s.read - q - 1 : s.end - q;\n\n\t\t\t\t\t\t\tif (q == s.end && s.read !== 0) {\n\t\t\t\t\t\t\t\tq = 0;\n\t\t\t\t\t\t\t\tm = q < s.read ? s.read - q - 1 : s.end - q;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (m === 0) {\n\t\t\t\t\t\t\t\ts.bitb = b;\n\t\t\t\t\t\t\t\ts.bitk = k;\n\t\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\t\ts.write = q;\n\t\t\t\t\t\t\t\treturn s.inflate_flush(z, r);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tr = Z_OK;\n\n\t\t\t\t\ts.window[q++] = /* (byte) */lit;\n\t\t\t\t\tm--;\n\n\t\t\t\t\tmode = START;\n\t\t\t\t\tbreak;\n\t\t\t\tcase WASH: // o: got eob, possibly more output\n\t\t\t\t\tif (k > 7) { // return unused byte, if any\n\t\t\t\t\t\tk -= 8;\n\t\t\t\t\t\tn++;\n\t\t\t\t\t\tp--; // can always return one\n\t\t\t\t\t}\n\n\t\t\t\t\ts.write = q;\n\t\t\t\t\tr = s.inflate_flush(z, r);\n\t\t\t\t\tq = s.write;\n\t\t\t\t\tm = q < s.read ? s.read - q - 1 : s.end - q;\n\n\t\t\t\t\tif (s.read != s.write) {\n\t\t\t\t\t\ts.bitb = b;\n\t\t\t\t\t\ts.bitk = k;\n\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\ts.write = q;\n\t\t\t\t\t\treturn s.inflate_flush(z, r);\n\t\t\t\t\t}\n\t\t\t\t\tmode = END;\n\t\t\t\t/* falls through */\n\t\t\t\tcase END:\n\t\t\t\t\tr = Z_STREAM_END;\n\t\t\t\t\ts.bitb = b;\n\t\t\t\t\ts.bitk = k;\n\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\ts.write = q;\n\t\t\t\t\treturn s.inflate_flush(z, r);\n\n\t\t\t\tcase BADCODE: // x: got error\n\n\t\t\t\t\tr = Z_DATA_ERROR;\n\n\t\t\t\t\ts.bitb = b;\n\t\t\t\t\ts.bitk = k;\n\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\ts.write = q;\n\t\t\t\t\treturn s.inflate_flush(z, r);\n\n\t\t\t\tdefault:\n\t\t\t\t\tr = Z_STREAM_ERROR;\n\n\t\t\t\t\ts.bitb = b;\n\t\t\t\t\ts.bitk = k;\n\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\ts.write = q;\n\t\t\t\t\treturn s.inflate_flush(z, r);\n\t\t\t}\n\t\t}\n\t};\n\n\tthat.free = function () {\n\t\t// ZFREE(z, c);\n\t};\n\n}\n\n// InfBlocks\n\n// Table for deflate from PKZIP's appnote.txt.\nconst border = [ // Order of the bit length code lengths\n\t16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15];\n\nconst TYPE = 0; // get type bits (3, including end bit)\nconst LENS = 1; // get lengths for stored\nconst STORED = 2;// processing stored block\nconst TABLE = 3; // get table lengths\nconst BTREE = 4; // get bit lengths tree for a dynamic\n// block\nconst DTREE = 5; // get length, distance trees for a\n// dynamic block\nconst CODES = 6; // processing fixed or dynamic block\nconst DRY = 7; // output remaining window bytes\nconst DONELOCKS = 8; // finished last block, done\nconst BADBLOCKS = 9; // ot a data error--stuck here\n\nfunction InfBlocks(z, w) {\n\tconst that = this;\n\n\tlet mode = TYPE; // current inflate_block mode\n\n\tlet left = 0; // if STORED, bytes left to copy\n\n\tlet table = 0; // table lengths (14 bits)\n\tlet index = 0; // index into blens (or border)\n\tlet blens; // bit lengths of codes\n\tconst bb = [0]; // bit length tree depth\n\tconst tb = [0]; // bit length decoding tree\n\n\tconst codes = new InfCodes(); // if CODES, current state\n\n\tlet last = 0; // true if this block is the last block\n\n\tlet hufts = new Int32Array(MANY * 3); // single malloc for tree space\n\tconst check = 0; // check on output\n\tconst inftree = new InfTree();\n\n\tthat.bitk = 0; // bits in bit buffer\n\tthat.bitb = 0; // bit buffer\n\tthat.window = new Uint8Array(w); // sliding window\n\tthat.end = w; // one byte after sliding window\n\tthat.read = 0; // window read pointer\n\tthat.write = 0; // window write pointer\n\n\tthat.reset = function (z, c) {\n\t\tif (c)\n\t\t\tc[0] = check;\n\t\t// if (mode == BTREE || mode == DTREE) {\n\t\t// }\n\t\tif (mode == CODES) {\n\t\t\tcodes.free(z);\n\t\t}\n\t\tmode = TYPE;\n\t\tthat.bitk = 0;\n\t\tthat.bitb = 0;\n\t\tthat.read = that.write = 0;\n\t};\n\n\tthat.reset(z, null);\n\n\t// copy as much as possible from the sliding window to the output area\n\tthat.inflate_flush = function (z, r) {\n\t\tlet n;\n\t\tlet p;\n\t\tlet q;\n\n\t\t// local copies of source and destination pointers\n\t\tp = z.next_out_index;\n\t\tq = that.read;\n\n\t\t// compute number of bytes to copy as far as end of window\n\t\tn = /* (int) */((q <= that.write ? that.write : that.end) - q);\n\t\tif (n > z.avail_out)\n\t\t\tn = z.avail_out;\n\t\tif (n !== 0 && r == Z_BUF_ERROR)\n\t\t\tr = Z_OK;\n\n\t\t// update counters\n\t\tz.avail_out -= n;\n\t\tz.total_out += n;\n\n\t\t// copy as far as end of window\n\t\tz.next_out.set(that.window.subarray(q, q + n), p);\n\t\tp += n;\n\t\tq += n;\n\n\t\t// see if more to copy at beginning of window\n\t\tif (q == that.end) {\n\t\t\t// wrap pointers\n\t\t\tq = 0;\n\t\t\tif (that.write == that.end)\n\t\t\t\tthat.write = 0;\n\n\t\t\t// compute bytes to copy\n\t\t\tn = that.write - q;\n\t\t\tif (n > z.avail_out)\n\t\t\t\tn = z.avail_out;\n\t\t\tif (n !== 0 && r == Z_BUF_ERROR)\n\t\t\t\tr = Z_OK;\n\n\t\t\t// update counters\n\t\t\tz.avail_out -= n;\n\t\t\tz.total_out += n;\n\n\t\t\t// copy\n\t\t\tz.next_out.set(that.window.subarray(q, q + n), p);\n\t\t\tp += n;\n\t\t\tq += n;\n\t\t}\n\n\t\t// update pointers\n\t\tz.next_out_index = p;\n\t\tthat.read = q;\n\n\t\t// done\n\t\treturn r;\n\t};\n\n\tthat.proc = function (z, r) {\n\t\tlet t; // temporary storage\n\t\tlet b; // bit buffer\n\t\tlet k; // bits in bit buffer\n\t\tlet p; // input data pointer\n\t\tlet n; // bytes available there\n\t\tlet q; // output window write pointer\n\t\tlet m; // bytes to end of window or read pointer\n\n\t\tlet i;\n\n\t\t// copy input/output information to locals (UPDATE macro restores)\n\t\t// {\n\t\tp = z.next_in_index;\n\t\tn = z.avail_in;\n\t\tb = that.bitb;\n\t\tk = that.bitk;\n\t\t// }\n\t\t// {\n\t\tq = that.write;\n\t\tm = /* (int) */(q < that.read ? that.read - q - 1 : that.end - q);\n\t\t// }\n\n\t\t// process input based on current state\n\t\t// DEBUG dtree\n\t\t// eslint-disable-next-line no-constant-condition\n\t\twhile (true) {\n\t\t\tlet bl, bd, tl, td, bl_, bd_, tl_, td_;\n\t\t\tswitch (mode) {\n\t\t\t\tcase TYPE:\n\n\t\t\t\t\twhile (k < (3)) {\n\t\t\t\t\t\tif (n !== 0) {\n\t\t\t\t\t\t\tr = Z_OK;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tn--;\n\t\t\t\t\t\tb |= (z.read_byte(p++) & 0xff) << k;\n\t\t\t\t\t\tk += 8;\n\t\t\t\t\t}\n\t\t\t\t\tt = /* (int) */(b & 7);\n\t\t\t\t\tlast = t & 1;\n\n\t\t\t\t\tswitch (t >>> 1) {\n\t\t\t\t\t\tcase 0: // stored\n\t\t\t\t\t\t\t// {\n\t\t\t\t\t\t\tb >>>= (3);\n\t\t\t\t\t\t\tk -= (3);\n\t\t\t\t\t\t\t// }\n\t\t\t\t\t\t\tt = k & 7; // go to byte boundary\n\n\t\t\t\t\t\t\t// {\n\t\t\t\t\t\t\tb >>>= (t);\n\t\t\t\t\t\t\tk -= (t);\n\t\t\t\t\t\t\t// }\n\t\t\t\t\t\t\tmode = LENS; // get length of stored block\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 1: // fixed\n\t\t\t\t\t\t\t// {\n\t\t\t\t\t\t\tbl = []; // new Array(1);\n\t\t\t\t\t\t\tbd = []; // new Array(1);\n\t\t\t\t\t\t\ttl = [[]]; // new Array(1);\n\t\t\t\t\t\t\ttd = [[]]; // new Array(1);\n\n\t\t\t\t\t\t\tInfTree.inflate_trees_fixed(bl, bd, tl, td);\n\t\t\t\t\t\t\tcodes.init(bl[0], bd[0], tl[0], 0, td[0], 0);\n\t\t\t\t\t\t\t// }\n\n\t\t\t\t\t\t\t// {\n\t\t\t\t\t\t\tb >>>= (3);\n\t\t\t\t\t\t\tk -= (3);\n\t\t\t\t\t\t\t// }\n\n\t\t\t\t\t\t\tmode = CODES;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 2: // dynamic\n\n\t\t\t\t\t\t\t// {\n\t\t\t\t\t\t\tb >>>= (3);\n\t\t\t\t\t\t\tk -= (3);\n\t\t\t\t\t\t\t// }\n\n\t\t\t\t\t\t\tmode = TABLE;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 3: // illegal\n\n\t\t\t\t\t\t\t// {\n\t\t\t\t\t\t\tb >>>= (3);\n\t\t\t\t\t\t\tk -= (3);\n\t\t\t\t\t\t\t// }\n\t\t\t\t\t\t\tmode = BADBLOCKS;\n\t\t\t\t\t\t\tz.msg = \"invalid block type\";\n\t\t\t\t\t\t\tr = Z_DATA_ERROR;\n\n\t\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase LENS:\n\n\t\t\t\t\twhile (k < (32)) {\n\t\t\t\t\t\tif (n !== 0) {\n\t\t\t\t\t\t\tr = Z_OK;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tn--;\n\t\t\t\t\t\tb |= (z.read_byte(p++) & 0xff) << k;\n\t\t\t\t\t\tk += 8;\n\t\t\t\t\t}\n\n\t\t\t\t\tif ((((~b) >>> 16) & 0xffff) != (b & 0xffff)) {\n\t\t\t\t\t\tmode = BADBLOCKS;\n\t\t\t\t\t\tz.msg = \"invalid stored block lengths\";\n\t\t\t\t\t\tr = Z_DATA_ERROR;\n\n\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t}\n\t\t\t\t\tleft = (b & 0xffff);\n\t\t\t\t\tb = k = 0; // dump bits\n\t\t\t\t\tmode = left !== 0 ? STORED : (last !== 0 ? DRY : TYPE);\n\t\t\t\t\tbreak;\n\t\t\t\tcase STORED:\n\t\t\t\t\tif (n === 0) {\n\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t}\n\n\t\t\t\t\tif (m === 0) {\n\t\t\t\t\t\tif (q == that.end && that.read !== 0) {\n\t\t\t\t\t\t\tq = 0;\n\t\t\t\t\t\t\tm = /* (int) */(q < that.read ? that.read - q - 1 : that.end - q);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (m === 0) {\n\t\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\t\tr = that.inflate_flush(z, r);\n\t\t\t\t\t\t\tq = that.write;\n\t\t\t\t\t\t\tm = /* (int) */(q < that.read ? that.read - q - 1 : that.end - q);\n\t\t\t\t\t\t\tif (q == that.end && that.read !== 0) {\n\t\t\t\t\t\t\t\tq = 0;\n\t\t\t\t\t\t\t\tm = /* (int) */(q < that.read ? that.read - q - 1 : that.end - q);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (m === 0) {\n\t\t\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tr = Z_OK;\n\n\t\t\t\t\tt = left;\n\t\t\t\t\tif (t > n)\n\t\t\t\t\t\tt = n;\n\t\t\t\t\tif (t > m)\n\t\t\t\t\t\tt = m;\n\t\t\t\t\tthat.window.set(z.read_buf(p, t), q);\n\t\t\t\t\tp += t;\n\t\t\t\t\tn -= t;\n\t\t\t\t\tq += t;\n\t\t\t\t\tm -= t;\n\t\t\t\t\tif ((left -= t) !== 0)\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tmode = last !== 0 ? DRY : TYPE;\n\t\t\t\t\tbreak;\n\t\t\t\tcase TABLE:\n\n\t\t\t\t\twhile (k < (14)) {\n\t\t\t\t\t\tif (n !== 0) {\n\t\t\t\t\t\t\tr = Z_OK;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tn--;\n\t\t\t\t\t\tb |= (z.read_byte(p++) & 0xff) << k;\n\t\t\t\t\t\tk += 8;\n\t\t\t\t\t}\n\n\t\t\t\t\ttable = t = (b & 0x3fff);\n\t\t\t\t\tif ((t & 0x1f) > 29 || ((t >> 5) & 0x1f) > 29) {\n\t\t\t\t\t\tmode = BADBLOCKS;\n\t\t\t\t\t\tz.msg = \"too many length or distance symbols\";\n\t\t\t\t\t\tr = Z_DATA_ERROR;\n\n\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t}\n\t\t\t\t\tt = 258 + (t & 0x1f) + ((t >> 5) & 0x1f);\n\t\t\t\t\tif (!blens || blens.length < t) {\n\t\t\t\t\t\tblens = []; // new Array(t);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfor (i = 0; i < t; i++) {\n\t\t\t\t\t\t\tblens[i] = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// {\n\t\t\t\t\tb >>>= (14);\n\t\t\t\t\tk -= (14);\n\t\t\t\t\t// }\n\n\t\t\t\t\tindex = 0;\n\t\t\t\t\tmode = BTREE;\n\t\t\t\t/* falls through */\n\t\t\t\tcase BTREE:\n\t\t\t\t\twhile (index < 4 + (table >>> 10)) {\n\t\t\t\t\t\twhile (k < (3)) {\n\t\t\t\t\t\t\tif (n !== 0) {\n\t\t\t\t\t\t\t\tr = Z_OK;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tn--;\n\t\t\t\t\t\t\tb |= (z.read_byte(p++) & 0xff) << k;\n\t\t\t\t\t\t\tk += 8;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tblens[border[index++]] = b & 7;\n\n\t\t\t\t\t\t// {\n\t\t\t\t\t\tb >>>= (3);\n\t\t\t\t\t\tk -= (3);\n\t\t\t\t\t\t// }\n\t\t\t\t\t}\n\n\t\t\t\t\twhile (index < 19) {\n\t\t\t\t\t\tblens[border[index++]] = 0;\n\t\t\t\t\t}\n\n\t\t\t\t\tbb[0] = 7;\n\t\t\t\t\tt = inftree.inflate_trees_bits(blens, bb, tb, hufts, z);\n\t\t\t\t\tif (t != Z_OK) {\n\t\t\t\t\t\tr = t;\n\t\t\t\t\t\tif (r == Z_DATA_ERROR) {\n\t\t\t\t\t\t\tblens = null;\n\t\t\t\t\t\t\tmode = BADBLOCKS;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t}\n\n\t\t\t\t\tindex = 0;\n\t\t\t\t\tmode = DTREE;\n\t\t\t\t/* falls through */\n\t\t\t\tcase DTREE:\n\t\t\t\t\t// eslint-disable-next-line no-constant-condition\n\t\t\t\t\twhile (true) {\n\t\t\t\t\t\tt = table;\n\t\t\t\t\t\tif (index >= 258 + (t & 0x1f) + ((t >> 5) & 0x1f)) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tlet j, c;\n\n\t\t\t\t\t\tt = bb[0];\n\n\t\t\t\t\t\twhile (k < (t)) {\n\t\t\t\t\t\t\tif (n !== 0) {\n\t\t\t\t\t\t\t\tr = Z_OK;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tn--;\n\t\t\t\t\t\t\tb |= (z.read_byte(p++) & 0xff) << k;\n\t\t\t\t\t\t\tk += 8;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// if (tb[0] == -1) {\n\t\t\t\t\t\t// System.err.println(\"null...\");\n\t\t\t\t\t\t// }\n\n\t\t\t\t\t\tt = hufts[(tb[0] + (b & inflate_mask[t])) * 3 + 1];\n\t\t\t\t\t\tc = hufts[(tb[0] + (b & inflate_mask[t])) * 3 + 2];\n\n\t\t\t\t\t\tif (c < 16) {\n\t\t\t\t\t\t\tb >>>= (t);\n\t\t\t\t\t\t\tk -= (t);\n\t\t\t\t\t\t\tblens[index++] = c;\n\t\t\t\t\t\t} else { // c == 16..18\n\t\t\t\t\t\t\ti = c == 18 ? 7 : c - 14;\n\t\t\t\t\t\t\tj = c == 18 ? 11 : 3;\n\n\t\t\t\t\t\t\twhile (k < (t + i)) {\n\t\t\t\t\t\t\t\tif (n !== 0) {\n\t\t\t\t\t\t\t\t\tr = Z_OK;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tn--;\n\t\t\t\t\t\t\t\tb |= (z.read_byte(p++) & 0xff) << k;\n\t\t\t\t\t\t\t\tk += 8;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tb >>>= (t);\n\t\t\t\t\t\t\tk -= (t);\n\n\t\t\t\t\t\t\tj += (b & inflate_mask[i]);\n\n\t\t\t\t\t\t\tb >>>= (i);\n\t\t\t\t\t\t\tk -= (i);\n\n\t\t\t\t\t\t\ti = index;\n\t\t\t\t\t\t\tt = table;\n\t\t\t\t\t\t\tif (i + j > 258 + (t & 0x1f) + ((t >> 5) & 0x1f) || (c == 16 && i < 1)) {\n\t\t\t\t\t\t\t\tblens = null;\n\t\t\t\t\t\t\t\tmode = BADBLOCKS;\n\t\t\t\t\t\t\t\tz.msg = \"invalid bit length repeat\";\n\t\t\t\t\t\t\t\tr = Z_DATA_ERROR;\n\n\t\t\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tc = c == 16 ? blens[i - 1] : 0;\n\t\t\t\t\t\t\tdo {\n\t\t\t\t\t\t\t\tblens[i++] = c;\n\t\t\t\t\t\t\t} while (--j !== 0);\n\t\t\t\t\t\t\tindex = i;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\ttb[0] = -1;\n\t\t\t\t\t// {\n\t\t\t\t\tbl_ = []; // new Array(1);\n\t\t\t\t\tbd_ = []; // new Array(1);\n\t\t\t\t\ttl_ = []; // new Array(1);\n\t\t\t\t\ttd_ = []; // new Array(1);\n\t\t\t\t\tbl_[0] = 9; // must be <= 9 for lookahead assumptions\n\t\t\t\t\tbd_[0] = 6; // must be <= 9 for lookahead assumptions\n\n\t\t\t\t\tt = table;\n\t\t\t\t\tt = inftree.inflate_trees_dynamic(257 + (t & 0x1f), 1 + ((t >> 5) & 0x1f), blens, bl_, bd_, tl_, td_, hufts, z);\n\n\t\t\t\t\tif (t != Z_OK) {\n\t\t\t\t\t\tif (t == Z_DATA_ERROR) {\n\t\t\t\t\t\t\tblens = null;\n\t\t\t\t\t\t\tmode = BADBLOCKS;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tr = t;\n\n\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t}\n\t\t\t\t\tcodes.init(bl_[0], bd_[0], hufts, tl_[0], hufts, td_[0]);\n\t\t\t\t\t// }\n\t\t\t\t\tmode = CODES;\n\t\t\t\t/* falls through */\n\t\t\t\tcase CODES:\n\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\tthat.write = q;\n\n\t\t\t\t\tif ((r = codes.proc(that, z, r)) != Z_STREAM_END) {\n\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t}\n\t\t\t\t\tr = Z_OK;\n\t\t\t\t\tcodes.free(z);\n\n\t\t\t\t\tp = z.next_in_index;\n\t\t\t\t\tn = z.avail_in;\n\t\t\t\t\tb = that.bitb;\n\t\t\t\t\tk = that.bitk;\n\t\t\t\t\tq = that.write;\n\t\t\t\t\tm = /* (int) */(q < that.read ? that.read - q - 1 : that.end - q);\n\n\t\t\t\t\tif (last === 0) {\n\t\t\t\t\t\tmode = TYPE;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tmode = DRY;\n\t\t\t\t/* falls through */\n\t\t\t\tcase DRY:\n\t\t\t\t\tthat.write = q;\n\t\t\t\t\tr = that.inflate_flush(z, r);\n\t\t\t\t\tq = that.write;\n\t\t\t\t\tm = /* (int) */(q < that.read ? that.read - q - 1 : that.end - q);\n\t\t\t\t\tif (that.read != that.write) {\n\t\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\t\tthat.write = q;\n\t\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\t\t}\n\t\t\t\t\tmode = DONELOCKS;\n\t\t\t\t/* falls through */\n\t\t\t\tcase DONELOCKS:\n\t\t\t\t\tr = Z_STREAM_END;\n\n\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\tthat.write = q;\n\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t\tcase BADBLOCKS:\n\t\t\t\t\tr = Z_DATA_ERROR;\n\n\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\tthat.write = q;\n\t\t\t\t\treturn that.inflate_flush(z, r);\n\n\t\t\t\tdefault:\n\t\t\t\t\tr = Z_STREAM_ERROR;\n\n\t\t\t\t\tthat.bitb = b;\n\t\t\t\t\tthat.bitk = k;\n\t\t\t\t\tz.avail_in = n;\n\t\t\t\t\tz.total_in += p - z.next_in_index;\n\t\t\t\t\tz.next_in_index = p;\n\t\t\t\t\tthat.write = q;\n\t\t\t\t\treturn that.inflate_flush(z, r);\n\t\t\t}\n\t\t}\n\t};\n\n\tthat.free = function (z) {\n\t\tthat.reset(z, null);\n\t\tthat.window = null;\n\t\thufts = null;\n\t\t// ZFREE(z, s);\n\t};\n\n\tthat.set_dictionary = function (d, start, n) {\n\t\tthat.window.set(d.subarray(start, start + n), 0);\n\t\tthat.read = that.write = n;\n\t};\n\n\t// Returns true if inflate is currently at the end of a block generated\n\t// by Z_SYNC_FLUSH or Z_FULL_FLUSH.\n\tthat.sync_point = function () {\n\t\treturn mode == LENS ? 1 : 0;\n\t};\n\n}\n\n// Inflate\n\n// preset dictionary flag in zlib header\nconst PRESET_DICT = 0x20;\n\nconst Z_DEFLATED = 8;\n\nconst METHOD = 0; // waiting for method byte\nconst FLAG = 1; // waiting for flag byte\nconst DICT4 = 2; // four dictionary check bytes to go\nconst DICT3 = 3; // three dictionary check bytes to go\nconst DICT2 = 4; // two dictionary check bytes to go\nconst DICT1 = 5; // one dictionary check byte to go\nconst DICT0 = 6; // waiting for inflateSetDictionary\nconst BLOCKS = 7; // decompressing blocks\nconst DONE = 12; // finished check, done\nconst BAD = 13; // got an error--stay here\n\nconst mark = [0, 0, 0xff, 0xff];\n\nfunction Inflate() {\n\tconst that = this;\n\n\tthat.mode = 0; // current inflate mode\n\n\t// mode dependent information\n\tthat.method = 0; // if FLAGS, method byte\n\n\t// if CHECK, check values to compare\n\tthat.was = [0]; // new Array(1); // computed check value\n\tthat.need = 0; // stream check value\n\n\t// if BAD, inflateSync's marker bytes count\n\tthat.marker = 0;\n\n\t// mode independent information\n\tthat.wbits = 0; // log2(window size) (8..15, defaults to 15)\n\n\t// this.blocks; // current inflate_blocks state\n\n\tfunction inflateReset(z) {\n\t\tif (!z || !z.istate)\n\t\t\treturn Z_STREAM_ERROR;\n\n\t\tz.total_in = z.total_out = 0;\n\t\tz.msg = null;\n\t\tz.istate.mode = BLOCKS;\n\t\tz.istate.blocks.reset(z, null);\n\t\treturn Z_OK;\n\t}\n\n\tthat.inflateEnd = function (z) {\n\t\tif (that.blocks)\n\t\t\tthat.blocks.free(z);\n\t\tthat.blocks = null;\n\t\t// ZFREE(z, z->state);\n\t\treturn Z_OK;\n\t};\n\n\tthat.inflateInit = function (z, w) {\n\t\tz.msg = null;\n\t\tthat.blocks = null;\n\n\t\t// set window size\n\t\tif (w < 8 || w > 15) {\n\t\t\tthat.inflateEnd(z);\n\t\t\treturn Z_STREAM_ERROR;\n\t\t}\n\t\tthat.wbits = w;\n\n\t\tz.istate.blocks = new InfBlocks(z, 1 << w);\n\n\t\t// reset state\n\t\tinflateReset(z);\n\t\treturn Z_OK;\n\t};\n\n\tthat.inflate = function (z, f) {\n\t\tlet r;\n\t\tlet b;\n\n\t\tif (!z || !z.istate || !z.next_in)\n\t\t\treturn Z_STREAM_ERROR;\n\t\tconst istate = z.istate;\n\t\tf = f == Z_FINISH ? Z_BUF_ERROR : Z_OK;\n\t\tr = Z_BUF_ERROR;\n\t\t// eslint-disable-next-line no-constant-condition\n\t\twhile (true) {\n\t\t\tswitch (istate.mode) {\n\t\t\t\tcase METHOD:\n\n\t\t\t\t\tif (z.avail_in === 0)\n\t\t\t\t\t\treturn r;\n\t\t\t\t\tr = f;\n\n\t\t\t\t\tz.avail_in--;\n\t\t\t\t\tz.total_in++;\n\t\t\t\t\tif (((istate.method = z.read_byte(z.next_in_index++)) & 0xf) != Z_DEFLATED) {\n\t\t\t\t\t\tistate.mode = BAD;\n\t\t\t\t\t\tz.msg = \"unknown compression method\";\n\t\t\t\t\t\tistate.marker = 5; // can't try inflateSync\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tif ((istate.method >> 4) + 8 > istate.wbits) {\n\t\t\t\t\t\tistate.mode = BAD;\n\t\t\t\t\t\tz.msg = \"invalid window size\";\n\t\t\t\t\t\tistate.marker = 5; // can't try inflateSync\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tistate.mode = FLAG;\n\t\t\t\t/* falls through */\n\t\t\t\tcase FLAG:\n\n\t\t\t\t\tif (z.avail_in === 0)\n\t\t\t\t\t\treturn r;\n\t\t\t\t\tr = f;\n\n\t\t\t\t\tz.avail_in--;\n\t\t\t\t\tz.total_in++;\n\t\t\t\t\tb = (z.read_byte(z.next_in_index++)) & 0xff;\n\n\t\t\t\t\tif ((((istate.method << 8) + b) % 31) !== 0) {\n\t\t\t\t\t\tistate.mode = BAD;\n\t\t\t\t\t\tz.msg = \"incorrect header check\";\n\t\t\t\t\t\tistate.marker = 5; // can't try inflateSync\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\n\t\t\t\t\tif ((b & PRESET_DICT) === 0) {\n\t\t\t\t\t\tistate.mode = BLOCKS;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tistate.mode = DICT4;\n\t\t\t\t/* falls through */\n\t\t\t\tcase DICT4:\n\n\t\t\t\t\tif (z.avail_in === 0)\n\t\t\t\t\t\treturn r;\n\t\t\t\t\tr = f;\n\n\t\t\t\t\tz.avail_in--;\n\t\t\t\t\tz.total_in++;\n\t\t\t\t\tistate.need = ((z.read_byte(z.next_in_index++) & 0xff) << 24) & 0xff000000;\n\t\t\t\t\tistate.mode = DICT3;\n\t\t\t\t/* falls through */\n\t\t\t\tcase DICT3:\n\n\t\t\t\t\tif (z.avail_in === 0)\n\t\t\t\t\t\treturn r;\n\t\t\t\t\tr = f;\n\n\t\t\t\t\tz.avail_in--;\n\t\t\t\t\tz.total_in++;\n\t\t\t\t\tistate.need += ((z.read_byte(z.next_in_index++) & 0xff) << 16) & 0xff0000;\n\t\t\t\t\tistate.mode = DICT2;\n\t\t\t\t/* falls through */\n\t\t\t\tcase DICT2:\n\n\t\t\t\t\tif (z.avail_in === 0)\n\t\t\t\t\t\treturn r;\n\t\t\t\t\tr = f;\n\n\t\t\t\t\tz.avail_in--;\n\t\t\t\t\tz.total_in++;\n\t\t\t\t\tistate.need += ((z.read_byte(z.next_in_index++) & 0xff) << 8) & 0xff00;\n\t\t\t\t\tistate.mode = DICT1;\n\t\t\t\t/* falls through */\n\t\t\t\tcase DICT1:\n\n\t\t\t\t\tif (z.avail_in === 0)\n\t\t\t\t\t\treturn r;\n\t\t\t\t\tr = f;\n\n\t\t\t\t\tz.avail_in--;\n\t\t\t\t\tz.total_in++;\n\t\t\t\t\tistate.need += (z.read_byte(z.next_in_index++) & 0xff);\n\t\t\t\t\tistate.mode = DICT0;\n\t\t\t\t\treturn Z_NEED_DICT;\n\t\t\t\tcase DICT0:\n\t\t\t\t\tistate.mode = BAD;\n\t\t\t\t\tz.msg = \"need dictionary\";\n\t\t\t\t\tistate.marker = 0; // can try inflateSync\n\t\t\t\t\treturn Z_STREAM_ERROR;\n\t\t\t\tcase BLOCKS:\n\n\t\t\t\t\tr = istate.blocks.proc(z, r);\n\t\t\t\t\tif (r == Z_DATA_ERROR) {\n\t\t\t\t\t\tistate.mode = BAD;\n\t\t\t\t\t\tistate.marker = 0; // can try inflateSync\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tif (r == Z_OK) {\n\t\t\t\t\t\tr = f;\n\t\t\t\t\t}\n\t\t\t\t\tif (r != Z_STREAM_END) {\n\t\t\t\t\t\treturn r;\n\t\t\t\t\t}\n\t\t\t\t\tr = f;\n\t\t\t\t\tistate.blocks.reset(z, istate.was);\n\t\t\t\t\tistate.mode = DONE;\n\t\t\t\t/* falls through */\n\t\t\t\tcase DONE:\n\t\t\t\t\treturn Z_STREAM_END;\n\t\t\t\tcase BAD:\n\t\t\t\t\treturn Z_DATA_ERROR;\n\t\t\t\tdefault:\n\t\t\t\t\treturn Z_STREAM_ERROR;\n\t\t\t}\n\t\t}\n\t};\n\n\tthat.inflateSetDictionary = function (z, dictionary, dictLength) {\n\t\tlet index = 0, length = dictLength;\n\t\tif (!z || !z.istate || z.istate.mode != DICT0)\n\t\t\treturn Z_STREAM_ERROR;\n\t\tconst istate = z.istate;\n\t\tif (length >= (1 << istate.wbits)) {\n\t\t\tlength = (1 << istate.wbits) - 1;\n\t\t\tindex = dictLength - length;\n\t\t}\n\t\tistate.blocks.set_dictionary(dictionary, index, length);\n\t\tistate.mode = BLOCKS;\n\t\treturn Z_OK;\n\t};\n\n\tthat.inflateSync = function (z) {\n\t\tlet n; // number of bytes to look at\n\t\tlet p; // pointer to bytes\n\t\tlet m; // number of marker bytes found in a row\n\t\tlet r, w; // temporaries to save total_in and total_out\n\n\t\t// set up\n\t\tif (!z || !z.istate)\n\t\t\treturn Z_STREAM_ERROR;\n\t\tconst istate = z.istate;\n\t\tif (istate.mode != BAD) {\n\t\t\tistate.mode = BAD;\n\t\t\tistate.marker = 0;\n\t\t}\n\t\tif ((n = z.avail_in) === 0)\n\t\t\treturn Z_BUF_ERROR;\n\t\tp = z.next_in_index;\n\t\tm = istate.marker;\n\n\t\t// search\n\t\twhile (n !== 0 && m < 4) {\n\t\t\tif (z.read_byte(p) == mark[m]) {\n\t\t\t\tm++;\n\t\t\t} else if (z.read_byte(p) !== 0) {\n\t\t\t\tm = 0;\n\t\t\t} else {\n\t\t\t\tm = 4 - m;\n\t\t\t}\n\t\t\tp++;\n\t\t\tn--;\n\t\t}\n\n\t\t// restore\n\t\tz.total_in += p - z.next_in_index;\n\t\tz.next_in_index = p;\n\t\tz.avail_in = n;\n\t\tistate.marker = m;\n\n\t\t// return no joy or set up to restart on a new block\n\t\tif (m != 4) {\n\t\t\treturn Z_DATA_ERROR;\n\t\t}\n\t\tr = z.total_in;\n\t\tw = z.total_out;\n\t\tinflateReset(z);\n\t\tz.total_in = r;\n\t\tz.total_out = w;\n\t\tistate.mode = BLOCKS;\n\t\treturn Z_OK;\n\t};\n\n\t// Returns true if inflate is currently at the end of a block generated\n\t// by Z_SYNC_FLUSH or Z_FULL_FLUSH. This function is used by one PPP\n\t// implementation to provide an additional safety check. PPP uses\n\t// Z_SYNC_FLUSH\n\t// but removes the length bytes of the resulting empty stored block. When\n\t// decompressing, PPP checks that at the end of input packet, inflate is\n\t// waiting for these length bytes.\n\tthat.inflateSyncPoint = function (z) {\n\t\tif (!z || !z.istate || !z.istate.blocks)\n\t\t\treturn Z_STREAM_ERROR;\n\t\treturn z.istate.blocks.sync_point();\n\t};\n}\n\n// ZStream\n\nfunction ZStream() {\n}\n\nZStream.prototype = {\n\tinflateInit: function (bits) {\n\t\tconst that = this;\n\t\tthat.istate = new Inflate();\n\t\tif (!bits)\n\t\t\tbits = MAX_BITS;\n\t\treturn that.istate.inflateInit(that, bits);\n\t},\n\n\tinflate: function (f) {\n\t\tconst that = this;\n\t\tif (!that.istate)\n\t\t\treturn Z_STREAM_ERROR;\n\t\treturn that.istate.inflate(that, f);\n\t},\n\n\tinflateEnd: function () {\n\t\tconst that = this;\n\t\tif (!that.istate)\n\t\t\treturn Z_STREAM_ERROR;\n\t\tconst ret = that.istate.inflateEnd(that);\n\t\tthat.istate = null;\n\t\treturn ret;\n\t},\n\n\tinflateSync: function () {\n\t\tconst that = this;\n\t\tif (!that.istate)\n\t\t\treturn Z_STREAM_ERROR;\n\t\treturn that.istate.inflateSync(that);\n\t},\n\tinflateSetDictionary: function (dictionary, dictLength) {\n\t\tconst that = this;\n\t\tif (!that.istate)\n\t\t\treturn Z_STREAM_ERROR;\n\t\treturn that.istate.inflateSetDictionary(that, dictionary, dictLength);\n\t},\n\tread_byte: function (start) {\n\t\tconst that = this;\n\t\treturn that.next_in[start];\n\t},\n\tread_buf: function (start, size) {\n\t\tconst that = this;\n\t\treturn that.next_in.subarray(start, start + size);\n\t}\n};\n\n// Inflater\n\nfunction ZipInflate(options) {\n\tconst that = this;\n\tconst z = new ZStream();\n\tconst bufsize = options && options.chunkSize ? Math.floor(options.chunkSize * 2) : 128 * 1024;\n\tconst flush = Z_NO_FLUSH;\n\tconst buf = new Uint8Array(bufsize);\n\tlet nomoreinput = false;\n\n\tz.inflateInit();\n\tz.next_out = buf;\n\n\tthat.append = function (data, onprogress) {\n\t\tconst buffers = [];\n\t\tlet err, array, lastIndex = 0, bufferIndex = 0, bufferSize = 0;\n\t\tif (data.length === 0)\n\t\t\treturn;\n\t\tz.next_in_index = 0;\n\t\tz.next_in = data;\n\t\tz.avail_in = data.length;\n\t\tdo {\n\t\t\tz.next_out_index = 0;\n\t\t\tz.avail_out = bufsize;\n\t\t\tif ((z.avail_in === 0) && (!nomoreinput)) { // if buffer is empty and more input is available, refill it\n\t\t\t\tz.next_in_index = 0;\n\t\t\t\tnomoreinput = true;\n\t\t\t}\n\t\t\terr = z.inflate(flush);\n\t\t\tif (nomoreinput && (err === Z_BUF_ERROR)) {\n\t\t\t\tif (z.avail_in !== 0)\n\t\t\t\t\tthrow new Error(\"inflating: bad input\");\n\t\t\t} else if (err !== Z_OK && err !== Z_STREAM_END)\n\t\t\t\tthrow new Error(\"inflating: \" + z.msg);\n\t\t\tif ((nomoreinput || err === Z_STREAM_END) && (z.avail_in === data.length))\n\t\t\t\tthrow new Error(\"inflating: bad input\");\n\t\t\tif (z.next_out_index)\n\t\t\t\tif (z.next_out_index === bufsize)\n\t\t\t\t\tbuffers.push(new Uint8Array(buf));\n\t\t\t\telse\n\t\t\t\t\tbuffers.push(buf.slice(0, z.next_out_index));\n\t\t\tbufferSize += z.next_out_index;\n\t\t\tif (onprogress && z.next_in_index > 0 && z.next_in_index != lastIndex) {\n\t\t\t\tonprogress(z.next_in_index);\n\t\t\t\tlastIndex = z.next_in_index;\n\t\t\t}\n\t\t} while (z.avail_in > 0 || z.avail_out === 0);\n\t\tif (buffers.length > 1) {\n\t\t\tarray = new Uint8Array(bufferSize);\n\t\t\tbuffers.forEach(function (chunk) {\n\t\t\t\tarray.set(chunk, bufferIndex);\n\t\t\t\tbufferIndex += chunk.length;\n\t\t\t});\n\t\t} else {\n\t\t\tarray = buffers[0] || new Uint8Array(0);\n\t\t}\n\t\treturn array;\n\t};\n\tthat.flush = function () {\n\t\tz.inflateEnd();\n\t};\n}\n\nexport default ZipInflate;","/*\n Copyright (c) 2022 Gildas Lormeau. All rights reserved.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright \n notice, this list of conditions and the following disclaimer in \n the documentation and/or other materials provided with the distribution.\n\n 3. The names of the authors may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\n FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,\n INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n/* global navigator */\n\n\"use strict\";\n\nconst DEFAULT_CONFIGURATION = {\n\tchunkSize: 512 * 1024,\n\tmaxWorkers: (typeof navigator != \"undefined\" && navigator.hardwareConcurrency) || 2,\n\tterminateWorkerTimeout: 5000,\n\tuseWebWorkers: true,\n\tworkerScripts: undefined\n};\n\nconst config = Object.assign({}, DEFAULT_CONFIGURATION);\n\nexport {\n\tconfigure,\n\tgetConfiguration\n};\n\nfunction getConfiguration() {\n\treturn config;\n}\n\nfunction configure(configuration) {\n\tif (configuration.baseURL !== undefined) {\n\t\tconfig.baseURL = configuration.baseURL;\n\t}\n\tif (configuration.chunkSize !== undefined) {\n\t\tconfig.chunkSize = configuration.chunkSize;\n\t}\n\tif (configuration.maxWorkers !== undefined) {\n\t\tconfig.maxWorkers = configuration.maxWorkers;\n\t}\n\tif (configuration.terminateWorkerTimeout !== undefined) {\n\t\tconfig.terminateWorkerTimeout = configuration.terminateWorkerTimeout;\n\t}\n\tif (configuration.useWebWorkers !== undefined) {\n\t\tconfig.useWebWorkers = configuration.useWebWorkers;\n\t}\n\tif (configuration.Deflate !== undefined) {\n\t\tconfig.Deflate = configuration.Deflate;\n\t}\n\tif (configuration.Inflate !== undefined) {\n\t\tconfig.Inflate = configuration.Inflate;\n\t}\n\tif (configuration.workerScripts !== undefined) {\n\t\tif (configuration.workerScripts.deflate) {\n\t\t\tif (!Array.isArray(configuration.workerScripts.deflate)) {\n\t\t\t\tthrow new Error(\"workerScripts.deflate must be an array\");\n\t\t\t}\n\t\t\tif (!config.workerScripts) {\n\t\t\t\tconfig.workerScripts = {};\n\t\t\t}\n\t\t\tconfig.workerScripts.deflate = configuration.workerScripts.deflate;\n\t\t}\n\t\tif (configuration.workerScripts.inflate) {\n\t\t\tif (!Array.isArray(configuration.workerScripts.inflate)) {\n\t\t\t\tthrow new Error(\"workerScripts.inflate must be an array\");\n\t\t\t}\n\t\t\tif (!config.workerScripts) {\n\t\t\t\tconfig.workerScripts = {};\n\t\t\t}\n\t\t\tconfig.workerScripts.inflate = configuration.workerScripts.inflate;\n\t\t}\n\t}\n}\n","/*\n Copyright (c) 2022 Gildas Lormeau. All rights reserved.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright \n notice, this list of conditions and the following disclaimer in \n the documentation and/or other materials provided with the distribution.\n\n 3. The names of the authors may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\n FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,\n INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n\"use strict\";\n\nconst table = {\n\t\"application\": {\n\t\t\"andrew-inset\": \"ez\",\n\t\t\"annodex\": \"anx\",\n\t\t\"atom+xml\": \"atom\",\n\t\t\"atomcat+xml\": \"atomcat\",\n\t\t\"atomserv+xml\": \"atomsrv\",\n\t\t\"bbolin\": \"lin\",\n\t\t\"cap\": [\"cap\", \"pcap\"],\n\t\t\"cu-seeme\": \"cu\",\n\t\t\"davmount+xml\": \"davmount\",\n\t\t\"dsptype\": \"tsp\",\n\t\t\"ecmascript\": [\"es\", \"ecma\"],\n\t\t\"futuresplash\": \"spl\",\n\t\t\"hta\": \"hta\",\n\t\t\"java-archive\": \"jar\",\n\t\t\"java-serialized-object\": \"ser\",\n\t\t\"java-vm\": \"class\",\n\t\t\"javascript\": \"js\",\n\t\t\"m3g\": \"m3g\",\n\t\t\"mac-binhex40\": \"hqx\",\n\t\t\"mathematica\": [\"nb\", \"ma\", \"mb\"],\n\t\t\"msaccess\": \"mdb\",\n\t\t\"msword\": [\"doc\", \"dot\"],\n\t\t\"mxf\": \"mxf\",\n\t\t\"oda\": \"oda\",\n\t\t\"ogg\": \"ogx\",\n\t\t\"pdf\": \"pdf\",\n\t\t\"pgp-keys\": \"key\",\n\t\t\"pgp-signature\": [\"asc\", \"sig\"],\n\t\t\"pics-rules\": \"prf\",\n\t\t\"postscript\": [\"ps\", \"ai\", \"eps\", \"epsi\", \"epsf\", \"eps2\", \"eps3\"],\n\t\t\"rar\": \"rar\",\n\t\t\"rdf+xml\": \"rdf\",\n\t\t\"rss+xml\": \"rss\",\n\t\t\"rtf\": \"rtf\",\n\t\t\"smil\": [\"smi\", \"smil\"],\n\t\t\"xhtml+xml\": [\"xhtml\", \"xht\"],\n\t\t\"xml\": [\"xml\", \"xsl\", \"xsd\"],\n\t\t\"xspf+xml\": \"xspf\",\n\t\t\"zip\": \"zip\",\n\t\t\"vnd.android.package-archive\": \"apk\",\n\t\t\"vnd.cinderella\": \"cdy\",\n\t\t\"vnd.google-earth.kml+xml\": \"kml\",\n\t\t\"vnd.google-earth.kmz\": \"kmz\",\n\t\t\"vnd.mozilla.xul+xml\": \"xul\",\n\t\t\"vnd.ms-excel\": [\"xls\", \"xlb\", \"xlt\", \"xlm\", \"xla\", \"xlc\", \"xlw\"],\n\t\t\"vnd.ms-pki.seccat\": \"cat\",\n\t\t\"vnd.ms-pki.stl\": \"stl\",\n\t\t\"vnd.ms-powerpoint\": [\"ppt\", \"pps\", \"pot\"],\n\t\t\"vnd.oasis.opendocument.chart\": \"odc\",\n\t\t\"vnd.oasis.opendocument.database\": \"odb\",\n\t\t\"vnd.oasis.opendocument.formula\": \"odf\",\n\t\t\"vnd.oasis.opendocument.graphics\": \"odg\",\n\t\t\"vnd.oasis.opendocument.graphics-template\": \"otg\",\n\t\t\"vnd.oasis.opendocument.image\": \"odi\",\n\t\t\"vnd.oasis.opendocument.presentation\": \"odp\",\n\t\t\"vnd.oasis.opendocument.presentation-template\": \"otp\",\n\t\t\"vnd.oasis.opendocument.spreadsheet\": \"ods\",\n\t\t\"vnd.oasis.opendocument.spreadsheet-template\": \"ots\",\n\t\t\"vnd.oasis.opendocument.text\": \"odt\",\n\t\t\"vnd.oasis.opendocument.text-master\": \"odm\",\n\t\t\"vnd.oasis.opendocument.text-template\": \"ott\",\n\t\t\"vnd.oasis.opendocument.text-web\": \"oth\",\n\t\t\"vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"xlsx\",\n\t\t\"vnd.openxmlformats-officedocument.spreadsheetml.template\": \"xltx\",\n\t\t\"vnd.openxmlformats-officedocument.presentationml.presentation\": \"pptx\",\n\t\t\"vnd.openxmlformats-officedocument.presentationml.slideshow\": \"ppsx\",\n\t\t\"vnd.openxmlformats-officedocument.presentationml.template\": \"potx\",\n\t\t\"vnd.openxmlformats-officedocument.wordprocessingml.document\": \"docx\",\n\t\t\"vnd.openxmlformats-officedocument.wordprocessingml.template\": \"dotx\",\n\t\t\"vnd.smaf\": \"mmf\",\n\t\t\"vnd.stardivision.calc\": \"sdc\",\n\t\t\"vnd.stardivision.chart\": \"sds\",\n\t\t\"vnd.stardivision.draw\": \"sda\",\n\t\t\"vnd.stardivision.impress\": \"sdd\",\n\t\t\"vnd.stardivision.math\": [\"sdf\", \"smf\"],\n\t\t\"vnd.stardivision.writer\": [\"sdw\", \"vor\"],\n\t\t\"vnd.stardivision.writer-global\": \"sgl\",\n\t\t\"vnd.sun.xml.calc\": \"sxc\",\n\t\t\"vnd.sun.xml.calc.template\": \"stc\",\n\t\t\"vnd.sun.xml.draw\": \"sxd\",\n\t\t\"vnd.sun.xml.draw.template\": \"std\",\n\t\t\"vnd.sun.xml.impress\": \"sxi\",\n\t\t\"vnd.sun.xml.impress.template\": \"sti\",\n\t\t\"vnd.sun.xml.math\": \"sxm\",\n\t\t\"vnd.sun.xml.writer\": \"sxw\",\n\t\t\"vnd.sun.xml.writer.global\": \"sxg\",\n\t\t\"vnd.sun.xml.writer.template\": \"stw\",\n\t\t\"vnd.symbian.install\": [\"sis\", \"sisx\"],\n\t\t\"vnd.visio\": [\"vsd\", \"vst\", \"vss\", \"vsw\"],\n\t\t\"vnd.wap.wbxml\": \"wbxml\",\n\t\t\"vnd.wap.wmlc\": \"wmlc\",\n\t\t\"vnd.wap.wmlscriptc\": \"wmlsc\",\n\t\t\"vnd.wordperfect\": \"wpd\",\n\t\t\"vnd.wordperfect5.1\": \"wp5\",\n\t\t\"x-123\": \"wk\",\n\t\t\"x-7z-compressed\": \"7z\",\n\t\t\"x-abiword\": \"abw\",\n\t\t\"x-apple-diskimage\": \"dmg\",\n\t\t\"x-bcpio\": \"bcpio\",\n\t\t\"x-bittorrent\": \"torrent\",\n\t\t\"x-cbr\": [\"cbr\", \"cba\", \"cbt\", \"cb7\"],\n\t\t\"x-cbz\": \"cbz\",\n\t\t\"x-cdf\": [\"cdf\", \"cda\"],\n\t\t\"x-cdlink\": \"vcd\",\n\t\t\"x-chess-pgn\": \"pgn\",\n\t\t\"x-cpio\": \"cpio\",\n\t\t\"x-csh\": \"csh\",\n\t\t\"x-debian-package\": [\"deb\", \"udeb\"],\n\t\t\"x-director\": [\"dcr\", \"dir\", \"dxr\", \"cst\", \"cct\", \"cxt\", \"w3d\", \"fgd\", \"swa\"],\n\t\t\"x-dms\": \"dms\",\n\t\t\"x-doom\": \"wad\",\n\t\t\"x-dvi\": \"dvi\",\n\t\t\"x-httpd-eruby\": \"rhtml\",\n\t\t\"x-font\": \"pcf.Z\",\n\t\t\"x-freemind\": \"mm\",\n\t\t\"x-gnumeric\": \"gnumeric\",\n\t\t\"x-go-sgf\": \"sgf\",\n\t\t\"x-graphing-calculator\": \"gcf\",\n\t\t\"x-gtar\": [\"gtar\", \"taz\"],\n\t\t\"x-hdf\": \"hdf\",\n\t\t\"x-httpd-php\": [\"phtml\", \"pht\", \"php\"],\n\t\t\"x-httpd-php-source\": \"phps\",\n\t\t\"x-httpd-php3\": \"php3\",\n\t\t\"x-httpd-php3-preprocessed\": \"php3p\",\n\t\t\"x-httpd-php4\": \"php4\",\n\t\t\"x-httpd-php5\": \"php5\",\n\t\t\"x-ica\": \"ica\",\n\t\t\"x-info\": \"info\",\n\t\t\"x-internet-signup\": [\"ins\", \"isp\"],\n\t\t\"x-iphone\": \"iii\",\n\t\t\"x-iso9660-image\": \"iso\",\n\t\t\"x-java-jnlp-file\": \"jnlp\",\n\t\t\"x-jmol\": \"jmz\",\n\t\t\"x-killustrator\": \"kil\",\n\t\t\"x-koan\": [\"skp\", \"skd\", \"skt\", \"skm\"],\n\t\t\"x-kpresenter\": [\"kpr\", \"kpt\"],\n\t\t\"x-kword\": [\"kwd\", \"kwt\"],\n\t\t\"x-latex\": \"latex\",\n\t\t\"x-lha\": \"lha\",\n\t\t\"x-lyx\": \"lyx\",\n\t\t\"x-lzh\": \"lzh\",\n\t\t\"x-lzx\": \"lzx\",\n\t\t\"x-maker\": [\"frm\", \"maker\", \"frame\", \"fm\", \"fb\", \"book\", \"fbdoc\"],\n\t\t\"x-ms-wmd\": \"wmd\",\n\t\t\"x-ms-wmz\": \"wmz\",\n\t\t\"x-msdos-program\": [\"com\", \"exe\", \"bat\", \"dll\"],\n\t\t\"x-msi\": \"msi\",\n\t\t\"x-netcdf\": [\"nc\", \"cdf\"],\n\t\t\"x-ns-proxy-autoconfig\": [\"pac\", \"dat\"],\n\t\t\"x-nwc\": \"nwc\",\n\t\t\"x-object\": \"o\",\n\t\t\"x-oz-application\": \"oza\",\n\t\t\"x-pkcs7-certreqresp\": \"p7r\",\n\t\t\"x-python-code\": [\"pyc\", \"pyo\"],\n\t\t\"x-qgis\": [\"qgs\", \"shp\", \"shx\"],\n\t\t\"x-quicktimeplayer\": \"qtl\",\n\t\t\"x-redhat-package-manager\": \"rpm\",\n\t\t\"x-ruby\": \"rb\",\n\t\t\"x-sh\": \"sh\",\n\t\t\"x-shar\": \"shar\",\n\t\t\"x-shockwave-flash\": [\"swf\", \"swfl\"],\n\t\t\"x-silverlight\": \"scr\",\n\t\t\"x-stuffit\": \"sit\",\n\t\t\"x-sv4cpio\": \"sv4cpio\",\n\t\t\"x-sv4crc\": \"sv4crc\",\n\t\t\"x-tar\": \"tar\",\n\t\t\"x-tcl\": \"tcl\",\n\t\t\"x-tex-gf\": \"gf\",\n\t\t\"x-tex-pk\": \"pk\",\n\t\t\"x-texinfo\": [\"texinfo\", \"texi\"],\n\t\t\"x-trash\": [\"~\", \"%\", \"bak\", \"old\", \"sik\"],\n\t\t\"x-troff\": [\"t\", \"tr\", \"roff\"],\n\t\t\"x-troff-man\": \"man\",\n\t\t\"x-troff-me\": \"me\",\n\t\t\"x-troff-ms\": \"ms\",\n\t\t\"x-ustar\": \"ustar\",\n\t\t\"x-wais-source\": \"src\",\n\t\t\"x-wingz\": \"wz\",\n\t\t\"x-x509-ca-cert\": [\"crt\", \"der\", \"cer\"],\n\t\t\"x-xcf\": \"xcf\",\n\t\t\"x-xfig\": \"fig\",\n\t\t\"x-xpinstall\": \"xpi\",\n\t\t\"applixware\": \"aw\",\n\t\t\"atomsvc+xml\": \"atomsvc\",\n\t\t\"ccxml+xml\": \"ccxml\",\n\t\t\"cdmi-capability\": \"cdmia\",\n\t\t\"cdmi-container\": \"cdmic\",\n\t\t\"cdmi-domain\": \"cdmid\",\n\t\t\"cdmi-object\": \"cdmio\",\n\t\t\"cdmi-queue\": \"cdmiq\",\n\t\t\"docbook+xml\": \"dbk\",\n\t\t\"dssc+der\": \"dssc\",\n\t\t\"dssc+xml\": \"xdssc\",\n\t\t\"emma+xml\": \"emma\",\n\t\t\"epub+zip\": \"epub\",\n\t\t\"exi\": \"exi\",\n\t\t\"font-tdpfr\": \"pfr\",\n\t\t\"gml+xml\": \"gml\",\n\t\t\"gpx+xml\": \"gpx\",\n\t\t\"gxf\": \"gxf\",\n\t\t\"hyperstudio\": \"stk\",\n\t\t\"inkml+xml\": [\"ink\", \"inkml\"],\n\t\t\"ipfix\": \"ipfix\",\n\t\t\"json\": \"json\",\n\t\t\"jsonml+json\": \"jsonml\",\n\t\t\"lost+xml\": \"lostxml\",\n\t\t\"mads+xml\": \"mads\",\n\t\t\"marc\": \"mrc\",\n\t\t\"marcxml+xml\": \"mrcx\",\n\t\t\"mathml+xml\": \"mathml\",\n\t\t\"mbox\": \"mbox\",\n\t\t\"mediaservercontrol+xml\": \"mscml\",\n\t\t\"metalink+xml\": \"metalink\",\n\t\t\"metalink4+xml\": \"meta4\",\n\t\t\"mets+xml\": \"mets\",\n\t\t\"mods+xml\": \"mods\",\n\t\t\"mp21\": [\"m21\", \"mp21\"],\n\t\t\"mp4\": \"mp4s\",\n\t\t\"oebps-package+xml\": \"opf\",\n\t\t\"omdoc+xml\": \"omdoc\",\n\t\t\"onenote\": [\"onetoc\", \"onetoc2\", \"onetmp\", \"onepkg\"],\n\t\t\"oxps\": \"oxps\",\n\t\t\"patch-ops-error+xml\": \"xer\",\n\t\t\"pgp-encrypted\": \"pgp\",\n\t\t\"pkcs10\": \"p10\",\n\t\t\"pkcs7-mime\": [\"p7m\", \"p7c\"],\n\t\t\"pkcs7-signature\": \"p7s\",\n\t\t\"pkcs8\": \"p8\",\n\t\t\"pkix-attr-cert\": \"ac\",\n\t\t\"pkix-crl\": \"crl\",\n\t\t\"pkix-pkipath\": \"pkipath\",\n\t\t\"pkixcmp\": \"pki\",\n\t\t\"pls+xml\": \"pls\",\n\t\t\"prs.cww\": \"cww\",\n\t\t\"pskc+xml\": \"pskcxml\",\n\t\t\"reginfo+xml\": \"rif\",\n\t\t\"relax-ng-compact-syntax\": \"rnc\",\n\t\t\"resource-lists+xml\": \"rl\",\n\t\t\"resource-lists-diff+xml\": \"rld\",\n\t\t\"rls-services+xml\": \"rs\",\n\t\t\"rpki-ghostbusters\": \"gbr\",\n\t\t\"rpki-manifest\": \"mft\",\n\t\t\"rpki-roa\": \"roa\",\n\t\t\"rsd+xml\": \"rsd\",\n\t\t\"sbml+xml\": \"sbml\",\n\t\t\"scvp-cv-request\": \"scq\",\n\t\t\"scvp-cv-response\": \"scs\",\n\t\t\"scvp-vp-request\": \"spq\",\n\t\t\"scvp-vp-response\": \"spp\",\n\t\t\"sdp\": \"sdp\",\n\t\t\"set-payment-initiation\": \"setpay\",\n\t\t\"set-registration-initiation\": \"setreg\",\n\t\t\"shf+xml\": \"shf\",\n\t\t\"sparql-query\": \"rq\",\n\t\t\"sparql-results+xml\": \"srx\",\n\t\t\"srgs\": \"gram\",\n\t\t\"srgs+xml\": \"grxml\",\n\t\t\"sru+xml\": \"sru\",\n\t\t\"ssdl+xml\": \"ssdl\",\n\t\t\"ssml+xml\": \"ssml\",\n\t\t\"tei+xml\": [\"tei\", \"teicorpus\"],\n\t\t\"thraud+xml\": \"tfi\",\n\t\t\"timestamped-data\": \"tsd\",\n\t\t\"vnd.3gpp.pic-bw-large\": \"plb\",\n\t\t\"vnd.3gpp.pic-bw-small\": \"psb\",\n\t\t\"vnd.3gpp.pic-bw-var\": \"pvb\",\n\t\t\"vnd.3gpp2.tcap\": \"tcap\",\n\t\t\"vnd.3m.post-it-notes\": \"pwn\",\n\t\t\"vnd.accpac.simply.aso\": \"aso\",\n\t\t\"vnd.accpac.simply.imp\": \"imp\",\n\t\t\"vnd.acucobol\": \"acu\",\n\t\t\"vnd.acucorp\": [\"atc\", \"acutc\"],\n\t\t\"vnd.adobe.air-application-installer-package+zip\": \"air\",\n\t\t\"vnd.adobe.formscentral.fcdt\": \"fcdt\",\n\t\t\"vnd.adobe.fxp\": [\"fxp\", \"fxpl\"],\n\t\t\"vnd.adobe.xdp+xml\": \"xdp\",\n\t\t\"vnd.adobe.xfdf\": \"xfdf\",\n\t\t\"vnd.ahead.space\": \"ahead\",\n\t\t\"vnd.airzip.filesecure.azf\": \"azf\",\n\t\t\"vnd.airzip.filesecure.azs\": \"azs\",\n\t\t\"vnd.amazon.ebook\": \"azw\",\n\t\t\"vnd.americandynamics.acc\": \"acc\",\n\t\t\"vnd.amiga.ami\": \"ami\",\n\t\t\"vnd.anser-web-certificate-issue-initiation\": \"cii\",\n\t\t\"vnd.anser-web-funds-transfer-initiation\": \"fti\",\n\t\t\"vnd.antix.game-component\": \"atx\",\n\t\t\"vnd.apple.installer+xml\": \"mpkg\",\n\t\t\"vnd.apple.mpegurl\": \"m3u8\",\n\t\t\"vnd.aristanetworks.swi\": \"swi\",\n\t\t\"vnd.astraea-software.iota\": \"iota\",\n\t\t\"vnd.audiograph\": \"aep\",\n\t\t\"vnd.blueice.multipass\": \"mpm\",\n\t\t\"vnd.bmi\": \"bmi\",\n\t\t\"vnd.businessobjects\": \"rep\",\n\t\t\"vnd.chemdraw+xml\": \"cdxml\",\n\t\t\"vnd.chipnuts.karaoke-mmd\": \"mmd\",\n\t\t\"vnd.claymore\": \"cla\",\n\t\t\"vnd.cloanto.rp9\": \"rp9\",\n\t\t\"vnd.clonk.c4group\": [\"c4g\", \"c4d\", \"c4f\", \"c4p\", \"c4u\"],\n\t\t\"vnd.cluetrust.cartomobile-config\": \"c11amc\",\n\t\t\"vnd.cluetrust.cartomobile-config-pkg\": \"c11amz\",\n\t\t\"vnd.commonspace\": \"csp\",\n\t\t\"vnd.contact.cmsg\": \"cdbcmsg\",\n\t\t\"vnd.cosmocaller\": \"cmc\",\n\t\t\"vnd.crick.clicker\": \"clkx\",\n\t\t\"vnd.crick.clicker.keyboard\": \"clkk\",\n\t\t\"vnd.crick.clicker.palette\": \"clkp\",\n\t\t\"vnd.crick.clicker.template\": \"clkt\",\n\t\t\"vnd.crick.clicker.wordbank\": \"clkw\",\n\t\t\"vnd.criticaltools.wbs+xml\": \"wbs\",\n\t\t\"vnd.ctc-posml\": \"pml\",\n\t\t\"vnd.cups-ppd\": \"ppd\",\n\t\t\"vnd.curl.car\": \"car\",\n\t\t\"vnd.curl.pcurl\": \"pcurl\",\n\t\t\"vnd.dart\": \"dart\",\n\t\t\"vnd.data-vision.rdz\": \"rdz\",\n\t\t\"vnd.dece.data\": [\"uvf\", \"uvvf\", \"uvd\", \"uvvd\"],\n\t\t\"vnd.dece.ttml+xml\": [\"uvt\", \"uvvt\"],\n\t\t\"vnd.dece.unspecified\": [\"uvx\", \"uvvx\"],\n\t\t\"vnd.dece.zip\": [\"uvz\", \"uvvz\"],\n\t\t\"vnd.denovo.fcselayout-link\": \"fe_launch\",\n\t\t\"vnd.dna\": \"dna\",\n\t\t\"vnd.dolby.mlp\": \"mlp\",\n\t\t\"vnd.dpgraph\": \"dpg\",\n\t\t\"vnd.dreamfactory\": \"dfac\",\n\t\t\"vnd.ds-keypoint\": \"kpxx\",\n\t\t\"vnd.dvb.ait\": \"ait\",\n\t\t\"vnd.dvb.service\": \"svc\",\n\t\t\"vnd.dynageo\": \"geo\",\n\t\t\"vnd.ecowin.chart\": \"mag\",\n\t\t\"vnd.enliven\": \"nml\",\n\t\t\"vnd.epson.esf\": \"esf\",\n\t\t\"vnd.epson.msf\": \"msf\",\n\t\t\"vnd.epson.quickanime\": \"qam\",\n\t\t\"vnd.epson.salt\": \"slt\",\n\t\t\"vnd.epson.ssf\": \"ssf\",\n\t\t\"vnd.eszigno3+xml\": [\"es3\", \"et3\"],\n\t\t\"vnd.ezpix-album\": \"ez2\",\n\t\t\"vnd.ezpix-package\": \"ez3\",\n\t\t\"vnd.fdf\": \"fdf\",\n\t\t\"vnd.fdsn.mseed\": \"mseed\",\n\t\t\"vnd.fdsn.seed\": [\"seed\", \"dataless\"],\n\t\t\"vnd.flographit\": \"gph\",\n\t\t\"vnd.fluxtime.clip\": \"ftc\",\n\t\t\"vnd.framemaker\": [\"fm\", \"frame\", \"maker\", \"book\"],\n\t\t\"vnd.frogans.fnc\": \"fnc\",\n\t\t\"vnd.frogans.ltf\": \"ltf\",\n\t\t\"vnd.fsc.weblaunch\": \"fsc\",\n\t\t\"vnd.fujitsu.oasys\": \"oas\",\n\t\t\"vnd.fujitsu.oasys2\": \"oa2\",\n\t\t\"vnd.fujitsu.oasys3\": \"oa3\",\n\t\t\"vnd.fujitsu.oasysgp\": \"fg5\",\n\t\t\"vnd.fujitsu.oasysprs\": \"bh2\",\n\t\t\"vnd.fujixerox.ddd\": \"ddd\",\n\t\t\"vnd.fujixerox.docuworks\": \"xdw\",\n\t\t\"vnd.fujixerox.docuworks.binder\": \"xbd\",\n\t\t\"vnd.fuzzysheet\": \"fzs\",\n\t\t\"vnd.genomatix.tuxedo\": \"txd\",\n\t\t\"vnd.geogebra.file\": \"ggb\",\n\t\t\"vnd.geogebra.tool\": \"ggt\",\n\t\t\"vnd.geometry-explorer\": [\"gex\", \"gre\"],\n\t\t\"vnd.geonext\": \"gxt\",\n\t\t\"vnd.geoplan\": \"g2w\",\n\t\t\"vnd.geospace\": \"g3w\",\n\t\t\"vnd.gmx\": \"gmx\",\n\t\t\"vnd.grafeq\": [\"gqf\", \"gqs\"],\n\t\t\"vnd.groove-account\": \"gac\",\n\t\t\"vnd.groove-help\": \"ghf\",\n\t\t\"vnd.groove-identity-message\": \"gim\",\n\t\t\"vnd.groove-injector\": \"grv\",\n\t\t\"vnd.groove-tool-message\": \"gtm\",\n\t\t\"vnd.groove-tool-template\": \"tpl\",\n\t\t\"vnd.groove-vcard\": \"vcg\",\n\t\t\"vnd.hal+xml\": \"hal\",\n\t\t\"vnd.handheld-entertainment+xml\": \"zmm\",\n\t\t\"vnd.hbci\": \"hbci\",\n\t\t\"vnd.hhe.lesson-player\": \"les\",\n\t\t\"vnd.hp-hpgl\": \"hpgl\",\n\t\t\"vnd.hp-hpid\": \"hpid\",\n\t\t\"vnd.hp-hps\": \"hps\",\n\t\t\"vnd.hp-jlyt\": \"jlt\",\n\t\t\"vnd.hp-pcl\": \"pcl\",\n\t\t\"vnd.hp-pclxl\": \"pclxl\",\n\t\t\"vnd.hydrostatix.sof-data\": \"sfd-hdstx\",\n\t\t\"vnd.ibm.minipay\": \"mpy\",\n\t\t\"vnd.ibm.modcap\": [\"afp\", \"listafp\", \"list3820\"],\n\t\t\"vnd.ibm.rights-management\": \"irm\",\n\t\t\"vnd.ibm.secure-container\": \"sc\",\n\t\t\"vnd.iccprofile\": [\"icc\", \"icm\"],\n\t\t\"vnd.igloader\": \"igl\",\n\t\t\"vnd.immervision-ivp\": \"ivp\",\n\t\t\"vnd.immervision-ivu\": \"ivu\",\n\t\t\"vnd.insors.igm\": \"igm\",\n\t\t\"vnd.intercon.formnet\": [\"xpw\", \"xpx\"],\n\t\t\"vnd.intergeo\": \"i2g\",\n\t\t\"vnd.intu.qbo\": \"qbo\",\n\t\t\"vnd.intu.qfx\": \"qfx\",\n\t\t\"vnd.ipunplugged.rcprofile\": \"rcprofile\",\n\t\t\"vnd.irepository.package+xml\": \"irp\",\n\t\t\"vnd.is-xpr\": \"xpr\",\n\t\t\"vnd.isac.fcs\": \"fcs\",\n\t\t\"vnd.jam\": \"jam\",\n\t\t\"vnd.jcp.javame.midlet-rms\": \"rms\",\n\t\t\"vnd.jisp\": \"jisp\",\n\t\t\"vnd.joost.joda-archive\": \"joda\",\n\t\t\"vnd.kahootz\": [\"ktz\", \"ktr\"],\n\t\t\"vnd.kde.karbon\": \"karbon\",\n\t\t\"vnd.kde.kchart\": \"chrt\",\n\t\t\"vnd.kde.kformula\": \"kfo\",\n\t\t\"vnd.kde.kivio\": \"flw\",\n\t\t\"vnd.kde.kontour\": \"kon\",\n\t\t\"vnd.kde.kpresenter\": [\"kpr\", \"kpt\"],\n\t\t\"vnd.kde.kspread\": \"ksp\",\n\t\t\"vnd.kde.kword\": [\"kwd\", \"kwt\"],\n\t\t\"vnd.kenameaapp\": \"htke\",\n\t\t\"vnd.kidspiration\": \"kia\",\n\t\t\"vnd.kinar\": [\"kne\", \"knp\"],\n\t\t\"vnd.koan\": [\"skp\", \"skd\", \"skt\", \"skm\"],\n\t\t\"vnd.kodak-descriptor\": \"sse\",\n\t\t\"vnd.las.las+xml\": \"lasxml\",\n\t\t\"vnd.llamagraphics.life-balance.desktop\": \"lbd\",\n\t\t\"vnd.llamagraphics.life-balance.exchange+xml\": \"lbe\",\n\t\t\"vnd.lotus-1-2-3\": \"123\",\n\t\t\"vnd.lotus-approach\": \"apr\",\n\t\t\"vnd.lotus-freelance\": \"pre\",\n\t\t\"vnd.lotus-notes\": \"nsf\",\n\t\t\"vnd.lotus-organizer\": \"org\",\n\t\t\"vnd.lotus-screencam\": \"scm\",\n\t\t\"vnd.lotus-wordpro\": \"lwp\",\n\t\t\"vnd.macports.portpkg\": \"portpkg\",\n\t\t\"vnd.mcd\": \"mcd\",\n\t\t\"vnd.medcalcdata\": \"mc1\",\n\t\t\"vnd.mediastation.cdkey\": \"cdkey\",\n\t\t\"vnd.mfer\": \"mwf\",\n\t\t\"vnd.mfmp\": \"mfm\",\n\t\t\"vnd.micrografx.flo\": \"flo\",\n\t\t\"vnd.micrografx.igx\": \"igx\",\n\t\t\"vnd.mif\": \"mif\",\n\t\t\"vnd.mobius.daf\": \"daf\",\n\t\t\"vnd.mobius.dis\": \"dis\",\n\t\t\"vnd.mobius.mbk\": \"mbk\",\n\t\t\"vnd.mobius.mqy\": \"mqy\",\n\t\t\"vnd.mobius.msl\": \"msl\",\n\t\t\"vnd.mobius.plc\": \"plc\",\n\t\t\"vnd.mobius.txf\": \"txf\",\n\t\t\"vnd.mophun.application\": \"mpn\",\n\t\t\"vnd.mophun.certificate\": \"mpc\",\n\t\t\"vnd.ms-artgalry\": \"cil\",\n\t\t\"vnd.ms-cab-compressed\": \"cab\",\n\t\t\"vnd.ms-excel.addin.macroenabled.12\": \"xlam\",\n\t\t\"vnd.ms-excel.sheet.binary.macroenabled.12\": \"xlsb\",\n\t\t\"vnd.ms-excel.sheet.macroenabled.12\": \"xlsm\",\n\t\t\"vnd.ms-excel.template.macroenabled.12\": \"xltm\",\n\t\t\"vnd.ms-fontobject\": \"eot\",\n\t\t\"vnd.ms-htmlhelp\": \"chm\",\n\t\t\"vnd.ms-ims\": \"ims\",\n\t\t\"vnd.ms-lrm\": \"lrm\",\n\t\t\"vnd.ms-officetheme\": \"thmx\",\n\t\t\"vnd.ms-powerpoint.addin.macroenabled.12\": \"ppam\",\n\t\t\"vnd.ms-powerpoint.presentation.macroenabled.12\": \"pptm\",\n\t\t\"vnd.ms-powerpoint.slide.macroenabled.12\": \"sldm\",\n\t\t\"vnd.ms-powerpoint.slideshow.macroenabled.12\": \"ppsm\",\n\t\t\"vnd.ms-powerpoint.template.macroenabled.12\": \"potm\",\n\t\t\"vnd.ms-project\": [\"mpp\", \"mpt\"],\n\t\t\"vnd.ms-word.document.macroenabled.12\": \"docm\",\n\t\t\"vnd.ms-word.template.macroenabled.12\": \"dotm\",\n\t\t\"vnd.ms-works\": [\"wps\", \"wks\", \"wcm\", \"wdb\"],\n\t\t\"vnd.ms-wpl\": \"wpl\",\n\t\t\"vnd.ms-xpsdocument\": \"xps\",\n\t\t\"vnd.mseq\": \"mseq\",\n\t\t\"vnd.musician\": \"mus\",\n\t\t\"vnd.muvee.style\": \"msty\",\n\t\t\"vnd.mynfc\": \"taglet\",\n\t\t\"vnd.neurolanguage.nlu\": \"nlu\",\n\t\t\"vnd.nitf\": [\"ntf\", \"nitf\"],\n\t\t\"vnd.noblenet-directory\": \"nnd\",\n\t\t\"vnd.noblenet-sealer\": \"nns\",\n\t\t\"vnd.noblenet-web\": \"nnw\",\n\t\t\"vnd.nokia.n-gage.data\": \"ngdat\",\n\t\t\"vnd.nokia.n-gage.symbian.install\": \"n-gage\",\n\t\t\"vnd.nokia.radio-preset\": \"rpst\",\n\t\t\"vnd.nokia.radio-presets\": \"rpss\",\n\t\t\"vnd.novadigm.edm\": \"edm\",\n\t\t\"vnd.novadigm.edx\": \"edx\",\n\t\t\"vnd.novadigm.ext\": \"ext\",\n\t\t\"vnd.oasis.opendocument.chart-template\": \"otc\",\n\t\t\"vnd.oasis.opendocument.formula-template\": \"odft\",\n\t\t\"vnd.oasis.opendocument.image-template\": \"oti\",\n\t\t\"vnd.olpc-sugar\": \"xo\",\n\t\t\"vnd.oma.dd2+xml\": \"dd2\",\n\t\t\"vnd.openofficeorg.extension\": \"oxt\",\n\t\t\"vnd.openxmlformats-officedocument.presentationml.slide\": \"sldx\",\n\t\t\"vnd.osgeo.mapguide.package\": \"mgp\",\n\t\t\"vnd.osgi.dp\": \"dp\",\n\t\t\"vnd.osgi.subsystem\": \"esa\",\n\t\t\"vnd.palm\": [\"pdb\", \"pqa\", \"oprc\"],\n\t\t\"vnd.pawaafile\": \"paw\",\n\t\t\"vnd.pg.format\": \"str\",\n\t\t\"vnd.pg.osasli\": \"ei6\",\n\t\t\"vnd.picsel\": \"efif\",\n\t\t\"vnd.pmi.widget\": \"wg\",\n\t\t\"vnd.pocketlearn\": \"plf\",\n\t\t\"vnd.powerbuilder6\": \"pbd\",\n\t\t\"vnd.previewsystems.box\": \"box\",\n\t\t\"vnd.proteus.magazine\": \"mgz\",\n\t\t\"vnd.publishare-delta-tree\": \"qps\",\n\t\t\"vnd.pvi.ptid1\": \"ptid\",\n\t\t\"vnd.quark.quarkxpress\": [\"qxd\", \"qxt\", \"qwd\", \"qwt\", \"qxl\", \"qxb\"],\n\t\t\"vnd.realvnc.bed\": \"bed\",\n\t\t\"vnd.recordare.musicxml\": \"mxl\",\n\t\t\"vnd.recordare.musicxml+xml\": \"musicxml\",\n\t\t\"vnd.rig.cryptonote\": \"cryptonote\",\n\t\t\"vnd.rn-realmedia\": \"rm\",\n\t\t\"vnd.rn-realmedia-vbr\": \"rmvb\",\n\t\t\"vnd.route66.link66+xml\": \"link66\",\n\t\t\"vnd.sailingtracker.track\": \"st\",\n\t\t\"vnd.seemail\": \"see\",\n\t\t\"vnd.sema\": \"sema\",\n\t\t\"vnd.semd\": \"semd\",\n\t\t\"vnd.semf\": \"semf\",\n\t\t\"vnd.shana.informed.formdata\": \"ifm\",\n\t\t\"vnd.shana.informed.formtemplate\": \"itp\",\n\t\t\"vnd.shana.informed.interchange\": \"iif\",\n\t\t\"vnd.shana.informed.package\": \"ipk\",\n\t\t\"vnd.simtech-mindmapper\": [\"twd\", \"twds\"],\n\t\t\"vnd.smart.teacher\": \"teacher\",\n\t\t\"vnd.solent.sdkm+xml\": [\"sdkm\", \"sdkd\"],\n\t\t\"vnd.spotfire.dxp\": \"dxp\",\n\t\t\"vnd.spotfire.sfs\": \"sfs\",\n\t\t\"vnd.stepmania.package\": \"smzip\",\n\t\t\"vnd.stepmania.stepchart\": \"sm\",\n\t\t\"vnd.sus-calendar\": [\"sus\", \"susp\"],\n\t\t\"vnd.svd\": \"svd\",\n\t\t\"vnd.syncml+xml\": \"xsm\",\n\t\t\"vnd.syncml.dm+wbxml\": \"bdm\",\n\t\t\"vnd.syncml.dm+xml\": \"xdm\",\n\t\t\"vnd.tao.intent-module-archive\": \"tao\",\n\t\t\"vnd.tcpdump.pcap\": [\"pcap\", \"cap\", \"dmp\"],\n\t\t\"vnd.tmobile-livetv\": \"tmo\",\n\t\t\"vnd.trid.tpt\": \"tpt\",\n\t\t\"vnd.triscape.mxs\": \"mxs\",\n\t\t\"vnd.trueapp\": \"tra\",\n\t\t\"vnd.ufdl\": [\"ufd\", \"ufdl\"],\n\t\t\"vnd.uiq.theme\": \"utz\",\n\t\t\"vnd.umajin\": \"umj\",\n\t\t\"vnd.unity\": \"unityweb\",\n\t\t\"vnd.uoml+xml\": \"uoml\",\n\t\t\"vnd.vcx\": \"vcx\",\n\t\t\"vnd.visionary\": \"vis\",\n\t\t\"vnd.vsf\": \"vsf\",\n\t\t\"vnd.webturbo\": \"wtb\",\n\t\t\"vnd.wolfram.player\": \"nbp\",\n\t\t\"vnd.wqd\": \"wqd\",\n\t\t\"vnd.wt.stf\": \"stf\",\n\t\t\"vnd.xara\": \"xar\",\n\t\t\"vnd.xfdl\": \"xfdl\",\n\t\t\"vnd.yamaha.hv-dic\": \"hvd\",\n\t\t\"vnd.yamaha.hv-script\": \"hvs\",\n\t\t\"vnd.yamaha.hv-voice\": \"hvp\",\n\t\t\"vnd.yamaha.openscoreformat\": \"osf\",\n\t\t\"vnd.yamaha.openscoreformat.osfpvg+xml\": \"osfpvg\",\n\t\t\"vnd.yamaha.smaf-audio\": \"saf\",\n\t\t\"vnd.yamaha.smaf-phrase\": \"spf\",\n\t\t\"vnd.yellowriver-custom-menu\": \"cmp\",\n\t\t\"vnd.zul\": [\"zir\", \"zirz\"],\n\t\t\"vnd.zzazz.deck+xml\": \"zaz\",\n\t\t\"voicexml+xml\": \"vxml\",\n\t\t\"widget\": \"wgt\",\n\t\t\"winhlp\": \"hlp\",\n\t\t\"wsdl+xml\": \"wsdl\",\n\t\t\"wspolicy+xml\": \"wspolicy\",\n\t\t\"x-ace-compressed\": \"ace\",\n\t\t\"x-authorware-bin\": [\"aab\", \"x32\", \"u32\", \"vox\"],\n\t\t\"x-authorware-map\": \"aam\",\n\t\t\"x-authorware-seg\": \"aas\",\n\t\t\"x-blorb\": [\"blb\", \"blorb\"],\n\t\t\"x-bzip\": \"bz\",\n\t\t\"x-bzip2\": [\"bz2\", \"boz\"],\n\t\t\"x-cfs-compressed\": \"cfs\",\n\t\t\"x-chat\": \"chat\",\n\t\t\"x-conference\": \"nsc\",\n\t\t\"x-dgc-compressed\": \"dgc\",\n\t\t\"x-dtbncx+xml\": \"ncx\",\n\t\t\"x-dtbook+xml\": \"dtb\",\n\t\t\"x-dtbresource+xml\": \"res\",\n\t\t\"x-eva\": \"eva\",\n\t\t\"x-font-bdf\": \"bdf\",\n\t\t\"x-font-ghostscript\": \"gsf\",\n\t\t\"x-font-linux-psf\": \"psf\",\n\t\t\"x-font-otf\": \"otf\",\n\t\t\"x-font-pcf\": \"pcf\",\n\t\t\"x-font-snf\": \"snf\",\n\t\t\"x-font-ttf\": [\"ttf\", \"ttc\"],\n\t\t\"x-font-type1\": [\"pfa\", \"pfb\", \"pfm\", \"afm\"],\n\t\t\"x-font-woff\": \"woff\",\n\t\t\"x-freearc\": \"arc\",\n\t\t\"x-gca-compressed\": \"gca\",\n\t\t\"x-glulx\": \"ulx\",\n\t\t\"x-gramps-xml\": \"gramps\",\n\t\t\"x-install-instructions\": \"install\",\n\t\t\"x-lzh-compressed\": [\"lzh\", \"lha\"],\n\t\t\"x-mie\": \"mie\",\n\t\t\"x-mobipocket-ebook\": [\"prc\", \"mobi\"],\n\t\t\"x-ms-application\": \"application\",\n\t\t\"x-ms-shortcut\": \"lnk\",\n\t\t\"x-ms-xbap\": \"xbap\",\n\t\t\"x-msbinder\": \"obd\",\n\t\t\"x-mscardfile\": \"crd\",\n\t\t\"x-msclip\": \"clp\",\n\t\t\"x-msdownload\": [\"exe\", \"dll\", \"com\", \"bat\", \"msi\"],\n\t\t\"x-msmediaview\": [\"mvb\", \"m13\", \"m14\"],\n\t\t\"x-msmetafile\": [\"wmf\", \"wmz\", \"emf\", \"emz\"],\n\t\t\"x-msmoney\": \"mny\",\n\t\t\"x-mspublisher\": \"pub\",\n\t\t\"x-msschedule\": \"scd\",\n\t\t\"x-msterminal\": \"trm\",\n\t\t\"x-mswrite\": \"wri\",\n\t\t\"x-nzb\": \"nzb\",\n\t\t\"x-pkcs12\": [\"p12\", \"pfx\"],\n\t\t\"x-pkcs7-certificates\": [\"p7b\", \"spc\"],\n\t\t\"x-research-info-systems\": \"ris\",\n\t\t\"x-silverlight-app\": \"xap\",\n\t\t\"x-sql\": \"sql\",\n\t\t\"x-stuffitx\": \"sitx\",\n\t\t\"x-subrip\": \"srt\",\n\t\t\"x-t3vm-image\": \"t3\",\n\t\t\"x-tads\": \"gam\",\n\t\t\"x-tex\": \"tex\",\n\t\t\"x-tex-tfm\": \"tfm\",\n\t\t\"x-tgif\": \"obj\",\n\t\t\"x-xliff+xml\": \"xlf\",\n\t\t\"x-xz\": \"xz\",\n\t\t\"x-zmachine\": [\"z1\", \"z2\", \"z3\", \"z4\", \"z5\", \"z6\", \"z7\", \"z8\"],\n\t\t\"xaml+xml\": \"xaml\",\n\t\t\"xcap-diff+xml\": \"xdf\",\n\t\t\"xenc+xml\": \"xenc\",\n\t\t\"xml-dtd\": \"dtd\",\n\t\t\"xop+xml\": \"xop\",\n\t\t\"xproc+xml\": \"xpl\",\n\t\t\"xslt+xml\": \"xslt\",\n\t\t\"xv+xml\": [\"mxml\", \"xhvml\", \"xvml\", \"xvm\"],\n\t\t\"yang\": \"yang\",\n\t\t\"yin+xml\": \"yin\",\n\t\t\"envoy\": \"evy\",\n\t\t\"fractals\": \"fif\",\n\t\t\"internet-property-stream\": \"acx\",\n\t\t\"olescript\": \"axs\",\n\t\t\"vnd.ms-outlook\": \"msg\",\n\t\t\"vnd.ms-pkicertstore\": \"sst\",\n\t\t\"x-compress\": \"z\",\n\t\t\"x-compressed\": \"tgz\",\n\t\t\"x-gzip\": \"gz\",\n\t\t\"x-perfmon\": [\"pma\", \"pmc\", \"pml\", \"pmr\", \"pmw\"],\n\t\t\"x-pkcs7-mime\": [\"p7c\", \"p7m\"],\n\t\t\"ynd.ms-pkipko\": \"pko\"\n\t},\n\t\"audio\": {\n\t\t\"amr\": \"amr\",\n\t\t\"amr-wb\": \"awb\",\n\t\t\"annodex\": \"axa\",\n\t\t\"basic\": [\"au\", \"snd\"],\n\t\t\"flac\": \"flac\",\n\t\t\"midi\": [\"mid\", \"midi\", \"kar\", \"rmi\"],\n\t\t\"mpeg\": [\"mpga\", \"mpega\", \"mp2\", \"mp3\", \"m4a\", \"mp2a\", \"m2a\", \"m3a\"],\n\t\t\"mpegurl\": \"m3u\",\n\t\t\"ogg\": [\"oga\", \"ogg\", \"spx\"],\n\t\t\"prs.sid\": \"sid\",\n\t\t\"x-aiff\": [\"aif\", \"aiff\", \"aifc\"],\n\t\t\"x-gsm\": \"gsm\",\n\t\t\"x-ms-wma\": \"wma\",\n\t\t\"x-ms-wax\": \"wax\",\n\t\t\"x-pn-realaudio\": \"ram\",\n\t\t\"x-realaudio\": \"ra\",\n\t\t\"x-sd2\": \"sd2\",\n\t\t\"x-wav\": \"wav\",\n\t\t\"adpcm\": \"adp\",\n\t\t\"mp4\": \"mp4a\",\n\t\t\"s3m\": \"s3m\",\n\t\t\"silk\": \"sil\",\n\t\t\"vnd.dece.audio\": [\"uva\", \"uvva\"],\n\t\t\"vnd.digital-winds\": \"eol\",\n\t\t\"vnd.dra\": \"dra\",\n\t\t\"vnd.dts\": \"dts\",\n\t\t\"vnd.dts.hd\": \"dtshd\",\n\t\t\"vnd.lucent.voice\": \"lvp\",\n\t\t\"vnd.ms-playready.media.pya\": \"pya\",\n\t\t\"vnd.nuera.ecelp4800\": \"ecelp4800\",\n\t\t\"vnd.nuera.ecelp7470\": \"ecelp7470\",\n\t\t\"vnd.nuera.ecelp9600\": \"ecelp9600\",\n\t\t\"vnd.rip\": \"rip\",\n\t\t\"webm\": \"weba\",\n\t\t\"x-aac\": \"aac\",\n\t\t\"x-caf\": \"caf\",\n\t\t\"x-matroska\": \"mka\",\n\t\t\"x-pn-realaudio-plugin\": \"rmp\",\n\t\t\"xm\": \"xm\",\n\t\t\"mid\": [\"mid\", \"rmi\"]\n\t},\n\t\"chemical\": {\n\t\t\"x-alchemy\": \"alc\",\n\t\t\"x-cache\": [\"cac\", \"cache\"],\n\t\t\"x-cache-csf\": \"csf\",\n\t\t\"x-cactvs-binary\": [\"cbin\", \"cascii\", \"ctab\"],\n\t\t\"x-cdx\": \"cdx\",\n\t\t\"x-chem3d\": \"c3d\",\n\t\t\"x-cif\": \"cif\",\n\t\t\"x-cmdf\": \"cmdf\",\n\t\t\"x-cml\": \"cml\",\n\t\t\"x-compass\": \"cpa\",\n\t\t\"x-crossfire\": \"bsd\",\n\t\t\"x-csml\": [\"csml\", \"csm\"],\n\t\t\"x-ctx\": \"ctx\",\n\t\t\"x-cxf\": [\"cxf\", \"cef\"],\n\t\t\"x-embl-dl-nucleotide\": [\"emb\", \"embl\"],\n\t\t\"x-gamess-input\": [\"inp\", \"gam\", \"gamin\"],\n\t\t\"x-gaussian-checkpoint\": [\"fch\", \"fchk\"],\n\t\t\"x-gaussian-cube\": \"cub\",\n\t\t\"x-gaussian-input\": [\"gau\", \"gjc\", \"gjf\"],\n\t\t\"x-gaussian-log\": \"gal\",\n\t\t\"x-gcg8-sequence\": \"gcg\",\n\t\t\"x-genbank\": \"gen\",\n\t\t\"x-hin\": \"hin\",\n\t\t\"x-isostar\": [\"istr\", \"ist\"],\n\t\t\"x-jcamp-dx\": [\"jdx\", \"dx\"],\n\t\t\"x-kinemage\": \"kin\",\n\t\t\"x-macmolecule\": \"mcm\",\n\t\t\"x-macromodel-input\": [\"mmd\", \"mmod\"],\n\t\t\"x-mdl-molfile\": \"mol\",\n\t\t\"x-mdl-rdfile\": \"rd\",\n\t\t\"x-mdl-rxnfile\": \"rxn\",\n\t\t\"x-mdl-sdfile\": [\"sd\", \"sdf\"],\n\t\t\"x-mdl-tgf\": \"tgf\",\n\t\t\"x-mmcif\": \"mcif\",\n\t\t\"x-mol2\": \"mol2\",\n\t\t\"x-molconn-Z\": \"b\",\n\t\t\"x-mopac-graph\": \"gpt\",\n\t\t\"x-mopac-input\": [\"mop\", \"mopcrt\", \"mpc\", \"zmt\"],\n\t\t\"x-mopac-out\": \"moo\",\n\t\t\"x-ncbi-asn1\": \"asn\",\n\t\t\"x-ncbi-asn1-ascii\": [\"prt\", \"ent\"],\n\t\t\"x-ncbi-asn1-binary\": [\"val\", \"aso\"],\n\t\t\"x-pdb\": [\"pdb\", \"ent\"],\n\t\t\"x-rosdal\": \"ros\",\n\t\t\"x-swissprot\": \"sw\",\n\t\t\"x-vamas-iso14976\": \"vms\",\n\t\t\"x-vmd\": \"vmd\",\n\t\t\"x-xtel\": \"xtel\",\n\t\t\"x-xyz\": \"xyz\"\n\t},\n\t\"image\": {\n\t\t\"gif\": \"gif\",\n\t\t\"ief\": \"ief\",\n\t\t\"jpeg\": [\"jpeg\", \"jpg\", \"jpe\"],\n\t\t\"pcx\": \"pcx\",\n\t\t\"png\": \"png\",\n\t\t\"svg+xml\": [\"svg\", \"svgz\"],\n\t\t\"tiff\": [\"tiff\", \"tif\"],\n\t\t\"vnd.djvu\": [\"djvu\", \"djv\"],\n\t\t\"vnd.wap.wbmp\": \"wbmp\",\n\t\t\"x-canon-cr2\": \"cr2\",\n\t\t\"x-canon-crw\": \"crw\",\n\t\t\"x-cmu-raster\": \"ras\",\n\t\t\"x-coreldraw\": \"cdr\",\n\t\t\"x-coreldrawpattern\": \"pat\",\n\t\t\"x-coreldrawtemplate\": \"cdt\",\n\t\t\"x-corelphotopaint\": \"cpt\",\n\t\t\"x-epson-erf\": \"erf\",\n\t\t\"x-icon\": \"ico\",\n\t\t\"x-jg\": \"art\",\n\t\t\"x-jng\": \"jng\",\n\t\t\"x-nikon-nef\": \"nef\",\n\t\t\"x-olympus-orf\": \"orf\",\n\t\t\"x-photoshop\": \"psd\",\n\t\t\"x-portable-anymap\": \"pnm\",\n\t\t\"x-portable-bitmap\": \"pbm\",\n\t\t\"x-portable-graymap\": \"pgm\",\n\t\t\"x-portable-pixmap\": \"ppm\",\n\t\t\"x-rgb\": \"rgb\",\n\t\t\"x-xbitmap\": \"xbm\",\n\t\t\"x-xpixmap\": \"xpm\",\n\t\t\"x-xwindowdump\": \"xwd\",\n\t\t\"bmp\": \"bmp\",\n\t\t\"cgm\": \"cgm\",\n\t\t\"g3fax\": \"g3\",\n\t\t\"ktx\": \"ktx\",\n\t\t\"prs.btif\": \"btif\",\n\t\t\"sgi\": \"sgi\",\n\t\t\"vnd.dece.graphic\": [\"uvi\", \"uvvi\", \"uvg\", \"uvvg\"],\n\t\t\"vnd.dwg\": \"dwg\",\n\t\t\"vnd.dxf\": \"dxf\",\n\t\t\"vnd.fastbidsheet\": \"fbs\",\n\t\t\"vnd.fpx\": \"fpx\",\n\t\t\"vnd.fst\": \"fst\",\n\t\t\"vnd.fujixerox.edmics-mmr\": \"mmr\",\n\t\t\"vnd.fujixerox.edmics-rlc\": \"rlc\",\n\t\t\"vnd.ms-modi\": \"mdi\",\n\t\t\"vnd.ms-photo\": \"wdp\",\n\t\t\"vnd.net-fpx\": \"npx\",\n\t\t\"vnd.xiff\": \"xif\",\n\t\t\"webp\": \"webp\",\n\t\t\"x-3ds\": \"3ds\",\n\t\t\"x-cmx\": \"cmx\",\n\t\t\"x-freehand\": [\"fh\", \"fhc\", \"fh4\", \"fh5\", \"fh7\"],\n\t\t\"x-pict\": [\"pic\", \"pct\"],\n\t\t\"x-tga\": \"tga\",\n\t\t\"cis-cod\": \"cod\",\n\t\t\"pipeg\": \"jfif\"\n\t},\n\t\"message\": {\n\t\t\"rfc822\": [\"eml\", \"mime\", \"mht\", \"mhtml\", \"nws\"]\n\t},\n\t\"model\": {\n\t\t\"iges\": [\"igs\", \"iges\"],\n\t\t\"mesh\": [\"msh\", \"mesh\", \"silo\"],\n\t\t\"vrml\": [\"wrl\", \"vrml\"],\n\t\t\"x3d+vrml\": [\"x3dv\", \"x3dvz\"],\n\t\t\"x3d+xml\": [\"x3d\", \"x3dz\"],\n\t\t\"x3d+binary\": [\"x3db\", \"x3dbz\"],\n\t\t\"vnd.collada+xml\": \"dae\",\n\t\t\"vnd.dwf\": \"dwf\",\n\t\t\"vnd.gdl\": \"gdl\",\n\t\t\"vnd.gtw\": \"gtw\",\n\t\t\"vnd.mts\": \"mts\",\n\t\t\"vnd.vtu\": \"vtu\"\n\t},\n\t\"text\": {\n\t\t\"cache-manifest\": [\"manifest\", \"appcache\"],\n\t\t\"calendar\": [\"ics\", \"icz\", \"ifb\"],\n\t\t\"css\": \"css\",\n\t\t\"csv\": \"csv\",\n\t\t\"h323\": \"323\",\n\t\t\"html\": [\"html\", \"htm\", \"shtml\", \"stm\"],\n\t\t\"iuls\": \"uls\",\n\t\t\"mathml\": \"mml\",\n\t\t\"plain\": [\"txt\", \"text\", \"brf\", \"conf\", \"def\", \"list\", \"log\", \"in\", \"bas\"],\n\t\t\"richtext\": \"rtx\",\n\t\t\"scriptlet\": [\"sct\", \"wsc\"],\n\t\t\"texmacs\": [\"tm\", \"ts\"],\n\t\t\"tab-separated-values\": \"tsv\",\n\t\t\"vnd.sun.j2me.app-descriptor\": \"jad\",\n\t\t\"vnd.wap.wml\": \"wml\",\n\t\t\"vnd.wap.wmlscript\": \"wmls\",\n\t\t\"x-bibtex\": \"bib\",\n\t\t\"x-boo\": \"boo\",\n\t\t\"x-c++hdr\": [\"h++\", \"hpp\", \"hxx\", \"hh\"],\n\t\t\"x-c++src\": [\"c++\", \"cpp\", \"cxx\", \"cc\"],\n\t\t\"x-component\": \"htc\",\n\t\t\"x-dsrc\": \"d\",\n\t\t\"x-diff\": [\"diff\", \"patch\"],\n\t\t\"x-haskell\": \"hs\",\n\t\t\"x-java\": \"java\",\n\t\t\"x-literate-haskell\": \"lhs\",\n\t\t\"x-moc\": \"moc\",\n\t\t\"x-pascal\": [\"p\", \"pas\"],\n\t\t\"x-pcs-gcd\": \"gcd\",\n\t\t\"x-perl\": [\"pl\", \"pm\"],\n\t\t\"x-python\": \"py\",\n\t\t\"x-scala\": \"scala\",\n\t\t\"x-setext\": \"etx\",\n\t\t\"x-tcl\": [\"tcl\", \"tk\"],\n\t\t\"x-tex\": [\"tex\", \"ltx\", \"sty\", \"cls\"],\n\t\t\"x-vcalendar\": \"vcs\",\n\t\t\"x-vcard\": \"vcf\",\n\t\t\"n3\": \"n3\",\n\t\t\"prs.lines.tag\": \"dsc\",\n\t\t\"sgml\": [\"sgml\", \"sgm\"],\n\t\t\"troff\": [\"t\", \"tr\", \"roff\", \"man\", \"me\", \"ms\"],\n\t\t\"turtle\": \"ttl\",\n\t\t\"uri-list\": [\"uri\", \"uris\", \"urls\"],\n\t\t\"vcard\": \"vcard\",\n\t\t\"vnd.curl\": \"curl\",\n\t\t\"vnd.curl.dcurl\": \"dcurl\",\n\t\t\"vnd.curl.scurl\": \"scurl\",\n\t\t\"vnd.curl.mcurl\": \"mcurl\",\n\t\t\"vnd.dvb.subtitle\": \"sub\",\n\t\t\"vnd.fly\": \"fly\",\n\t\t\"vnd.fmi.flexstor\": \"flx\",\n\t\t\"vnd.graphviz\": \"gv\",\n\t\t\"vnd.in3d.3dml\": \"3dml\",\n\t\t\"vnd.in3d.spot\": \"spot\",\n\t\t\"x-asm\": [\"s\", \"asm\"],\n\t\t\"x-c\": [\"c\", \"cc\", \"cxx\", \"cpp\", \"h\", \"hh\", \"dic\"],\n\t\t\"x-fortran\": [\"f\", \"for\", \"f77\", \"f90\"],\n\t\t\"x-opml\": \"opml\",\n\t\t\"x-nfo\": \"nfo\",\n\t\t\"x-sfv\": \"sfv\",\n\t\t\"x-uuencode\": \"uu\",\n\t\t\"webviewhtml\": \"htt\"\n\t},\n\t\"video\": {\n\t\t\"avif\": \".avif\",\n\t\t\"3gpp\": \"3gp\",\n\t\t\"annodex\": \"axv\",\n\t\t\"dl\": \"dl\",\n\t\t\"dv\": [\"dif\", \"dv\"],\n\t\t\"fli\": \"fli\",\n\t\t\"gl\": \"gl\",\n\t\t\"mpeg\": [\"mpeg\", \"mpg\", \"mpe\", \"m1v\", \"m2v\", \"mp2\", \"mpa\", \"mpv2\"],\n\t\t\"mp4\": [\"mp4\", \"mp4v\", \"mpg4\"],\n\t\t\"quicktime\": [\"qt\", \"mov\"],\n\t\t\"ogg\": \"ogv\",\n\t\t\"vnd.mpegurl\": [\"mxu\", \"m4u\"],\n\t\t\"x-flv\": \"flv\",\n\t\t\"x-la-asf\": [\"lsf\", \"lsx\"],\n\t\t\"x-mng\": \"mng\",\n\t\t\"x-ms-asf\": [\"asf\", \"asx\", \"asr\"],\n\t\t\"x-ms-wm\": \"wm\",\n\t\t\"x-ms-wmv\": \"wmv\",\n\t\t\"x-ms-wmx\": \"wmx\",\n\t\t\"x-ms-wvx\": \"wvx\",\n\t\t\"x-msvideo\": \"avi\",\n\t\t\"x-sgi-movie\": \"movie\",\n\t\t\"x-matroska\": [\"mpv\", \"mkv\", \"mk3d\", \"mks\"],\n\t\t\"3gpp2\": \"3g2\",\n\t\t\"h261\": \"h261\",\n\t\t\"h263\": \"h263\",\n\t\t\"h264\": \"h264\",\n\t\t\"jpeg\": \"jpgv\",\n\t\t\"jpm\": [\"jpm\", \"jpgm\"],\n\t\t\"mj2\": [\"mj2\", \"mjp2\"],\n\t\t\"vnd.dece.hd\": [\"uvh\", \"uvvh\"],\n\t\t\"vnd.dece.mobile\": [\"uvm\", \"uvvm\"],\n\t\t\"vnd.dece.pd\": [\"uvp\", \"uvvp\"],\n\t\t\"vnd.dece.sd\": [\"uvs\", \"uvvs\"],\n\t\t\"vnd.dece.video\": [\"uvv\", \"uvvv\"],\n\t\t\"vnd.dvb.file\": \"dvb\",\n\t\t\"vnd.fvt\": \"fvt\",\n\t\t\"vnd.ms-playready.media.pyv\": \"pyv\",\n\t\t\"vnd.uvvu.mp4\": [\"uvu\", \"uvvu\"],\n\t\t\"vnd.vivo\": \"viv\",\n\t\t\"webm\": \"webm\",\n\t\t\"x-f4v\": \"f4v\",\n\t\t\"x-m4v\": \"m4v\",\n\t\t\"x-ms-vob\": \"vob\",\n\t\t\"x-smv\": \"smv\"\t\t\n\t},\n\t\"x-conference\": {\n\t\t\"x-cooltalk\": \"ice\"\n\t},\n\t\"x-world\": {\n\t\t\"x-vrml\": [\"vrm\", \"vrml\", \"wrl\", \"flr\", \"wrz\", \"xaf\", \"xof\"]\n\t}\n};\n\nconst mimeTypes = (() => {\n\tconst mimeTypes = {};\n\tfor (let type in table) {\n\t\t// eslint-disable-next-line no-prototype-builtins\n\t\tif (table.hasOwnProperty(type)) {\n\t\t\tfor (let subtype in table[type]) {\n\t\t\t\t// eslint-disable-next-line no-prototype-builtins\n\t\t\t\tif (table[type].hasOwnProperty(subtype)) {\n\t\t\t\t\tconst value = table[type][subtype];\n\t\t\t\t\tif (typeof value == \"string\") {\n\t\t\t\t\t\tmimeTypes[value] = type + \"/\" + subtype;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfor (let indexMimeType = 0; indexMimeType < value.length; indexMimeType++) {\n\t\t\t\t\t\t\tmimeTypes[value[indexMimeType]] = type + \"/\" + subtype;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn mimeTypes;\n})();\n\nexport default getMimeType;\n\nfunction getMimeType(filename) {\n\tconst defaultValue = \"application/octet-stream\";\n\treturn filename && mimeTypes[filename.split(\".\").pop().toLowerCase()] || defaultValue;\n}","// Derived from https://github.com/xqdoo00o/jszip/blob/master/lib/sjcl.js\n\n/** @fileOverview Javascript cryptography implementation.\n *\n * Crush to remove comments, shorten variable names and\n * generally reduce transmission size.\n *\n * @author Emily Stark\n * @author Mike Hamburg\n * @author Dan Boneh\n */\n\n\"use strict\";\n/*jslint indent: 2, bitwise: false, nomen: false, plusplus: false, white: false, regexp: false */\n\n/** @fileOverview Arrays of bits, encoded as arrays of Numbers.\n *\n * @author Emily Stark\n * @author Mike Hamburg\n * @author Dan Boneh\n */\n\n/**\n * Arrays of bits, encoded as arrays of Numbers.\n * @namespace\n * @description\n *

\n * These objects are the currency accepted by SJCL's crypto functions.\n *

\n *\n *

\n * Most of our crypto primitives operate on arrays of 4-byte words internally,\n * but many of them can take arguments that are not a multiple of 4 bytes.\n * This library encodes arrays of bits (whose size need not be a multiple of 8\n * bits) as arrays of 32-bit words. The bits are packed, big-endian, into an\n * array of words, 32 bits at a time. Since the words are double-precision\n * floating point numbers, they fit some extra data. We use this (in a private,\n * possibly-changing manner) to encode the number of bits actually present\n * in the last word of the array.\n *

\n *\n *

\n * Because bitwise ops clear this out-of-band data, these arrays can be passed\n * to ciphers like AES which want arrays of words.\n *

\n */\nconst bitArray = {\n\t/**\n\t * Concatenate two bit arrays.\n\t * @param {bitArray} a1 The first array.\n\t * @param {bitArray} a2 The second array.\n\t * @return {bitArray} The concatenation of a1 and a2.\n\t */\n\tconcat(a1, a2) {\n\t\tif (a1.length === 0 || a2.length === 0) {\n\t\t\treturn a1.concat(a2);\n\t\t}\n\n\t\tconst last = a1[a1.length - 1], shift = bitArray.getPartial(last);\n\t\tif (shift === 32) {\n\t\t\treturn a1.concat(a2);\n\t\t} else {\n\t\t\treturn bitArray._shiftRight(a2, shift, last | 0, a1.slice(0, a1.length - 1));\n\t\t}\n\t},\n\n\t/**\n\t * Find the length of an array of bits.\n\t * @param {bitArray} a The array.\n\t * @return {Number} The length of a, in bits.\n\t */\n\tbitLength(a) {\n\t\tconst l = a.length;\n\t\tif (l === 0) {\n\t\t\treturn 0;\n\t\t}\n\t\tconst x = a[l - 1];\n\t\treturn (l - 1) * 32 + bitArray.getPartial(x);\n\t},\n\n\t/**\n\t * Truncate an array.\n\t * @param {bitArray} a The array.\n\t * @param {Number} len The length to truncate to, in bits.\n\t * @return {bitArray} A new array, truncated to len bits.\n\t */\n\tclamp(a, len) {\n\t\tif (a.length * 32 < len) {\n\t\t\treturn a;\n\t\t}\n\t\ta = a.slice(0, Math.ceil(len / 32));\n\t\tconst l = a.length;\n\t\tlen = len & 31;\n\t\tif (l > 0 && len) {\n\t\t\ta[l - 1] = bitArray.partial(len, a[l - 1] & 0x80000000 >> (len - 1), 1);\n\t\t}\n\t\treturn a;\n\t},\n\n\t/**\n\t * Make a partial word for a bit array.\n\t * @param {Number} len The number of bits in the word.\n\t * @param {Number} x The bits.\n\t * @param {Number} [_end=0] Pass 1 if x has already been shifted to the high side.\n\t * @return {Number} The partial word.\n\t */\n\tpartial(len, x, _end) {\n\t\tif (len === 32) {\n\t\t\treturn x;\n\t\t}\n\t\treturn (_end ? x | 0 : x << (32 - len)) + len * 0x10000000000;\n\t},\n\n\t/**\n\t * Get the number of bits used by a partial word.\n\t * @param {Number} x The partial word.\n\t * @return {Number} The number of bits used by the partial word.\n\t */\n\tgetPartial(x) {\n\t\treturn Math.round(x / 0x10000000000) || 32;\n\t},\n\n\t/** Shift an array right.\n\t * @param {bitArray} a The array to shift.\n\t * @param {Number} shift The number of bits to shift.\n\t * @param {Number} [carry=0] A byte to carry in\n\t * @param {bitArray} [out=[]] An array to prepend to the output.\n\t * @private\n\t */\n\t_shiftRight(a, shift, carry, out) {\n\t\tif (out === undefined) {\n\t\t\tout = [];\n\t\t}\n\n\t\tfor (; shift >= 32; shift -= 32) {\n\t\t\tout.push(carry);\n\t\t\tcarry = 0;\n\t\t}\n\t\tif (shift === 0) {\n\t\t\treturn out.concat(a);\n\t\t}\n\n\t\tfor (let i = 0; i < a.length; i++) {\n\t\t\tout.push(carry | a[i] >>> shift);\n\t\t\tcarry = a[i] << (32 - shift);\n\t\t}\n\t\tconst last2 = a.length ? a[a.length - 1] : 0;\n\t\tconst shift2 = bitArray.getPartial(last2);\n\t\tout.push(bitArray.partial(shift + shift2 & 31, (shift + shift2 > 32) ? carry : out.pop(), 1));\n\t\treturn out;\n\t}\n};\n\n/** @fileOverview Bit array codec implementations.\n *\n * @author Emily Stark\n * @author Mike Hamburg\n * @author Dan Boneh\n */\n\n/**\n * Arrays of bytes\n * @namespace\n */\nconst codec = {\n\tbytes: {\n\t\t/** Convert from a bitArray to an array of bytes. */\n\t\tfromBits(arr) {\n\t\t\tconst bl = bitArray.bitLength(arr);\n\t\t\tconst byteLength = bl / 8;\n\t\t\tconst out = new Uint8Array(byteLength);\n\t\t\tlet tmp;\n\t\t\tfor (let i = 0; i < byteLength; i++) {\n\t\t\t\tif ((i & 3) === 0) {\n\t\t\t\t\ttmp = arr[i / 4];\n\t\t\t\t}\n\t\t\t\tout[i] = tmp >>> 24;\n\t\t\t\ttmp <<= 8;\n\t\t\t}\n\t\t\treturn out;\n\t\t},\n\t\t/** Convert from an array of bytes to a bitArray. */\n\t\ttoBits(bytes) {\n\t\t\tconst out = [];\n\t\t\tlet i;\n\t\t\tlet tmp = 0;\n\t\t\tfor (i = 0; i < bytes.length; i++) {\n\t\t\t\ttmp = tmp << 8 | bytes[i];\n\t\t\t\tif ((i & 3) === 3) {\n\t\t\t\t\tout.push(tmp);\n\t\t\t\t\ttmp = 0;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (i & 3) {\n\t\t\t\tout.push(bitArray.partial(8 * (i & 3), tmp));\n\t\t\t}\n\t\t\treturn out;\n\t\t}\n\t}\n};\n\nconst hash = {};\n\n/**\n * Context for a SHA-1 operation in progress.\n * @constructor\n */\nhash.sha1 = function (hash) {\n\tif (hash) {\n\t\tthis._h = hash._h.slice(0);\n\t\tthis._buffer = hash._buffer.slice(0);\n\t\tthis._length = hash._length;\n\t} else {\n\t\tthis.reset();\n\t}\n};\n\nhash.sha1.prototype = {\n\t/**\n\t * The hash's block size, in bits.\n\t * @constant\n\t */\n\tblockSize: 512,\n\n\t/**\n\t * Reset the hash state.\n\t * @return this\n\t */\n\treset: function () {\n\t\tconst sha1 = this;\n\t\tsha1._h = this._init.slice(0);\n\t\tsha1._buffer = [];\n\t\tsha1._length = 0;\n\t\treturn sha1;\n\t},\n\n\t/**\n\t * Input several words to the hash.\n\t * @param {bitArray|String} data the data to hash.\n\t * @return this\n\t */\n\tupdate: function (data) {\n\t\tconst sha1 = this;\n\t\tif (typeof data === \"string\") {\n\t\t\tdata = codec.utf8String.toBits(data);\n\t\t}\n\t\tconst b = sha1._buffer = bitArray.concat(sha1._buffer, data);\n\t\tconst ol = sha1._length;\n\t\tconst nl = sha1._length = ol + bitArray.bitLength(data);\n\t\tif (nl > 9007199254740991) {\n\t\t\tthrow new Error(\"Cannot hash more than 2^53 - 1 bits\");\n\t\t}\n\t\tconst c = new Uint32Array(b);\n\t\tlet j = 0;\n\t\tfor (let i = sha1.blockSize + ol - ((sha1.blockSize + ol) & (sha1.blockSize - 1)); i <= nl;\n\t\t\ti += sha1.blockSize) {\n\t\t\tsha1._block(c.subarray(16 * j, 16 * (j + 1)));\n\t\t\tj += 1;\n\t\t}\n\t\tb.splice(0, 16 * j);\n\t\treturn sha1;\n\t},\n\n\t/**\n\t * Complete hashing and output the hash value.\n\t * @return {bitArray} The hash value, an array of 5 big-endian words. TODO\n\t */\n\tfinalize: function () {\n\t\tconst sha1 = this;\n\t\tlet b = sha1._buffer;\n\t\tconst h = sha1._h;\n\n\t\t// Round out and push the buffer\n\t\tb = bitArray.concat(b, [bitArray.partial(1, 1)]);\n\t\t// Round out the buffer to a multiple of 16 words, less the 2 length words.\n\t\tfor (let i = b.length + 2; i & 15; i++) {\n\t\t\tb.push(0);\n\t\t}\n\n\t\t// append the length\n\t\tb.push(Math.floor(sha1._length / 0x100000000));\n\t\tb.push(sha1._length | 0);\n\n\t\twhile (b.length) {\n\t\t\tsha1._block(b.splice(0, 16));\n\t\t}\n\n\t\tsha1.reset();\n\t\treturn h;\n\t},\n\n\t/**\n\t * The SHA-1 initialization vector.\n\t * @private\n\t */\n\t_init: [0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0],\n\n\t/**\n\t * The SHA-1 hash key.\n\t * @private\n\t */\n\t_key: [0x5A827999, 0x6ED9EBA1, 0x8F1BBCDC, 0xCA62C1D6],\n\n\t/**\n\t * The SHA-1 logical functions f(0), f(1), ..., f(79).\n\t * @private\n\t */\n\t_f: function (t, b, c, d) {\n\t\tif (t <= 19) {\n\t\t\treturn (b & c) | (~b & d);\n\t\t} else if (t <= 39) {\n\t\t\treturn b ^ c ^ d;\n\t\t} else if (t <= 59) {\n\t\t\treturn (b & c) | (b & d) | (c & d);\n\t\t} else if (t <= 79) {\n\t\t\treturn b ^ c ^ d;\n\t\t}\n\t},\n\n\t/**\n\t * Circular left-shift operator.\n\t * @private\n\t */\n\t_S: function (n, x) {\n\t\treturn (x << n) | (x >>> 32 - n);\n\t},\n\n\t/**\n\t * Perform one cycle of SHA-1.\n\t * @param {Uint32Array|bitArray} words one block of words.\n\t * @private\n\t */\n\t_block: function (words) {\n\t\tconst sha1 = this;\n\t\tconst h = sha1._h;\n\t\t// When words is passed to _block, it has 16 elements. SHA1 _block\n\t\t// function extends words with new elements (at the end there are 80 elements). \n\t\t// The problem is that if we use Uint32Array instead of Array, \n\t\t// the length of Uint32Array cannot be changed. Thus, we replace words with a \n\t\t// normal Array here.\n\t\tconst w = Array(80); // do not use Uint32Array here as the instantiation is slower\n\t\tfor (let j = 0; j < 16; j++) {\n\t\t\tw[j] = words[j];\n\t\t}\n\n\t\tlet a = h[0];\n\t\tlet b = h[1];\n\t\tlet c = h[2];\n\t\tlet d = h[3];\n\t\tlet e = h[4];\n\n\t\tfor (let t = 0; t <= 79; t++) {\n\t\t\tif (t >= 16) {\n\t\t\t\tw[t] = sha1._S(1, w[t - 3] ^ w[t - 8] ^ w[t - 14] ^ w[t - 16]);\n\t\t\t}\n\t\t\tconst tmp = (sha1._S(5, a) + sha1._f(t, b, c, d) + e + w[t] +\n\t\t\t\tsha1._key[Math.floor(t / 20)]) | 0;\n\t\t\te = d;\n\t\t\td = c;\n\t\t\tc = sha1._S(30, b);\n\t\t\tb = a;\n\t\t\ta = tmp;\n\t\t}\n\n\t\th[0] = (h[0] + a) | 0;\n\t\th[1] = (h[1] + b) | 0;\n\t\th[2] = (h[2] + c) | 0;\n\t\th[3] = (h[3] + d) | 0;\n\t\th[4] = (h[4] + e) | 0;\n\t}\n};\n\n/** @fileOverview Low-level AES implementation.\n *\n * This file contains a low-level implementation of AES, optimized for\n * size and for efficiency on several browsers. It is based on\n * OpenSSL's aes_core.c, a public-domain implementation by Vincent\n * Rijmen, Antoon Bosselaers and Paulo Barreto.\n *\n * An older version of this implementation is available in the public\n * domain, but this one is (c) Emily Stark, Mike Hamburg, Dan Boneh,\n * Stanford University 2008-2010 and BSD-licensed for liability\n * reasons.\n *\n * @author Emily Stark\n * @author Mike Hamburg\n * @author Dan Boneh\n */\n\nconst cipher = {};\n\n/**\n * Schedule out an AES key for both encryption and decryption. This\n * is a low-level class. Use a cipher mode to do bulk encryption.\n *\n * @constructor\n * @param {Array} key The key as an array of 4, 6 or 8 words.\n */\ncipher.aes = class {\n\tconstructor(key) {\n\t\t/**\n\t\t * The expanded S-box and inverse S-box tables. These will be computed\n\t\t * on the client so that we don't have to send them down the wire.\n\t\t *\n\t\t * There are two tables, _tables[0] is for encryption and\n\t\t * _tables[1] is for decryption.\n\t\t *\n\t\t * The first 4 sub-tables are the expanded S-box with MixColumns. The\n\t\t * last (_tables[01][4]) is the S-box itself.\n\t\t *\n\t\t * @private\n\t\t */\n\t\tconst aes = this;\n\t\taes._tables = [[[], [], [], [], []], [[], [], [], [], []]];\n\n\t\tif (!aes._tables[0][0][0]) {\n\t\t\taes._precompute();\n\t\t}\n\n\t\tconst sbox = aes._tables[0][4];\n\t\tconst decTable = aes._tables[1];\n\t\tconst keyLen = key.length;\n\n\t\tlet i, encKey, decKey, rcon = 1;\n\n\t\tif (keyLen !== 4 && keyLen !== 6 && keyLen !== 8) {\n\t\t\tthrow new Error(\"invalid aes key size\");\n\t\t}\n\n\t\taes._key = [encKey = key.slice(0), decKey = []];\n\n\t\t// schedule encryption keys\n\t\tfor (i = keyLen; i < 4 * keyLen + 28; i++) {\n\t\t\tlet tmp = encKey[i - 1];\n\n\t\t\t// apply sbox\n\t\t\tif (i % keyLen === 0 || (keyLen === 8 && i % keyLen === 4)) {\n\t\t\t\ttmp = sbox[tmp >>> 24] << 24 ^ sbox[tmp >> 16 & 255] << 16 ^ sbox[tmp >> 8 & 255] << 8 ^ sbox[tmp & 255];\n\n\t\t\t\t// shift rows and add rcon\n\t\t\t\tif (i % keyLen === 0) {\n\t\t\t\t\ttmp = tmp << 8 ^ tmp >>> 24 ^ rcon << 24;\n\t\t\t\t\trcon = rcon << 1 ^ (rcon >> 7) * 283;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tencKey[i] = encKey[i - keyLen] ^ tmp;\n\t\t}\n\n\t\t// schedule decryption keys\n\t\tfor (let j = 0; i; j++, i--) {\n\t\t\tconst tmp = encKey[j & 3 ? i : i - 4];\n\t\t\tif (i <= 4 || j < 4) {\n\t\t\t\tdecKey[j] = tmp;\n\t\t\t} else {\n\t\t\t\tdecKey[j] = decTable[0][sbox[tmp >>> 24]] ^\n\t\t\t\t\tdecTable[1][sbox[tmp >> 16 & 255]] ^\n\t\t\t\t\tdecTable[2][sbox[tmp >> 8 & 255]] ^\n\t\t\t\t\tdecTable[3][sbox[tmp & 255]];\n\t\t\t}\n\t\t}\n\t}\n\t// public\n\t/* Something like this might appear here eventually\n\tname: \"AES\",\n\tblockSize: 4,\n\tkeySizes: [4,6,8],\n\t*/\n\n\t/**\n\t * Encrypt an array of 4 big-endian words.\n\t * @param {Array} data The plaintext.\n\t * @return {Array} The ciphertext.\n\t */\n\tencrypt(data) {\n\t\treturn this._crypt(data, 0);\n\t}\n\n\t/**\n\t * Decrypt an array of 4 big-endian words.\n\t * @param {Array} data The ciphertext.\n\t * @return {Array} The plaintext.\n\t */\n\tdecrypt(data) {\n\t\treturn this._crypt(data, 1);\n\t}\n\n\t/**\n\t * Expand the S-box tables.\n\t *\n\t * @private\n\t */\n\t_precompute() {\n\t\tconst encTable = this._tables[0];\n\t\tconst decTable = this._tables[1];\n\t\tconst sbox = encTable[4];\n\t\tconst sboxInv = decTable[4];\n\t\tconst d = [];\n\t\tconst th = [];\n\t\tlet xInv, x2, x4, x8;\n\n\t\t// Compute double and third tables\n\t\tfor (let i = 0; i < 256; i++) {\n\t\t\tth[(d[i] = i << 1 ^ (i >> 7) * 283) ^ i] = i;\n\t\t}\n\n\t\tfor (let x = xInv = 0; !sbox[x]; x ^= x2 || 1, xInv = th[xInv] || 1) {\n\t\t\t// Compute sbox\n\t\t\tlet s = xInv ^ xInv << 1 ^ xInv << 2 ^ xInv << 3 ^ xInv << 4;\n\t\t\ts = s >> 8 ^ s & 255 ^ 99;\n\t\t\tsbox[x] = s;\n\t\t\tsboxInv[s] = x;\n\n\t\t\t// Compute MixColumns\n\t\t\tx8 = d[x4 = d[x2 = d[x]]];\n\t\t\tlet tDec = x8 * 0x1010101 ^ x4 * 0x10001 ^ x2 * 0x101 ^ x * 0x1010100;\n\t\t\tlet tEnc = d[s] * 0x101 ^ s * 0x1010100;\n\n\t\t\tfor (let i = 0; i < 4; i++) {\n\t\t\t\tencTable[i][x] = tEnc = tEnc << 24 ^ tEnc >>> 8;\n\t\t\t\tdecTable[i][s] = tDec = tDec << 24 ^ tDec >>> 8;\n\t\t\t}\n\t\t}\n\n\t\t// Compactify. Considerable speedup on Firefox.\n\t\tfor (let i = 0; i < 5; i++) {\n\t\t\tencTable[i] = encTable[i].slice(0);\n\t\t\tdecTable[i] = decTable[i].slice(0);\n\t\t}\n\t}\n\n\t/**\n\t * Encryption and decryption core.\n\t * @param {Array} input Four words to be encrypted or decrypted.\n\t * @param dir The direction, 0 for encrypt and 1 for decrypt.\n\t * @return {Array} The four encrypted or decrypted words.\n\t * @private\n\t */\n\t_crypt(input, dir) {\n\t\tif (input.length !== 4) {\n\t\t\tthrow new Error(\"invalid aes block size\");\n\t\t}\n\n\t\tconst key = this._key[dir];\n\n\t\tconst nInnerRounds = key.length / 4 - 2;\n\t\tconst out = [0, 0, 0, 0];\n\t\tconst table = this._tables[dir];\n\n\t\t// load up the tables\n\t\tconst t0 = table[0];\n\t\tconst t1 = table[1];\n\t\tconst t2 = table[2];\n\t\tconst t3 = table[3];\n\t\tconst sbox = table[4];\n\n\t\t// state variables a,b,c,d are loaded with pre-whitened data\n\t\tlet a = input[0] ^ key[0];\n\t\tlet b = input[dir ? 3 : 1] ^ key[1];\n\t\tlet c = input[2] ^ key[2];\n\t\tlet d = input[dir ? 1 : 3] ^ key[3];\n\t\tlet kIndex = 4;\n\t\tlet a2, b2, c2;\n\n\t\t// Inner rounds. Cribbed from OpenSSL.\n\t\tfor (let i = 0; i < nInnerRounds; i++) {\n\t\t\ta2 = t0[a >>> 24] ^ t1[b >> 16 & 255] ^ t2[c >> 8 & 255] ^ t3[d & 255] ^ key[kIndex];\n\t\t\tb2 = t0[b >>> 24] ^ t1[c >> 16 & 255] ^ t2[d >> 8 & 255] ^ t3[a & 255] ^ key[kIndex + 1];\n\t\t\tc2 = t0[c >>> 24] ^ t1[d >> 16 & 255] ^ t2[a >> 8 & 255] ^ t3[b & 255] ^ key[kIndex + 2];\n\t\t\td = t0[d >>> 24] ^ t1[a >> 16 & 255] ^ t2[b >> 8 & 255] ^ t3[c & 255] ^ key[kIndex + 3];\n\t\t\tkIndex += 4;\n\t\t\ta = a2; b = b2; c = c2;\n\t\t}\n\n\t\t// Last round.\n\t\tfor (let i = 0; i < 4; i++) {\n\t\t\tout[dir ? 3 & -i : i] =\n\t\t\t\tsbox[a >>> 24] << 24 ^\n\t\t\t\tsbox[b >> 16 & 255] << 16 ^\n\t\t\t\tsbox[c >> 8 & 255] << 8 ^\n\t\t\t\tsbox[d & 255] ^\n\t\t\t\tkey[kIndex++];\n\t\t\ta2 = a; a = b; b = c; c = d; d = a2;\n\t\t}\n\n\t\treturn out;\n\t}\n};\n\n/** @fileOverview CTR mode implementation.\n *\n * Special thanks to Roy Nicholson for pointing out a bug in our\n * implementation.\n *\n * @author Emily Stark\n * @author Mike Hamburg\n * @author Dan Boneh\n */\n\n/** Brian Gladman's CTR Mode.\n* @constructor\n* @param {Object} _prf The aes instance to generate key.\n* @param {bitArray} _iv The iv for ctr mode, it must be 128 bits.\n*/\n\nconst mode = {};\n\n/**\n * Brian Gladman's CTR Mode.\n * @namespace\n */\nmode.ctrGladman = class {\n\tconstructor(prf, iv) {\n\t\tthis._prf = prf;\n\t\tthis._initIv = iv;\n\t\tthis._iv = iv;\n\t}\n\n\treset() {\n\t\tthis._iv = this._initIv;\n\t}\n\n\t/** Input some data to calculate.\n\t * @param {bitArray} data the data to process, it must be intergral multiple of 128 bits unless it's the last.\n\t */\n\tupdate(data) {\n\t\treturn this.calculate(this._prf, data, this._iv);\n\t}\n\n\tincWord(word) {\n\t\tif (((word >> 24) & 0xff) === 0xff) { //overflow\n\t\t\tlet b1 = (word >> 16) & 0xff;\n\t\t\tlet b2 = (word >> 8) & 0xff;\n\t\t\tlet b3 = word & 0xff;\n\n\t\t\tif (b1 === 0xff) { // overflow b1 \n\t\t\t\tb1 = 0;\n\t\t\t\tif (b2 === 0xff) {\n\t\t\t\t\tb2 = 0;\n\t\t\t\t\tif (b3 === 0xff) {\n\t\t\t\t\t\tb3 = 0;\n\t\t\t\t\t} else {\n\t\t\t\t\t\t++b3;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t++b2;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t++b1;\n\t\t\t}\n\n\t\t\tword = 0;\n\t\t\tword += (b1 << 16);\n\t\t\tword += (b2 << 8);\n\t\t\tword += b3;\n\t\t} else {\n\t\t\tword += (0x01 << 24);\n\t\t}\n\t\treturn word;\n\t}\n\n\tincCounter(counter) {\n\t\tif ((counter[0] = this.incWord(counter[0])) === 0) {\n\t\t\t// encr_data in fileenc.c from Dr Brian Gladman's counts only with DWORD j < 8\n\t\t\tcounter[1] = this.incWord(counter[1]);\n\t\t}\n\t}\n\n\tcalculate(prf, data, iv) {\n\t\tlet l;\n\t\tif (!(l = data.length)) {\n\t\t\treturn [];\n\t\t}\n\t\tconst bl = bitArray.bitLength(data);\n\t\tfor (let i = 0; i < l; i += 4) {\n\t\t\tthis.incCounter(iv);\n\t\t\tconst e = prf.encrypt(iv);\n\t\t\tdata[i] ^= e[0];\n\t\t\tdata[i + 1] ^= e[1];\n\t\t\tdata[i + 2] ^= e[2];\n\t\t\tdata[i + 3] ^= e[3];\n\t\t}\n\t\treturn bitArray.clamp(data, bl);\n\t}\n};\n\n\nconst misc = {};\n\n/** @fileOverview HMAC implementation.\n *\n * @author Emily Stark\n * @author Mike Hamburg\n * @author Dan Boneh\n */\n\n/** HMAC with the specified hash function.\n * @constructor\n * @param {bitArray} key the key for HMAC.\n * @param {Object} [Hash=hash.sha1] The hash function to use.\n */\nmisc.hmacSha1 = class {\n\n\tconstructor(key) {\n\t\tconst hmac = this;\n\t\tconst Hash = hmac._hash = hash.sha1;\n\t\tconst exKey = [[], []];\n\t\tconst bs = Hash.prototype.blockSize / 32;\n\t\thmac._baseHash = [new Hash(), new Hash()];\n\n\t\tif (key.length > bs) {\n\t\t\tkey = Hash.hash(key);\n\t\t}\n\n\t\tfor (let i = 0; i < bs; i++) {\n\t\t\texKey[0][i] = key[i] ^ 0x36363636;\n\t\t\texKey[1][i] = key[i] ^ 0x5C5C5C5C;\n\t\t}\n\n\t\thmac._baseHash[0].update(exKey[0]);\n\t\thmac._baseHash[1].update(exKey[1]);\n\t\thmac._resultHash = new Hash(hmac._baseHash[0]);\n\t}\n\treset() {\n\t\tconst hmac = this;\n\t\thmac._resultHash = new hmac._hash(hmac._baseHash[0]);\n\t\thmac._updated = false;\n\t}\n\n\tupdate(data) {\n\t\tconst hmac = this;\n\t\thmac._updated = true;\n\t\thmac._resultHash.update(data);\n\t}\n\n\tdigest() {\n\t\tconst hmac = this;\n\t\tconst w = hmac._resultHash.finalize();\n\t\tconst result = new (hmac._hash)(hmac._baseHash[1]).update(w).finalize();\n\n\t\thmac.reset();\n\n\t\treturn result;\n\t}\n};\n\nexport {\n\tcipher,\n\tcodec,\n\tmisc,\n\tmode\n};","/*\n Copyright (c) 2022 Gildas Lormeau. All rights reserved.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright \n notice, this list of conditions and the following disclaimer in \n the documentation and/or other materials provided with the distribution.\n\n 3. The names of the authors may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\n FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,\n INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n/* global crypto */\n\n\"use strict\";\n\nimport encodeText from \"./../util/encode-text.js\";\nimport { cipher, codec, misc, mode } from \"./sjcl.js\";\n\nconst ERR_INVALID_PASSWORD = \"Invalid pasword\";\nconst BLOCK_LENGTH = 16;\nconst RAW_FORMAT = \"raw\";\nconst PBKDF2_ALGORITHM = { name: \"PBKDF2\" };\nconst HASH_ALGORITHM = { name: \"HMAC\" };\nconst HASH_FUNCTION = \"SHA-1\";\nconst BASE_KEY_ALGORITHM = Object.assign({ hash: HASH_ALGORITHM }, PBKDF2_ALGORITHM);\nconst DERIVED_BITS_ALGORITHM = Object.assign({ iterations: 1000, hash: { name: HASH_FUNCTION } }, PBKDF2_ALGORITHM);\nconst DERIVED_BITS_USAGE = [\"deriveBits\"];\nconst SALT_LENGTH = [8, 12, 16];\nconst KEY_LENGTH = [16, 24, 32];\nconst SIGNATURE_LENGTH = 10;\nconst COUNTER_DEFAULT_VALUE = [0, 0, 0, 0];\nconst codecBytes = codec.bytes;\nconst Aes = cipher.aes;\nconst CtrGladman = mode.ctrGladman;\nconst HmacSha1 = misc.hmacSha1;\nclass AESDecrypt {\n\n\tconstructor(password, signed, strength) {\n\t\tObject.assign(this, {\n\t\t\tpassword,\n\t\t\tsigned,\n\t\t\tstrength: strength - 1,\n\t\t\tpendingInput: new Uint8Array(0)\n\t\t});\n\t}\n\n\tasync append(input) {\n\t\tconst aesCrypto = this;\n\t\tif (aesCrypto.password) {\n\t\t\tconst preamble = subarray(input, 0, SALT_LENGTH[aesCrypto.strength] + 2);\n\t\t\tawait createDecryptionKeys(aesCrypto, preamble, aesCrypto.password);\n\t\t\taesCrypto.password = null;\n\t\t\taesCrypto.aesCtrGladman = new CtrGladman(new Aes(aesCrypto.keys.key), Array.from(COUNTER_DEFAULT_VALUE));\n\t\t\taesCrypto.hmac = new HmacSha1(aesCrypto.keys.authentication);\n\t\t\tinput = subarray(input, SALT_LENGTH[aesCrypto.strength] + 2);\n\t\t}\n\t\tconst output = new Uint8Array(input.length - SIGNATURE_LENGTH - ((input.length - SIGNATURE_LENGTH) % BLOCK_LENGTH));\n\t\treturn append(aesCrypto, input, output, 0, SIGNATURE_LENGTH, true);\n\t}\n\n\tflush() {\n\t\tconst aesCrypto = this;\n\t\tconst pendingInput = aesCrypto.pendingInput;\n\t\tconst chunkToDecrypt = subarray(pendingInput, 0, pendingInput.length - SIGNATURE_LENGTH);\n\t\tconst originalSignature = subarray(pendingInput, pendingInput.length - SIGNATURE_LENGTH);\n\t\tlet decryptedChunkArray = new Uint8Array(0);\n\t\tif (chunkToDecrypt.length) {\n\t\t\tconst encryptedChunk = codecBytes.toBits(chunkToDecrypt);\n\t\t\taesCrypto.hmac.update(encryptedChunk);\n\t\t\tconst decryptedChunk = aesCrypto.aesCtrGladman.update(encryptedChunk);\n\t\t\tdecryptedChunkArray = codecBytes.fromBits(decryptedChunk);\n\t\t}\n\t\tlet valid = true;\n\t\tif (aesCrypto.signed) {\n\t\t\tconst signature = subarray(codecBytes.fromBits(aesCrypto.hmac.digest()), 0, SIGNATURE_LENGTH);\n\t\t\tfor (let indexSignature = 0; indexSignature < SIGNATURE_LENGTH; indexSignature++) {\n\t\t\t\tif (signature[indexSignature] != originalSignature[indexSignature]) {\n\t\t\t\t\tvalid = false;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn {\n\t\t\tvalid,\n\t\t\tdata: decryptedChunkArray\n\t\t};\n\t}\n}\n\nclass AESEncrypt {\n\n\tconstructor(password, strength) {\n\t\tObject.assign(this, {\n\t\t\tpassword,\n\t\t\tstrength: strength - 1,\n\t\t\tpendingInput: new Uint8Array(0)\n\t\t});\n\t}\n\n\tasync append(input) {\n\t\tconst aesCrypto = this;\n\t\tlet preamble = new Uint8Array(0);\n\t\tif (aesCrypto.password) {\n\t\t\tpreamble = await createEncryptionKeys(aesCrypto, aesCrypto.password);\n\t\t\taesCrypto.password = null;\n\t\t\taesCrypto.aesCtrGladman = new CtrGladman(new Aes(aesCrypto.keys.key), Array.from(COUNTER_DEFAULT_VALUE));\n\t\t\taesCrypto.hmac = new HmacSha1(aesCrypto.keys.authentication);\n\t\t}\n\t\tconst output = new Uint8Array(preamble.length + input.length - (input.length % BLOCK_LENGTH));\n\t\toutput.set(preamble, 0);\n\t\treturn append(aesCrypto, input, output, preamble.length, 0);\n\t}\n\n\tflush() {\n\t\tconst aesCrypto = this;\n\t\tlet encryptedChunkArray = new Uint8Array(0);\n\t\tif (aesCrypto.pendingInput.length) {\n\t\t\tconst encryptedChunk = aesCrypto.aesCtrGladman.update(codecBytes.toBits(aesCrypto.pendingInput));\n\t\t\taesCrypto.hmac.update(encryptedChunk);\n\t\t\tencryptedChunkArray = codecBytes.fromBits(encryptedChunk);\n\t\t}\n\t\tconst signature = subarray(codecBytes.fromBits(aesCrypto.hmac.digest()), 0, SIGNATURE_LENGTH);\n\t\treturn {\n\t\t\tdata: concat(encryptedChunkArray, signature),\n\t\t\tsignature\n\t\t};\n\t}\n}\n\nexport {\n\tAESDecrypt,\n\tAESEncrypt,\n\tERR_INVALID_PASSWORD\n};\n\nfunction append(aesCrypto, input, output, paddingStart, paddingEnd, verifySignature) {\n\tconst inputLength = input.length - paddingEnd;\n\tif (aesCrypto.pendingInput.length) {\n\t\tinput = concat(aesCrypto.pendingInput, input);\n\t\toutput = expand(output, inputLength - (inputLength % BLOCK_LENGTH));\n\t}\n\tlet offset;\n\tfor (offset = 0; offset <= inputLength - BLOCK_LENGTH; offset += BLOCK_LENGTH) {\n\t\tconst inputChunk = codecBytes.toBits(subarray(input, offset, offset + BLOCK_LENGTH));\n\t\tif (verifySignature) {\n\t\t\taesCrypto.hmac.update(inputChunk);\n\t\t}\n\t\tconst outputChunk = aesCrypto.aesCtrGladman.update(inputChunk);\n\t\tif (!verifySignature) {\n\t\t\taesCrypto.hmac.update(outputChunk);\n\t\t}\n\t\toutput.set(codecBytes.fromBits(outputChunk), offset + paddingStart);\n\t}\n\taesCrypto.pendingInput = subarray(input, offset);\n\treturn output;\n}\n\nasync function createDecryptionKeys(decrypt, preambleArray, password) {\n\tawait createKeys(decrypt, password, subarray(preambleArray, 0, SALT_LENGTH[decrypt.strength]));\n\tconst passwordVerification = subarray(preambleArray, SALT_LENGTH[decrypt.strength]);\n\tconst passwordVerificationKey = decrypt.keys.passwordVerification;\n\tif (passwordVerificationKey[0] != passwordVerification[0] || passwordVerificationKey[1] != passwordVerification[1]) {\n\t\tthrow new Error(ERR_INVALID_PASSWORD);\n\t}\n}\n\nasync function createEncryptionKeys(encrypt, password) {\n\tconst salt = crypto.getRandomValues(new Uint8Array(SALT_LENGTH[encrypt.strength]));\n\tawait createKeys(encrypt, password, salt);\n\treturn concat(salt, encrypt.keys.passwordVerification);\n}\n\nasync function createKeys(target, password, salt) {\n\tconst encodedPassword = encodeText(password);\n\tconst basekey = await crypto.subtle.importKey(RAW_FORMAT, encodedPassword, BASE_KEY_ALGORITHM, false, DERIVED_BITS_USAGE);\n\tconst derivedBits = await crypto.subtle.deriveBits(Object.assign({ salt }, DERIVED_BITS_ALGORITHM), basekey, 8 * ((KEY_LENGTH[target.strength] * 2) + 2));\n\tconst compositeKey = new Uint8Array(derivedBits);\n\ttarget.keys = {\n\t\tkey: codecBytes.toBits(subarray(compositeKey, 0, KEY_LENGTH[target.strength])),\n\t\tauthentication: codecBytes.toBits(subarray(compositeKey, KEY_LENGTH[target.strength], KEY_LENGTH[target.strength] * 2)),\n\t\tpasswordVerification: subarray(compositeKey, KEY_LENGTH[target.strength] * 2)\n\t};\n}\n\nfunction concat(leftArray, rightArray) {\n\tlet array = leftArray;\n\tif (leftArray.length + rightArray.length) {\n\t\tarray = new Uint8Array(leftArray.length + rightArray.length);\n\t\tarray.set(leftArray, 0);\n\t\tarray.set(rightArray, leftArray.length);\n\t}\n\treturn array;\n}\n\nfunction expand(inputArray, length) {\n\tif (length && length > inputArray.length) {\n\t\tconst array = inputArray;\n\t\tinputArray = new Uint8Array(length);\n\t\tinputArray.set(array, 0);\n\t}\n\treturn inputArray;\n}\n\nfunction subarray(array, begin, end) {\n\treturn array.subarray(begin, end);\n}","/*\n Copyright (c) 2022 Gildas Lormeau. All rights reserved.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright \n notice, this list of conditions and the following disclaimer in \n the documentation and/or other materials provided with the distribution.\n\n 3. The names of the authors may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\n FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,\n INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n\"use strict\";\n\nimport { configure } from \"./core/configuration.js\";\nimport configureWebWorker from \"./z-worker-inline.js\";\nimport getMimeType from \"./core/util/default-mime-type.js\";\nimport initShimAsyncCodec from \"./core/util/stream-codec-shim.js\";\nimport { terminateWorkers } from \"./core/codecs/codec-pool.js\";\n\nlet baseURL;\ntry {\n\tbaseURL = import.meta.url;\n} catch (error) {\n\t// ignored\n}\nconfigure({ baseURL });\nconfigureWebWorker(configure);\n\nexport * from \"./core/io.js\";\nexport * from \"./core/zip-reader.js\";\nexport * from \"./core/zip-writer.js\";\nexport * from \"./core/zip-fs-core.js\";\nexport {\n\tconfigure,\n\tgetMimeType,\n\tinitShimAsyncCodec,\n\tterminateWorkers\n};","export default t=>{if(\"function\"==typeof URL.createObjectURL){const e='\\n\\t\\t\\t\\n\\nconst t=[];for(let e=0;e<256;e++){let n=e;for(let t=0;t<8;t++)1&n?n=n>>>1^3988292384:n>>>=1;t[e]=n;}class e{constructor(t){this.crc=t||-1;}append(e){let n=0|this.crc;for(let i=0,a=0|e.length;i>>8^t[255&(n^e[i])];this.crc=n;}get(){return ~this.crc}}const n={concat(t,e){if(0===t.length||0===e.length)return t.concat(e);const i=t[t.length-1],a=n.getPartial(i);return 32===a?t.concat(e):n._shiftRight(e,a,0|i,t.slice(0,t.length-1))},bitLength(t){const e=t.length;if(0===e)return 0;const i=t[e-1];return 32*(e-1)+n.getPartial(i)},clamp(t,e){if(32*t.length0&&e&&(t[i-1]=n.partial(e,t[i-1]&2147483648>>e-1,1)),t},partial:(t,e,n)=>32===t?e:(n?0|e:e<<32-t)+1099511627776*t,getPartial:t=>Math.round(t/1099511627776)||32,_shiftRight(t,e,i,a){for(void 0===a&&(a=[]);e>=32;e-=32)a.push(i),i=0;if(0===e)return a.concat(t);for(let n=0;n>>e),i=t[n]<<32-e;const r=t.length?t[t.length-1]:0,s=n.getPartial(r);return a.push(n.partial(e+s&31,e+s>32?i:a.pop(),1)),a}},i={bytes:{fromBits(t){const e=n.bitLength(t)/8,i=new Uint8Array(e);let a;for(let n=0;n>>24,a<<=8;return i},toBits(t){const e=[];let i,a=0;for(i=0;i9007199254740991)throw new Error(\"Cannot hash more than 2^53 - 1 bits\");const o=new Uint32Array(a);let l=0;for(let t=e.blockSize+r-(e.blockSize+r&e.blockSize-1);t<=s;t+=e.blockSize)e._block(o.subarray(16*l,16*(l+1))),l+=1;return a.splice(0,16*l),e},finalize:function(){const t=this;let e=t._buffer;const i=t._h;e=n.concat(e,[n.partial(1,1)]);for(let t=e.length+2;15&t;t++)e.push(0);for(e.push(Math.floor(t._length/4294967296)),e.push(0|t._length);e.length;)t._block(e.splice(0,16));return t.reset(),i},_init:[1732584193,4023233417,2562383102,271733878,3285377520],_key:[1518500249,1859775393,2400959708,3395469782],_f:function(t,e,n,i){return t<=19?e&n|~e&i:t<=39?e^n^i:t<=59?e&n|e&i|n&i:t<=79?e^n^i:void 0},_S:function(t,e){return e<>>32-t},_block:function(t){const e=this,n=e._h,i=Array(80);for(let e=0;e<16;e++)i[e]=t[e];let a=n[0],r=n[1],s=n[2],o=n[3],l=n[4];for(let t=0;t<=79;t++){t>=16&&(i[t]=e._S(1,i[t-3]^i[t-8]^i[t-14]^i[t-16]));const n=e._S(5,a)+e._f(t,r,s,o)+l+i[t]+e._key[Math.floor(t/20)]|0;l=o,o=s,s=e._S(30,r),r=a,a=n;}n[0]=n[0]+a|0,n[1]=n[1]+r|0,n[2]=n[2]+s|0,n[3]=n[3]+o|0,n[4]=n[4]+l|0;}};const r={aes:class{constructor(t){const e=this;e._tables=[[[],[],[],[],[]],[[],[],[],[],[]]],e._tables[0][0][0]||e._precompute();const n=e._tables[0][4],i=e._tables[1],a=t.length;let r,s,o,l=1;if(4!==a&&6!==a&&8!==a)throw new Error(\"invalid aes key size\");for(e._key=[s=t.slice(0),o=[]],r=a;r<4*a+28;r++){let t=s[r-1];(r%a==0||8===a&&r%a==4)&&(t=n[t>>>24]<<24^n[t>>16&255]<<16^n[t>>8&255]<<8^n[255&t],r%a==0&&(t=t<<8^t>>>24^l<<24,l=l<<1^283*(l>>7))),s[r]=s[r-a]^t;}for(let t=0;r;t++,r--){const e=s[3&t?r:r-4];o[t]=r<=4||t<4?e:i[0][n[e>>>24]]^i[1][n[e>>16&255]]^i[2][n[e>>8&255]]^i[3][n[255&e]];}}encrypt(t){return this._crypt(t,0)}decrypt(t){return this._crypt(t,1)}_precompute(){const t=this._tables[0],e=this._tables[1],n=t[4],i=e[4],a=[],r=[];let s,o,l,_;for(let t=0;t<256;t++)r[(a[t]=t<<1^283*(t>>7))^t]=t;for(let d=s=0;!n[d];d^=o||1,s=r[s]||1){let r=s^s<<1^s<<2^s<<3^s<<4;r=r>>8^255&r^99,n[d]=r,i[r]=d,_=a[l=a[o=a[d]]];let c=16843009*_^65537*l^257*o^16843008*d,f=257*a[r]^16843008*r;for(let n=0;n<4;n++)t[n][d]=f=f<<24^f>>>8,e[n][r]=c=c<<24^c>>>8;}for(let n=0;n<5;n++)t[n]=t[n].slice(0),e[n]=e[n].slice(0);}_crypt(t,e){if(4!==t.length)throw new Error(\"invalid aes block size\");const n=this._key[e],i=n.length/4-2,a=[0,0,0,0],r=this._tables[e],s=r[0],o=r[1],l=r[2],_=r[3],d=r[4];let c,f,u,h=t[0]^n[0],b=t[e?3:1]^n[1],w=t[2]^n[2],p=t[e?1:3]^n[3],x=4;for(let t=0;t>>24]^o[b>>16&255]^l[w>>8&255]^_[255&p]^n[x],f=s[b>>>24]^o[w>>16&255]^l[p>>8&255]^_[255&h]^n[x+1],u=s[w>>>24]^o[p>>16&255]^l[h>>8&255]^_[255&b]^n[x+2],p=s[p>>>24]^o[h>>16&255]^l[b>>8&255]^_[255&w]^n[x+3],x+=4,h=c,b=f,w=u;for(let t=0;t<4;t++)a[e?3&-t:t]=d[h>>>24]<<24^d[b>>16&255]<<16^d[w>>8&255]<<8^d[255&p]^n[x++],c=h,h=b,b=w,w=p,p=c;return a}}},s={ctrGladman:class{constructor(t,e){this._prf=t,this._initIv=e,this._iv=e;}reset(){this._iv=this._initIv;}update(t){return this.calculate(this._prf,t,this._iv)}incWord(t){if(255==(t>>24&255)){let e=t>>16&255,n=t>>8&255,i=255&t;255===e?(e=0,255===n?(n=0,255===i?i=0:++i):++n):++e,t=0,t+=e<<16,t+=n<<8,t+=i;}else t+=1<<24;return t}incCounter(t){0===(t[0]=this.incWord(t[0]))&&(t[1]=this.incWord(t[1]));}calculate(t,e,i){let a;if(!(a=e.length))return [];const r=n.bitLength(e);for(let n=0;nr&&(t=n.hash(t));for(let e=0;et.length){const n=t;(t=new Uint8Array(e)).set(n,0);}return t}(n,s-s%16)),o=0;o<=s-16;o+=16){const a=b.toBits(A(e,o,o+16));r&&t.hmac.update(a);const s=t.aesCtrGladman.update(a);r||t.hmac.update(s),n.set(b.fromBits(s),o+i);}return t.pendingInput=A(e,o),n}async function k(t,e,n){const i=function(t){if(\"undefined\"==typeof TextEncoder){t=unescape(encodeURIComponent(t));const e=new Uint8Array(t.length);for(let n=0;n>>24]),t.keys[2]=~t.crcKey2.get();}function M(t){const e=2|t.keys[2];return B(Math.imul(e,1^e)>>>8)}function B(t){return 255&t}function H(t){return 4294967295&t}class V{constructor(t,{signature:n,password:i,signed:a,compressed:r,zipCrypto:s,passwordVerification:o,encryptionStrength:l},{chunkSize:_}){const d=Boolean(i);Object.assign(this,{signature:n,encrypted:d,signed:a,compressed:r,inflate:r&&new t({chunkSize:_}),crc32:a&&new e,zipCrypto:s,decrypt:d&&s?new U(i,o):new g(i,a,l)});}async append(t){const e=this;return e.encrypted&&t.length&&(t=await e.decrypt.append(t)),e.compressed&&t.length&&(t=await e.inflate.append(t)),(!e.encrypted||e.zipCrypto)&&e.signed&&t.length&&e.crc32.append(t),t}async flush(){const t=this;let e,n=new Uint8Array(0);if(t.encrypted){const e=t.decrypt.flush();if(!e.valid)throw new Error(\"Invalid signature\");n=e.data;}if((!t.encrypted||t.zipCrypto)&&t.signed){const n=new DataView(new Uint8Array(4).buffer);if(e=t.crc32.get(),n.setUint32(0,e),t.signature!=n.getUint32(0,!1))throw new Error(\"Invalid signature\")}return t.compressed&&(n=await t.inflate.append(n)||new Uint8Array(0),await t.inflate.flush()),{data:n,signature:e}}}class D{constructor(t,{encrypted:n,signed:i,compressed:a,level:r,zipCrypto:s,password:o,passwordVerification:l,encryptionStrength:_},{chunkSize:d}){Object.assign(this,{encrypted:n,signed:i,compressed:a,deflate:a&&new t({level:r||5,chunkSize:d}),crc32:i&&new e,zipCrypto:s,encrypt:n&&s?new S(o,l):new y(o,_)});}async append(t){const e=this;let n=t;return e.compressed&&t.length&&(n=await e.deflate.append(t)),e.encrypted&&n.length&&(n=await e.encrypt.append(n)),(!e.encrypted||e.zipCrypto)&&e.signed&&t.length&&e.crc32.append(t),n}async flush(){const t=this;let e,n=new Uint8Array(0);if(t.compressed&&(n=await t.deflate.flush()||new Uint8Array(0)),t.encrypted){n=await t.encrypt.append(n);const i=t.encrypt.flush();e=i.signature;const a=new Uint8Array(n.length+i.data.length);a.set(n,0),a.set(i.data,n.length),n=a;}return t.encrypted&&!t.zipCrypto||!t.signed||(e=t.crc32.get()),{data:n,signature:e}}}const j={init(t){t.scripts&&t.scripts.length&&importScripts.apply(void 0,t.scripts);const e=t.options;let n;self.initCodec&&self.initCodec(),e.codecType.startsWith(\"deflate\")?n=self.Deflate:e.codecType.startsWith(\"inflate\")&&(n=self.Inflate),O=function(t,e,n){return e.codecType.startsWith(\"deflate\")?new D(t,e,n):e.codecType.startsWith(\"inflate\")?new V(t,e,n):void 0}(n,e,t.config);},append:async t=>({data:await O.append(t.data)}),flush:()=>O.flush()};let O;addEventListener(\"message\",(async t=>{const e=t.data,n=e.type,i=j[n];if(i)try{e.data&&(e.data=new Uint8Array(e.data));const t=await i(e)||{};if(t.type=n,t.data)try{t.data=t.data.buffer,postMessage(t,[t.data]);}catch(e){postMessage(t);}else postMessage(t);}catch(t){postMessage({type:n,error:{message:t.message,stack:t.stack}});}}));function P(t){return K(t.map((([t,e])=>new Array(t).fill(e,0,t))))}function K(t){return t.reduce(((t,e)=>t.concat(Array.isArray(e)?K(e):e)),[])}const G=[0,1,2,3].concat(...P([[2,4],[2,5],[4,6],[4,7],[8,8],[8,9],[16,10],[16,11],[32,12],[32,13],[64,14],[64,15],[2,0],[1,16],[1,17],[2,18],[2,19],[4,20],[4,21],[8,22],[8,23],[16,24],[16,25],[32,26],[32,27],[64,28],[64,29]]));function W(){const t=this;function e(t,e){let n=0;do{n|=1&t,t>>>=1,n<<=1;}while(--e>0);return n>>>1}t.build_tree=function(n){const i=t.dyn_tree,a=t.stat_desc.static_tree,r=t.stat_desc.elems;let s,o,l,_=-1;for(n.heap_len=0,n.heap_max=573,s=0;s=1;s--)n.pqdownheap(i,s);l=r;do{s=n.heap[1],n.heap[1]=n.heap[n.heap_len--],n.pqdownheap(i,1),o=n.heap[1],n.heap[--n.heap_max]=s,n.heap[--n.heap_max]=o,i[2*l]=i[2*s]+i[2*o],n.depth[l]=Math.max(n.depth[s],n.depth[o])+1,i[2*s+1]=i[2*o+1]=l,n.heap[1]=l++,n.pqdownheap(i,1);}while(n.heap_len>=2);n.heap[--n.heap_max]=n.heap[1],function(e){const n=t.dyn_tree,i=t.stat_desc.static_tree,a=t.stat_desc.extra_bits,r=t.stat_desc.extra_base,s=t.stat_desc.max_length;let o,l,_,d,c,f,u=0;for(d=0;d<=15;d++)e.bl_count[d]=0;for(n[2*e.heap[e.heap_max]+1]=0,o=e.heap_max+1;o<573;o++)l=e.heap[o],d=n[2*n[2*l+1]+1]+1,d>s&&(d=s,u++),n[2*l+1]=d,l>t.max_code||(e.bl_count[d]++,c=0,l>=r&&(c=a[l-r]),f=n[2*l],e.opt_len+=f*(d+c),i&&(e.static_len+=f*(i[2*l+1]+c)));if(0!==u){do{for(d=s-1;0===e.bl_count[d];)d--;e.bl_count[d]--,e.bl_count[d+1]+=2,e.bl_count[s]--,u-=2;}while(u>0);for(d=s;0!==d;d--)for(l=e.bl_count[d];0!==l;)_=e.heap[--o],_>t.max_code||(n[2*_+1]!=d&&(e.opt_len+=(d-n[2*_+1])*n[2*_],n[2*_+1]=d),l--);}}(n),function(t,n,i){const a=[];let r,s,o,l=0;for(r=1;r<=15;r++)a[r]=l=l+i[r-1]<<1;for(s=0;s<=n;s++)o=t[2*s+1],0!==o&&(t[2*s]=e(a[o]++,o));}(i,t.max_code,n.bl_count);};}function T(t,e,n,i,a){const r=this;r.static_tree=t,r.extra_bits=e,r.extra_base=n,r.elems=i,r.max_length=a;}W._length_code=[0,1,2,3,4,5,6,7].concat(...P([[2,8],[2,9],[2,10],[2,11],[4,12],[4,13],[4,14],[4,15],[8,16],[8,17],[8,18],[8,19],[16,20],[16,21],[16,22],[16,23],[32,24],[32,25],[32,26],[31,27],[1,28]])),W.base_length=[0,1,2,3,4,5,6,7,8,10,12,14,16,20,24,28,32,40,48,56,64,80,96,112,128,160,192,224,0],W.base_dist=[0,1,2,3,4,6,8,12,16,24,32,48,64,96,128,192,256,384,512,768,1024,1536,2048,3072,4096,6144,8192,12288,16384,24576],W.d_code=function(t){return t<256?G[t]:G[256+(t>>>7)]},W.extra_lbits=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],W.extra_dbits=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],W.extra_blbits=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],W.bl_order=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],T.static_ltree=[12,8,140,8,76,8,204,8,44,8,172,8,108,8,236,8,28,8,156,8,92,8,220,8,60,8,188,8,124,8,252,8,2,8,130,8,66,8,194,8,34,8,162,8,98,8,226,8,18,8,146,8,82,8,210,8,50,8,178,8,114,8,242,8,10,8,138,8,74,8,202,8,42,8,170,8,106,8,234,8,26,8,154,8,90,8,218,8,58,8,186,8,122,8,250,8,6,8,134,8,70,8,198,8,38,8,166,8,102,8,230,8,22,8,150,8,86,8,214,8,54,8,182,8,118,8,246,8,14,8,142,8,78,8,206,8,46,8,174,8,110,8,238,8,30,8,158,8,94,8,222,8,62,8,190,8,126,8,254,8,1,8,129,8,65,8,193,8,33,8,161,8,97,8,225,8,17,8,145,8,81,8,209,8,49,8,177,8,113,8,241,8,9,8,137,8,73,8,201,8,41,8,169,8,105,8,233,8,25,8,153,8,89,8,217,8,57,8,185,8,121,8,249,8,5,8,133,8,69,8,197,8,37,8,165,8,101,8,229,8,21,8,149,8,85,8,213,8,53,8,181,8,117,8,245,8,13,8,141,8,77,8,205,8,45,8,173,8,109,8,237,8,29,8,157,8,93,8,221,8,61,8,189,8,125,8,253,8,19,9,275,9,147,9,403,9,83,9,339,9,211,9,467,9,51,9,307,9,179,9,435,9,115,9,371,9,243,9,499,9,11,9,267,9,139,9,395,9,75,9,331,9,203,9,459,9,43,9,299,9,171,9,427,9,107,9,363,9,235,9,491,9,27,9,283,9,155,9,411,9,91,9,347,9,219,9,475,9,59,9,315,9,187,9,443,9,123,9,379,9,251,9,507,9,7,9,263,9,135,9,391,9,71,9,327,9,199,9,455,9,39,9,295,9,167,9,423,9,103,9,359,9,231,9,487,9,23,9,279,9,151,9,407,9,87,9,343,9,215,9,471,9,55,9,311,9,183,9,439,9,119,9,375,9,247,9,503,9,15,9,271,9,143,9,399,9,79,9,335,9,207,9,463,9,47,9,303,9,175,9,431,9,111,9,367,9,239,9,495,9,31,9,287,9,159,9,415,9,95,9,351,9,223,9,479,9,63,9,319,9,191,9,447,9,127,9,383,9,255,9,511,9,0,7,64,7,32,7,96,7,16,7,80,7,48,7,112,7,8,7,72,7,40,7,104,7,24,7,88,7,56,7,120,7,4,7,68,7,36,7,100,7,20,7,84,7,52,7,116,7,3,8,131,8,67,8,195,8,35,8,163,8,99,8,227,8],T.static_dtree=[0,5,16,5,8,5,24,5,4,5,20,5,12,5,28,5,2,5,18,5,10,5,26,5,6,5,22,5,14,5,30,5,1,5,17,5,9,5,25,5,5,5,21,5,13,5,29,5,3,5,19,5,11,5,27,5,7,5,23,5],T.static_l_desc=new T(T.static_ltree,W.extra_lbits,257,286,15),T.static_d_desc=new T(T.static_dtree,W.extra_dbits,0,30,15),T.static_bl_desc=new T(null,W.extra_blbits,0,19,7);function L(t,e,n,i,a){const r=this;r.good_length=t,r.max_lazy=e,r.nice_length=n,r.max_chain=i,r.func=a;}const R=[new L(0,0,0,0,0),new L(4,4,8,4,1),new L(4,5,16,8,1),new L(4,6,32,32,1),new L(4,4,16,16,2),new L(8,16,32,32,2),new L(8,16,128,128,2),new L(8,32,128,256,2),new L(32,128,258,1024,2),new L(32,258,258,4096,2)],q=[\"need dictionary\",\"stream end\",\"\",\"\",\"stream error\",\"data error\",\"\",\"buffer error\",\"\",\"\"];function F(t,e,n,i){const a=t[2*e],r=t[2*n];return a>>8&255);}function tt(t,e){let n;const i=e;Q>16-i?(n=t,N|=n<>>16-Q,Q+=i-16):(N|=t<=8&&(Z(255&N),N>>>=8,Q-=8);}function at(e,n){let i,a,r;if(t.pending_buf[G+2*K]=e>>>8&255,t.pending_buf[G+2*K+1]=255&e,t.pending_buf[O+K]=255&n,K++,0===e?M[2*n]++:(L++,e--,M[2*(W._length_code[n]+256+1)]++,B[2*W.d_code(e)]++),0==(8191&K)&&z>2){for(i=8*K,a=m-p,r=0;r<30;r++)i+=B[2*r]*(5+W.extra_dbits[r]);if(i>>>=3,L8?$(N):Q>0&&Z(255&N),N=0,Q=0;}function ot(e,n,i){tt(0+(i?1:0),3),function(e,n,i){st(),J=8,i&&($(n),$(~n)),t.pending_buf.set(l.subarray(e,e+n),t.pending),t.pending+=n;}(e,n,!0);}function lt(e,n,i){let a,r,s=0;z>0?(V.build_tree(t),D.build_tree(t),s=function(){let e;for(Y(M,V.max_code),Y(B,D.max_code),j.build_tree(t),e=18;e>=3&&0===H[2*W.bl_order[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e}(),a=t.opt_len+3+7>>>3,r=t.static_len+3+7>>>3,r<=a&&(a=r)):a=r=n+5,n+4<=a&&-1!=e?ot(e,n,i):r==a?(tt(2+(i?1:0),3),rt(T.static_ltree,T.static_dtree)):(tt(4+(i?1:0),3),function(t,e,n){let i;for(tt(t-257,5),tt(e-1,5),tt(n-4,4),i=0;i=0?p:-1,m-p,t),p=m,e.flush_pending();}function dt(){let t,n,i,a;do{if(a=_-v-m,0===a&&0===m&&0===v)a=r;else if(-1==a)a--;else if(m>=r+r-262){l.set(l.subarray(r,r+r),0),k-=r,m-=r,p-=r,t=u,i=t;do{n=65535&c[--i],c[i]=n>=r?n-r:0;}while(0!=--t);t=r,i=t;do{n=65535&d[--i],d[i]=n>=r?n-r:0;}while(0!=--t);a+=r;}if(0===e.avail_in)return;t=e.read_buf(l,m+v,a),v+=t,v>=3&&(f=255&l[m],f=(f<r-262?m-(r-262):0;let c=C;const f=o,u=m+258;let h=l[a+s-1],b=l[a+s];A>=E&&(i>>=2),c>v&&(c=v);do{if(e=t,l[e+s]==b&&l[e+s-1]==h&&l[e]==l[a]&&l[++e]==l[a+1]){a+=2,e++;do{}while(l[++a]==l[++e]&&l[++a]==l[++e]&&l[++a]==l[++e]&&l[++a]==l[++e]&&l[++a]==l[++e]&&l[++a]==l[++e]&&l[++a]==l[++e]&&l[++a]==l[++e]&&as){if(k=t,s=n,n>=c)break;h=l[a+s-1],b=l[a+s];}}}while((t=65535&d[t&f])>_&&0!=--i);return s<=v?s:v}function ft(e){return e.total_in=e.total_out=0,e.msg=null,t.pending=0,t.pending_out=0,n=113,a=0,V.dyn_tree=M,V.stat_desc=T.static_l_desc,D.dyn_tree=B,D.stat_desc=T.static_d_desc,j.dyn_tree=H,j.stat_desc=T.static_bl_desc,N=0,Q=0,J=8,X(),function(){_=2*r,c[u-1]=0;for(let t=0;t9||8!=_||a<9||a>15||n<0||n>9||p<0||p>2?-2:(e.dstate=t,s=a,r=1<9||n<0||n>2?-2:(R[z].func!=R[e].func&&0!==t.total_in&&(i=t.deflate(1)),z!=e&&(z=e,S=R[z].max_lazy,E=R[z].good_length,C=R[z].nice_length,U=R[z].max_chain),I=n,i)},t.deflateSetDictionary=function(t,e,i){let a,s=i,_=0;if(!e||42!=n)return -2;if(s<3)return 0;for(s>r-262&&(s=r-262,_=i-s),l.set(e.subarray(_,_+s),0),m=s,p=s,f=255&l[0],f=(f<4||h<0)return -2;if(!_.next_out||!_.next_in&&0!==_.avail_in||666==n&&4!=h)return _.msg=q[4],-2;if(0===_.avail_out)return _.msg=q[7],-5;var H;if(e=_,M=a,a=h,42==n&&(E=8+(s-8<<4)<<8,C=(z-1&255)>>1,C>3&&(C=3),E|=C<<6,0!==m&&(E|=32),E+=31-E%31,n=113,Z((H=E)>>8&255),Z(255&H)),0!==t.pending){if(e.flush_pending(),0===e.avail_out)return a=-1,0}else if(0===e.avail_in&&h<=M&&4!=h)return e.msg=q[7],-5;if(666==n&&0!==e.avail_in)return _.msg=q[7],-5;if(0!==e.avail_in||0!==v||0!=h&&666!=n){switch(B=-1,R[z].func){case 0:B=function(t){let n,a=65535;for(a>i-5&&(a=i-5);;){if(v<=1){if(dt(),0===v&&0==t)return 0;if(0===v)break}if(m+=v,v=0,n=p+a,(0===m||m>=n)&&(v=m-n,m=n,_t(!1),0===e.avail_out))return 0;if(m-p>=r-262&&(_t(!1),0===e.avail_out))return 0}return _t(4==t),0===e.avail_out?4==t?2:0:4==t?3:1}(h);break;case 1:B=function(t){let n,i=0;for(;;){if(v<262){if(dt(),v<262&&0==t)return 0;if(0===v)break}if(v>=3&&(f=(f<=3)if(n=at(m-k,x-3),v-=x,x<=S&&v>=3){x--;do{m++,f=(f<=3&&(f=(f<4096)&&(x=2)),A>=3&&x<=A){i=m+v-3,n=at(m-1-g,A-3),v-=A-1,A-=2;do{++m<=i&&(f=(f<0&&e.next_in_index!=o&&(i(e.next_in_index),o=e.next_in_index);}while(e.avail_in>0||0===e.avail_out);return d.length>1?(s=new Uint8Array(_),d.forEach((function(t){s.set(t,l),l+=t.length;}))):s=d[0]||new Uint8Array(0),s}},this.flush=function(){let t,i,r=0,s=0;const o=[];do{if(e.next_out_index=0,e.avail_out=n,t=e.deflate(4),1!=t&&0!=t)throw new Error(\"deflating: \"+e.msg);n-e.avail_out>0&&o.push(a.slice(0,e.next_out_index)),s+=e.next_out_index;}while(e.avail_in>0||0===e.avail_out);return e.deflateEnd(),i=new Uint8Array(s),o.forEach((function(t){i.set(t,r),r+=t.length;})),i};}N.prototype={deflateInit:function(t,e){const n=this;return n.dstate=new J,e||(e=15),n.dstate.deflateInit(n,t,e)},deflate:function(t){const e=this;return e.dstate?e.dstate.deflate(e,t):-2},deflateEnd:function(){const t=this;if(!t.dstate)return -2;const e=t.dstate.deflateEnd();return t.dstate=null,e},deflateParams:function(t,e){const n=this;return n.dstate?n.dstate.deflateParams(n,t,e):-2},deflateSetDictionary:function(t,e){const n=this;return n.dstate?n.dstate.deflateSetDictionary(n,t,e):-2},read_buf:function(t,e,n){const i=this;let a=i.avail_in;return a>n&&(a=n),0===a?0:(i.avail_in-=a,t.set(i.next_in.subarray(i.next_in_index,i.next_in_index+a),e),i.next_in_index+=a,i.total_in+=a,a)},flush_pending:function(){const t=this;let e=t.dstate.pending;e>t.avail_out&&(e=t.avail_out),0!==e&&(t.next_out.set(t.dstate.pending_buf.subarray(t.dstate.pending_out,t.dstate.pending_out+e),t.next_out_index),t.next_out_index+=e,t.dstate.pending_out+=e,t.total_out+=e,t.avail_out-=e,t.dstate.pending-=e,0===t.dstate.pending&&(t.dstate.pending_out=0));}};const X=[0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,65535],Y=[96,7,256,0,8,80,0,8,16,84,8,115,82,7,31,0,8,112,0,8,48,0,9,192,80,7,10,0,8,96,0,8,32,0,9,160,0,8,0,0,8,128,0,8,64,0,9,224,80,7,6,0,8,88,0,8,24,0,9,144,83,7,59,0,8,120,0,8,56,0,9,208,81,7,17,0,8,104,0,8,40,0,9,176,0,8,8,0,8,136,0,8,72,0,9,240,80,7,4,0,8,84,0,8,20,85,8,227,83,7,43,0,8,116,0,8,52,0,9,200,81,7,13,0,8,100,0,8,36,0,9,168,0,8,4,0,8,132,0,8,68,0,9,232,80,7,8,0,8,92,0,8,28,0,9,152,84,7,83,0,8,124,0,8,60,0,9,216,82,7,23,0,8,108,0,8,44,0,9,184,0,8,12,0,8,140,0,8,76,0,9,248,80,7,3,0,8,82,0,8,18,85,8,163,83,7,35,0,8,114,0,8,50,0,9,196,81,7,11,0,8,98,0,8,34,0,9,164,0,8,2,0,8,130,0,8,66,0,9,228,80,7,7,0,8,90,0,8,26,0,9,148,84,7,67,0,8,122,0,8,58,0,9,212,82,7,19,0,8,106,0,8,42,0,9,180,0,8,10,0,8,138,0,8,74,0,9,244,80,7,5,0,8,86,0,8,22,192,8,0,83,7,51,0,8,118,0,8,54,0,9,204,81,7,15,0,8,102,0,8,38,0,9,172,0,8,6,0,8,134,0,8,70,0,9,236,80,7,9,0,8,94,0,8,30,0,9,156,84,7,99,0,8,126,0,8,62,0,9,220,82,7,27,0,8,110,0,8,46,0,9,188,0,8,14,0,8,142,0,8,78,0,9,252,96,7,256,0,8,81,0,8,17,85,8,131,82,7,31,0,8,113,0,8,49,0,9,194,80,7,10,0,8,97,0,8,33,0,9,162,0,8,1,0,8,129,0,8,65,0,9,226,80,7,6,0,8,89,0,8,25,0,9,146,83,7,59,0,8,121,0,8,57,0,9,210,81,7,17,0,8,105,0,8,41,0,9,178,0,8,9,0,8,137,0,8,73,0,9,242,80,7,4,0,8,85,0,8,21,80,8,258,83,7,43,0,8,117,0,8,53,0,9,202,81,7,13,0,8,101,0,8,37,0,9,170,0,8,5,0,8,133,0,8,69,0,9,234,80,7,8,0,8,93,0,8,29,0,9,154,84,7,83,0,8,125,0,8,61,0,9,218,82,7,23,0,8,109,0,8,45,0,9,186,0,8,13,0,8,141,0,8,77,0,9,250,80,7,3,0,8,83,0,8,19,85,8,195,83,7,35,0,8,115,0,8,51,0,9,198,81,7,11,0,8,99,0,8,35,0,9,166,0,8,3,0,8,131,0,8,67,0,9,230,80,7,7,0,8,91,0,8,27,0,9,150,84,7,67,0,8,123,0,8,59,0,9,214,82,7,19,0,8,107,0,8,43,0,9,182,0,8,11,0,8,139,0,8,75,0,9,246,80,7,5,0,8,87,0,8,23,192,8,0,83,7,51,0,8,119,0,8,55,0,9,206,81,7,15,0,8,103,0,8,39,0,9,174,0,8,7,0,8,135,0,8,71,0,9,238,80,7,9,0,8,95,0,8,31,0,9,158,84,7,99,0,8,127,0,8,63,0,9,222,82,7,27,0,8,111,0,8,47,0,9,190,0,8,15,0,8,143,0,8,79,0,9,254,96,7,256,0,8,80,0,8,16,84,8,115,82,7,31,0,8,112,0,8,48,0,9,193,80,7,10,0,8,96,0,8,32,0,9,161,0,8,0,0,8,128,0,8,64,0,9,225,80,7,6,0,8,88,0,8,24,0,9,145,83,7,59,0,8,120,0,8,56,0,9,209,81,7,17,0,8,104,0,8,40,0,9,177,0,8,8,0,8,136,0,8,72,0,9,241,80,7,4,0,8,84,0,8,20,85,8,227,83,7,43,0,8,116,0,8,52,0,9,201,81,7,13,0,8,100,0,8,36,0,9,169,0,8,4,0,8,132,0,8,68,0,9,233,80,7,8,0,8,92,0,8,28,0,9,153,84,7,83,0,8,124,0,8,60,0,9,217,82,7,23,0,8,108,0,8,44,0,9,185,0,8,12,0,8,140,0,8,76,0,9,249,80,7,3,0,8,82,0,8,18,85,8,163,83,7,35,0,8,114,0,8,50,0,9,197,81,7,11,0,8,98,0,8,34,0,9,165,0,8,2,0,8,130,0,8,66,0,9,229,80,7,7,0,8,90,0,8,26,0,9,149,84,7,67,0,8,122,0,8,58,0,9,213,82,7,19,0,8,106,0,8,42,0,9,181,0,8,10,0,8,138,0,8,74,0,9,245,80,7,5,0,8,86,0,8,22,192,8,0,83,7,51,0,8,118,0,8,54,0,9,205,81,7,15,0,8,102,0,8,38,0,9,173,0,8,6,0,8,134,0,8,70,0,9,237,80,7,9,0,8,94,0,8,30,0,9,157,84,7,99,0,8,126,0,8,62,0,9,221,82,7,27,0,8,110,0,8,46,0,9,189,0,8,14,0,8,142,0,8,78,0,9,253,96,7,256,0,8,81,0,8,17,85,8,131,82,7,31,0,8,113,0,8,49,0,9,195,80,7,10,0,8,97,0,8,33,0,9,163,0,8,1,0,8,129,0,8,65,0,9,227,80,7,6,0,8,89,0,8,25,0,9,147,83,7,59,0,8,121,0,8,57,0,9,211,81,7,17,0,8,105,0,8,41,0,9,179,0,8,9,0,8,137,0,8,73,0,9,243,80,7,4,0,8,85,0,8,21,80,8,258,83,7,43,0,8,117,0,8,53,0,9,203,81,7,13,0,8,101,0,8,37,0,9,171,0,8,5,0,8,133,0,8,69,0,9,235,80,7,8,0,8,93,0,8,29,0,9,155,84,7,83,0,8,125,0,8,61,0,9,219,82,7,23,0,8,109,0,8,45,0,9,187,0,8,13,0,8,141,0,8,77,0,9,251,80,7,3,0,8,83,0,8,19,85,8,195,83,7,35,0,8,115,0,8,51,0,9,199,81,7,11,0,8,99,0,8,35,0,9,167,0,8,3,0,8,131,0,8,67,0,9,231,80,7,7,0,8,91,0,8,27,0,9,151,84,7,67,0,8,123,0,8,59,0,9,215,82,7,19,0,8,107,0,8,43,0,9,183,0,8,11,0,8,139,0,8,75,0,9,247,80,7,5,0,8,87,0,8,23,192,8,0,83,7,51,0,8,119,0,8,55,0,9,207,81,7,15,0,8,103,0,8,39,0,9,175,0,8,7,0,8,135,0,8,71,0,9,239,80,7,9,0,8,95,0,8,31,0,9,159,84,7,99,0,8,127,0,8,63,0,9,223,82,7,27,0,8,111,0,8,47,0,9,191,0,8,15,0,8,143,0,8,79,0,9,255],Z=[80,5,1,87,5,257,83,5,17,91,5,4097,81,5,5,89,5,1025,85,5,65,93,5,16385,80,5,3,88,5,513,84,5,33,92,5,8193,82,5,9,90,5,2049,86,5,129,192,5,24577,80,5,2,87,5,385,83,5,25,91,5,6145,81,5,7,89,5,1537,85,5,97,93,5,24577,80,5,4,88,5,769,84,5,49,92,5,12289,82,5,13,90,5,3073,86,5,193,192,5,24577],$=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],tt=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,112,112],et=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577],nt=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13];function it(){let t,e,n,i,a,r;function s(t,e,s,o,l,_,d,c,f,u,h){let b,w,p,x,g,y,m,k,v,A,U,S,z,I,E;A=0,g=s;do{n[t[e+A]]++,A++,g--;}while(0!==g);if(n[0]==s)return d[0]=-1,c[0]=0,0;for(k=c[0],y=1;y<=15&&0===n[y];y++);for(m=y,kg&&(k=g),c[0]=k,I=1<S+k;){if(x++,S+=k,E=p-S,E=E>k?k:E,(w=1<<(y=m-S))>b+1&&(w-=b+1,z=m,y1440)return -3;a[x]=U=u[0],u[0]+=E,0!==x?(r[x]=g,i[0]=y,i[1]=k,y=g>>>S-k,i[2]=U-a[x-1]-y,f.set(i,3*(a[x-1]+y))):d[0]=U;}for(i[1]=m-S,A>=s?i[0]=192:h[A]>>S;y>>=1)g^=y;for(g^=y,v=(1<257?(-3==u?f.msg=\"oversubscribed distance tree\":-5==u?(f.msg=\"incomplete distance tree\",u=-3):-4!=u&&(f.msg=\"empty distance tree with lengths\",u=-3),u):0)};}it.inflate_trees_fixed=function(t,e,n,i){return t[0]=9,e[0]=5,n[0]=Y,i[0]=Z,0};function at(){const t=this;let e,n,i,a,r=0,s=0,o=0,l=0,_=0,d=0,c=0,f=0,u=0,h=0;function b(t,e,n,i,a,r,s,o){let l,_,d,c,f,u,h,b,w,p,x,g,y,m,k,v;h=o.next_in_index,b=o.avail_in,f=s.bitb,u=s.bitk,w=s.write,p=w>=_[v+1],u-=_[v+1],0!=(16&c)){for(c&=15,y=_[v+2]+(f&X[c]),f>>=c,u-=c;u<15;)b--,f|=(255&o.read_byte(h++))<>=_[v+1],u-=_[v+1],0!=(16&c)){for(c&=15;u>=c,u-=c,p-=y,w>=m)k=w-m,w-k>0&&2>w-k?(s.window[w++]=s.window[k++],s.window[w++]=s.window[k++],y-=2):(s.window.set(s.window.subarray(k,k+2),w),w+=2,k+=2,y-=2);else {k=w-m;do{k+=s.end;}while(k<0);if(c=s.end-k,y>c){if(y-=c,w-k>0&&c>w-k)do{s.window[w++]=s.window[k++];}while(0!=--c);else s.window.set(s.window.subarray(k,k+c),w),w+=c,k+=c,c=0;k=0;}}if(w-k>0&&y>w-k)do{s.window[w++]=s.window[k++];}while(0!=--y);else s.window.set(s.window.subarray(k,k+y),w),w+=y,k+=y,y=0;break}if(0!=(64&c))return o.msg=\"invalid distance code\",y=o.avail_in-b,y=u>>3>3:y,b+=y,h-=y,u-=y<<3,s.bitb=f,s.bitk=u,o.avail_in=b,o.total_in+=h-o.next_in_index,o.next_in_index=h,s.write=w,-3;l+=_[v+2],l+=f&X[c],v=3*(d+l),c=_[v];}break}if(0!=(64&c))return 0!=(32&c)?(y=o.avail_in-b,y=u>>3>3:y,b+=y,h-=y,u-=y<<3,s.bitb=f,s.bitk=u,o.avail_in=b,o.total_in+=h-o.next_in_index,o.next_in_index=h,s.write=w,1):(o.msg=\"invalid literal/length code\",y=o.avail_in-b,y=u>>3>3:y,b+=y,h-=y,u-=y<<3,s.bitb=f,s.bitk=u,o.avail_in=b,o.total_in+=h-o.next_in_index,o.next_in_index=h,s.write=w,-3);if(l+=_[v+2],l+=f&X[c],v=3*(d+l),0===(c=_[v])){f>>=_[v+1],u-=_[v+1],s.window[w++]=_[v+2],p--;break}}else f>>=_[v+1],u-=_[v+1],s.window[w++]=_[v+2],p--;}while(p>=258&&b>=10);return y=o.avail_in-b,y=u>>3>3:y,b+=y,h-=y,u-=y<<3,s.bitb=f,s.bitk=u,o.avail_in=b,o.total_in+=h-o.next_in_index,o.next_in_index=h,s.write=w,0}t.init=function(t,r,s,o,l,_){e=0,c=t,f=r,i=s,u=o,a=l,h=_,n=null;},t.proc=function(t,w,p){let x,g,y,m,k,v,A,U=0,S=0,z=0;for(z=w.next_in_index,m=w.avail_in,U=t.bitb,S=t.bitk,k=t.write,v=k=258&&m>=10&&(t.bitb=U,t.bitk=S,w.avail_in=m,w.total_in+=z-w.next_in_index,w.next_in_index=z,t.write=k,p=b(c,f,i,u,a,h,t,w),z=w.next_in_index,m=w.avail_in,U=t.bitb,S=t.bitk,k=t.write,v=k>>=n[g+1],S-=n[g+1],y=n[g],0===y){l=n[g+2],e=6;break}if(0!=(16&y)){_=15&y,r=n[g+2],e=2;break}if(0==(64&y)){o=y,s=g/3+n[g+2];break}if(0!=(32&y)){e=7;break}return e=9,w.msg=\"invalid literal/length code\",p=-3,t.bitb=U,t.bitk=S,w.avail_in=m,w.total_in+=z-w.next_in_index,w.next_in_index=z,t.write=k,t.inflate_flush(w,p);case 2:for(x=_;S>=x,S-=x,o=f,n=a,s=h,e=3;case 3:for(x=o;S>=n[g+1],S-=n[g+1],y=n[g],0!=(16&y)){_=15&y,d=n[g+2],e=4;break}if(0==(64&y)){o=y,s=g/3+n[g+2];break}return e=9,w.msg=\"invalid distance code\",p=-3,t.bitb=U,t.bitk=S,w.avail_in=m,w.total_in+=z-w.next_in_index,w.next_in_index=z,t.write=k,t.inflate_flush(w,p);case 4:for(x=_;S>=x,S-=x,e=5;case 5:for(A=k-d;A<0;)A+=t.end;for(;0!==r;){if(0===v&&(k==t.end&&0!==t.read&&(k=0,v=k7&&(S-=8,m++,z--),t.write=k,p=t.inflate_flush(w,p),k=t.write,v=kt.avail_out&&(i=t.avail_out),0!==i&&-5==e&&(e=0),t.avail_out-=i,t.total_out+=i,t.next_out.set(n.window.subarray(r,r+i),a),a+=i,r+=i,r==n.end&&(r=0,n.write==n.end&&(n.write=0),i=n.write-r,i>t.avail_out&&(i=t.avail_out),0!==i&&-5==e&&(e=0),t.avail_out-=i,t.total_out+=i,t.next_out.set(n.window.subarray(r,r+i),a),a+=i,r+=i),t.next_out_index=a,n.read=r,e},n.proc=function(t,e){let h,b,w,p,x,g,y,m;for(p=t.next_in_index,x=t.avail_in,b=n.bitb,w=n.bitk,g=n.write,y=g>>1){case 0:b>>>=3,w-=3,h=7&w,b>>>=h,w-=h,a=1;break;case 1:k=[],v=[],A=[[]],U=[[]],it.inflate_trees_fixed(k,v,A,U),d.init(k[0],v[0],A[0],0,U[0],0),b>>>=3,w-=3,a=6;break;case 2:b>>>=3,w-=3,a=3;break;case 3:return b>>>=3,w-=3,a=9,t.msg=\"invalid block type\",e=-3,n.bitb=b,n.bitk=w,t.avail_in=x,t.total_in+=p-t.next_in_index,t.next_in_index=p,n.write=g,n.inflate_flush(t,e)}break;case 1:for(;w<32;){if(0===x)return n.bitb=b,n.bitk=w,t.avail_in=x,t.total_in+=p-t.next_in_index,t.next_in_index=p,n.write=g,n.inflate_flush(t,e);e=0,x--,b|=(255&t.read_byte(p++))<>>16&65535)!=(65535&b))return a=9,t.msg=\"invalid stored block lengths\",e=-3,n.bitb=b,n.bitk=w,t.avail_in=x,t.total_in+=p-t.next_in_index,t.next_in_index=p,n.write=g,n.inflate_flush(t,e);r=65535&b,b=w=0,a=0!==r?2:0!==c?7:0;break;case 2:if(0===x)return n.bitb=b,n.bitk=w,t.avail_in=x,t.total_in+=p-t.next_in_index,t.next_in_index=p,n.write=g,n.inflate_flush(t,e);if(0===y&&(g==n.end&&0!==n.read&&(g=0,y=gx&&(h=x),h>y&&(h=y),n.window.set(t.read_buf(p,h),g),p+=h,x-=h,g+=h,y-=h,0!=(r-=h))break;a=0!==c?7:0;break;case 3:for(;w<14;){if(0===x)return n.bitb=b,n.bitk=w,t.avail_in=x,t.total_in+=p-t.next_in_index,t.next_in_index=p,n.write=g,n.inflate_flush(t,e);e=0,x--,b|=(255&t.read_byte(p++))<29||(h>>5&31)>29)return a=9,t.msg=\"too many length or distance symbols\",e=-3,n.bitb=b,n.bitk=w,t.avail_in=x,t.total_in+=p-t.next_in_index,t.next_in_index=p,n.write=g,n.inflate_flush(t,e);if(h=258+(31&h)+(h>>5&31),!i||i.length>>=14,w-=14,o=0,a=4;case 4:for(;o<4+(s>>>10);){for(;w<3;){if(0===x)return n.bitb=b,n.bitk=w,t.avail_in=x,t.total_in+=p-t.next_in_index,t.next_in_index=p,n.write=g,n.inflate_flush(t,e);e=0,x--,b|=(255&t.read_byte(p++))<>>=3,w-=3;}for(;o<19;)i[rt[o++]]=0;if(l[0]=7,h=u.inflate_trees_bits(i,l,_,f,t),0!=h)return -3==(e=h)&&(i=null,a=9),n.bitb=b,n.bitk=w,t.avail_in=x,t.total_in+=p-t.next_in_index,t.next_in_index=p,n.write=g,n.inflate_flush(t,e);o=0,a=5;case 5:for(;h=s,!(o>=258+(31&h)+(h>>5&31));){let r,d;for(h=l[0];w>>=h,w-=h,i[o++]=d;else {for(m=18==d?7:d-14,r=18==d?11:3;w>>=h,w-=h,r+=b&X[m],b>>>=m,w-=m,m=o,h=s,m+r>258+(31&h)+(h>>5&31)||16==d&&m<1)return i=null,a=9,t.msg=\"invalid bit length repeat\",e=-3,n.bitb=b,n.bitk=w,t.avail_in=x,t.total_in+=p-t.next_in_index,t.next_in_index=p,n.write=g,n.inflate_flush(t,e);d=16==d?i[m-1]:0;do{i[m++]=d;}while(0!=--r);o=m;}}if(_[0]=-1,S=[],z=[],I=[],E=[],S[0]=9,z[0]=6,h=s,h=u.inflate_trees_dynamic(257+(31&h),1+(h>>5&31),i,S,z,I,E,f,t),0!=h)return -3==h&&(i=null,a=9),e=h,n.bitb=b,n.bitk=w,t.avail_in=x,t.total_in+=p-t.next_in_index,t.next_in_index=p,n.write=g,n.inflate_flush(t,e);d.init(S[0],z[0],f,I[0],f,E[0]),a=6;case 6:if(n.bitb=b,n.bitk=w,t.avail_in=x,t.total_in+=p-t.next_in_index,t.next_in_index=p,n.write=g,1!=(e=d.proc(n,t,e)))return n.inflate_flush(t,e);if(e=0,d.free(t),p=t.next_in_index,x=t.avail_in,b=n.bitb,w=n.bitk,g=n.write,y=g15?(t.inflateEnd(n),-2):(t.wbits=i,n.istate.blocks=new st(n,1<>4)>a.wbits){a.mode=13,t.msg=\"invalid window size\",a.marker=5;break}a.mode=1;case 1:if(0===t.avail_in)return n;if(n=e,t.avail_in--,t.total_in++,i=255&t.read_byte(t.next_in_index++),((a.method<<8)+i)%31!=0){a.mode=13,t.msg=\"incorrect header check\",a.marker=5;break}if(0==(32&i)){a.mode=7;break}a.mode=2;case 2:if(0===t.avail_in)return n;n=e,t.avail_in--,t.total_in++,a.need=(255&t.read_byte(t.next_in_index++))<<24&4278190080,a.mode=3;case 3:if(0===t.avail_in)return n;n=e,t.avail_in--,t.total_in++,a.need+=(255&t.read_byte(t.next_in_index++))<<16&16711680,a.mode=4;case 4:if(0===t.avail_in)return n;n=e,t.avail_in--,t.total_in++,a.need+=(255&t.read_byte(t.next_in_index++))<<8&65280,a.mode=5;case 5:return 0===t.avail_in?n:(n=e,t.avail_in--,t.total_in++,a.need+=255&t.read_byte(t.next_in_index++),a.mode=6,2);case 6:return a.mode=13,t.msg=\"need dictionary\",a.marker=0,-2;case 7:if(n=a.blocks.proc(t,n),-3==n){a.mode=13,a.marker=0;break}if(0==n&&(n=e),1!=n)return n;n=e,a.blocks.reset(t,a.was),a.mode=12;case 12:return 1;case 13:return -3;default:return -2}},t.inflateSetDictionary=function(t,e,n){let i=0,a=n;if(!t||!t.istate||6!=t.istate.mode)return -2;const r=t.istate;return a>=1<0&&e.next_in_index!=_&&(r(e.next_in_index),_=e.next_in_index);}while(e.avail_in>0||0===e.avail_out);return s.length>1?(l=new Uint8Array(c),s.forEach((function(t){l.set(t,d),d+=t.length;}))):l=s[0]||new Uint8Array(0),l}},this.flush=function(){e.inflateEnd();};}_t.prototype={inflateInit:function(t){const e=this;return e.istate=new lt,t||(t=15),e.istate.inflateInit(e,t)},inflate:function(t){const e=this;return e.istate?e.istate.inflate(e,t):-2},inflateEnd:function(){const t=this;if(!t.istate)return -2;const e=t.istate.inflateEnd(t);return t.istate=null,e},inflateSync:function(){const t=this;return t.istate?t.istate.inflateSync(t):-2},inflateSetDictionary:function(t,e){const n=this;return n.istate?n.istate.inflateSetDictionary(n,t,e):-2},read_byte:function(t){return this.next_in[t]},read_buf:function(t,e){return this.next_in.subarray(t,t+e)}},self.initCodec=()=>{self.Deflate=Q,self.Inflate=dt;};\\n\\n\\t\\t',n=URL.createObjectURL(new Blob([e],{type:\"text/javascript\"}));t({workerScripts:{inflate:[n],deflate:[n]}})}};\n","/*\n Copyright (c) 2022 Gildas Lormeau. All rights reserved.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright \n notice, this list of conditions and the following disclaimer in \n the documentation and/or other materials provided with the distribution.\n\n 3. The names of the authors may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\n FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,\n INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n\"use strict\";\n\nimport Deflate from \"./lib/core/codecs/deflate.js\";\nimport Inflate from \"./lib/core/codecs/inflate.js\";\nimport { configure } from \"./lib/core/configuration.js\";\nimport getMimeType from \"./lib/core/util/mime-type.js\";\nimport { terminateWorkers } from \"./lib/core/codecs/codec-pool.js\";\n\nconfigure({ Deflate, Inflate });\n\nexport {\n\tfs,\n\tconfigure,\n\tinitShimAsyncCodec,\n\tZipReader,\n\tZipWriter,\n\tReader,\n\tWriter,\n\tTextReader,\n\tTextWriter,\n\tData64URIReader,\n\tData64URIWriter,\n\tBlobReader,\n\tBlobWriter,\n\tHttpReader,\n\tHttpRangeReader,\n\tUint8ArrayWriter,\n\tUint8ArrayReader,\n\tERR_HTTP_RANGE,\n\tERR_BAD_FORMAT,\n\tERR_EOCDR_NOT_FOUND,\n\tERR_EOCDR_ZIP64_NOT_FOUND,\n\tERR_EOCDR_LOCATOR_ZIP64_NOT_FOUND,\n\tERR_CENTRAL_DIRECTORY_NOT_FOUND,\n\tERR_LOCAL_FILE_HEADER_NOT_FOUND,\n\tERR_EXTRAFIELD_ZIP64_NOT_FOUND,\n\tERR_ENCRYPTED,\n\tERR_UNSUPPORTED_ENCRYPTION,\n\tERR_UNSUPPORTED_COMPRESSION,\n\tERR_INVALID_SIGNATURE,\n\tERR_INVALID_PASSWORD,\n\tERR_DUPLICATED_NAME,\n\tERR_INVALID_COMMENT,\n\tERR_INVALID_ENTRY_NAME,\n\tERR_INVALID_ENTRY_COMMENT,\n\tERR_INVALID_VERSION,\n\tERR_INVALID_EXTRAFIELD_TYPE,\n\tERR_INVALID_EXTRAFIELD_DATA,\n\tERR_INVALID_ENCRYPTION_STRENGTH,\n\tERR_UNSUPPORTED_FORMAT,\n\tERR_ABORT\n} from \"./lib/zip-fs.js\";\nexport { getMimeType, terminateWorkers };","// src/utils/ArrayUtils.ts\r\nvar ArrayUtils = class {\r\n /**returns the last element of an Array where the condition is true. If no\r\n * elements match, null is returned\r\n */\r\n static lastWhere(items, condition, thisObj) {\r\n if (!items) {\r\n return null;\r\n }\r\n if (thisObj) {\r\n for (let i = items.length - 1; i >= 0; i--) {\r\n if (condition.call(thisObj, items[i])) {\r\n return items[i];\r\n }\r\n }\r\n } else {\r\n for (let i = items.length - 1; i >= 0; i--) {\r\n if (condition(items[i])) {\r\n return items[i];\r\n }\r\n }\r\n }\r\n return null;\r\n }\r\n /**returns the index of the last element of an Array where the condition is\r\n * true. If no elements match, -1 is returned\r\n */\r\n static lastIndexWhere(items, condition, thisObj) {\r\n if (!items) {\r\n return null;\r\n }\r\n if (thisObj) {\r\n for (let i = items.length - 1; i >= 0; i--) {\r\n if (condition.call(thisObj, items[i])) {\r\n return i;\r\n }\r\n }\r\n } else {\r\n for (let i = items.length - 1; i >= 0; i--) {\r\n if (condition(items[i])) {\r\n return i;\r\n }\r\n }\r\n }\r\n return -1;\r\n }\r\n static removeWhere(items, condition, thisObj) {\r\n if (!items) {\r\n return;\r\n }\r\n if (thisObj) {\r\n for (let i = items.length - 1; i >= 0; i--) {\r\n if (condition.call(thisObj, items[i])) {\r\n items.splice(i, 1);\r\n }\r\n }\r\n } else {\r\n for (let i = items.length - 1; i >= 0; i--) {\r\n if (condition(items[i])) {\r\n items.splice(i, 1);\r\n }\r\n }\r\n }\r\n }\r\n /**removes the first occurance of @item from the @array .\r\n * @returns true if an item was removed. */\r\n static remove(item, array) {\r\n let idx = array.indexOf(item);\r\n if (idx !== -1) {\r\n array.splice(idx, 1);\r\n return true;\r\n } else {\r\n return false;\r\n }\r\n }\r\n /**generates all unique combination permutations from the elements of an\r\n * array.\r\n * @param arr The array of elements to create combinations of\r\n * @param min The minimum number of elements that constitutes a valid combo\r\n * @param max The maximum number of elements that constitutes a valid combo\r\n * \r\n * ex.\r\n * input: ([a1, a2, a3], 1, 2)\r\n * makes: [[a1], [a2], [a3], [a1, a2], [a1, a3], [a2, a3]]\r\n */\r\n static generateCombos(arr, min, max) {\r\n const combinations = [];\r\n function generate(combination, start) {\r\n if (combination.length >= min && combination.length <= max) {\r\n combinations.push([...combination]);\r\n }\r\n for (let i = start; i < arr.length; i++) {\r\n combination.push(arr[i]);\r\n generate(combination, i + 1);\r\n combination.pop();\r\n }\r\n }\r\n generate([], 0);\r\n return combinations;\r\n }\r\n};\r\n\r\n// src/utils/BrowserUtils.ts\r\nvar BrowserUtils = class {\r\n static isSafari() {\r\n let uagent = window.navigator.userAgent.toLowerCase();\r\n return uagent.indexOf(\"safari\") !== -1 && uagent.indexOf(\"chrome\") === -1 && uagent.indexOf(\"android\") === -1;\r\n }\r\n static isMobile() {\r\n let u = window.navigator.userAgent.toLowerCase();\r\n return u.includes(\"android\") || u.includes(\"webos\") || u.includes(\"iphone\") || u.includes(\"ipad\") || u.includes(\"ipod\") || u.includes(\"blackberry\") || u.includes(\"windows phone\");\r\n }\r\n static isiOS() {\r\n let u = window.navigator.userAgent.toLowerCase();\r\n return u.includes(\"iphone\") || u.includes(\"ipad\") || u.includes(\"ipod\");\r\n }\r\n static isAndroid() {\r\n let u = window.navigator.userAgent.toLowerCase();\r\n return u.includes(\"android\");\r\n }\r\n /**returns the query parameters in the URL - use .get() to retrieve a value\r\n * by name*/\r\n static getQueryParams() {\r\n return new URLSearchParams(location.search);\r\n }\r\n /**returns the string value of the query parameter matching the passed in \r\n * name. if url is left null, window.location is used.*/\r\n static getQueryParam(paramName, url) {\r\n if (url) {\r\n let idx = url.indexOf(\"?\");\r\n if (idx === -1) {\r\n return null;\r\n }\r\n return new URLSearchParams(url.slice(idx)).get(paramName);\r\n } else {\r\n return new URLSearchParams(location.search).get(paramName);\r\n }\r\n }\r\n /**returns the number value of an integer value from the query string. If \r\n * the value doesn't exist or fails to convert as an number, null is returned.\r\n * If you don't specify params, [Uri.base.queryParameters] is used.*/\r\n static getQueryParamInt(paramName, params = null) {\r\n if (params == null)\r\n params = new URLSearchParams(location.search);\r\n let param = params.get(paramName);\r\n if (param == null)\r\n return null;\r\n try {\r\n return Number.parseInt(param);\r\n } catch (err) {\r\n return null;\r\n }\r\n }\r\n /**constructs and returns a new query string after removing and adding\r\n * the requested parameters. This does not update the browser URL (use\r\n * something like window.history.replaceState({\"page\":\"pageName\"}, \"\", \r\n * \"./qstring\") to achieve this). If there are no query parameters (or\r\n * all are removed), \"\" is returned. Note, this will remove any duplicate\r\n * parameters from the qstring. If you add a value that's already in\r\n * the query string, it will be updated instead of added.*/\r\n static getUpdatedQueryString(paramsToRemove, paramsToAdd) {\r\n let qstring;\r\n if (paramsToAdd != null) {\r\n for (let key of paramsToAdd.keys()) {\r\n if (qstring == null) {\r\n qstring = `?${key}=${paramsToAdd.get(key)}`;\r\n } else {\r\n qstring += `&${key}=${paramsToAdd.get(key)}`;\r\n }\r\n }\r\n }\r\n let params = new URLSearchParams(location.search);\r\n for (let key of params.keys()) {\r\n if ((paramsToRemove == null || paramsToRemove.indexOf(key) === -1) && (paramsToAdd == null || !paramsToAdd.has(key))) {\r\n if (qstring == null) {\r\n qstring = `?${key}=${params.get(key)}`;\r\n } else {\r\n qstring += `&${key}=${params.get(key)}`;\r\n }\r\n }\r\n }\r\n return qstring ?? \"\";\r\n }\r\n /**constructs and returns a new query string. If there are no query \r\n * parameters, \"\" is returned. If a key in the params is mapped to a null\r\n * value, that key/value pair is omitted.*/\r\n static buildQueryString(params) {\r\n let qstring;\r\n if (params != null) {\r\n for (let key of params.keys()) {\r\n if (params.get(key) == null) {\r\n continue;\r\n }\r\n if (qstring == null) {\r\n qstring = `?${key}=${params.get(key)}`;\r\n } else {\r\n qstring += `&${key}=${params.get(key)}`;\r\n }\r\n }\r\n }\r\n return qstring ?? \"\";\r\n }\r\n /**returns the folder path portion of a url that points to a file. If\r\n * the path includes no slashes, a single \"/\" is returned.*/\r\n static getFolderPathToFile(fileUrl) {\r\n let i = fileUrl.lastIndexOf(\"/\");\r\n if (i < 0)\r\n i = fileUrl.lastIndexOf(\"\\\\\");\r\n if (i >= 0)\r\n return fileUrl.substring(0, i + 1);\r\n return \"/\";\r\n }\r\n};\r\n\r\n// src/utils/CompressionUtils.ts\r\nimport {\r\n BlobReader,\r\n BlobWriter,\r\n TextReader,\r\n TextWriter,\r\n Uint8ArrayReader,\r\n ZipReader,\r\n ZipWriter\r\n} from \"@zip.js/zip.js\";\r\n\r\n// src/utils/ConversionUtils.ts\r\nvar ConversionUtils = class _ConversionUtils {\r\n static getUint8ArrayFromArrayBuffer(buffer) {\r\n return new Uint8Array(buffer);\r\n }\r\n static getBlobFromArrayBuffer(buffer, type = null) {\r\n let array = _ConversionUtils.getUint8ArrayFromArrayBuffer(buffer);\r\n return type == null ? new Blob([array]) : new Blob([array], { type });\r\n }\r\n static async getUint8ArrayFromBlob(blob) {\r\n return new Promise((resolve, reject) => {\r\n _ConversionUtils.getArrayBufferFromBinaryBlob(blob).then((buffer) => {\r\n let array = _ConversionUtils.getUint8ArrayFromArrayBuffer(\r\n buffer\r\n );\r\n resolve(array);\r\n }).catch((err) => {\r\n reject(err);\r\n });\r\n });\r\n }\r\n static getNumberArrayFromUint8Array(uint8Array) {\r\n return Array.from(uint8Array);\r\n }\r\n /**returns a string decoded from a decompressed Uint8Array. */\r\n static getStringFromUint8Array(array) {\r\n return new TextDecoder().decode(array);\r\n }\r\n static getUint8ArrayFromString(text) {\r\n return new TextEncoder().encode(text);\r\n }\r\n /**returns a string read from a Blob (File extends Blob and also works) */\r\n static getStringFromTextBlob(blob, encoding = \"UTF-8\") {\r\n return new Promise((resolve, reject) => {\r\n let reader = new FileReader();\r\n reader.onload = (_) => {\r\n resolve(reader.result);\r\n };\r\n reader.onerror = (ev) => {\r\n reject(ev.toString());\r\n };\r\n reader.readAsText(blob, encoding);\r\n });\r\n }\r\n /**returns an ArrayBuffer read from a Blob (File extends Blob and also\r\n * works) */\r\n static getArrayBufferFromBinaryBlob(blob) {\r\n return new Promise((resolve, reject) => {\r\n let reader = new FileReader();\r\n reader.onload = (_) => {\r\n resolve(reader.result);\r\n };\r\n reader.onerror = (ev) => {\r\n reject(ev.toString());\r\n };\r\n reader.readAsArrayBuffer(blob);\r\n });\r\n }\r\n};\r\n\r\n// src/utils/CompressionUtils.ts\r\nvar CompressionUtils = {\r\n // https://gildas-lormeau.github.io/zip.js/core-api.html\r\n /**\r\n * \r\n * @param files A Map of filename/blob pairs\r\n * @param compression A value from 0 (no compression) to 9. 5 is default\r\n * @returns A Zip blob\r\n */\r\n async zipBlobs(files, compression = 5) {\r\n try {\r\n let blobWriter = new BlobWriter(\"application/zip\");\r\n let zipWriter = new ZipWriter(blobWriter);\r\n for (let fileName of files.keys()) {\r\n let textReader = new BlobReader(files.get(fileName));\r\n await zipWriter.add(fileName, textReader, {\r\n level: compression\r\n });\r\n }\r\n await zipWriter.close();\r\n let blob = blobWriter.getData();\r\n return blob;\r\n } catch (err) {\r\n console.log(err);\r\n return null;\r\n }\r\n },\r\n /**\r\n * Decompresses a zip file to a collection of Entry objects\r\n * @param file a Blob, ArrayBuffer or Uint8Array of a compressed zip file\r\n * @returns an array of Entry objects\r\n */\r\n async unzip(file) {\r\n try {\r\n let reader;\r\n if (file instanceof Blob) {\r\n reader = new BlobReader(file);\r\n } else if (file instanceof ArrayBuffer) {\r\n let array = ConversionUtils.getUint8ArrayFromArrayBuffer(file);\r\n reader = new Uint8ArrayReader(array);\r\n } else if (file instanceof Uint8Array) {\r\n reader = new Uint8ArrayReader(file);\r\n }\r\n let zipReader = new ZipReader(reader);\r\n let entries = await zipReader.getEntries();\r\n await zipReader.close();\r\n return entries;\r\n } catch (err) {\r\n console.log(err);\r\n return null;\r\n }\r\n },\r\n async unzipToUint8Array(compressed) {\r\n try {\r\n let reader = new Uint8ArrayReader(compressed);\r\n await reader.init();\r\n let decompressed = await reader.readUint8Array(\r\n 0,\r\n compressed.length\r\n );\r\n return decompressed;\r\n } catch (err) {\r\n console.log(err);\r\n return null;\r\n }\r\n },\r\n async getStringFromEntry(entry) {\r\n try {\r\n let writer = new TextWriter();\r\n let text = await entry.getData(writer);\r\n return text;\r\n } catch (err) {\r\n console.log(err);\r\n return null;\r\n }\r\n },\r\n async getBlobFromEntry(entry) {\r\n try {\r\n let writer = new BlobWriter();\r\n let blob = await entry.getData(writer);\r\n return blob;\r\n } catch (err) {\r\n console.log(err);\r\n return null;\r\n }\r\n },\r\n /**\r\n *creates a [Blob] object of a text string after compressing it with\r\n *ZIP compression.\r\n */\r\n async createZipFileFromString(text, uncompressedName = \"file.txt\") {\r\n try {\r\n let blobWriter = new BlobWriter(\"application/zip\");\r\n let zipWriter = new ZipWriter(blobWriter);\r\n let textReader = new TextReader(text);\r\n await zipWriter.add(uncompressedName, textReader);\r\n await zipWriter.close();\r\n let blob = blobWriter.getData();\r\n return blob;\r\n } catch (err) {\r\n console.log(err);\r\n return null;\r\n }\r\n },\r\n /**converts a [html.Blob] object that was zip compressed into its string\r\n * contents. This is the counterpart to [createZipFileFromString].*/\r\n async getStringFromZipBlob(zipBlob) {\r\n let entries = await CompressionUtils.unzip(zipBlob);\r\n if (entries != null) {\r\n let text = await CompressionUtils.getStringFromEntry(entries[0]);\r\n return text;\r\n }\r\n }\r\n};\r\n\r\n// src/utils/JsonUtils.ts\r\nvar JsonUtils = class {\r\n static decode(source) {\r\n try {\r\n return JSON.parse(source);\r\n } catch (err) {\r\n console.log(err);\r\n return null;\r\n }\r\n }\r\n static decodeAsList(source) {\r\n try {\r\n return JSON.parse(source);\r\n } catch (err) {\r\n console.log(err);\r\n return null;\r\n }\r\n }\r\n static decodeAsMapOfStringKeys(source) {\r\n try {\r\n return JSON.parse(source);\r\n } catch (err) {\r\n console.log(err);\r\n return null;\r\n }\r\n }\r\n static encode(value) {\r\n try {\r\n return JSON.stringify(value);\r\n } catch (err) {\r\n console.log(err);\r\n return null;\r\n }\r\n }\r\n static jsArrayToArray(array) {\r\n let list = [];\r\n for (let el of array) {\r\n list.push(el);\r\n }\r\n return list;\r\n }\r\n};\r\n\r\n// src/utils/StringUtils.ts\r\nvar StringUtils = class {\r\n static isString(obj) {\r\n return typeof obj === \"string\" || obj instanceof String;\r\n }\r\n static generateRandomString(length) {\r\n var result = \"\";\r\n var characters = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\";\r\n let numCharacters = characters.length;\r\n for (let i = 0; i < length; i++) {\r\n let idx = Math.trunc(Math.random() * numCharacters);\r\n result += characters[idx];\r\n }\r\n return result;\r\n }\r\n /**returns true if @str IS null or undefined but NOT empty */\r\n static isNull(str) {\r\n return str == null;\r\n }\r\n /**returns true if @str is NOT null but IS empty */\r\n static isEmpty(str) {\r\n return str != null && str.length === 0;\r\n }\r\n /**returns true if @str is null, undefined or empty */\r\n static isNullOrEmpty(str) {\r\n return !str || str.length === 0;\r\n }\r\n /**returns true if @str is not null or undefined (but may be empty) */\r\n static isNotNull(str) {\r\n return str != null;\r\n }\r\n /**returns true if @str is not null, undefined or empty. If false, it is\r\n * empty or null/undefined. */\r\n static isNotEmpty(str) {\r\n return str != null && str.length > 0;\r\n }\r\n};\r\n\r\n// src/utils/dtos.ts\r\nvar IDTO = class {\r\n};\r\nvar RdtoMessage = class {\r\n};\r\nRdtoMessage.ALREADY_EXISTS = \"already exists\";\r\nRdtoMessage.NOT_FOUND = \"not found\";\r\nRdtoMessage.SERVER_ERROR = \"server error\";\r\nRdtoMessage.UNAUTHORIZED = \"unauthorized\";\r\nvar RDTO = class {\r\n constructor(json, generator) {\r\n /**set to true if the response JSON was properly formatted */\r\n this.success = false;\r\n /**/\r\n //////////do not use these for public API//////////////*/\r\n // ignore: unused_field\r\n this._jsonParsed = false;\r\n this._generator = generator;\r\n if (json != null) {\r\n let isString = StringUtils.isString(json);\r\n let jsonMap = isString ? JsonUtils.decode(json) : json;\r\n this._parse(jsonMap);\r\n }\r\n }\r\n _parse(json) {\r\n if (json == null || !(\"success\" in json)) {\r\n return;\r\n }\r\n this._jsonParsed = true;\r\n this.success = json[\"success\"];\r\n this.message = json[\"message\"];\r\n if (this.success && \"data\" in json) {\r\n let dataValue = json[\"data\"];\r\n if (StringUtils.isString(dataValue)) {\r\n dataValue = JsonUtils.decode(dataValue);\r\n if (dataValue == null) {\r\n console.log(`invalid json object?: ${dataValue}`);\r\n return;\r\n }\r\n }\r\n if (dataValue instanceof Array) {\r\n this.dataList = [];\r\n for (let d of dataValue) {\r\n let dto = this._generator();\r\n dto.parse(d);\r\n this.dataList.push(dto);\r\n }\r\n } else {\r\n this.data = this._generator();\r\n this.data.parse(dataValue);\r\n }\r\n }\r\n }\r\n};\r\nvar MarkerRDTO = class extends RDTO {\r\n constructor(json, generator) {\r\n super(json, generator);\r\n }\r\n _parse(json) {\r\n super._parse(json);\r\n if (json != null) {\r\n this.marker = json[\"marker\"];\r\n }\r\n }\r\n};\r\nvar EmptyDTO = class extends IDTO {\r\n parse(json) {\r\n }\r\n};\r\n\r\n// src/utils/geometry.ts\r\nvar Point = class {\r\n constructor(x, y) {\r\n this.x = x;\r\n this.y = y;\r\n }\r\n};\r\n\r\n// src/utils/HtmlUtils.ts\r\nvar HtmlUtils = class {\r\n /**removes all Option elements from a Select element */\r\n static removeOptionsFromSelect(el) {\r\n for (let i = el.options.length - 1; i >= 0; i--) {\r\n el.options[i].remove();\r\n }\r\n }\r\n};\r\n\r\n// src/utils/HttpUtils.ts\r\nvar HttpUtils = class _HttpUtils {\r\n static get(url, {\r\n userToken = null,\r\n responseType = \"text\"\r\n }) {\r\n return new Promise((resolve, reject) => {\r\n let request = new XMLHttpRequest();\r\n request.open(\"GET\", url);\r\n if (userToken) {\r\n request.setRequestHeader(\r\n \"Authorization\",\r\n `Bearer ${userToken}`\r\n );\r\n }\r\n request.responseType = responseType;\r\n request.onload = (e) => {\r\n request.onload = null;\r\n request.onerror = null;\r\n resolve(request);\r\n };\r\n request.onerror = (e) => {\r\n request.onload = null;\r\n request.onerror = null;\r\n reject(request);\r\n };\r\n request.send();\r\n });\r\n }\r\n /**Shortcut method for retrieving string content from GET call. If the\r\n * request fails, null is returned*/\r\n static async getString(url, userToken = null) {\r\n try {\r\n let request = await _HttpUtils.get(url, {\r\n userToken,\r\n responseType: \"text\"\r\n });\r\n return request.responseText;\r\n } catch (err) {\r\n return null;\r\n }\r\n }\r\n /**Shortcut method for retrieving binary content from GET call. If the\r\n * request fails, null is returned*/\r\n static async getArrayBuffer(url, userToken = null) {\r\n try {\r\n let request = await _HttpUtils.get(url, {\r\n userToken,\r\n responseType: \"arraybuffer\"\r\n });\r\n return request.response;\r\n } catch (err) {\r\n return null;\r\n }\r\n }\r\n /**Shortcut method for retrieving binary content from GET call. If the\r\n * request fails, null is returned*/\r\n static async getBinaryBlob(url, mediaType, userToken = null) {\r\n try {\r\n let request = await _HttpUtils.get(url, {\r\n userToken,\r\n responseType: \"arraybuffer\"\r\n });\r\n let ab = request.response;\r\n return ConversionUtils.getBlobFromArrayBuffer(ab, mediaType);\r\n } catch (err) {\r\n return null;\r\n }\r\n }\r\n /**Performs a post operation as multipart/form-data if [formData] is\r\n * specified or as application/json content if either a JSON encoded string \r\n * or [dynamic] object is specified for the [json] parameter. The \r\n * [userToken] can be used to set a JWT token for authorization. The\r\n * [responseType] should be one of the following:\r\n * 'text' (default), 'arraybuffer', 'blob', 'document', 'json'.\r\n * [method] should be either \"POST\" (default), \"PUT\" or \"PATCH\". Any other\r\n * value will throw an error.\r\n * returns a [Promise] that resolves to the [XMLHttpRequest] upon \r\n * completion.*/\r\n static post(url, {\r\n formData = null,\r\n json = null,\r\n userToken = null,\r\n responseType = \"text\",\r\n method = \"POST\"\r\n }) {\r\n if (method !== \"POST\" && method != \"PUT\" && method != \"PATCH\") {\r\n throw 'method must be \"POST\", \"PATCH\" or \"PUT\"';\r\n }\r\n return new Promise((resolve, reject) => {\r\n let encodedJson;\r\n if (json != null) {\r\n encodedJson = StringUtils.isString(json) ? json : JsonUtils.encode(json);\r\n }\r\n let request = new XMLHttpRequest();\r\n request.open(method, url);\r\n if (userToken) {\r\n request.setRequestHeader(\r\n \"Authorization\",\r\n `Bearer ${userToken}`\r\n );\r\n }\r\n if (encodedJson) {\r\n request.setRequestHeader(\r\n \"Content-Type\",\r\n \"application/json; charset=UTF-8\"\r\n );\r\n }\r\n request.responseType = responseType;\r\n request.onload = (e) => {\r\n request.onload = null;\r\n request.onerror = null;\r\n resolve(request);\r\n };\r\n request.onerror = (e) => {\r\n request.onload = null;\r\n request.onerror = null;\r\n reject(request);\r\n };\r\n request.send(formData ?? encodedJson);\r\n });\r\n }\r\n static delete(url, {\r\n userToken = null,\r\n responseType = \"text\"\r\n }) {\r\n return new Promise((resolve, reject) => {\r\n let request = new XMLHttpRequest();\r\n request.open(\"DELETE\", url);\r\n if (userToken) {\r\n request.setRequestHeader(\r\n \"Authorization\",\r\n `Bearer ${userToken}`\r\n );\r\n }\r\n request.responseType = responseType;\r\n request.onload = (e) => {\r\n request.onload = null;\r\n request.onerror = null;\r\n resolve(request);\r\n };\r\n request.onerror = (e) => {\r\n request.onload = null;\r\n request.onerror = null;\r\n reject(request);\r\n };\r\n request.send();\r\n });\r\n }\r\n static parseQueryString(queryString = window.location.search) {\r\n const searchParams = new URLSearchParams(queryString);\r\n const params = {};\r\n for (const [key, value] of searchParams.entries()) {\r\n if (params.hasOwnProperty(key)) {\r\n if (Array.isArray(params[key])) {\r\n params[key].push(value);\r\n } else {\r\n params[key] = [params[key], value];\r\n }\r\n } else {\r\n params[key] = value;\r\n }\r\n }\r\n return params;\r\n }\r\n};\r\n\r\n// src/utils/IdxDbManager.ts\r\nvar IdxDbManager = class _IdxDbManager {\r\n /**example of [_config]\r\n * ```\r\n * {\r\n * \t//a unique db name within this domain (could have multiple)\r\n * \t\"dbName\": \"odogyDb\", \r\n * \t//increment when creating/changing objectstores\r\n * \t\"version\": 1, \r\n * \t//will remove/recreate stores on version increment\r\n * \t\"deleteOldVersionStores\": false,\r\n * \t//similar to tables\r\n * \t\"objectStores\": [ \r\n * \t\t{\r\n * \t\t\t//unique name for this store\r\n * \t\t\t\"name\": \"soundfonts\",\r\n * \t\t\t//primary key name - used in operations\r\n * \t\t\t\"keypath\": \"id\",\r\n * \t\t\t//optionally automatically generate/increment that prim key\r\n * \t\t\t\"autoIncrement\": false\r\n * \t\t\t//similar to additional table columns\r\n * \t\t\t\"indexes\": [\r\n * \t\t\t\t{\r\n * \t\t\t\t\t\"name\" : \"version\",\r\n * \t\t\t\t\t\"keypath\" : \"version\",\r\n * \t\t\t\t\t\"unique\" : false\r\n * \t\t\t\t},\r\n * \t\t\t\t{\r\n * \t\t\t\t\t\"name\" : \"blob\",\r\n * \t\t\t\t\t\"keypath\" : \"blob\",\r\n * \t\t\t\t\t\"unique\" : false\r\n * \t\t\t\t},\r\n * \t\t\t\t//additional columns\r\n * \t\t\t]\r\n * \t\t},\r\n * \t\t//additional object stores\r\n * \t]\r\n * };\r\n * ```*/\r\n constructor(config) {\r\n this._dbState = 1 /* closed */;\r\n this._initializeDatabase = (e) => {\r\n let request = e.target;\r\n let db = request.result;\r\n let deleteOld = this._config[\"deleteOldVersionStores\"];\r\n for (let os of this._config[\"objectStores\"]) {\r\n if (db.objectStoreNames.contains(os[\"name\"])) {\r\n if (deleteOld) {\r\n db.deleteObjectStore(os[\"name\"]);\r\n } else {\r\n continue;\r\n }\r\n }\r\n let autoIncrement = os[\"autoIncrement\"] === true;\r\n let store = db.createObjectStore(os[\"name\"], {\r\n keyPath: os[\"keypath\"],\r\n autoIncrement\r\n });\r\n for (let idx of os[\"indexes\"]) {\r\n store.createIndex(idx[\"name\"], idx[\"keypath\"], {\r\n unique: idx[\"unique\"]\r\n });\r\n }\r\n }\r\n };\r\n this._config = config;\r\n if (!window.indexedDB) {\r\n window.indexedDB = window.webkitIndexedDB || window.mozIndexedDB;\r\n }\r\n if (!window.IDBTransaction) {\r\n window.IDBTransaction = //@ts-ignore\r\n window.webkitIDBTransaction || window.msIDBTransaction;\r\n }\r\n if (!window.IDBKeyRange) {\r\n window.IDBKeyRange = //@ts-ignore\r\n window.webkitIDBKeyRange || window.msIDBKeyRange;\r\n }\r\n }\r\n /**Opens a database for operations. This must be called before using\r\n * other methods in the [IdxDbManager].*/\r\n open() {\r\n return new Promise((resolve, reject) => {\r\n let response = new IdxDbManagerResponse();\r\n if (!_IdxDbManager.isSupported) {\r\n response.success = false;\r\n response.error = \"IndexedDb not supported.\";\r\n resolve(response);\r\n }\r\n let openRequest = window.indexedDB.open(\r\n this._config[\"dbName\"],\r\n this._config[\"version\"]\r\n );\r\n openRequest.onerror = (e) => {\r\n openRequest.onerror = null;\r\n openRequest.onsuccess = null;\r\n response.error = openRequest.error;\r\n response.success = false;\r\n resolve(response);\r\n };\r\n openRequest.onsuccess = (e) => {\r\n openRequest.onerror = null;\r\n openRequest.onsuccess = null;\r\n this._db = openRequest.result;\r\n this._dbState = 0 /* open */;\r\n this._loadFromDb();\r\n response.success = true;\r\n resolve(response);\r\n };\r\n openRequest.addEventListener(\r\n \"upgradeneeded\",\r\n this._initializeDatabase\r\n );\r\n });\r\n }\r\n /**Adds a new record to an object store. For example, to an object store\r\n * called 'soundfonts' (the [objectStoreName]) we might add this [record]:\r\n * ```\r\n * \t{ \r\n * \t\t\"id\": \"gUserGsOgg\", \r\n * \t\t\"filename\": \"gUserGsMS1442_ogg.zip\",\r\n * \t\t\"version\": _soundfontVersion,\r\n * \t\t\"blob\": blob\r\n * \t}\r\n * ```*/\r\n addRecord(objectStoreName, record) {\r\n if (this._dbState !== 0 /* open */)\r\n throw \"Call IdxDbManager.open() before using methods to add or manipulate records\";\r\n return new Promise((resolve, reject) => {\r\n let response = new IdxDbManagerResponse();\r\n try {\r\n let transaction = this._db.transaction(\r\n objectStoreName,\r\n \"readwrite\"\r\n );\r\n let objectStore = transaction.objectStore(objectStoreName);\r\n let request = objectStore.add(record);\r\n this._awaitTransactionResult(transaction, request).then((_) => {\r\n response.addedKey = request.result;\r\n response.record = record;\r\n response.success = true;\r\n resolve(response);\r\n }).catch((err) => {\r\n response.success = false;\r\n response.error = err;\r\n resolve(response);\r\n });\r\n } catch (err) {\r\n response.success = false;\r\n response.error = err;\r\n resolve(response);\r\n }\r\n });\r\n }\r\n /**Updates the contents of a record in an object store. If the record does\r\n * not exist, it is added. */\r\n updateRecord(objectStoreName, record) {\r\n if (this._dbState !== 0 /* open */)\r\n throw \"Call IdxDbManager.open() before using methods to add or manipulate records\";\r\n return new Promise((resolve, reject) => {\r\n let response = new IdxDbManagerResponse();\r\n try {\r\n let transaction = this._db.transaction(\r\n objectStoreName,\r\n \"readwrite\"\r\n );\r\n let objectStore = transaction.objectStore(objectStoreName);\r\n let request = objectStore.put(record);\r\n this._awaitTransactionResult(transaction, request).then((_) => {\r\n response.addedKey = request.result;\r\n response.record = record;\r\n response.success = true;\r\n resolve(response);\r\n }).catch((err) => {\r\n response.success = false;\r\n response.error = err;\r\n resolve(response);\r\n });\r\n } catch (err) {\r\n response.success = false;\r\n response.error = err;\r\n resolve(response);\r\n }\r\n });\r\n }\r\n /**Removes a record from an object store.*/\r\n deleteRecord(objectStoreName, key) {\r\n if (this._dbState !== 0 /* open */)\r\n throw \"Call IdxDbManager.open() before using methods to add or manipulate records\";\r\n return new Promise((resolve, reject) => {\r\n let response = new IdxDbManagerResponse();\r\n try {\r\n let transaction = this._db.transaction(\r\n objectStoreName,\r\n \"readwrite\"\r\n );\r\n let objectStore = transaction.objectStore(objectStoreName);\r\n let request = objectStore.delete(key);\r\n this._awaitTransactionResult(transaction, request).then((_) => {\r\n response.success = true;\r\n resolve(response);\r\n }).catch((err) => {\r\n response.success = false;\r\n response.error = err;\r\n resolve(response);\r\n });\r\n } catch (err) {\r\n response.success = false;\r\n response.error = err;\r\n resolve(response);\r\n }\r\n });\r\n }\r\n /**Removes all records from an object store*/\r\n deleteAllRecords(objectStoreName) {\r\n if (this._dbState !== 0 /* open */)\r\n throw \"Call IdxDbManager.open() before using methods to add or manipulate records\";\r\n return new Promise((resolve, reject) => {\r\n let response = new IdxDbManagerResponse();\r\n try {\r\n let transaction = this._db.transaction(\r\n objectStoreName,\r\n \"readwrite\"\r\n );\r\n let objectStore = transaction.objectStore(objectStoreName);\r\n let request = objectStore.clear();\r\n this._awaitTransactionResult(transaction, request).then((_) => {\r\n response.success = true;\r\n resolve(response);\r\n }).catch((err) => {\r\n response.success = false;\r\n response.error = err;\r\n resolve(response);\r\n });\r\n } catch (err) {\r\n response.success = false;\r\n response.error = err;\r\n resolve(response);\r\n }\r\n });\r\n }\r\n /**Retrieves a record from a store. Get the record from the\r\n * [IdxDbManagerResponse.record] property.*/\r\n getRecord(objectStoreName, key) {\r\n if (this._dbState !== 0 /* open */)\r\n throw \"Call IdxDbManager.open() before using methods to add or manipulate records\";\r\n return new Promise((resolve, reject) => {\r\n let response = new IdxDbManagerResponse();\r\n try {\r\n let transaction = this._db.transaction(\r\n objectStoreName,\r\n \"readonly\"\r\n );\r\n let objectStore = transaction.objectStore(objectStoreName);\r\n let request = objectStore.get(key);\r\n this._awaitTransactionResult(transaction, request).then((_) => {\r\n response.record = request.result;\r\n response.success = true;\r\n resolve(response);\r\n }).catch((err) => {\r\n response.success = false;\r\n response.error = err;\r\n resolve(response);\r\n });\r\n } catch (err) {\r\n response.success = false;\r\n response.error = err;\r\n resolve(response);\r\n }\r\n });\r\n }\r\n /**Returns an [IdxDbManagerResponse] with the records property holding a\r\n * [List] record objects.*/\r\n getAllRecords(objectStoreName) {\r\n if (this._dbState !== 0 /* open */)\r\n throw \"Call IdxDbManager.open() before using methods to add or manipulate records\";\r\n return new Promise((resolve, reject) => {\r\n let response = new IdxDbManagerResponse();\r\n try {\r\n let transaction = this._db.transaction(\r\n objectStoreName,\r\n \"readonly\"\r\n );\r\n let objectStore = transaction.objectStore(objectStoreName);\r\n let request = objectStore.getAll();\r\n this._awaitTransactionResult(transaction, request).then((_) => {\r\n response.records = request.result;\r\n response.success = true;\r\n resolve(response);\r\n }).catch((err) => {\r\n response.success = false;\r\n response.error = err;\r\n resolve(response);\r\n });\r\n } catch (err) {\r\n response.success = false;\r\n response.error = err;\r\n resolve(response);\r\n }\r\n });\r\n }\r\n closeDatabase() {\r\n if (this._dbState === 0 /* open */) {\r\n this._db.close();\r\n this._dbState = 1 /* closed */;\r\n }\r\n }\r\n /**attempts to remove database. This may not work properly, so consider\r\n * just updating to a new version of the database instead.*/\r\n deleteDatabase(dbName) {\r\n return new Promise((resolve, reject) => {\r\n let response = new IdxDbManagerResponse();\r\n let finish = (success, error) => {\r\n response.success = success;\r\n response.error = error;\r\n resolve(response);\r\n };\r\n try {\r\n if (this._db && this._dbState === 0 /* open */) {\r\n this.closeDatabase();\r\n }\r\n let request = window.indexedDB.deleteDatabase(dbName);\r\n request.onblocked = (e) => {\r\n finish(false, \"database deletion blocked\");\r\n };\r\n request.onerror = (e) => {\r\n finish(false, request.error);\r\n };\r\n request.onsuccess = (e) => {\r\n finish(true);\r\n };\r\n } catch (err) {\r\n finish(false, err);\r\n }\r\n });\r\n }\r\n _loadFromDb() {\r\n }\r\n _awaitTransactionResult(transaction, request) {\r\n return new Promise((resolve, reject) => {\r\n let transactionComplete = false;\r\n let addSuccessful = false;\r\n let checkFinished = () => {\r\n if (transactionComplete && addSuccessful) {\r\n resolve();\r\n }\r\n };\r\n transaction.oncomplete = (e) => {\r\n transactionComplete = true;\r\n checkFinished();\r\n };\r\n transaction.onerror = (e) => {\r\n reject(transaction.error);\r\n };\r\n request.onsuccess = (e) => {\r\n addSuccessful = true;\r\n checkFinished();\r\n };\r\n request.onerror = (e) => {\r\n reject(request.error);\r\n };\r\n });\r\n }\r\n /**returns true if indexedDb is supported in the current browser*/\r\n static get isSupported() {\r\n return !!(window.indexedDB || //@ts-ignore\r\n window.webkitIndexedDB || window.mozIndexedDB);\r\n }\r\n};\r\nvar IdxDbManagerResponse = class {\r\n};\r\n\r\n// src/utils/ts-typed-events.ts\r\nvar BaseEvent = class {\r\n /**\r\n * Marked as protected to discourage creation outside of\r\n * createEventEmitter().\r\n */\r\n constructor() {\r\n /** All the current listeners for this event. */\r\n this.listeners = [];\r\n }\r\n /**\r\n * Attaches a callback to trigger on all emits for this event.\r\n *\r\n * @param callback - The callback to invoke on all emits.\r\n */\r\n on(callback) {\r\n this.listeners.push({\r\n once: false,\r\n callback\r\n });\r\n }\r\n /**\r\n * Attaches a callback to trigger on only the first emit for this event.\r\n *\r\n * This version either takes a callback or returns a promise.\r\n *\r\n * @param callback - Optional callback, if specified invokes the callback\r\n * only once when the event is triggered, then removes it.\r\n * Otherwise returns a promise that resolves with the value the next time\r\n * this event is triggered.\r\n * @returns Nothing if a callback is passed, otherwise a Promise that\r\n * should resolve once this Event emits.\r\n */\r\n once(callback) {\r\n if (!callback) {\r\n const promise = new Promise((resolve) => {\r\n this.once(resolve);\r\n });\r\n this.listeners[this.listeners.length - 1].promise = promise;\r\n return promise;\r\n }\r\n this.listeners.push({\r\n once: true,\r\n callback\r\n });\r\n }\r\n /**\r\n * Removes a callback from this event (regardless of once vs on).\r\n *\r\n * Returns true if a callback was removed, false otherwise.\r\n *\r\n * @param listener - The callback to remove.\r\n * @returns True if a callback was removed, false otherwise.\r\n */\r\n off(listener) {\r\n const originalLength = this.listeners.length;\r\n this.listeners = this.listeners.filter((l) => {\r\n return listener !== l.callback && (!l.promise || listener !== l.promise);\r\n });\r\n if (this.listeners.length < originalLength - 1) {\r\n console.log(\"extra callback registered: \" + listener.toString());\r\n }\r\n return this.listeners.length !== originalLength;\r\n }\r\n /**\r\n * Removes ALL callbacks from this event, regardless of once vs on.\r\n *\r\n * Returns the number of listeners removed.\r\n *\r\n * @returns The number of listeners removed.\r\n */\r\n offAll() {\r\n const originalLength = this.listeners.length;\r\n this.listeners.length = 0;\r\n return originalLength;\r\n }\r\n};\r\nvar SealedEvent = class extends BaseEvent {\r\n // functionally identical to BaseEvent, just a different name to better\r\n // signify its difference from the old `Event`.\r\n};\r\nfunction createEmitterWithBaseEvent(event) {\r\n const publicListenersEvent = event;\r\n function emit(emitting) {\r\n const { listeners } = publicListenersEvent;\r\n const hadListeners = listeners.length > 0;\r\n for (const listener of listeners) {\r\n listener.callback(emitting);\r\n }\r\n publicListenersEvent.listeners = listeners.filter(({ once }) => !once);\r\n return hadListeners;\r\n }\r\n const func = emit;\r\n func.event = event;\r\n func.emit = emit;\r\n const emitter = func;\r\n return emitter;\r\n}\r\nfunction createEmitter() {\r\n const EventClass = SealedEvent;\r\n return createEmitterWithBaseEvent(new EventClass());\r\n}\r\nvar Event = class extends BaseEvent {\r\n /**\r\n * Creates a new Event, with its emit accessible as a member function.\r\n */\r\n constructor() {\r\n super();\r\n /**\r\n * Emits a value to all the listeners, triggering their callbacks.\r\n * Returns true if the event had listeners emitted to,\r\n * false otherwise.\r\n * Because this exists on the event, any code with access to this event\r\n * can trigger the callback for all listeners.\r\n *\r\n * @param emitting - If the Event has a type, this is the data of that type\r\n * to emit to all listeners. If no type (undefined) this argument should\r\n * be omitted.\r\n * @returns True if the event had listeners emitted to, false otherwise.\r\n */\r\n this.emit = createEmitterWithBaseEvent(this);\r\n }\r\n};\r\nfunction createEventEmitter() {\r\n return createEmitterWithBaseEvent(new Event());\r\n}\r\n\r\n// src/utils/ValidationUtils.ts\r\nvar ValidationUtils = class {\r\n static helloWorld() {\r\n console.log(\"hello\");\r\n }\r\n static isValidEmail(email) {\r\n let p2 = String.raw``;\r\n let p = String.raw`^(([^<>()[\\]\\\\.,;:\\s@\\\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\\\"]` + String.raw`+)*)|(\\\".+\\\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.` + String.raw`[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$`;\r\n let regExp = new RegExp(p);\r\n return regExp.test(email);\r\n }\r\n /**Returns true if a string contains only letters, numbers, and these\r\n * characters: ,._-**/\r\n static isValidDisplayName(name) {\r\n let p = /^[a-zA-Z]+[a-zA-Z0-9\\.\\-_' ]+$/;\r\n return p.test(name);\r\n }\r\n /**Returns true if a string starts with a letter and contains only letters\r\n * and numbers.*/\r\n static isValidUsername(name) {\r\n let p = /^[a-zA-Z]+[a-zA-Z0-9]+$/;\r\n return p.test(name);\r\n }\r\n static validatePassword(password, minLength = 8, requireUpperAndLower = true, requireNumbers = true, requireNonAlphas = false) {\r\n let result = new PasswordValidationResult();\r\n result.pass = true;\r\n if (password.length < minLength) {\r\n result.pass = false;\r\n result.message = `Password must be at least ${minLength} characters.`;\r\n }\r\n if (result.pass && requireUpperAndLower) {\r\n let l = /[a-z]+/;\r\n let u = /[A-Z]+/;\r\n if (!l.test(password) || !u.test(password)) {\r\n result.pass = false;\r\n result.message = \"Password must contain upper and lower case letters\";\r\n }\r\n }\r\n if (result.pass && requireNumbers) {\r\n let p = /\\d+/;\r\n if (!p.test(password)) {\r\n result.pass = false;\r\n result.message = \"Password must contain at least one number.\";\r\n }\r\n }\r\n if (result.pass && requireNonAlphas) {\r\n let p = /\\W+/;\r\n if (!p.test(password)) {\r\n result.pass = false;\r\n result.message = \"Password must contain at least one character that isn't a number or letter.\";\r\n }\r\n }\r\n return result;\r\n }\r\n static removeAllHtmlTags(htmlText) {\r\n let p = /<[^>]*>/mg;\r\n return htmlText.replace(p, \"\");\r\n }\r\n};\r\nvar PasswordValidationResult = class {\r\n};\r\nexport {\r\n ArrayUtils,\r\n BaseEvent,\r\n BrowserUtils,\r\n CompressionUtils,\r\n ConversionUtils,\r\n EmptyDTO,\r\n Event,\r\n HtmlUtils,\r\n HttpUtils,\r\n IDTO,\r\n IdxDbManager,\r\n IdxDbManagerResponse,\r\n JsonUtils,\r\n MarkerRDTO,\r\n PasswordValidationResult,\r\n Point,\r\n RDTO,\r\n RdtoMessage,\r\n SealedEvent,\r\n StringUtils,\r\n ValidationUtils,\r\n createEmitter,\r\n createEventEmitter\r\n};\r\n","// src/utils/AudioContextManager.ts\nvar AudioContextManager = class _AudioContextManager {\n /**initiates the AudioContext if it hasn't already been constructed.\n * @return a [bool] indicating true if AudioContext.supported*/\n static initContext() {\n if (this._context != null)\n return true;\n else if (AudioContext) {\n _AudioContextManager._context = new AudioContext();\n return _AudioContextManager._context != null;\n }\n return false;\n }\n static get context() {\n return _AudioContextManager._context;\n }\n};\n\n// src/utils/AudioProcessor.ts\nvar AudioProcessor = class _AudioProcessor {\n static generateReverbImpulse(context, seconds = 3, decay = 2, reverse = false) {\n let rate = context.sampleRate;\n let length = rate * seconds;\n let impulse = context.createBuffer(2, length, rate);\n let impulseL = impulse.getChannelData(0);\n let impulseR = impulse.getChannelData(1);\n let i;\n let n;\n for (i = 0; i < length; i++) {\n n = reverse ? length - i : i;\n impulseL[i] = (Math.random() * 2 - 1) * Math.pow(1 - n / length, decay);\n impulseR[i] = (Math.random() * 2 - 1) * Math.pow(1 - n / length, decay);\n }\n return impulse;\n }\n // see https://github.com/jaz303/audio-buffer-utils/blob/master/index.js\n /** trim a stereo AudioBuffer*/\n static trimBuffer(buffer, seconds, context) {\n let leftChannel = buffer.getChannelData(0);\n let rightChannel = buffer.getChannelData(1);\n let startTrimSample = Math.floor(context.sampleRate * seconds);\n let newLength = buffer.length - startTrimSample;\n let newLeftChannel = new Float32Array(newLength);\n let newRightChannel = new Float32Array(newLength);\n let j = 0;\n for (let i = startTrimSample; i < leftChannel.length; i++) {\n newLeftChannel[j] = leftChannel[i];\n j++;\n }\n j = 0;\n for (let i = startTrimSample; i < rightChannel.length; i++) {\n newRightChannel[j] = rightChannel[i];\n j++;\n }\n let returnBuffer = context.createBuffer(\n 2,\n newLength,\n context.sampleRate\n );\n returnBuffer.copyToChannel(newLeftChannel, 0);\n returnBuffer.copyToChannel(newRightChannel, 1);\n return returnBuffer;\n }\n static async normalizeWithBreaks(audioBuffer, maxSamplesBetweenBreaks = 441e3, convertToMono = true, normalizationValue = 0.8, minThreshold = 0.1, fadeOutTime = 0) {\n let fadeSamples = fadeOutTime * audioBuffer.sampleRate;\n if (audioBuffer.numberOfChannels == 1) {\n await _AudioProcessor._normalizeMonoBuffer(\n audioBuffer,\n maxSamplesBetweenBreaks,\n normalizationValue,\n minThreshold,\n fadeSamples\n );\n } else {\n audioBuffer = await _AudioProcessor._normalizeMultiChannelBuffer(\n audioBuffer,\n maxSamplesBetweenBreaks,\n convertToMono,\n normalizationValue,\n minThreshold,\n fadeSamples\n );\n }\n return audioBuffer;\n }\n static async _normalizeMonoBuffer(audioBuffer, maxSamplesBetweenBreaks, normalizationValue, minThreshold, fadeSamples) {\n let samples = audioBuffer.getChannelData(0);\n let peak = await _AudioProcessor._getPeak(\n samples,\n maxSamplesBetweenBreaks\n );\n if (peak < minThreshold) {\n return;\n }\n let factor = normalizationValue / peak;\n await _AudioProcessor._multiplyValues(\n samples,\n factor,\n maxSamplesBetweenBreaks,\n fadeSamples\n );\n }\n static async _normalizeMultiChannelBuffer(audioBuffer, maxSamplesBetweenBreaks, convertToMono, normalizationValue, minThreshold, fadeSamples) {\n let peaks = [];\n let highestPeak = 0;\n let nonZeroSampleSets = [];\n for (let i = 0; i < audioBuffer.numberOfChannels; i++) {\n let samples = audioBuffer.getChannelData(i);\n let peak = await _AudioProcessor._getPeak(\n samples,\n maxSamplesBetweenBreaks\n );\n peaks.push(peak);\n if (peak > 0) {\n nonZeroSampleSets.push(samples);\n if (peak > highestPeak) {\n highestPeak = peak;\n }\n }\n }\n if (highestPeak === 0) {\n if (convertToMono) {\n return AudioContextManager.context.createBuffer(\n 1,\n audioBuffer.length,\n audioBuffer.sampleRate\n );\n } else {\n return audioBuffer;\n }\n }\n if (!convertToMono) {\n if (highestPeak < minThreshold) {\n return audioBuffer;\n }\n let factor = normalizationValue / highestPeak;\n for (let i = 0; i < audioBuffer.numberOfChannels; i++) {\n let samples = audioBuffer.getChannelData(i);\n await _AudioProcessor._multiplyValues(\n samples,\n factor,\n maxSamplesBetweenBreaks,\n fadeSamples\n );\n }\n return audioBuffer;\n } else {\n let newBuffer = AudioContextManager.context.createBuffer(\n 1,\n audioBuffer.length,\n audioBuffer.sampleRate\n );\n let targetSamples = newBuffer.getChannelData(0);\n let factor = highestPeak >= minThreshold ? normalizationValue / highestPeak / nonZeroSampleSets.length : 1;\n await _AudioProcessor._mergeToMono(\n nonZeroSampleSets,\n targetSamples,\n factor,\n maxSamplesBetweenBreaks,\n fadeSamples\n );\n return newBuffer;\n }\n }\n static async _getPeak(samples, maxSamplesBetweenBreaks) {\n let peak = 0;\n let i = 0;\n let limit = Math.min(i + maxSamplesBetweenBreaks, samples.length);\n let sample;\n while (i < samples.length) {\n for (i; i < limit; i++) {\n sample = samples[i];\n if (sample > peak) {\n peak = sample;\n } else if (sample * -1 > peak) {\n peak = sample * -1;\n }\n }\n await _AudioProcessor._waitForNextFrame();\n limit = Math.min(i + maxSamplesBetweenBreaks, samples.length);\n }\n return peak;\n }\n static async _multiplyValues(samples, factor, maxSamplesBetweenBreaks, fadeSamples) {\n let i = 0;\n let numSamples = samples.length;\n let limit = Math.min(i + maxSamplesBetweenBreaks, numSamples);\n while (i < numSamples) {\n for (i; i < limit; i++) {\n if (numSamples - i < fadeSamples) {\n samples[i] *= factor * ((numSamples - i) / fadeSamples);\n } else {\n samples[i] *= factor;\n }\n }\n await _AudioProcessor._waitForNextFrame();\n limit = Math.min(i + maxSamplesBetweenBreaks, samples.length);\n }\n }\n static async _mergeToMono(sampleSets, targetSet, factor, maxSamplesBetweenBreaks, fadeSamples) {\n maxSamplesBetweenBreaks = Math.floor(maxSamplesBetweenBreaks / sampleSets.length);\n let i = 0;\n let numSamples = targetSet.length;\n let limit = Math.min(i + maxSamplesBetweenBreaks, numSamples);\n while (i < numSamples) {\n for (i; i < limit; i++) {\n for (let j = 0; j < sampleSets.length; j++) {\n targetSet[i] += sampleSets[j][i];\n }\n if (numSamples - i < fadeSamples) {\n targetSet[i] *= factor * ((numSamples - i) / fadeSamples);\n } else {\n targetSet[i] *= factor;\n }\n }\n await _AudioProcessor._waitForNextFrame();\n limit = Math.min(i + maxSamplesBetweenBreaks, targetSet.length);\n }\n }\n static _waitForNextFrame() {\n return new Promise((resolve, reject) => {\n setTimeout(() => {\n resolve();\n }, 0);\n });\n }\n};\n\n// src/utils/MultiSoundLoader.ts\nimport { createEmitter } from \"ts_utils\";\nvar MultiSoundLoader = class {\n constructor(context) {\n this._loadCount = 0;\n this._loadProgressEmitter = createEmitter();\n this._onBufferLoaded = (e) => {\n var request = e.target;\n this._loadProgressEmitter.emit(`${request.responseURL} downloaded... extracting...`);\n this._context.decodeAudioData(request.response).then((buffer) => {\n this._filesMap.set(request, buffer);\n this._loadCount++;\n if (this._loadCount === this._filesMap.size) {\n this._loadProgressEmitter.emit(\"audio ready\");\n this._loadCompleter(Array.from(this._filesMap.values()));\n this._cleanup();\n }\n }).catch((err) => {\n console.log(err);\n });\n };\n this._onBufferLoadError = (e) => {\n this._cleanup();\n this._loadCanceler(\"Problem downloading one or more files: \" + e.toString());\n };\n this._context = context;\n if (this._context == null)\n throw \"AudioContext not set\";\n }\n get loadProgress() {\n return this._loadProgressEmitter.event;\n }\n load(urlList) {\n this._filesMap = /* @__PURE__ */ new Map();\n this._loadProgressEmitter.emit(\"downloading audio...\");\n return new Promise((resolve, reject) => {\n this._loadCompleter = resolve;\n this._loadCanceler = reject;\n for (let i = 0; i < urlList.length; i++) {\n var request = this._loadBuffer(urlList[i]);\n this._filesMap.set(request, null);\n }\n });\n }\n _loadBuffer(url) {\n let request = new XMLHttpRequest();\n request.responseType = \"arraybuffer\";\n request.onload = this._onBufferLoaded;\n request.onerror = this._onBufferLoadError;\n request.open(\"GET\", url);\n request.send();\n return request;\n }\n _cleanup() {\n for (let request of this._filesMap.keys()) {\n request.onload = null;\n request.onerror = null;\n }\n this._filesMap = null;\n }\n};\n\n// src/utils/phaze/PhazeManager.ts\nvar PhazeManager = class {\n constructor() {\n }\n async renderAudio(workletUrl, audioBuffer, pitch = 1) {\n try {\n let oac = new OfflineAudioContext({\n length: audioBuffer.length,\n sampleRate: audioBuffer.sampleRate,\n numberOfChannels: audioBuffer.numberOfChannels\n });\n await oac.audioWorklet.addModule(workletUrl);\n let bsn = oac.createBufferSource();\n bsn.buffer = audioBuffer;\n let phazeNode = this.createAudioNode(oac);\n let pitchParam = phazeNode.parameters.get(\"pitchFactor\");\n pitchParam.value = pitch;\n bsn.connect(phazeNode);\n phazeNode.connect(oac.destination);\n bsn.start(0);\n let rendered = await oac.startRendering();\n for (let i = 0; i < rendered.numberOfChannels; i++) {\n let ch = rendered.getChannelData(i);\n for (let j = 0; j < ch.length; j++) {\n if (isNaN(ch[j])) {\n ch[j] = 0;\n }\n }\n }\n return rendered;\n } catch (err) {\n console.log(err);\n return null;\n }\n }\n createAudioNode(context) {\n let node = new AudioWorkletNode(context, \"phase-vocoder-processor\");\n return node;\n }\n};\n\n// src/utils/signalsmith_stretch/SignalSmithManager.ts\nvar _queue = [];\nvar _isProcessing = false;\nvar _SSMJob = class {\n};\nvar _SignalSmithManager = class _SignalSmithManager {\n /**set the SignalSmithManager.iframeUrl first to use iframe for memory\n * management */\n static renderAudio(workletUrl, audioBuffer, semitones = 0, rate = 1) {\n let job = new _SSMJob();\n job.workletUrl = workletUrl;\n job.sourceBuffer = audioBuffer;\n job.semitones = semitones;\n job.rate = rate;\n let promise = new Promise((resolve, reject) => {\n job.resolve = resolve;\n job.reject = reject;\n });\n _queue.push(job);\n if (_SignalSmithManager.iframeUrl != null) {\n _SignalSmithManager._processWithIframe();\n } else {\n _SignalSmithManager._process();\n }\n return promise;\n }\n static _processWithIframe() {\n if (_queue.length < 1) {\n return;\n }\n let job = _queue.shift();\n _isProcessing = true;\n let iframe = document.createElement(\"iframe\");\n iframe.onload = async (e) => {\n iframe.onload = null;\n await iframe.contentWindow.processJob(job);\n };\n iframe.src = _SignalSmithManager.iframeUrl;\n iframe.style.display = \"none\";\n job.iframeFinishedCallback = () => {\n iframe.remove();\n iframe.src = \"\";\n };\n document.body.append(iframe);\n }\n static async _process() {\n if (_isProcessing || _queue.length < 1) {\n return;\n }\n let job = _queue.shift();\n _isProcessing = true;\n try {\n let sampleRate = job.sourceBuffer.sampleRate;\n job.numLatencySamples = Math.ceil(sampleRate * 0.12);\n job.adjustedSourceBuffer = new AudioBuffer({\n length: job.sourceBuffer.length + job.numLatencySamples,\n sampleRate,\n numberOfChannels: job.sourceBuffer.numberOfChannels\n });\n for (let i = 0; i < job.sourceBuffer.numberOfChannels; i++) {\n let ch = job.sourceBuffer.getChannelData(i);\n job.adjustedSourceBuffer.copyToChannel(ch, i, 0);\n }\n let stretchedLength = Math.ceil(job.adjustedSourceBuffer.length / job.rate);\n let oac = new OfflineAudioContext({\n length: stretchedLength,\n sampleRate,\n numberOfChannels: job.adjustedSourceBuffer.numberOfChannels\n });\n await oac.audioWorklet.addModule(job.workletUrl);\n let semitoneShift = 12 * Math.log2(job.rate);\n let settings = {\n \"rate\": 1,\n \"semitones\": job.semitones - semitoneShift,\n \"tonality\": 8e3,\n \"block\": 120,\n \"overlap\": 4\n };\n let stretch = await SignalsmithStretch(oac);\n let callback = (e) => {\n if (e.data === \"config received\") {\n stretch.port.removeEventListener(\"message\", callback);\n _SignalSmithManager._processAudio(job, stretch, oac);\n }\n };\n stretch.port.addEventListener(\"message\", callback);\n stretch.port.postMessage({ controls: settings });\n } catch (err) {\n console.log(err);\n job.reject(err);\n }\n _isProcessing = false;\n _SignalSmithManager._process();\n }\n static async _processAudio(job, stretch, oac) {\n let bsn = oac.createBufferSource();\n bsn.buffer = job.adjustedSourceBuffer;\n bsn.connect(stretch);\n stretch.connect(oac.destination);\n if (job.rate != 1) {\n bsn.playbackRate.value = job.rate;\n }\n bsn.start(0);\n let rendered = await oac.startRendering();\n bsn.disconnect(stretch);\n stretch.disconnect(oac.destination);\n let truncated = new AudioBuffer({\n length: rendered.length - job.numLatencySamples,\n sampleRate: rendered.sampleRate,\n numberOfChannels: rendered.numberOfChannels\n });\n for (let i = 0; i < rendered.numberOfChannels; i++) {\n let ch = rendered.getChannelData(i);\n ch = ch.slice(job.numLatencySamples);\n truncated.copyToChannel(ch, i);\n }\n job.resolve(truncated);\n }\n /**only intended for testing */\n static async renderAudioLive(workletUrl, audioBuffer, semitones = 0, rate = 1) {\n try {\n let oac = AudioContextManager.context;\n await oac.audioWorklet.addModule(workletUrl);\n let bsn = oac.createBufferSource();\n bsn.buffer = audioBuffer;\n let settings = {\n \"rate\": 1,\n \"semitones\": semitones,\n \"tonality\": 8e3,\n \"block\": 120,\n \"overlap\": 4\n };\n let stretch = await SignalsmithStretch(oac);\n stretch.port.postMessage({ controls: settings });\n if (rate != 1) {\n bsn.playbackRate.value = rate;\n }\n bsn.connect(stretch);\n stretch.connect(oac.destination);\n bsn.start(0);\n bsn.connect(oac.destination);\n return null;\n } catch (err) {\n console.log(err);\n return null;\n }\n }\n};\n/**if set, an iframe will be used so that memory cleanup is possible. Note\n * that the SignalsmightStretch.js file must be in the same folder and\n * level as the iframe html page. Not used if null.*/\n_SignalSmithManager.iframeUrl = null;\nvar SignalSmithManager = _SignalSmithManager;\n\n// src/utils/SoundLoader.ts\nimport { createEmitter as createEmitter2 } from \"ts_utils\";\nvar _SoundLoader = class _SoundLoader {\n /**listen for progress in downloading (not parsing) the SoundFont file.\n * Use (loaded / total) properties to calculate download ratio.*/\n static get downloadProgress() {\n return _SoundLoader._downloadProgressEmitter.event;\n }\n // static StreamController _downloadProgressController = \n // \tnew StreamController.broadcast();\n constructor() {\n }\n /**loads an audio file and returns an AudioBuffer object\n * @fileInputId - the id from the html input element\n * @context - an AudioContext object*/\n static async getAudioBufferFromFileInput(fileInputId, context) {\n let input = document.getElementById(fileInputId);\n if (input == null) {\n console.log(\"invalid FileInput element ID\");\n return null;\n }\n if (input.files.length !== 1) {\n console.log(\"one audio file must be selected.\");\n return null;\n }\n let file = input.files[0];\n let audioBuffer = await _SoundLoader.getAudioBufferFromBlob(\n file,\n context\n );\n return audioBuffer;\n }\n /**converts an audioBlob (typically from getOggAudioBlob()) into an\n * AudioBuffer object that can be used with an AudioBufferSourceNode.\n * After making a recording (or reloading one from a server), use\n * getOggAudioBlob() to get the recording as an html.Blob object. Then\n * pass that to this getAudioBuffer() method and wait for the result\n * of the future, which will be the AudioBuffer object. To play it, use\n * something like:\n * let playbackNode = context.createBufferSource();\n * _playbackNode.buffer = audioBuffer;\n * _playbackNode.connectNode(context.destination);\n * _playbackNode.start(0);*/\n static getAudioBufferFromBlob(audioBlob, context) {\n if (context == null)\n throw \"AudioContext not set\";\n return new Promise((resolve, reject) => {\n let reader = new FileReader();\n reader.addEventListener(\"loadend\", async (e) => {\n try {\n let ab = await context.decodeAudioData(\n reader.result\n );\n resolve(ab);\n } catch (err) {\n console.log(\"problem decoding file - unsupported type?\");\n resolve(null);\n }\n });\n reader.readAsArrayBuffer(audioBlob);\n });\n }\n /**loads an audio file from a URL and converts it to an\n * AudioBuffer object that can be used with an AudioBufferSourceNode.\n * To play it, use something like:\n * let playbackNode = context.createBufferSource();\n * _playbackNode.buffer = audioBuffer;\n * _playbackNode.connectNode(context.destination);\n * _playbackNode.start(0);*/\n static getAudioBufferFromUrl(url, context) {\n if (context == null)\n throw \"AudioContext not set\";\n return new Promise((resolve, reject) => {\n _SoundLoader.getArrayBufferFromUrl(url).then((byteBuffer) => {\n context.decodeAudioData(byteBuffer).then((ab) => {\n resolve(ab);\n }).catch((err) => {\n console.log(err.toString());\n reject(err);\n });\n });\n });\n }\n /**loads a url as binary content, returning a ByteBuffer (Dart equivalent\n * of ArrayBuffer)*/\n static getArrayBufferFromUrl(url) {\n return new Promise((resolve, reject) => {\n let request = new XMLHttpRequest();\n request.responseType = \"arraybuffer\";\n request.onprogress = (e) => {\n _SoundLoader._downloadProgressEmitter.emit(e);\n };\n request.onload = (e) => {\n resolve(request.response);\n };\n request.onerror = (e) => {\n console.log(e.toString());\n reject(e.toString());\n };\n request.open(\"GET\", url);\n request.send();\n });\n }\n static getDownloadLinkForArrayBuffer(data, fileName) {\n let a = document.createElement(\"a\");\n a.style.display = \"none\";\n let blob = new Blob(data, { type: \"octet/stream\" });\n let url = URL.createObjectURL(blob);\n a.href = url;\n a.download = fileName;\n a.click();\n URL.revokeObjectURL(url);\n return a;\n }\n /**listen for progress in downloading (not parsing) the SoundFont file.\n * Use (loaded / total) properties to calculate download ratio.*/\n // static Stream get onDownloadProgress => \n // \t_downloadProgressController.stream;\n};\n/**used for listening to file download progress events*/\n_SoundLoader._downloadProgressEmitter = createEmitter2();\nvar SoundLoader = _SoundLoader;\n\n// src/utils/soundTouch/SoundTouchManager.ts\nvar SoundTouchManager = class {\n constructor() {\n this._onMessage = (e) => {\n let msgType = e.data[0];\n switch (msgType) {\n case \"ready\": {\n if (this._workerLoadedResolver) {\n this._workerLoadedResolver();\n this._workerLoadedResolver = null;\n }\n break;\n }\n case \"render_complete\": {\n this._handleFinishedRender(e.data[1]);\n break;\n }\n }\n };\n }\n /** Loads a SoundTouch module script\n * @param url the url of a SoundTouch module script matching the public\n * exports of the version packed with this application. */\n loadSoundTouchWorker(url) {\n return new Promise((resolve, reject) => {\n this._workerLoadedResolver = resolve;\n if (this._worker != null) {\n this._worker.removeEventListener(\"message\", this._onMessage);\n }\n this._worker = new Worker(url);\n this._worker.addEventListener(\"message\", this._onMessage);\n });\n }\n renderAudio(audioBuffer, { pitch = 1, tempo = 1 }) {\n if (this._currentAudioBuffer != null) {\n throw \"You must wait for the previous render to finish\";\n }\n this._currentAudioBuffer = audioBuffer;\n return new Promise((resolve, reject) => {\n this._renderFinishedResolver = resolve;\n let left = audioBuffer.getChannelData(0);\n let right = audioBuffer.numberOfChannels > 1 ? audioBuffer.getChannelData(1) : audioBuffer.getChannelData(0);\n this._worker.postMessage([\n \"render\",\n left,\n right,\n audioBuffer.sampleRate,\n audioBuffer.numberOfChannels,\n pitch,\n tempo\n ]);\n });\n }\n _handleFinishedRender(samples) {\n let ab = new AudioBuffer({\n length: samples[0].length,\n sampleRate: this._currentAudioBuffer.sampleRate,\n numberOfChannels: samples.length\n });\n ab.copyToChannel(samples[0], 0);\n if (samples.length > 1) {\n ab.copyToChannel(samples[1], 1);\n }\n this._currentAudioBuffer = null;\n this._renderFinishedResolver(ab);\n this._renderFinishedResolver = null;\n }\n};\n\n// src/utils/soundTouch/SoundTouchAudioNode.ts\nvar SoundTouchAudioNode = class extends AudioWorkletNode {\n constructor(context, workletName = \"soundtouch-worklet\", audioBuffer) {\n super(\n context,\n workletName,\n {\n outputChannelCount: [audioBuffer.numberOfChannels]\n }\n );\n this._ready = false;\n this._onMessage = (e) => {\n let message = e.data.message;\n switch (message) {\n case \"PROCESSOR_CONSTRUCTOR\": {\n this._initializeProcessor();\n break;\n }\n case \"PROCESSOR_READY\": {\n this._ready = true;\n if (this._readyResolver) {\n this._readyResolver();\n this._readyResolver = null;\n }\n break;\n }\n }\n };\n this._onMessageError = (e) => {\n console.log(e);\n };\n this._audioBuffer = audioBuffer;\n this._init();\n }\n ready() {\n return new Promise((resolve, reject) => {\n if (this._ready) {\n resolve();\n } else {\n this._readyResolver = resolve;\n }\n });\n }\n setPitch(pitch = 1) {\n this._updateProperty(\"pitch\", pitch);\n }\n setTempo(tempo = 1) {\n this._updateProperty(\"tempo\", tempo);\n }\n _init() {\n this.port.onmessage = this._onMessage;\n this.port.onmessageerror = this._onMessageError;\n }\n _initializeProcessor() {\n let ab = this._audioBuffer;\n let settings = {\n sampleRate: ab.sampleRate,\n duration: ab.duration,\n bufferLength: ab.length,\n numberOfChannels: ab.numberOfChannels\n };\n let details = [\n settings,\n ab.getChannelData(0),\n ab.numberOfChannels > 1 ? ab.getChannelData(1) : ab.getChannelData(0)\n ];\n this.port.postMessage({\n message: \"INITIALIZE_PROCESSOR\",\n detail: details\n });\n this._audioBuffer = null;\n }\n _updateProperty(name, value) {\n this.port.postMessage({\n message: \"SET_PIPE_PROP\",\n detail: { name, value }\n });\n }\n};\n\n// src/utils/soundTouch/SoundTouchManager2.ts\nvar SoundTouchManager2 = class {\n constructor() {\n }\n /**at this time, only pitch is supported */\n async renderAudio(workletUrl, audioBuffer, { pitch = 1, tempo = 1, fadeOut = false }) {\n try {\n let oac = new OfflineAudioContext({\n length: audioBuffer.length,\n sampleRate: audioBuffer.sampleRate,\n numberOfChannels: audioBuffer.numberOfChannels\n });\n await oac.audioWorklet.addModule(workletUrl);\n let bsn = oac.createBufferSource();\n bsn.buffer = audioBuffer;\n let stNode = await this.createSoundTouchAudioNode(oac, audioBuffer);\n stNode.setPitch(pitch);\n bsn.connect(stNode);\n stNode.connect(oac.destination);\n bsn.start(0);\n let rendered = await oac.startRendering();\n for (let i = 0; i < rendered.numberOfChannels; i++) {\n let ch = rendered.getChannelData(i);\n let numSamples = ch.length;\n for (let j = 0; j < numSamples; j++) {\n if (isNaN(ch[j])) {\n ch[j] = 0;\n }\n }\n if (fadeOut) {\n let fadeSamples = 0.1 * rendered.sampleRate;\n let endIdx = -1;\n for (let j = numSamples - 1; j >= 0; j--) {\n if (endIdx === -1 && ch[j] !== 0) {\n endIdx = j;\n }\n if (endIdx !== -1) {\n ch[j] *= (endIdx - j) / fadeSamples;\n if (endIdx - j >= fadeSamples) {\n break;\n }\n }\n }\n }\n }\n return rendered;\n } catch (err) {\n console.log(err);\n return null;\n }\n }\n /** Loads an audio worklet processor on the provided context. This is only\n * necessary if you are playing the audio in real time, as opposed to using\n * the renderAudio method.\n * @param workletUrl the url of the audio worklet for processing */\n async loadSoundTouchAudioWorklet(workletUrl, audioContext) {\n await audioContext.audioWorklet.addModule(workletUrl);\n }\n /**This feature does not work correctly. Audio doesn't play full length. */\n async createSoundTouchAudioNode(context, audioBuffer) {\n let node = new SoundTouchAudioNode(\n context,\n \"soundtouch-worklet\",\n audioBuffer\n );\n await node.ready();\n return node;\n }\n};\n\n// src/utils/WaveWriter.ts\nvar WaveWriter = class _WaveWriter {\n getWaveData(audioBuffer) {\n let leftChannel = audioBuffer.getChannelData(0);\n let rightChannel = audioBuffer.numberOfChannels > 1 ? audioBuffer.getChannelData(1) : audioBuffer.getChannelData(0);\n let interleaved = this.interleave(leftChannel, rightChannel);\n let uint8Array = new Uint8Array(44 + interleaved.length * 2);\n let view = new DataView(uint8Array.buffer);\n this.writeUTFBytes(view, 0, \"RIFF\");\n view.setUint32(4, 44 + interleaved.length * 2, true);\n this.writeUTFBytes(view, 8, \"WAVE\");\n this.writeUTFBytes(view, 12, \"fmt \");\n view.setUint32(16, 16, true);\n view.setUint16(20, 1, true);\n view.setUint16(22, 2, true);\n view.setUint32(24, audioBuffer.sampleRate, true);\n view.setUint32(28, audioBuffer.sampleRate * 4, true);\n view.setUint16(32, 4, true);\n view.setUint16(34, 16, true);\n this.writeUTFBytes(view, 36, \"data\");\n view.setUint32(40, interleaved.length * 2, true);\n let lng = interleaved.length;\n let index = 44;\n for (let i = 0; i < lng; i++) {\n view.setInt16(index, Math.trunc(interleaved[i] * 32767), true);\n index += 2;\n }\n return view.buffer;\n }\n writeUTFBytes(view, offset, string) {\n let lng = string.length;\n for (let i = 0; i < lng; i++) {\n view.setUint8(offset + i, string.charCodeAt(i));\n }\n }\n interleave(leftChannel, rightChannel) {\n let length = leftChannel.length + rightChannel.length;\n let result = new Float32Array(length);\n let inputIndex = 0;\n for (let index = 0; index < length; ) {\n result[index++] = leftChannel[inputIndex];\n result[index++] = rightChannel[inputIndex];\n inputIndex++;\n }\n return result;\n }\n /**helper method to generate a wave file from an AudioBuffer and pop a\n * file save dialog.\n * @param audioBuffer the audio to convert to a wave file\n * @param name the name of the file\n */\n static saveWaveFile(audioBuffer, name) {\n let waveWriter = new _WaveWriter();\n let waveAB = waveWriter.getWaveData(audioBuffer);\n let blob = new Blob([waveAB], { type: \"audio/wav\" });\n let link = document.createElement(\"a\");\n let objectURL = URL.createObjectURL(blob);\n link.href = objectURL;\n link.href = URL.createObjectURL(blob);\n link.download = name.endsWith(\".wav\") ? name : `${name}.wav`;\n link.click();\n }\n};\nexport {\n AudioContextManager,\n AudioProcessor,\n MultiSoundLoader,\n PhazeManager,\n SignalSmithManager,\n SoundLoader,\n SoundTouchManager,\n SoundTouchManager2,\n WaveWriter\n};\n","(function (name, definition) {\r\n if (typeof define === 'function' && define.amd) { // RequireJS / AMD\r\n define(definition);\r\n } else if (typeof module !== 'undefined' && module.exports) { // CommonJS / Node.js\r\n module.exports = definition();\r\n } else { // Direct include\r\n window.ysFixWebmDuration = definition();\r\n }\r\n})('fix-webm-duration', function () {\r\n /*\r\n * This is the list of possible WEBM file sections by their IDs.\r\n * Possible types: Container, Binary, Uint, Int, String, Float, Date\r\n */\r\n var sections = {\r\n 0xa45dfa3: { name: 'EBML', type: 'Container' },\r\n 0x286: { name: 'EBMLVersion', type: 'Uint' },\r\n 0x2f7: { name: 'EBMLReadVersion', type: 'Uint' },\r\n 0x2f2: { name: 'EBMLMaxIDLength', type: 'Uint' },\r\n 0x2f3: { name: 'EBMLMaxSizeLength', type: 'Uint' },\r\n 0x282: { name: 'DocType', type: 'String' },\r\n 0x287: { name: 'DocTypeVersion', type: 'Uint' },\r\n 0x285: { name: 'DocTypeReadVersion', type: 'Uint' },\r\n 0x6c: { name: 'Void', type: 'Binary' },\r\n 0x3f: { name: 'CRC-32', type: 'Binary' },\r\n 0xb538667: { name: 'SignatureSlot', type: 'Container' },\r\n 0x3e8a: { name: 'SignatureAlgo', type: 'Uint' },\r\n 0x3e9a: { name: 'SignatureHash', type: 'Uint' },\r\n 0x3ea5: { name: 'SignaturePublicKey', type: 'Binary' },\r\n 0x3eb5: { name: 'Signature', type: 'Binary' },\r\n 0x3e5b: { name: 'SignatureElements', type: 'Container' },\r\n 0x3e7b: { name: 'SignatureElementList', type: 'Container' },\r\n 0x2532: { name: 'SignedElement', type: 'Binary' },\r\n 0x8538067: { name: 'Segment', type: 'Container' },\r\n 0x14d9b74: { name: 'SeekHead', type: 'Container' },\r\n 0xdbb: { name: 'Seek', type: 'Container' },\r\n 0x13ab: { name: 'SeekID', type: 'Binary' },\r\n 0x13ac: { name: 'SeekPosition', type: 'Uint' },\r\n 0x549a966: { name: 'Info', type: 'Container' },\r\n 0x33a4: { name: 'SegmentUID', type: 'Binary' },\r\n 0x3384: { name: 'SegmentFilename', type: 'String' },\r\n 0x1cb923: { name: 'PrevUID', type: 'Binary' },\r\n 0x1c83ab: { name: 'PrevFilename', type: 'String' },\r\n 0x1eb923: { name: 'NextUID', type: 'Binary' },\r\n 0x1e83bb: { name: 'NextFilename', type: 'String' },\r\n 0x444: { name: 'SegmentFamily', type: 'Binary' },\r\n 0x2924: { name: 'ChapterTranslate', type: 'Container' },\r\n 0x29fc: { name: 'ChapterTranslateEditionUID', type: 'Uint' },\r\n 0x29bf: { name: 'ChapterTranslateCodec', type: 'Uint' },\r\n 0x29a5: { name: 'ChapterTranslateID', type: 'Binary' },\r\n 0xad7b1: { name: 'TimecodeScale', type: 'Uint' },\r\n 0x489: { name: 'Duration', type: 'Float' },\r\n 0x461: { name: 'DateUTC', type: 'Date' },\r\n 0x3ba9: { name: 'Title', type: 'String' },\r\n 0xd80: { name: 'MuxingApp', type: 'String' },\r\n 0x1741: { name: 'WritingApp', type: 'String' },\r\n // 0xf43b675: { name: 'Cluster', type: 'Container' },\r\n 0x67: { name: 'Timecode', type: 'Uint' },\r\n 0x1854: { name: 'SilentTracks', type: 'Container' },\r\n 0x18d7: { name: 'SilentTrackNumber', type: 'Uint' },\r\n 0x27: { name: 'Position', type: 'Uint' },\r\n 0x2b: { name: 'PrevSize', type: 'Uint' },\r\n 0x23: { name: 'SimpleBlock', type: 'Binary' },\r\n 0x20: { name: 'BlockGroup', type: 'Container' },\r\n 0x21: { name: 'Block', type: 'Binary' },\r\n 0x22: { name: 'BlockVirtual', type: 'Binary' },\r\n 0x35a1: { name: 'BlockAdditions', type: 'Container' },\r\n 0x26: { name: 'BlockMore', type: 'Container' },\r\n 0x6e: { name: 'BlockAddID', type: 'Uint' },\r\n 0x25: { name: 'BlockAdditional', type: 'Binary' },\r\n 0x1b: { name: 'BlockDuration', type: 'Uint' },\r\n 0x7a: { name: 'ReferencePriority', type: 'Uint' },\r\n 0x7b: { name: 'ReferenceBlock', type: 'Int' },\r\n 0x7d: { name: 'ReferenceVirtual', type: 'Int' },\r\n 0x24: { name: 'CodecState', type: 'Binary' },\r\n 0x35a2: { name: 'DiscardPadding', type: 'Int' },\r\n 0xe: { name: 'Slices', type: 'Container' },\r\n 0x68: { name: 'TimeSlice', type: 'Container' },\r\n 0x4c: { name: 'LaceNumber', type: 'Uint' },\r\n 0x4d: { name: 'FrameNumber', type: 'Uint' },\r\n 0x4b: { name: 'BlockAdditionID', type: 'Uint' },\r\n 0x4e: { name: 'Delay', type: 'Uint' },\r\n 0x4f: { name: 'SliceDuration', type: 'Uint' },\r\n 0x48: { name: 'ReferenceFrame', type: 'Container' },\r\n 0x49: { name: 'ReferenceOffset', type: 'Uint' },\r\n 0x4a: { name: 'ReferenceTimeCode', type: 'Uint' },\r\n 0x2f: { name: 'EncryptedBlock', type: 'Binary' },\r\n 0x654ae6b: { name: 'Tracks', type: 'Container' },\r\n 0x2e: { name: 'TrackEntry', type: 'Container' },\r\n 0x57: { name: 'TrackNumber', type: 'Uint' },\r\n 0x33c5: { name: 'TrackUID', type: 'Uint' },\r\n 0x3: { name: 'TrackType', type: 'Uint' },\r\n 0x39: { name: 'FlagEnabled', type: 'Uint' },\r\n 0x8: { name: 'FlagDefault', type: 'Uint' },\r\n 0x15aa: { name: 'FlagForced', type: 'Uint' },\r\n 0x1c: { name: 'FlagLacing', type: 'Uint' },\r\n 0x2de7: { name: 'MinCache', type: 'Uint' },\r\n 0x2df8: { name: 'MaxCache', type: 'Uint' },\r\n 0x3e383: { name: 'DefaultDuration', type: 'Uint' },\r\n 0x34e7a: { name: 'DefaultDecodedFieldDuration', type: 'Uint' },\r\n 0x3314f: { name: 'TrackTimecodeScale', type: 'Float' },\r\n 0x137f: { name: 'TrackOffset', type: 'Int' },\r\n 0x15ee: { name: 'MaxBlockAdditionID', type: 'Uint' },\r\n 0x136e: { name: 'Name', type: 'String' },\r\n 0x2b59c: { name: 'Language', type: 'String' },\r\n 0x6: { name: 'CodecID', type: 'String' },\r\n 0x23a2: { name: 'CodecPrivate', type: 'Binary' },\r\n 0x58688: { name: 'CodecName', type: 'String' },\r\n 0x3446: { name: 'AttachmentLink', type: 'Uint' },\r\n 0x1a9697: { name: 'CodecSettings', type: 'String' },\r\n 0x1b4040: { name: 'CodecInfoURL', type: 'String' },\r\n 0x6b240: { name: 'CodecDownloadURL', type: 'String' },\r\n 0x2a: { name: 'CodecDecodeAll', type: 'Uint' },\r\n 0x2fab: { name: 'TrackOverlay', type: 'Uint' },\r\n 0x16aa: { name: 'CodecDelay', type: 'Uint' },\r\n 0x16bb: { name: 'SeekPreRoll', type: 'Uint' },\r\n 0x2624: { name: 'TrackTranslate', type: 'Container' },\r\n 0x26fc: { name: 'TrackTranslateEditionUID', type: 'Uint' },\r\n 0x26bf: { name: 'TrackTranslateCodec', type: 'Uint' },\r\n 0x26a5: { name: 'TrackTranslateTrackID', type: 'Binary' },\r\n 0x60: { name: 'Video', type: 'Container' },\r\n 0x1a: { name: 'FlagInterlaced', type: 'Uint' },\r\n 0x13b8: { name: 'StereoMode', type: 'Uint' },\r\n 0x13c0: { name: 'AlphaMode', type: 'Uint' },\r\n 0x13b9: { name: 'OldStereoMode', type: 'Uint' },\r\n 0x30: { name: 'PixelWidth', type: 'Uint' },\r\n 0x3a: { name: 'PixelHeight', type: 'Uint' },\r\n 0x14aa: { name: 'PixelCropBottom', type: 'Uint' },\r\n 0x14bb: { name: 'PixelCropTop', type: 'Uint' },\r\n 0x14cc: { name: 'PixelCropLeft', type: 'Uint' },\r\n 0x14dd: { name: 'PixelCropRight', type: 'Uint' },\r\n 0x14b0: { name: 'DisplayWidth', type: 'Uint' },\r\n 0x14ba: { name: 'DisplayHeight', type: 'Uint' },\r\n 0x14b2: { name: 'DisplayUnit', type: 'Uint' },\r\n 0x14b3: { name: 'AspectRatioType', type: 'Uint' },\r\n 0xeb524: { name: 'ColourSpace', type: 'Binary' },\r\n 0xfb523: { name: 'GammaValue', type: 'Float' },\r\n 0x383e3: { name: 'FrameRate', type: 'Float' },\r\n 0x61: { name: 'Audio', type: 'Container' },\r\n 0x35: { name: 'SamplingFrequency', type: 'Float' },\r\n 0x38b5: { name: 'OutputSamplingFrequency', type: 'Float' },\r\n 0x1f: { name: 'Channels', type: 'Uint' },\r\n 0x3d7b: { name: 'ChannelPositions', type: 'Binary' },\r\n 0x2264: { name: 'BitDepth', type: 'Uint' },\r\n 0x62: { name: 'TrackOperation', type: 'Container' },\r\n 0x63: { name: 'TrackCombinePlanes', type: 'Container' },\r\n 0x64: { name: 'TrackPlane', type: 'Container' },\r\n 0x65: { name: 'TrackPlaneUID', type: 'Uint' },\r\n 0x66: { name: 'TrackPlaneType', type: 'Uint' },\r\n 0x69: { name: 'TrackJoinBlocks', type: 'Container' },\r\n 0x6d: { name: 'TrackJoinUID', type: 'Uint' },\r\n 0x40: { name: 'TrickTrackUID', type: 'Uint' },\r\n 0x41: { name: 'TrickTrackSegmentUID', type: 'Binary' },\r\n 0x46: { name: 'TrickTrackFlag', type: 'Uint' },\r\n 0x47: { name: 'TrickMasterTrackUID', type: 'Uint' },\r\n 0x44: { name: 'TrickMasterTrackSegmentUID', type: 'Binary' },\r\n 0x2d80: { name: 'ContentEncodings', type: 'Container' },\r\n 0x2240: { name: 'ContentEncoding', type: 'Container' },\r\n 0x1031: { name: 'ContentEncodingOrder', type: 'Uint' },\r\n 0x1032: { name: 'ContentEncodingScope', type: 'Uint' },\r\n 0x1033: { name: 'ContentEncodingType', type: 'Uint' },\r\n 0x1034: { name: 'ContentCompression', type: 'Container' },\r\n 0x254: { name: 'ContentCompAlgo', type: 'Uint' },\r\n 0x255: { name: 'ContentCompSettings', type: 'Binary' },\r\n 0x1035: { name: 'ContentEncryption', type: 'Container' },\r\n 0x7e1: { name: 'ContentEncAlgo', type: 'Uint' },\r\n 0x7e2: { name: 'ContentEncKeyID', type: 'Binary' },\r\n 0x7e3: { name: 'ContentSignature', type: 'Binary' },\r\n 0x7e4: { name: 'ContentSigKeyID', type: 'Binary' },\r\n 0x7e5: { name: 'ContentSigAlgo', type: 'Uint' },\r\n 0x7e6: { name: 'ContentSigHashAlgo', type: 'Uint' },\r\n 0xc53bb6b: { name: 'Cues', type: 'Container' },\r\n 0x3b: { name: 'CuePoint', type: 'Container' },\r\n 0x33: { name: 'CueTime', type: 'Uint' },\r\n 0x37: { name: 'CueTrackPositions', type: 'Container' },\r\n 0x77: { name: 'CueTrack', type: 'Uint' },\r\n 0x71: { name: 'CueClusterPosition', type: 'Uint' },\r\n 0x70: { name: 'CueRelativePosition', type: 'Uint' },\r\n 0x32: { name: 'CueDuration', type: 'Uint' },\r\n 0x1378: { name: 'CueBlockNumber', type: 'Uint' },\r\n 0x6a: { name: 'CueCodecState', type: 'Uint' },\r\n 0x5b: { name: 'CueReference', type: 'Container' },\r\n 0x16: { name: 'CueRefTime', type: 'Uint' },\r\n 0x17: { name: 'CueRefCluster', type: 'Uint' },\r\n 0x135f: { name: 'CueRefNumber', type: 'Uint' },\r\n 0x6b: { name: 'CueRefCodecState', type: 'Uint' },\r\n 0x941a469: { name: 'Attachments', type: 'Container' },\r\n 0x21a7: { name: 'AttachedFile', type: 'Container' },\r\n 0x67e: { name: 'FileDescription', type: 'String' },\r\n 0x66e: { name: 'FileName', type: 'String' },\r\n 0x660: { name: 'FileMimeType', type: 'String' },\r\n 0x65c: { name: 'FileData', type: 'Binary' },\r\n 0x6ae: { name: 'FileUID', type: 'Uint' },\r\n 0x675: { name: 'FileReferral', type: 'Binary' },\r\n 0x661: { name: 'FileUsedStartTime', type: 'Uint' },\r\n 0x662: { name: 'FileUsedEndTime', type: 'Uint' },\r\n 0x43a770: { name: 'Chapters', type: 'Container' },\r\n 0x5b9: { name: 'EditionEntry', type: 'Container' },\r\n 0x5bc: { name: 'EditionUID', type: 'Uint' },\r\n 0x5bd: { name: 'EditionFlagHidden', type: 'Uint' },\r\n 0x5db: { name: 'EditionFlagDefault', type: 'Uint' },\r\n 0x5dd: { name: 'EditionFlagOrdered', type: 'Uint' },\r\n 0x36: { name: 'ChapterAtom', type: 'Container' },\r\n 0x33c4: { name: 'ChapterUID', type: 'Uint' },\r\n 0x1654: { name: 'ChapterStringUID', type: 'String' },\r\n 0x11: { name: 'ChapterTimeStart', type: 'Uint' },\r\n 0x12: { name: 'ChapterTimeEnd', type: 'Uint' },\r\n 0x18: { name: 'ChapterFlagHidden', type: 'Uint' },\r\n 0x598: { name: 'ChapterFlagEnabled', type: 'Uint' },\r\n 0x2e67: { name: 'ChapterSegmentUID', type: 'Binary' },\r\n 0x2ebc: { name: 'ChapterSegmentEditionUID', type: 'Uint' },\r\n 0x23c3: { name: 'ChapterPhysicalEquiv', type: 'Uint' },\r\n 0xf: { name: 'ChapterTrack', type: 'Container' },\r\n 0x9: { name: 'ChapterTrackNumber', type: 'Uint' },\r\n 0x0: { name: 'ChapterDisplay', type: 'Container' },\r\n 0x5: { name: 'ChapString', type: 'String' },\r\n 0x37c: { name: 'ChapLanguage', type: 'String' },\r\n 0x37e: { name: 'ChapCountry', type: 'String' },\r\n 0x2944: { name: 'ChapProcess', type: 'Container' },\r\n 0x2955: { name: 'ChapProcessCodecID', type: 'Uint' },\r\n 0x50d: { name: 'ChapProcessPrivate', type: 'Binary' },\r\n 0x2911: { name: 'ChapProcessCommand', type: 'Container' },\r\n 0x2922: { name: 'ChapProcessTime', type: 'Uint' },\r\n 0x2933: { name: 'ChapProcessData', type: 'Binary' },\r\n 0x254c367: { name: 'Tags', type: 'Container' },\r\n 0x3373: { name: 'Tag', type: 'Container' },\r\n 0x23c0: { name: 'Targets', type: 'Container' },\r\n 0x28ca: { name: 'TargetTypeValue', type: 'Uint' },\r\n 0x23ca: { name: 'TargetType', type: 'String' },\r\n 0x23c5: { name: 'TagTrackUID', type: 'Uint' },\r\n 0x23c9: { name: 'TagEditionUID', type: 'Uint' },\r\n 0x23c4: { name: 'TagChapterUID', type: 'Uint' },\r\n 0x23c6: { name: 'TagAttachmentUID', type: 'Uint' },\r\n 0x27c8: { name: 'SimpleTag', type: 'Container' },\r\n 0x5a3: { name: 'TagName', type: 'String' },\r\n 0x47a: { name: 'TagLanguage', type: 'String' },\r\n 0x484: { name: 'TagDefault', type: 'Uint' },\r\n 0x487: { name: 'TagString', type: 'String' },\r\n 0x485: { name: 'TagBinary', type: 'Binary' }\r\n };\r\n\r\n function doInherit(newClass, baseClass) {\r\n newClass.prototype = Object.create(baseClass.prototype);\r\n newClass.prototype.constructor = newClass;\r\n }\r\n\r\n function WebmBase(name, type) {\r\n this.name = name || 'Unknown';\r\n this.type = type || 'Unknown';\r\n }\r\n WebmBase.prototype.updateBySource = function() { };\r\n WebmBase.prototype.setSource = function(source) {\r\n this.source = source;\r\n this.updateBySource();\r\n };\r\n WebmBase.prototype.updateByData = function() { };\r\n WebmBase.prototype.setData = function(data) {\r\n this.data = data;\r\n this.updateByData();\r\n };\r\n\r\n function WebmUint(name, type) {\r\n WebmBase.call(this, name, type || 'Uint');\r\n }\r\n doInherit(WebmUint, WebmBase);\r\n function padHex(hex) {\r\n return hex.length % 2 === 1 ? '0' + hex : hex;\r\n }\r\n WebmUint.prototype.updateBySource = function() {\r\n // use hex representation of a number instead of number value\r\n this.data = '';\r\n for (var i = 0; i < this.source.length; i++) {\r\n var hex = this.source[i].toString(16);\r\n this.data += padHex(hex);\r\n }\r\n };\r\n WebmUint.prototype.updateByData = function() {\r\n var length = this.data.length / 2;\r\n this.source = new Uint8Array(length);\r\n for (var i = 0; i < length; i++) {\r\n var hex = this.data.substr(i * 2, 2);\r\n this.source[i] = parseInt(hex, 16);\r\n }\r\n };\r\n WebmUint.prototype.getValue = function() {\r\n return parseInt(this.data, 16);\r\n };\r\n WebmUint.prototype.setValue = function(value) {\r\n this.setData(padHex(value.toString(16)));\r\n };\r\n\r\n function WebmFloat(name, type) {\r\n WebmBase.call(this, name, type || 'Float');\r\n }\r\n doInherit(WebmFloat, WebmBase);\r\n WebmFloat.prototype.getFloatArrayType = function() {\r\n return this.source && this.source.length === 4 ? Float32Array : Float64Array;\r\n };\r\n WebmFloat.prototype.updateBySource = function() {\r\n var byteArray = this.source.reverse();\r\n var floatArrayType = this.getFloatArrayType();\r\n var floatArray = new floatArrayType(byteArray.buffer);\r\n this.data = floatArray[0];\r\n };\r\n WebmFloat.prototype.updateByData = function() {\r\n var floatArrayType = this.getFloatArrayType();\r\n var floatArray = new floatArrayType([ this.data ]);\r\n var byteArray = new Uint8Array(floatArray.buffer);\r\n this.source = byteArray.reverse();\r\n };\r\n WebmFloat.prototype.getValue = function() {\r\n return this.data;\r\n };\r\n WebmFloat.prototype.setValue = function(value) {\r\n this.setData(value);\r\n };\r\n\r\n function WebmContainer(name, type) {\r\n WebmBase.call(this, name, type || 'Container');\r\n }\r\n doInherit(WebmContainer, WebmBase);\r\n WebmContainer.prototype.readByte = function() {\r\n return this.source[this.offset++];\r\n };\r\n WebmContainer.prototype.readUint = function() {\r\n var firstByte = this.readByte();\r\n var bytes = 8 - firstByte.toString(2).length;\r\n var value = firstByte - (1 << (7 - bytes));\r\n for (var i = 0; i < bytes; i++) {\r\n // don't use bit operators to support x86\r\n value *= 256;\r\n value += this.readByte();\r\n }\r\n return value;\r\n };\r\n WebmContainer.prototype.updateBySource = function() {\r\n this.data = [];\r\n for (this.offset = 0; this.offset < this.source.length; this.offset = end) {\r\n var id = this.readUint();\r\n var len = this.readUint();\r\n var end = Math.min(this.offset + len, this.source.length);\r\n var data = this.source.slice(this.offset, end);\r\n\r\n var info = sections[id] || { name: 'Unknown', type: 'Unknown' };\r\n var ctr = WebmBase;\r\n switch (info.type) {\r\n case 'Container':\r\n ctr = WebmContainer;\r\n break;\r\n case 'Uint':\r\n ctr = WebmUint;\r\n break;\r\n case 'Float':\r\n ctr = WebmFloat;\r\n break;\r\n }\r\n var section = new ctr(info.name, info.type);\r\n section.setSource(data);\r\n this.data.push({\r\n id: id,\r\n idHex: id.toString(16),\r\n data: section\r\n });\r\n }\r\n };\r\n WebmContainer.prototype.writeUint = function(x, draft) {\r\n for (var bytes = 1, flag = 0x80; x >= flag && bytes < 8; bytes++, flag *= 0x80) { }\r\n\r\n if (!draft) {\r\n var value = flag + x;\r\n for (var i = bytes - 1; i >= 0; i--) {\r\n // don't use bit operators to support x86\r\n var c = value % 256;\r\n this.source[this.offset + i] = c;\r\n value = (value - c) / 256;\r\n }\r\n }\r\n\r\n this.offset += bytes;\r\n };\r\n WebmContainer.prototype.writeSections = function(draft) {\r\n this.offset = 0;\r\n for (var i = 0; i < this.data.length; i++) {\r\n var section = this.data[i],\r\n content = section.data.source,\r\n contentLength = content.length;\r\n this.writeUint(section.id, draft);\r\n this.writeUint(contentLength, draft);\r\n if (!draft) {\r\n this.source.set(content, this.offset);\r\n }\r\n this.offset += contentLength;\r\n }\r\n return this.offset;\r\n };\r\n WebmContainer.prototype.updateByData = function() {\r\n // run without accessing this.source to determine total length - need to know it to create Uint8Array\r\n var length = this.writeSections('draft');\r\n this.source = new Uint8Array(length);\r\n // now really write data\r\n this.writeSections();\r\n };\r\n WebmContainer.prototype.getSectionById = function(id) {\r\n for (var i = 0; i < this.data.length; i++) {\r\n var section = this.data[i];\r\n if (section.id === id) {\r\n return section.data;\r\n }\r\n }\r\n return null;\r\n };\r\n\r\n function WebmFile(source) {\r\n WebmContainer.call(this, 'File', 'File');\r\n this.setSource(source);\r\n }\r\n doInherit(WebmFile, WebmContainer);\r\n WebmFile.prototype.fixDuration = function(duration, options) {\r\n var logger = options && options.logger;\r\n if (logger === undefined) {\r\n logger = function(message) {\r\n console.log(message);\r\n };\r\n } else if (!logger) {\r\n logger = function() { };\r\n }\r\n\r\n var segmentSection = this.getSectionById(0x8538067);\r\n if (!segmentSection) {\r\n logger('[fix-webm-duration] Segment section is missing');\r\n return false;\r\n }\r\n\r\n var infoSection = segmentSection.getSectionById(0x549a966);\r\n if (!infoSection) {\r\n logger('[fix-webm-duration] Info section is missing');\r\n return false;\r\n }\r\n\r\n var timeScaleSection = infoSection.getSectionById(0xad7b1);\r\n if (!timeScaleSection) {\r\n logger('[fix-webm-duration] TimecodeScale section is missing');\r\n return false;\r\n }\r\n\r\n var durationSection = infoSection.getSectionById(0x489);\r\n if (durationSection) {\r\n if (durationSection.getValue() <= 0) {\r\n logger('[fix-webm-duration] Duration section is present, but the value is empty');\r\n durationSection.setValue(duration);\r\n } else {\r\n logger('[fix-webm-duration] Duration section is present');\r\n return false;\r\n }\r\n } else {\r\n logger('[fix-webm-duration] Duration section is missing');\r\n // append Duration section\r\n durationSection = new WebmFloat('Duration', 'Float');\r\n durationSection.setValue(duration);\r\n infoSection.data.push({\r\n id: 0x489,\r\n data: durationSection\r\n });\r\n }\r\n\r\n // set default time scale to 1 millisecond (1000000 nanoseconds)\r\n timeScaleSection.setValue(1000000);\r\n infoSection.updateByData();\r\n segmentSection.updateByData();\r\n this.updateByData();\r\n\r\n return true;\r\n };\r\n WebmFile.prototype.toBlob = function(mimeType) {\r\n return new Blob([ this.source.buffer ], { type: mimeType || 'video/webm' });\r\n };\r\n\r\n function fixWebmDuration(blob, duration, callback, options) {\r\n // The callback may be omitted - then the third argument is options\r\n if (typeof callback === \"object\") {\r\n options = callback;\r\n callback = undefined;\r\n }\r\n\r\n if (!callback) {\r\n return new Promise(function(resolve) {\r\n fixWebmDuration(blob, duration, resolve, options);\r\n });\r\n }\r\n\r\n try {\r\n var reader = new FileReader();\r\n reader.onloadend = function() {\r\n try {\r\n var file = new WebmFile(new Uint8Array(reader.result));\r\n if (file.fixDuration(duration, options)) {\r\n blob = file.toBlob(blob.type);\r\n }\r\n } catch (ex) {\r\n // ignore\r\n }\r\n callback(blob);\r\n };\r\n reader.readAsArrayBuffer(blob);\r\n } catch (ex) {\r\n callback(blob);\r\n }\r\n }\r\n\r\n // Support AMD import default\r\n fixWebmDuration.default = fixWebmDuration;\r\n\r\n return fixWebmDuration;\r\n});\r\n","// src/mimeTypesAndCodecs.ts\nvar supportMap;\nfunction createMimeCodecSupportList() {\n supportMap = /* @__PURE__ */ new Map();\n supportMap.set(\n \"audio/webm;codecs=opus\" /* audioWebmOpus */,\n MediaRecorder.isTypeSupported(\"audio/webm;codecs=opus\" /* audioWebmOpus */)\n );\n supportMap.set(\n \"audio/mp4;codecs=avc1\" /* audioMp4Avc1 */,\n MediaRecorder.isTypeSupported(\"audio/mp4;codecs=avc1\" /* audioMp4Avc1 */)\n );\n supportMap.set(\n \"video/webm;codecs=avc1\" /* videoWebmAvc1 */,\n MediaRecorder.isTypeSupported(\"video/webm;codecs=avc1\" /* videoWebmAvc1 */)\n );\n supportMap.set(\n \"video/webm;codecs=avc1,opus\" /* videoWebmAvc1Opus */,\n MediaRecorder.isTypeSupported(\"video/webm;codecs=avc1,opus\" /* videoWebmAvc1Opus */)\n );\n supportMap.set(\n \"video/x-matroska;codecs=avc1\" /* videoXMatroskaAvc1 */,\n MediaRecorder.isTypeSupported(\"video/x-matroska;codecs=avc1\" /* videoXMatroskaAvc1 */)\n );\n supportMap.set(\n \"video/mp4;codecs=avc1\" /* videoMp4Avc1 */,\n MediaRecorder.isTypeSupported(\"video/mp4;codecs=avc1\" /* videoMp4Avc1 */)\n );\n supportMap.set(\n \"video/webm;codecs=vp8\" /* videoWebmVp8 */,\n MediaRecorder.isTypeSupported(\"video/webm;codecs=vp8\" /* videoWebmVp8 */)\n );\n supportMap.set(\n \"video/webm;codecs=vp9\" /* videoWebmVp9 */,\n MediaRecorder.isTypeSupported(\"video/webm;codecs=vp9\" /* videoWebmVp9 */)\n );\n supportMap.set(\n \"video/webm;codecs=av1\" /* videoWebmAv1 */,\n MediaRecorder.isTypeSupported(\"video/webm;codecs=av1\" /* videoWebmAv1 */)\n );\n}\nvar MediaFileUtils = class {\n /**Returns the file extension without period for a media file matching a\n * mimetype codec string constant from MimeCodecsString.\n * example: \"audio/webm;codecs=opus\" */\n static getFileExtension(mimeCodecString) {\n switch (mimeCodecString) {\n case \"audio/webm;codecs=opus\" /* audioWebmOpus */:\n return \"webm\";\n case \"audio/mp4;codecs=avc1\" /* audioMp4Avc1 */:\n return \"mp4\";\n case \"video/webm;codecs=avc1\" /* videoWebmAvc1 */:\n return \"webm\";\n case \"video/webm;codecs=avc1,opus\" /* videoWebmAvc1Opus */:\n return \"webm\";\n case \"video/x-matroska;codecs=avc1\" /* videoXMatroskaAvc1 */:\n return \"mkv\";\n case \"video/mp4;codecs=avc1\" /* videoMp4Avc1 */:\n return \"mp4\";\n case \"video/webm;codecs=vp8\" /* videoWebmVp8 */:\n return \"webm\";\n case \"video/webm;codecs=vp9\" /* videoWebmVp9 */:\n return \"webm\";\n case \"video/webm;codecs=av1\" /* videoWebmAv1 */:\n return \"webm\";\n default:\n throw \"Unsupported audioInfo string\";\n }\n }\n /**Returns the mimetype for a media file matching a mimetype codec string\n * constant from MimeCodecsString.*/\n static getMimeType(mimeCodecString) {\n switch (mimeCodecString) {\n case \"audio/webm;codecs=opus\" /* audioWebmOpus */:\n return \"audio/webm\";\n case \"audio/mp4;codecs=avc1\" /* audioMp4Avc1 */:\n return \"audio/mp4\";\n case \"video/webm;codecs=avc1\" /* videoWebmAvc1 */:\n return \"video/webm\";\n case \"video/webm;codecs=avc1,opus\" /* videoWebmAvc1Opus */:\n return \"video/webm\";\n case \"video/x-matroska;codecs=avc1\" /* videoXMatroskaAvc1 */:\n return \"video/x-matroska\";\n case \"video/mp4;codecs=avc1\" /* videoMp4Avc1 */:\n return \"video/mp4\";\n case \"video/webm;codecs=vp8\" /* videoWebmVp8 */:\n return \"video/webm\";\n case \"video/webm;codecs=vp9\" /* videoWebmVp9 */:\n return \"video/webm\";\n case \"video/webm;codecs=av1\" /* videoWebmAv1 */:\n return \"video/webm\";\n default:\n throw \"Unsupported audioInfo string\";\n }\n }\n /**returns true if the current browser can record the requested type */\n static isMimeCodecSupported(type) {\n if (supportMap == null) {\n createMimeCodecSupportList();\n }\n return supportMap.get(type);\n }\n /**returns true if the current browser can play back (but not necessarily\n * record) content with this MimeCodecString type */\n static canPlayMimeCodec(mimeCodecString) {\n switch (mimeCodecString) {\n case \"audio/webm;codecs=opus\" /* audioWebmOpus */: {\n return true;\n }\n case \"audio/mp4;codecs=avc1\" /* audioMp4Avc1 */: {\n return true;\n }\n case \"video/webm;codecs=avc1\" /* videoWebmAvc1 */: {\n return supportMap.get(\"video/webm;codecs=avc1\" /* videoWebmAvc1 */);\n }\n case \"video/webm;codecs=avc1,opus\" /* videoWebmAvc1Opus */: {\n return supportMap.get(\"video/webm;codecs=avc1\" /* videoWebmAvc1 */);\n }\n case \"video/x-matroska;codecs=avc1\" /* videoXMatroskaAvc1 */: {\n return supportMap.get(\"video/webm;codecs=avc1\" /* videoWebmAvc1 */);\n }\n case \"video/mp4;codecs=avc1\" /* videoMp4Avc1 */: {\n return true;\n }\n case \"video/webm;codecs=vp8\" /* videoWebmVp8 */: {\n return supportMap.get(\"video/webm;codecs=vp8\" /* videoWebmVp8 */);\n }\n case \"video/webm;codecs=vp9\" /* videoWebmVp9 */: {\n return supportMap.get(\"video/webm;codecs=vp9\" /* videoWebmVp9 */);\n }\n case \"video/webm;codecs=av1\" /* videoWebmAv1 */: {\n return supportMap.get(\"video/webm;codecs=av1\" /* videoWebmAv1 */);\n }\n default:\n throw \"Unsupported audioInfo string\";\n }\n }\n};\nvar MimeCodecsString = /* @__PURE__ */ ((MimeCodecsString2) => {\n MimeCodecsString2[\"audioWebmOpus\"] = \"audio/webm;codecs=opus\";\n MimeCodecsString2[\"audioMp4Avc1\"] = \"audio/mp4;codecs=avc1\";\n MimeCodecsString2[\"videoWebmAvc1\"] = \"video/webm;codecs=avc1\";\n MimeCodecsString2[\"videoWebmAvc1Opus\"] = \"video/webm;codecs=avc1,opus\";\n MimeCodecsString2[\"videoXMatroskaAvc1\"] = \"video/x-matroska;codecs=avc1\";\n MimeCodecsString2[\"videoMp4Avc1\"] = \"video/mp4;codecs=avc1\";\n MimeCodecsString2[\"videoWebmVp8\"] = \"video/webm;codecs=vp8\";\n MimeCodecsString2[\"videoWebmVp9\"] = \"video/webm;codecs=vp9\";\n MimeCodecsString2[\"videoWebmAv1\"] = \"video/webm;codecs=av1\";\n return MimeCodecsString2;\n})(MimeCodecsString || {});\n\n// src/analysis/AssessmentInstrumentDO.ts\nvar AssessmentInstrumentDO = class {\n get label() {\n return this.name;\n }\n constructor(id, name, {\n assessmentType,\n transposition,\n minFreq,\n maxFreq,\n yinQuality,\n windowWidth,\n sampleRate,\n pRecMethod,\n pRecQuality,\n overSampTimes,\n requiredPitchesPerSecond,\n tuningWindow,\n ignoreOctave,\n checkNoteStartTimes,\n timeBucketLeft,\n timeBucketRight,\n minAmplPerc,\n psMinPitchStabilityThresh,\n psPitchesToConsider,\n psMinStablePitches,\n psMinTotalPitchJump,\n asMinAmplPercRise,\n asMaxAmplRiseTime,\n spMinTimeBetweenSplits,\n minTimeBetweenClaps,\n minAmplRatioToFloor,\n minConsecutiveQuietPeaks,\n minAmplSlopeScore,\n qNoteNudge,\n qNoteBucket\n }) {\n this.id = id;\n this.name = name;\n this.assessmentType = assessmentType;\n this.transposition = transposition;\n this.minFreq = minFreq;\n this.maxFreq = maxFreq;\n this.yinQuality = yinQuality;\n this.windowWidth = windowWidth;\n this.sampleRate = sampleRate;\n this.pRecMethod = pRecMethod;\n this.pRecQuality = pRecQuality;\n this.overSampTimes = overSampTimes;\n this.requiredPitchesPerSecond = requiredPitchesPerSecond;\n this.tuningWindow = tuningWindow;\n this.ignoreOctave = ignoreOctave;\n this.checkNoteStartTimes = checkNoteStartTimes;\n this.timeBucketLeft = timeBucketLeft;\n this.timeBucketRight = timeBucketRight;\n this.minAmplPerc = minAmplPerc;\n this.psMinStablePitches = psMinStablePitches;\n this.psPitchesToConsider = psPitchesToConsider;\n this.psMinTotalPitchJump = psMinTotalPitchJump;\n this.psMinPitchStabilityThresh = psMinPitchStabilityThresh;\n this.asMinAmplPercRise = asMinAmplPercRise;\n this.asMaxAmplRiseTime = asMaxAmplRiseTime;\n this.spMinTimeBetweenSplits = spMinTimeBetweenSplits;\n this.minTimeBetweenClaps = minTimeBetweenClaps;\n this.minAmplRatioToFloor = minAmplRatioToFloor;\n this.minConsecutiveQuietPeaks = minConsecutiveQuietPeaks;\n this.minAmplSlopeScore = minAmplSlopeScore;\n this.qNoteNudge = qNoteNudge;\n this.qNoteBucket = qNoteBucket;\n }\n};\n\n// src/analysis/AssessmentInstrumentUtils.ts\nvar _AssessmentInstrumentUtils = class _AssessmentInstrumentUtils {\n static getInstrumentByID(id) {\n for (let inst of _AssessmentInstrumentUtils.instruments) {\n if (inst.id === id) {\n return inst;\n }\n }\n return null;\n }\n};\n_AssessmentInstrumentUtils.instruments = [\n new AssessmentInstrumentDO(3, \"Soprano Recorder\", {\n assessmentType: 1,\n transposition: -12,\n minFreq: 400,\n maxFreq: 2500,\n yinQuality: 1,\n windowWidth: 256,\n pRecMethod: 1,\n pRecQuality: 10,\n overSampTimes: 2,\n requiredPitchesPerSecond: 30,\n tuningWindow: 50,\n ignoreOctave: false,\n checkNoteStartTimes: true,\n timeBucketLeft: 0.3,\n timeBucketRight: 0.45,\n psMinStablePitches: 6,\n psPitchesToConsider: 9,\n psMinTotalPitchJump: 60,\n psMinPitchStabilityThresh: 50,\n asMinAmplPercRise: 1,\n asMaxAmplRiseTime: 0.05,\n spMinTimeBetweenSplits: 0.1,\n minAmplPerc: 0.05\n }),\n new AssessmentInstrumentDO(4, \"Alto Recorder Transposed\", {\n assessmentType: 1,\n transposition: -5,\n minFreq: 300,\n maxFreq: 2e3,\n yinQuality: 1\n }),\n new AssessmentInstrumentDO(300, \"Alto Recorder\", {\n assessmentType: 1,\n transposition: 0,\n minFreq: 300,\n maxFreq: 2e3,\n yinQuality: 1\n }),\n new AssessmentInstrumentDO(301, \"Tenor Recorder\", {\n assessmentType: 1,\n transposition: 0,\n minFreq: 200,\n maxFreq: 1250,\n yinQuality: 2\n }),\n new AssessmentInstrumentDO(302, \"Bass Recorder Transposed\", {\n assessmentType: 1,\n transposition: 7,\n minFreq: 150,\n maxFreq: 1e3,\n yinQuality: 2\n }),\n new AssessmentInstrumentDO(303, \"Bass Recorder\", {\n assessmentType: 1,\n transposition: -12,\n minFreq: 150,\n maxFreq: 1e3,\n yinQuality: 2\n }),\n new AssessmentInstrumentDO(400, \"Tin Whistle in D\", {\n assessmentType: 1,\n transposition: -12,\n minFreq: 400,\n maxFreq: 2500,\n yinQuality: 1\n }),\n new AssessmentInstrumentDO(5, \"Piccolo\", {\n assessmentType: 1,\n transposition: -12,\n minFreq: 500,\n maxFreq: 4500,\n yinQuality: 1\n }),\n new AssessmentInstrumentDO(6, \"Flute\", {\n assessmentType: 1,\n transposition: 0,\n minFreq: 200,\n maxFreq: 2500,\n yinQuality: 1\n }),\n new AssessmentInstrumentDO(200, \"Alto Flute\", {\n assessmentType: 1,\n transposition: 5,\n minFreq: 150,\n maxFreq: 2200,\n yinQuality: 1\n }),\n new AssessmentInstrumentDO(7, \"Oboe\", {\n assessmentType: 1,\n transposition: 0,\n minFreq: 200,\n maxFreq: 2200,\n yinQuality: 2\n }),\n new AssessmentInstrumentDO(210, \"English Horn\", {\n assessmentType: 1,\n transposition: 7,\n minFreq: 130,\n maxFreq: 1700,\n yinQuality: 2\n }),\n new AssessmentInstrumentDO(8, \"Bassoon\", {\n assessmentType: 1,\n transposition: 0,\n minFreq: 50,\n maxFreq: 1200,\n yinQuality: 4\n }),\n new AssessmentInstrumentDO(9, \"Clarinet\", {\n assessmentType: 1,\n transposition: 2,\n minFreq: 120,\n maxFreq: 2e3,\n yinQuality: 2\n }),\n new AssessmentInstrumentDO(10, \"Bass Clarinet\", {\n assessmentType: 1,\n transposition: 14,\n minFreq: 60,\n maxFreq: 1e3,\n yinQuality: 4\n }),\n new AssessmentInstrumentDO(11, \"Soprano Sax\", {\n assessmentType: 1,\n transposition: 2,\n minFreq: 140,\n maxFreq: 1800,\n yinQuality: 2\n }),\n new AssessmentInstrumentDO(12, \"Alto Sax\", {\n assessmentType: 1,\n transposition: 9,\n minFreq: 100,\n maxFreq: 1200,\n yinQuality: 3\n }),\n new AssessmentInstrumentDO(13, \"Tenor Sax\", {\n assessmentType: 1,\n transposition: 14,\n minFreq: 70,\n maxFreq: 1e3,\n yinQuality: 3\n }),\n new AssessmentInstrumentDO(14, \"Bari Sax\", {\n assessmentType: 1,\n transposition: 21,\n minFreq: 50,\n maxFreq: 600,\n yinQuality: 4\n }),\n new AssessmentInstrumentDO(15, \"Trumpet\", {\n assessmentType: 1,\n transposition: 2,\n minFreq: 140,\n maxFreq: 2e3,\n yinQuality: 2\n }),\n new AssessmentInstrumentDO(16, \"Horn in F\", {\n assessmentType: 1,\n transposition: 7,\n minFreq: 90,\n maxFreq: 1400,\n yinQuality: 3\n }),\n new AssessmentInstrumentDO(17, \"Trombone\", {\n assessmentType: 1,\n transposition: 0,\n minFreq: 60,\n maxFreq: 1e3,\n yinQuality: 4\n }),\n new AssessmentInstrumentDO(18, \"Euphonium TC\", {\n assessmentType: 1,\n transposition: 14,\n minFreq: 60,\n maxFreq: 1e3,\n yinQuality: 4\n }),\n new AssessmentInstrumentDO(19, \"Euphonium BC\", {\n assessmentType: 1,\n transposition: 0,\n minFreq: 60,\n maxFreq: 1e3,\n yinQuality: 4\n }),\n new AssessmentInstrumentDO(20, \"Tuba\", {\n assessmentType: 1,\n transposition: 0,\n minFreq: 30,\n maxFreq: 500,\n yinQuality: 6\n }),\n new AssessmentInstrumentDO(21, \"Violin\", {\n assessmentType: 1,\n transposition: 0,\n minFreq: 150,\n maxFreq: 2500,\n yinQuality: 2\n }),\n new AssessmentInstrumentDO(22, \"Viola\", {\n assessmentType: 1,\n transposition: 0,\n minFreq: 110,\n maxFreq: 1800,\n yinQuality: 2\n }),\n new AssessmentInstrumentDO(23, \"Cello\", {\n assessmentType: 1,\n transposition: 0,\n minFreq: 55,\n maxFreq: 1e3,\n yinQuality: 4\n }),\n new AssessmentInstrumentDO(24, \"Bass\", {\n assessmentType: 1,\n transposition: 12,\n minFreq: 30,\n maxFreq: 600,\n yinQuality: 6\n }),\n new AssessmentInstrumentDO(25, \"Piano\", {\n assessmentType: 0,\n transposition: 0,\n minFreq: 20,\n maxFreq: 4400,\n yinQuality: 1\n }),\n new AssessmentInstrumentDO(26, \"Guitar\", {\n assessmentType: 0,\n transposition: 12,\n minFreq: 70,\n maxFreq: 1300,\n yinQuality: 1\n }),\n new AssessmentInstrumentDO(30, \"Bells\", {\n assessmentType: 1,\n transposition: -24,\n minFreq: 520,\n maxFreq: 4200,\n yinQuality: 1\n }),\n new AssessmentInstrumentDO(101, \"Clap\", {\n assessmentType: 2,\n minTimeBetweenClaps: 80,\n minAmplRatioToFloor: 5,\n minConsecutiveQuietPeaks: 0,\n minAmplSlopeScore: 1.5,\n qNoteNudge: -0.15,\n qNoteBucket: 0.25\n }),\n new AssessmentInstrumentDO(102, \"Rhythm Voice\", {\n assessmentType: 2,\n minTimeBetweenClaps: 120,\n minAmplRatioToFloor: 4,\n minConsecutiveQuietPeaks: 0,\n minAmplSlopeScore: 1.5,\n qNoteNudge: -0.2,\n qNoteBucket: 0.25\n })\n];\nvar AssessmentInstrumentUtils = _AssessmentInstrumentUtils;\n\n// src/analysis/DelayInfo.ts\nvar DelayInfo = class {\n};\n\n// src/analysis/DelayTester.ts\nimport { SoundLoader } from \"audio_utils\";\n\n// src/mic/MicManager.ts\nimport { createEmitter as createEmitter3 } from \"ts_utils\";\n\n// src/audio_worklets/MicDataNode.ts\nimport { createEmitter } from \"ts_utils\";\nvar _MicDataNode = class _MicDataNode extends AudioWorkletNode {\n constructor(context) {\n super(context, \"micData-worklet\");\n this._micDataEmitter = createEmitter();\n this._onProcessorMessage = (ev) => {\n this._micDataEmitter.emit(ev.data);\n };\n if (!_MicDataNode.workletRegistered) {\n throw \"call registerWorklet() before instantiating\";\n }\n this._context = context;\n this._init();\n }\n get micData() {\n return this._micDataEmitter.event;\n }\n static async registerWorklet(context) {\n if (_MicDataNode.workletRegistered) {\n return true;\n }\n try {\n let blob = new Blob([micDataWorklet], { type: \"text/javascript\" });\n let url = window.URL.createObjectURL(blob);\n await context.audioWorklet.addModule(url);\n _MicDataNode.workletRegistered = true;\n return true;\n } catch (err) {\n console.log(err);\n return false;\n }\n }\n setWindowSize(windowSize) {\n this.port.postMessage({\n type: \"setWindowSize\",\n windowSize\n });\n }\n _init() {\n this.port.onmessage = this._onProcessorMessage;\n }\n};\n_MicDataNode.workletRegistered = false;\nvar MicDataNode = _MicDataNode;\nvar micDataWorklet = `\nclass MicDataProcessor extends AudioWorkletProcessor {\n\twindowSize = 128;\n\twindowPosition = 0;\n\twindowData;\n\t\n\tconstructor(){\n\t\tsuper();\n\t\tthis.port.onmessage = this._handleMessage;\n\t\tthis.windowData = new Float32Array(this.windowSize);\n\t\tthis.windowPosition = 0;\n\t}\n\t\n\tprocess(inputs, outputs) {\n\t\t// By default, the node has single input and output.\n\t\t//input[0][0] is the Float32Array of left channel data\n\t\t\n\t\tconst newData = inputs[0][0];\n\t\tif (newData == null){\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\tlet newDataPos = 0;\n\t\twhile(true){\n\t\t\tlet windowSpotsRemaining = this.windowSize - this.windowPosition;\n\t\t\tlet newSamplesRemaining = newData.length - newDataPos;\n\t\t\t\n\t\t\tif (newSamplesRemaining >= windowSpotsRemaining){\n\t\t\t\tlet numSamplesToCopy = windowSpotsRemaining;\n\t\t\t\tthis.windowData.set(newData.subarray(newDataPos, newDataPos +\n\t\t\t\t\tnumSamplesToCopy), this.windowPosition);\n\t\t\t\tnewDataPos += numSamplesToCopy;\n\t\t\t\t\n\t\t\t\tthis.port.postMessage(this.windowData);\n\t\t\t\tthis.windowData = new Float32Array(this.windowSize);\n\t\t\t\tthis.windowPosition = 0;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tlet numSamplesToCopy = newSamplesRemaining;\n\t\t\t\tthis.windowData.set(newData.subarray(newDataPos, newDataPos +\n\t\t\t\t\tnumSamplesToCopy), this.windowPosition);\n\t\t\t\tthis.windowPosition += numSamplesToCopy\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn true;\n\t}\n\t\n\t_handleMessage = (ev) => {\n\t\tif (ev.data.type === \"setWindowSize\"){\n\t\t\tthis.windowSize = ev.data.windowSize;\n\t\t\tthis.windowData = new Float32Array(this.windowSize);\n\t\t\tthis.windowPosition = 0;\n\t\t}\n\t}\n}\n\nregisterProcessor('micData-worklet', MicDataProcessor);\n`;\n\n// src/devices/devices.ts\nimport { createEmitter as createEmitter2 } from \"ts_utils\";\n\n// src/mic/MicOptions.ts\nvar MicOptions = class {\n constructor() {\n this.channelCount = 1;\n this.autoGainControl = false;\n this.echoCancellation = false;\n this.latency = 0;\n this.noiseSuppression = false;\n }\n toMap(deviceId) {\n let settings = {\n \"channelCount\": this.channelCount,\n \"autoGainControl\": this.autoGainControl,\n \"echoCancellation\": this.echoCancellation,\n \"latency\": this.latency,\n \"noiseSuppression\": this.noiseSuppression\n };\n if (deviceId != null) {\n settings[\"deviceId\"] = deviceId;\n }\n return settings;\n }\n};\n\n// src/video/VideoOptions.ts\nvar VideoOptions = class {\n constructor(width = 320, height = 240, idealFrameRate = 12, maxFrameRate = 15, bitRate = 1e6, recordingBlobSize = 100) {\n this.mimeCodecsString = \"video/webm;codecs=avc1,opus\" /* videoWebmAvc1Opus */;\n this.width = width;\n this.height = height;\n this.idealFrameRate = idealFrameRate;\n this.maxFrameRate = maxFrameRate;\n this.bitRate = bitRate;\n this.recordingBlobSize = recordingBlobSize;\n }\n toMap(deviceId) {\n let settings = {\n \"width\": { \"ideal\": this.width },\n \"height\": { \"ideal\": this.height },\n \"frameRate\": {\n \"ideal\": this.idealFrameRate\n }\n };\n if (deviceId != null) {\n settings[\"deviceId\"] = deviceId;\n }\n return settings;\n }\n};\n\n// src/devices/devices.ts\nvar Device = class {\n};\nvar DeviceType = /* @__PURE__ */ ((DeviceType2) => {\n DeviceType2[DeviceType2[\"audioInput\"] = 0] = \"audioInput\";\n DeviceType2[DeviceType2[\"videoInput\"] = 1] = \"videoInput\";\n DeviceType2[DeviceType2[\"audioOutput\"] = 2] = \"audioOutput\";\n return DeviceType2;\n})(DeviceType || {});\nvar MediaDeviceManagerEvent = class {\n};\nvar MediaDeviceManagerEventType = /* @__PURE__ */ ((MediaDeviceManagerEventType2) => {\n MediaDeviceManagerEventType2[MediaDeviceManagerEventType2[\"deviceChange\"] = 0] = \"deviceChange\";\n return MediaDeviceManagerEventType2;\n})(MediaDeviceManagerEventType || {});\nvar MediaDeviceManager = class _MediaDeviceManager {\n constructor() {\n this._micPermissionGranted = false;\n this._cameraPermissionGranted = false;\n this._isInitialized = false;\n this._eventEmitter = createEmitter2();\n this._onDeviceChange = async (e) => {\n await this.getDevices();\n let micChanged = this._currentMic != null && !this.deviceAvailable(this._currentMic.id);\n let cameraChanged = this._currentCamera != null && !this.deviceAvailable(this._currentCamera.id);\n if (micChanged || cameraChanged) {\n this._dispatchDeviceChangeEvent(micChanged, cameraChanged);\n }\n };\n }\n get devices() {\n return this._devices.slice();\n }\n /**returns the currently specified audio input [Device]. Use [isMicReady]\n * to ensure the [currentMic] has been set and permission has been granted\n * to use it.*/\n get currentMic() {\n return this._currentMic;\n }\n /**returns the currently specified video input [Device]. Use [isCameraReady]\n * to ensure the [currentCamera] has been set and permission has been \n * granted to use it.*/\n get currentCamera() {\n return this._currentCamera;\n }\n /**returns true if the user has granted permission to use the microphone in\n * this session or a previous session. Use [isMicReady] instead to ensure\n * the [currentMic] has also been set in addition to permission being\n * granted.*/\n get micPermissionGranted() {\n return this._micPermissionGranted;\n }\n /**returns true if the user has granted permission to use the camera in\n * this session or a previous session. Use [isCameraReady] instead to ensure\n * the [currentCamera] has also been set in addition to permission being\n * granted.*/\n get cameraPermissionGranted() {\n return this._cameraPermissionGranted;\n }\n /**returns true if the user has granted permission to use the microphone\n * and the [currentMic] has been specified. This must be [true] in order\n * to initiate a mic stream.*/\n get isMicReady() {\n return this._micPermissionGranted && this._currentMic != null;\n }\n /**returns true if the user has granted permission to use the microphone\n * and the [currentCamera] has been specified. This must be [true] in order\n * to initiate a camera stream.*/\n get isCameraReady() {\n return this._cameraPermissionGranted && this._currentCamera != null;\n }\n static get isInitialized() {\n return this._ref != null && this._ref._isInitialized;\n }\n get event() {\n return this._eventEmitter.event;\n }\n static get() {\n if (!_MediaDeviceManager._ref) {\n _MediaDeviceManager._ref = new _MediaDeviceManager();\n }\n return _MediaDeviceManager._ref;\n }\n /**Gets the current state of permissions without prompting the user for \n * permission or choosing mic/camera devices. You must separately call:\n * [getPermissions] - and request mic and/or camera permissions\n * [getDevices] - to list the available devices\n * [setMic] / [setCamera] - set a current device*/\n async init() {\n if (this._isInitialized) {\n return;\n }\n await this._checkIfPermissionGranted();\n window.navigator.mediaDevices.addEventListener(\n \"devicechange\",\n this._onDeviceChange\n );\n this._isInitialized = true;\n }\n /**Initializes the list of devices and sets the mic and/or camera to the\n * operating system default devices. The user will be prompted if permission\n * has not already been obtained.*/\n async initWithDefaultDevices(initMic, initCamera) {\n if (!initMic && !initCamera) {\n throw \"initWithDefaultDevices should only be used when initiating the mic and/or camera. Alternatively use init()\";\n }\n await this.init();\n let success = await this.getPermissions(initMic, initCamera);\n if (!success) {\n return false;\n }\n await this.getDevices();\n let micSuccess = !initMic || this.setMic();\n let cameraSuccess = !initCamera || this.setCamera();\n return micSuccess && cameraSuccess;\n }\n /**Gets permission to use the microphone and/or camera.*/\n async getPermissions(mic, camera) {\n let options = {};\n if (mic && !this._micPermissionGranted) {\n options.audio = new MicOptions().toMap(null);\n }\n if (camera && !this._cameraPermissionGranted) {\n options.video = new VideoOptions().toMap(null);\n }\n if (!options.audio && !options.video) {\n return true;\n }\n let success = await this._createStreams(options);\n if (success) {\n if (!this._micPermissionGranted) {\n this._micPermissionGranted = options.audio != null;\n }\n if (!this._cameraPermissionGranted) {\n this._cameraPermissionGranted = options.video != null;\n }\n }\n success = (!mic || this._micPermissionGranted) && (!camera || this._cameraPermissionGranted);\n return success;\n }\n async getDevices() {\n this._devices = [];\n try {\n let deviceObjects = await navigator.mediaDevices.enumerateDevices();\n for (let dev of deviceObjects) {\n let device = new Device();\n device.id = dev.deviceId;\n device.name = dev.label;\n if (device.id == null) {\n continue;\n }\n switch (dev.kind) {\n case \"audioinput\":\n device.type = 0 /* audioInput */;\n break;\n case \"videoinput\":\n device.type = 1 /* videoInput */;\n break;\n case \"audiooutput\":\n device.type = 2 /* audioOutput */;\n break;\n default:\n continue;\n }\n device.isDefault = !this._devices.some((d) => d.type === device.type);\n this._devices.push(device);\n }\n } catch (err) {\n console.log(err);\n }\n return this._devices;\n }\n /**returns [true] if the requested [deviceId] matches a currently available\n * device*/\n deviceAvailable(deviceId) {\n if (this._devices == null) {\n throw \"You must call getDevices() before devices will be available\";\n }\n return this._devices.some((d) => d.id == deviceId);\n }\n /**sets the mic device without intializing the mic or asking for permission.\n * If deviceId is left null, the default device will be used.\n * Dispatches an event of type [MediaDeviceManagerEventType.deviceChange] if\n * the device is successfully set.*/\n setMic(deviceId = null) {\n if (!this._micPermissionGranted) {\n throw \"You must call getPermissions() and getDevices() before setting a microphone device\";\n }\n if (deviceId == null) {\n deviceId = this._devices.find((d) => d.type == 0 /* audioInput */ && d.isDefault)?.id;\n }\n if (deviceId == null || !this.deviceAvailable(deviceId)) {\n return false;\n }\n this._currentMic = this._devices.find((d) => d.id == deviceId);\n this._dispatchDeviceChangeEvent(true, false);\n return true;\n }\n /**sets the mic device to null and dispatches an event of type\n * [MediaDeviceManagerEventType.deviceChange]*/\n clearMic() {\n this._currentMic = null;\n this._dispatchDeviceChangeEvent(true, false);\n }\n /**sets the camera device without intializing the camera or asking for \n * permission. If deviceId is left null, the default device will be used.\n * Dispatches an event of type [MediaDeviceManagerEventType.deviceChange] if\n * the device is successfully set.*/\n setCamera(deviceId = null) {\n if (!this._cameraPermissionGranted) {\n throw \"You must call getPermissions() and getDevices() before setting a camera device\";\n }\n if (deviceId == null) {\n deviceId = this._devices.find((d) => d.type == 1 /* videoInput */ && d.isDefault)?.id;\n }\n if (deviceId == null || !this.deviceAvailable(deviceId)) {\n return false;\n }\n this._currentCamera = this._devices.find((d) => d.id == deviceId);\n this._dispatchDeviceChangeEvent(false, true);\n return true;\n }\n /**sets the camera device to null and dispatches an event of type\n * [MediaDeviceManagerEventType.deviceChange]*/\n clearCamera() {\n this._currentCamera = null;\n this._dispatchDeviceChangeEvent(false, true);\n }\n async _createStreams(options) {\n try {\n let stream = await navigator.mediaDevices.getUserMedia(options);\n let tracks = stream.getTracks();\n for (let track of tracks) {\n track.stop();\n track.enabled = false;\n stream.removeTrack(track);\n }\n stream = null;\n return true;\n } catch (err) {\n console.log(err.toString() + \"could not enable mic and/or camera\");\n return false;\n }\n }\n async _checkIfPermissionGranted() {\n try {\n let status = await navigator.permissions.query(\n { name: \"microphone\" }\n );\n if (status.state === \"granted\") {\n this._micPermissionGranted = true;\n }\n status = await navigator.permissions.query(\n { name: \"camera\" }\n );\n if (status.state === \"granted\") {\n this._cameraPermissionGranted = true;\n }\n } catch (err) {\n }\n }\n _dispatchDeviceChangeEvent(micChanged, cameraChanged) {\n let ev = new MediaDeviceManagerEvent();\n ev.type = 0 /* deviceChange */;\n ev.micChanged = micChanged;\n ev.cameraChanged = cameraChanged;\n this._eventEmitter.emit(ev);\n }\n};\n\n// src/mic/AudioOptions.ts\nvar AudioOptions = class {\n constructor() {\n this.bitRate = 128e3;\n this.mimeCodecsString = \"audio/webm;codecs=opus\" /* audioWebmOpus */;\n }\n};\n\n// src/mic/MicManager.ts\nvar _MicManager = class _MicManager {\n constructor(context, options) {\n this._micDataEmitter = createEmitter3();\n this._eventEmitter = createEmitter3();\n this._recordingBufferSize = 1024;\n this._isCapturing = false;\n this._micOptions = new MicOptions();\n this._onMicData = (data) => {\n if (data.length < 1) {\n return;\n } else {\n this._micDataEmitter.emit(data);\n }\n };\n this._onMediaDeviceManagerEvent = (e) => {\n if (e.micChanged || this.includesVideo && e.cameraChanged) {\n this.killStream();\n }\n };\n this._context = context;\n this._audioOptions = options != null ? options : new AudioOptions();\n this._init();\n }\n get micData() {\n return this._micDataEmitter.event;\n }\n get event() {\n return this._eventEmitter.event;\n }\n /**Creates/gets a [MicManager] singleton. [context] is only necessary the\n * first time the constructor is called and will be ignored on future calls.\n * */\n static get(context, options) {\n if (!_MicManager._ref) {\n _MicManager._ref = new _MicManager(context, options);\n }\n return _MicManager._ref;\n }\n _init() {\n if (this._context == null) {\n throw \"AudioContext must be specified the first time you callMicManager.get().\";\n }\n if (!MediaDeviceManager.isInitialized) {\n throw \"You must instantiate and initialize a MediaDeviceManager before creating the MicManager\";\n }\n MediaDeviceManager.get().event.on(this._onMediaDeviceManagerEvent);\n }\n /**kills any existing media stream and initializes a new one. If successful,\n * resolves true, otherwise false. If [VideoOptions] is null, only audio\n * input is initialized. This can also be used to disable video recording.*/\n async initMicMediaStream(micOptions = null, videoOptions = null) {\n let deviceManager = MediaDeviceManager.get();\n if (!deviceManager.isMicReady) {\n throw \"You must set a mic device in the MediaDeviceManager and get permission to use it before creating media streams.\";\n }\n if (videoOptions != null && !deviceManager.isCameraReady) {\n throw \"You must set a camera device in the MediaDeviceManager and get permission to use it before adding a video stream.\";\n }\n await this._setupWorklets();\n this.killStream();\n if (micOptions != null) {\n this._micOptions = micOptions;\n }\n this._videoOptions = videoOptions;\n let video;\n if (this._videoOptions != null) {\n video = this._videoOptions.toMap(deviceManager.currentCamera.id);\n }\n try {\n this._stream = await navigator.mediaDevices.getUserMedia({\n audio: this._micOptions.toMap(deviceManager.currentMic.id),\n video: video ?? false\n });\n let ev = new MicManagerEvent(0 /* streamCreated */);\n this._eventEmitter.emit(ev);\n return true;\n } catch (err) {\n console.log(err.toString() + \" ...maybe make sure mic is enabled.\");\n return false;\n }\n }\n async addFiltering() {\n let wasCapturing = this._isCapturing;\n this._micOptions.echoCancellation = true;\n this._micOptions.noiseSuppression = true;\n await this.initMicMediaStream(null, this._videoOptions);\n if (wasCapturing) {\n this.startCapture();\n }\n }\n async removeFiltering() {\n let wasCapturing = this._isCapturing;\n this._micOptions.echoCancellation = false;\n this._micOptions.noiseSuppression = false;\n await this.initMicMediaStream(null, this._videoOptions);\n if (wasCapturing) {\n this.startCapture();\n }\n }\n killStream() {\n if (this._stream != null) {\n this.stopCapture();\n let tracks = this._stream.getTracks();\n for (let track of tracks) {\n track.stop();\n track.enabled = false;\n this._stream.removeTrack(track);\n }\n this._stream = null;\n let ev = new MicManagerEvent(1 /* streamClosed */);\n this._eventEmitter.emit(ev);\n }\n }\n startCapture() {\n if (this._isCapturing) {\n return;\n }\n if (this._context == null) {\n throw \"AudioContext must be set first!\";\n }\n this._inputNode = this._context.createMediaStreamSource(this._stream);\n this._micDataNode = new MicDataNode(this._context);\n this._micDataNode.setWindowSize(this._recordingBufferSize);\n this._micDataNode.micData.on(this._onMicData);\n this._inputNode.connect(this._micDataNode);\n if (this._micMonitorOutput != null) {\n this._inputNode.connect(this._micMonitorOutput);\n }\n this._micDataNode.connect(this._context.destination);\n this._isCapturing = true;\n }\n stopCapture() {\n if (this._isCapturing) {\n this._micDataNode.disconnect();\n this._inputNode.disconnect();\n this._micDataNode.micData.off(this._onMicData);\n this._isCapturing = false;\n }\n }\n /**attempts to check and return the number of mic channels on the current\n * audio MediaStreamTrack. Returns null if the check fails. */\n getNumAudioChannels() {\n if (!this._stream) {\n return null;\n }\n let tracks = this._stream.getAudioTracks();\n if (tracks && tracks.length > 0) {\n let settings = tracks[0].getSettings();\n let count = settings.channelCount;\n if (count !== void 0 && typeof count === \"number\") {\n return count;\n }\n }\n return null;\n }\n async _setupWorklets() {\n if (!MicDataNode.workletRegistered) {\n await MicDataNode.registerWorklet(this._context);\n }\n }\n get audioContext() {\n return this._context;\n }\n set audioContext(value) {\n this._context = value;\n }\n /**Gets the number of samples in each recording buffer (ex. 1024)*/\n get recordingBufferSize() {\n return this._recordingBufferSize;\n }\n set recordingBufferSize(value) {\n if (value !== 256 && value !== 512 && value !== 1024 && value !== 2048 && value !== 4096 && value !== 8192 && value !== 16384) {\n throw \"value must be a power of 2 from 256 - 16384\";\n }\n this._recordingBufferSize = value;\n }\n get audioOptions() {\n return this._audioOptions;\n }\n /**Gets the [VideoOptions] that was set via [initMicAndGetPermission] or\n * [initMicMediaStream]. If this is null, [VideoOptions] were not passed\n * in when initializing the microphone. To disable video, pass null for \n * the video options to either of those methods.*/\n get videoOptions() {\n return this._videoOptions;\n }\n /**true if video streams are created, in addition to the required audio\n * input stream*/\n get includesVideo() {\n return this._videoOptions != null;\n }\n /**[true] if the microphone is currently dispatching mic data through the \n * [onMicData] stream. The audio is not saved in the [MicManager], so a\n * separate class for recording or analyzing the data should listen to those\n * events.*/\n get isCapturing() {\n return this._isCapturing;\n }\n /**when using capture (via [startCapture]), if the [micMonitorOutput] is\n * not null, the captured mic data will be sent to this node as well. It's\n * intended to be used for mic audio monitoring.*/\n get micMonitorOutput() {\n return this._micMonitorOutput;\n }\n set micMonitorOutput(node) {\n if (this._inputNode != null) {\n if (this._micMonitorOutput != null) {\n try {\n this._inputNode.disconnect(this._micMonitorOutput);\n } catch (err) {\n }\n }\n if (node != null) {\n this._inputNode.connect(node);\n }\n }\n this._micMonitorOutput = node;\n }\n get isStreamActive() {\n return this._stream != null;\n }\n get stream() {\n return this._stream;\n }\n /**returns the [MediaStreamTrack] for the microphone audio*/\n get micAudioTrack() {\n return this._stream?.getAudioTracks()[0];\n }\n};\n_MicManager.useOldChromeSettings = false;\nvar MicManager = _MicManager;\nvar MicManagerEvent = class {\n constructor(type) {\n this.type = type;\n }\n};\nvar MicManagerEventType = /* @__PURE__ */ ((MicManagerEventType2) => {\n MicManagerEventType2[MicManagerEventType2[\"streamCreated\"] = 0] = \"streamCreated\";\n MicManagerEventType2[MicManagerEventType2[\"streamClosed\"] = 1] = \"streamClosed\";\n return MicManagerEventType2;\n})(MicManagerEventType || {});\n\n// src/mic/AudioRecorder2.ts\nimport ysFixWebmDuration from \"fix-webm-duration\";\nvar AudioRecorder2 = class _AudioRecorder2 {\n constructor(micManager) {\n this._isRecording = false;\n this._fixWebmDuration = false;\n // void _onRecordingStart(html.Event e){\n //This does not seem to be a reliable indicator of exactly when\n //recording begins, possibly because the handler call can be delayed\n //if there is heavy js processing.\n // number cTime = _micManager.audioContext.currentTime;\n // print('rec start time: $_recordStartTime, rec started: $cTime');\n // _recordStartTime = cTime;\n // }\n this._onDataAvailable = (e) => {\n this._recordingBlobs.push(e.data);\n if (!this._isRecording) {\n this._mediaRecorder.removeEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this._recordingComplete = true;\n this._completeBlobReturn();\n }\n };\n this._onMicManagerEvent = (e) => {\n switch (e.type) {\n case 1 /* streamClosed */:\n if (this._isRecording) {\n this.stop();\n this._recordingBlobs = null;\n }\n this._killMediaRecorder();\n break;\n case 0 /* streamCreated */:\n if (this._isRecording) {\n this.stop();\n this._recordingBlobs = null;\n }\n this._createMediaRecorder();\n break;\n }\n };\n this._micManager = micManager;\n this._init();\n }\n /**\n * start recording.\n * set startMicCapture to true if you aren't initializing it elsewhere\n * (for pitch rec, etc.).\n */\n record() {\n if (!_AudioRecorder2.isSupported) {\n return false;\n }\n if (this._mediaRecorder == null) {\n if (!this._createMediaRecorder()) {\n throw \"MediaRecorder could not be created. Make sure to call MicManager.initMicMediaStream before using the AudioRecorder2\";\n }\n }\n this._recordingBlobs = [];\n this._mediaRecorder.addEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this._mediaRecorder.start();\n this._recordStartTime = this._micManager.audioContext.currentTime;\n this._isRecording = true;\n this._recordingComplete = false;\n return true;\n }\n /**stops recording. If stopMicCapture is true, the microphone capture is\n * also stopped in the MicManager.*/\n stop() {\n if (!_AudioRecorder2.isSupported) {\n return;\n }\n if (this._isRecording) {\n this._mediaRecorder.stop();\n this._recordStopTime = this._micManager.audioContext.currentTime;\n this._isRecording = false;\n }\n }\n /**gets recording as an html.Blob object that can be saved to a file*/\n getAudioBlob() {\n return new Promise((resolve, reject) => {\n this._returnBlobCompleter = resolve;\n if (this._recordingComplete) {\n this._completeBlobReturn();\n }\n });\n }\n /**Gets an AudioElement with the recorded audio*/\n async getAudioElement() {\n let blob = await this.getAudioBlob();\n if (blob != null) {\n let audioEl = document.createElement(\"audio\");\n audioEl.src = URL.createObjectURL(blob);\n return audioEl;\n }\n return null;\n }\n _init() {\n this._micManager.event.on(this._onMicManagerEvent);\n this._createMediaRecorder();\n }\n _createMediaRecorder() {\n this._killMediaRecorder();\n if (!this._audioStreamIsReady()) {\n return false;\n }\n try {\n let audioOptions = this._micManager.audioOptions;\n let vidOptions = this._micManager.videoOptions;\n let options = this.recordingVideo ? {\n \"mimeType\": vidOptions.mimeCodecsString,\n \"audioBitsPerSecond\": audioOptions.bitRate,\n \"videoBitsPerSecond\": vidOptions.bitRate\n } : {\n \"mimeType\": audioOptions.mimeCodecsString,\n \"audioBitsPerSecond\": audioOptions.bitRate\n };\n this._mediaRecorder = new MediaRecorder(\n this._micManager.stream,\n options\n );\n return true;\n } catch (err) {\n console.log(err.toString());\n return false;\n }\n }\n _audioStreamIsReady() {\n let audioStreams = this._micManager.stream?.getAudioTracks();\n if (audioStreams == null || audioStreams.length < 1 || audioStreams[0].readyState !== \"live\") {\n return false;\n }\n return true;\n }\n _completeBlobReturn() {\n if (this._returnBlobCompleter == null) {\n return;\n }\n if (this._recordingBlobs == null || this._recordingBlobs.length === 0) {\n this._recordingBlobs = null;\n this._returnBlobCompleter(null);\n this._returnBlobCompleter = null;\n } else {\n let mimeType = this.recordingVideo ? \"video/webm\" : \"audio/webm\";\n let blob = new Blob(this._recordingBlobs, { type: mimeType });\n this._recordingBlobs = null;\n if (!this._fixWebmDuration) {\n this._returnBlobCompleter(blob);\n this._returnBlobCompleter = null;\n } else {\n let duration = Math.ceil((this._recordStopTime - this._recordStartTime) * 1e3);\n ysFixWebmDuration(blob, duration, (fixedBlob) => {\n this._returnBlobCompleter(fixedBlob);\n this._returnBlobCompleter = null;\n }, { logger: false });\n }\n }\n }\n _killMediaRecorder() {\n if (this._mediaRecorder != null) {\n this._mediaRecorder.removeEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this._mediaRecorder = null;\n }\n }\n get recordingVideo() {\n return this._micManager.includesVideo;\n }\n /**if true, recording is currently in progress.*/\n get isRecording() {\n return this._isRecording;\n }\n /**returns the AudioContext time, in seconds, when recording starts.*/\n get recordStartTime() {\n return this._recordStartTime;\n }\n /**returns the AudioContext time, in seconds, when recording stops.*/\n get recordStopTime() {\n return this._recordStopTime;\n }\n /**if fixWebmDuration is true, recordings will be processed to add duration\n * metadata */\n get fixWebmDuration() {\n return this._fixWebmDuration;\n }\n set fixWebmDuration(value) {\n this._fixWebmDuration = value;\n }\n /**returns true if the browser supports the MediaRecorder API*/\n static get isSupported() {\n if (_AudioRecorder2._isSupported == null) {\n _AudioRecorder2._isSupported = MediaRecorder != null;\n }\n return _AudioRecorder2._isSupported;\n }\n};\n\n// src/analysis/DelayTester.ts\nvar DelayTester = class _DelayTester {\n constructor(micManager) {\n this._onMicData = (data) => {\n if (this._micSampleData == null) {\n this._micSampleData = data;\n } else {\n let newList = new Float32Array(this._micSampleData.length + data.length);\n newList.set(this._micSampleData, 0);\n newList.set(data, this._micSampleData.length);\n this._micSampleData = newList;\n }\n };\n if (micManager == null) {\n throw \"You must include the MicManager in the first call to DelayTester.get()\";\n }\n this._micManager = micManager;\n }\n static get(micManager) {\n if (_DelayTester._ref == null) {\n _DelayTester._ref = new _DelayTester(micManager);\n }\n return _DelayTester._ref;\n }\n /**Tests the length of the delay between when a user makes a sound and that\n * sound is picked up. To use this test, the mic must pick up the speaker\n * sound. A single short tone will play.*/\n testDelay() {\n return new Promise((resolve, reject) => {\n this._micManager.initMicMediaStream().then((_) => {\n let context = this._micManager.audioContext;\n let tone = this._getTestTone(\n 512,\n 880,\n false\n );\n this._testSampleData = tone.buffer.getChannelData(0);\n this._recorder = new AudioRecorder2(this._micManager);\n this._recorder.record();\n let playDelay = 0;\n tone.start(context.currentTime + playDelay);\n setTimeout(async () => {\n this._recorder.stop();\n let blob = await this._recorder.getAudioBlob();\n let arrayBuffer = await this.convertBlobToArrayBuffer(blob);\n SoundLoader.getDownloadLinkForArrayBuffer(\n [arrayBuffer],\n \"audio.webm\"\n );\n let buffer = await SoundLoader.getAudioBufferFromBlob(\n blob,\n this._micManager.audioContext\n );\n let result = this._analyzeData(buffer, playDelay);\n resolve(result);\n }, 2e3);\n });\n });\n }\n /**Tests the length of the delay between when a user makes a sound and that\n * sound is picked up. To use this test, the mic must pick up the speaker\n * sound. A single short tone will play.*/\n testDelayViaPeak() {\n let promise = new Promise((resolve, reject) => {\n this._micManager.initMicMediaStream().then((_) => {\n let context = this._micManager.audioContext;\n let tone = this._getTestTone(\n 1024,\n 880,\n true\n );\n this._recorder = new AudioRecorder2(this._micManager);\n this._recorder.record();\n let playDelay = 0;\n tone.start(context.currentTime + playDelay);\n setTimeout(async () => {\n this._recorder.stop();\n let blob = await this._recorder.getAudioBlob();\n let buffer = await SoundLoader.getAudioBufferFromBlob(\n blob,\n this._micManager.audioContext\n );\n let result = this._analyzeDataPeak(buffer, playDelay);\n resolve(result);\n }, 1e3 + playDelay);\n });\n });\n return promise;\n }\n _getTestTone(numSamples, frequency, fade) {\n let context = this._micManager.audioContext;\n let bs = context.createBuffer(1, numSamples, context.sampleRate);\n let cdata = bs.getChannelData(0);\n let sampleRate = context.sampleRate;\n if (fade) {\n for (let i = 0; i < cdata.length; i++) {\n let fac = 1 * ((cdata.length - i) / cdata.length);\n cdata[i] = fac * Math.sin(i * frequency * 2 * Math.PI / sampleRate);\n }\n } else {\n for (let i = 0; i < cdata.length; i++) {\n cdata[i] = 1 * Math.sin(i * frequency * 2 * Math.PI / sampleRate);\n }\n }\n let bsn = context.createBufferSource();\n bsn.buffer = bs;\n bsn.connect(context.destination);\n return bsn;\n }\n _getSquareTone(numSamples, frequency) {\n let context = this._micManager.audioContext;\n let bs = context.createBuffer(1, numSamples, context.sampleRate);\n let cdata = bs.getChannelData(0);\n let sampleRate = context.sampleRate;\n for (let i = 0; i < cdata.length; i++) {\n let val = Math.sin(i * frequency * 2 * Math.PI / sampleRate);\n if (val > 0) {\n cdata[i] = 0.5;\n } else if (val < 0) {\n cdata[i] = -0.5;\n } else {\n cdata[i] = 0;\n }\n }\n let bsn = context.createBufferSource();\n bsn.buffer = bs;\n bsn.connect(context.destination);\n return bsn;\n }\n _analyzeData(buffer, playDelay) {\n let samples = buffer.getChannelData(0);\n this._normalizeMicSampleData(samples);\n let bestScore = -9999999;\n let bestScoreIndex = -1;\n let i = 0;\n for (i; i < samples.length - this._testSampleData.length; i += 1) {\n let score = 0;\n for (let j = 0; j < this._testSampleData.length; j++) {\n let micSample = samples[i + j];\n let testSample = this._testSampleData[j];\n score += micSample * testSample;\n }\n if (score > bestScore) {\n bestScore = score;\n bestScoreIndex = i;\n }\n }\n let delay = bestScoreIndex / this._micManager.audioContext.sampleRate;\n delay -= playDelay;\n let info = new DelayInfo();\n info.testSuccessful = true;\n info.delay = delay;\n return info;\n }\n _analyzeDataPeak(buffer, playDelay) {\n var samples = buffer.getChannelData(0);\n let max = -1;\n let bestScoreIndex = 0;\n for (let i = 0; i < samples.length; i++) {\n if (samples[i] > max) {\n max = samples[i];\n bestScoreIndex = i;\n }\n }\n let delay = bestScoreIndex / this._micManager.audioContext.sampleRate;\n delay -= playDelay;\n delay *= 1e3;\n delay = Math.round(delay);\n delay /= 1e3;\n let info = new DelayInfo();\n info.testSuccessful = true;\n info.delay = delay;\n return info;\n }\n _normalizeMicSampleData(samples) {\n let max = -1;\n for (let i = 0; i < samples.length; i++) {\n if (samples[i] > max) {\n max = samples[i];\n }\n }\n let fac = 0.5 / max;\n for (let i = 0; i < samples.length; i++) {\n samples[i] *= fac;\n }\n }\n /**Tests the length of the delay between when a user makes a sound and that\n * sound is picked up. To use this test, the mic must pick up the speaker\n * sound. Three short tones will play.*/\n async testDelay2() {\n await this._micManager.initMicMediaStream();\n const frequency = 880;\n const playDelay = 0;\n const recordingGap = 1;\n let testTone = this._getSquareTone(\n 512,\n frequency\n );\n let recording1 = await this._test2MakeFirstRecording(\n playDelay,\n testTone\n );\n testTone = this._getSquareTone(512, frequency);\n let recording2 = await this._test2MakeSecondRecording(\n playDelay,\n testTone,\n recording1,\n recordingGap\n );\n let gapTime = this._measureGapBetweenRecordings(\n recording2,\n frequency,\n recordingGap\n );\n let info = new DelayInfo();\n info.testSuccessful = true;\n info.delay = gapTime - recordingGap;\n return info;\n }\n _test2MakeFirstRecording(playDelay, testTone) {\n return new Promise((resolve, reject) => {\n this._micSampleData = null;\n this._micManager.micData.on(this._onMicData);\n this._micManager.startCapture();\n let context = this._micManager.audioContext;\n testTone.start(context.currentTime + playDelay);\n setTimeout(() => {\n this._micManager.micData.off(this._onMicData);\n this._micManager.stopCapture();\n this._normalizeMicSampleData(this._micSampleData);\n let bsn = this._getBufferSourceNodeFromAudio(\n this._micSampleData\n );\n resolve(bsn);\n }, 1e3);\n });\n }\n _test2MakeSecondRecording(playDelay, testTone, recording1, gapBetweenTones) {\n return new Promise((resolve, reject) => {\n this._micSampleData = null;\n this._micManager.micData.on(this._onMicData);\n this._micManager.startCapture();\n let context = this._micManager.audioContext;\n let playDelay2 = 0;\n testTone.start(context.currentTime + playDelay2);\n recording1.start(context.currentTime + playDelay2 + gapBetweenTones);\n setTimeout(() => {\n this._micManager.micData.off(this._onMicData);\n this._micManager.stopCapture();\n this._normalizeMicSampleData(this._micSampleData);\n resolve(this._micSampleData);\n }, 3e3);\n });\n }\n _measureGapBetweenRecordings(sampleData, frequency, gapBetweenTones) {\n let context = this._micManager.audioContext;\n let minSamplesBetweenTones = Math.floor(context.sampleRate * gapBetweenTones);\n let crossings = this._getZeroCrossingIndexes(sampleData);\n let idealGap = context.sampleRate / frequency / 2;\n let lastCrossingIdx = crossings[0];\n let consecutiveMatches = 0;\n let proposedStartIndex = 0;\n let confirmedTestToneIndex = -1;\n let confirmedRecordingIndex = -1;\n for (let i = 1; i < crossings.length; i++) {\n let crossingIdx = crossings[i];\n if (Math.abs(crossingIdx - lastCrossingIdx - idealGap) < 5) {\n consecutiveMatches++;\n if (consecutiveMatches == 1) {\n proposedStartIndex = lastCrossingIdx;\n }\n } else {\n if (consecutiveMatches > 5) {\n if (confirmedTestToneIndex == -1) {\n confirmedTestToneIndex = proposedStartIndex;\n } else if (proposedStartIndex - confirmedTestToneIndex > minSamplesBetweenTones) {\n confirmedRecordingIndex = proposedStartIndex;\n break;\n }\n }\n consecutiveMatches = 0;\n }\n lastCrossingIdx = crossingIdx;\n }\n return (confirmedRecordingIndex - confirmedTestToneIndex) / context.sampleRate;\n }\n _getZeroCrossingIndexes(sampleData) {\n let crossings = [];\n let lastVal = sampleData[0];\n for (let i = 1; i < sampleData.length; i++) {\n let val = sampleData[i];\n if (lastVal >= 0 && val < 0 || lastVal < 0 && val >= 0) {\n crossings.push(i);\n }\n lastVal = val;\n }\n return crossings;\n }\n _getBufferSourceNodeFromAudio(samples) {\n let context = this._micManager.audioContext;\n let buffer = context.createBuffer(\n 1,\n samples.length,\n context.sampleRate\n );\n let channel = buffer.getChannelData(0);\n channel.set(samples, 0);\n let bsn = context.createBufferSource();\n bsn.buffer = buffer;\n bsn.connect(context.destination);\n return bsn;\n }\n convertBlobToArrayBuffer(blob) {\n return new Promise((resolve, reject) => {\n let reader = new FileReader();\n reader.onloadend = (e) => {\n reader.onloadend = null;\n reader.onerror = null;\n resolve(reader.result);\n };\n reader.onerror = (err) => {\n reader.onloadend = null;\n reader.onerror = null;\n reject(err);\n };\n reader.readAsArrayBuffer(blob);\n });\n }\n};\n\n// src/analysis/DelayTester2.ts\nimport { SoundLoader as SoundLoader2 } from \"audio_utils\";\nvar DelayTester2 = class _DelayTester2 {\n constructor(micManager) {\n if (micManager == null) {\n throw \"You must include the MicManager in the first call to DelayTester.get()\";\n }\n this._micManager = micManager;\n }\n static get(micManager) {\n if (_DelayTester2._ref == null) {\n _DelayTester2._ref = new _DelayTester2(micManager);\n }\n return _DelayTester2._ref;\n }\n /**Tests the length of the delay between when a user makes a sound and that\n * sound is picked up. To use this test, the mic must pick up the speaker\n * sound. A single short tone will play.*/\n testDelay() {\n const frequency = 880;\n let promise = new Promise((resolve, reject) => {\n this._micManager.initMicMediaStream().then((_) => {\n let context = this._micManager.audioContext;\n let tone = this._getTestTone(\n ~~(context.sampleRate / 2),\n frequency\n );\n this._recorder = new AudioRecorder2(this._micManager);\n this._recorder.record();\n let playDelay = 0;\n tone.start(context.currentTime + playDelay);\n setTimeout(async () => {\n this._recorder.stop();\n let blob = await this._recorder.getAudioBlob();\n let buffer = await SoundLoader2.getAudioBufferFromBlob(\n blob,\n this._micManager.audioContext\n );\n let result = this._analyzeData(\n buffer,\n tone,\n playDelay,\n frequency\n );\n resolve(result);\n }, 1e3 + playDelay);\n });\n });\n return promise;\n }\n _getTestTone(numSamples, frequency) {\n let context = this._micManager.audioContext;\n let bs = context.createBuffer(1, numSamples, context.sampleRate);\n let cdata = bs.getChannelData(0);\n let sampleRate = context.sampleRate;\n for (let i = 0; i < cdata.length; i++) {\n cdata[i] = 0.8 * Math.sin(i * frequency * 2 * Math.PI / sampleRate);\n }\n let bsn = context.createBufferSource();\n bsn.buffer = bs;\n bsn.connect(context.destination);\n return bsn;\n }\n _analyzeData(recording, testTone, playDelay, frequency) {\n let info = new DelayInfo();\n var samples = recording.getChannelData(0);\n let matchingStartIdx = this._getMatchingStartIndex(samples, frequency);\n if (matchingStartIdx == null) {\n info.testSuccessful = false;\n return info;\n }\n let delay = matchingStartIdx / this._micManager.audioContext.sampleRate;\n delay -= playDelay;\n delay *= 1e3;\n delay = Math.round(delay);\n delay /= 1e3;\n info.testSuccessful = true;\n info.delay = delay;\n return info;\n }\n /**using the frequency to determine expected gaps between zero crossings,\n * verify that we have the expected number of segments and return the time\n * of the first. */\n _getMatchingStartIndex(sampleData, frequency) {\n let context = this._micManager._context;\n let targetPeriod = context.sampleRate / frequency;\n let targetInterval = targetPeriod / 2;\n console.log(targetInterval);\n let positiveStartIndexes = [];\n let posStartIdx = -1;\n for (let i = 0; i < sampleData.length; i++) {\n let val = sampleData[i];\n if (val > 0 && posStartIdx === -1) {\n posStartIdx = i;\n } else if (val < 0 && posStartIdx > -1) {\n let interval = i - 1 - posStartIdx;\n if (targetInterval - interval < 2 && interval - targetInterval < 2) {\n positiveStartIndexes.push(posStartIdx);\n }\n posStartIdx = -1;\n }\n }\n return positiveStartIndexes.length > 0 ? positiveStartIndexes[0] : null;\n }\n};\n\n// src/analysis/HitRecognizer.ts\nimport { createEmitter as createEmitter4 } from \"ts_utils\";\nvar HitRecognizer = class {\n constructor() {\n this._eventEmitter = createEmitter4();\n }\n get event() {\n return this._eventEmitter.event;\n }\n};\nvar HitType = /* @__PURE__ */ ((HitType2) => {\n HitType2[HitType2[\"rhythm_hit\"] = 0] = \"rhythm_hit\";\n HitType2[HitType2[\"rhythm_hit_start\"] = 1] = \"rhythm_hit_start\";\n HitType2[HitType2[\"rhythm_hit_end\"] = 2] = \"rhythm_hit_end\";\n HitType2[HitType2[\"beat_hit\"] = 3] = \"beat_hit\";\n return HitType2;\n})(HitType || {});\nvar HitEvent = class {\n};\n\n// src/analysis/KeyHitRecognizer.ts\nvar KeyHitRecognizer = class _KeyHitRecognizer extends HitRecognizer {\n constructor(context) {\n super();\n this._sendStartEndEvents = true;\n this._sendBeatEvents = false;\n this._beatKey = 32;\n //32 = Spacebar\n this._keyStates = /* @__PURE__ */ new Map();\n this._onKeyDown = (e) => {\n if (this._keyStates.get(e.keyCode) === true) {\n return;\n }\n this._keyStates.set(e.keyCode, true);\n let hEvent = new HitEvent();\n if (e.keyCode === this._beatKey && this._sendBeatEvents) {\n hEvent.hitType = 3 /* beat_hit */;\n } else if (this._sendStartEndEvents) {\n hEvent.hitType = 1 /* rhythm_hit_start */;\n } else {\n return;\n }\n hEvent.keycode = e.keyCode;\n hEvent.time = this._context.currentTime;\n this._eventEmitter.emit(hEvent);\n };\n this._onKeyUp = (e) => {\n this._keyStates.set(e.keyCode, false);\n if (!this._sendStartEndEvents) {\n return;\n }\n if (!this._sendBeatEvents || e.keyCode !== this._beatKey) {\n let hEvent = new HitEvent();\n hEvent.hitType = 2 /* rhythm_hit_end */;\n hEvent.keycode = e.keyCode;\n hEvent.time = this._context.currentTime;\n this._eventEmitter.emit(hEvent);\n }\n };\n if (context == null) {\n throw \"You must pass an AudioContext to KeyHitRecognizer.get() the first time you call it.\";\n }\n this._context = context;\n }\n static get(context) {\n if (_KeyHitRecognizer._ref == null) {\n _KeyHitRecognizer._ref = new _KeyHitRecognizer(context);\n }\n return _KeyHitRecognizer._ref;\n }\n startHitRec() {\n this._removeListeners();\n document.addEventListener(\"keydown\", this._onKeyDown);\n document.addEventListener(\"keyup\", this._onKeyUp);\n }\n stopHitRec() {\n this._removeListeners();\n this._keyStates = /* @__PURE__ */ new Map();\n }\n /**can be used to send a hit without a keypress, such as for a screen\n * tap.*/\n generateHit(type) {\n let hEvent = new HitEvent();\n hEvent.hitType = type;\n hEvent.time = this._context.currentTime;\n this._eventEmitter.emit(hEvent);\n }\n _removeListeners() {\n document.removeEventListener(\"keydown\", this._onKeyDown);\n document.removeEventListener(\"keyup\", this._onKeyUp);\n }\n get sendBeatEvents() {\n return this._sendBeatEvents;\n }\n set sendBeatEvents(value) {\n this._sendBeatEvents = value;\n }\n get sendStartEndEvents() {\n return this._sendStartEndEvents;\n }\n set sendStartEndEvents(value) {\n this._sendStartEndEvents = value;\n }\n get beatKey() {\n return this._beatKey;\n }\n set beatKey(value) {\n this._beatKey = value;\n }\n};\n\n// src/analysis/MicHitRecognizer.ts\nvar MicHitRecognizer = class _MicHitRecognizer extends HitRecognizer {\n constructor(micManager) {\n super();\n this._windowSize = 4096;\n this._onMicData = (data) => {\n let msTime = ~~(this._micManager.audioContext.currentTime * 1e3);\n let msLengthOfData = -~~(1e3 * (data.length / this._micSampleRate));\n if (this._recordDelay === -1) {\n this._recordDelay = msTime - this._recordTimeStamp - msLengthOfData;\n }\n let dataStartTime = msTime - this._recordTimeStamp - msLengthOfData;\n this._processAudioData(data, dataStartTime);\n };\n if (micManager == null) {\n throw \"you must provide a MicManager reference when initializing the MicHitRecognizer. Use the static getInstance() method to do this once per application session.\";\n }\n this._micManager = micManager;\n this._instDO = AssessmentInstrumentUtils.getInstrumentByID(101);\n this._micSampleRate = ~~this._micManager.audioContext.sampleRate;\n }\n static get(micManager) {\n if (_MicHitRecognizer._ref == null) {\n _MicHitRecognizer._ref = new _MicHitRecognizer(micManager);\n }\n return _MicHitRecognizer._ref;\n }\n startHitRec() {\n this._recordDelay = -1;\n this._lastHitTime = 0;\n this._currentSampleIndex = 0;\n this._samples = [];\n this._averagePeakAmpl = 0;\n this._recentPeaks = [];\n this._floorPeakAmpl = 0;\n this._numPeakReadings = 0;\n this._consecutiveQuietPeaks = 0;\n this._micManager.micData.on(this._onMicData);\n this._recordTimeStamp = ~~(this._micManager.audioContext.currentTime * 1e3);\n }\n stopHitRec() {\n this._micManager.micData.off(this._onMicData);\n }\n setInstrument(instDO) {\n this._instDO = instDO;\n }\n _processAudioData(samplesBA, timeStamp) {\n let numSamples = samplesBA.length;\n for (let i = 0; i < numSamples; i++) {\n this._samples.push(samplesBA[i]);\n }\n let startSampleIndex = this._currentSampleIndex;\n while (this._currentSampleIndex + this._windowSize <= this._samples.length) {\n let cTime = timeStamp + ~~((this._currentSampleIndex - startSampleIndex) / 44.1);\n let windowSamples = [];\n let highestAmpl = -2;\n let lowestAmpl = 2;\n for (let i = this._currentSampleIndex; i < this._currentSampleIndex + this._windowSize; i++) {\n let value = this._samples[i];\n if (value > highestAmpl) {\n highestAmpl = value;\n }\n if (value < lowestAmpl) {\n lowestAmpl = value;\n }\n windowSamples.push(this._samples[i]);\n }\n let maxPeak = lowestAmpl * -1 > highestAmpl ? lowestAmpl * -1 : highestAmpl;\n if (maxPeak < Number.MIN_VALUE) {\n maxPeak = Number.MIN_VALUE;\n }\n this._averagePeakAmpl = (this._averagePeakAmpl * this._numPeakReadings + maxPeak) / (this._numPeakReadings + 1);\n if (this._recentPeaks.length >= 10) {\n this._recentPeaks.splice(0, 1);\n }\n this._recentPeaks.push(maxPeak);\n let highestRecentPeak = this._recentPeaks[0];\n for (let i = 1; i < this._recentPeaks.length; i++) {\n if (this._recentPeaks[i] > highestRecentPeak) {\n highestRecentPeak = this._recentPeaks[i];\n }\n }\n if (this._numPeakReadings < 20) {\n this._floorPeakAmpl = (this._floorPeakAmpl * this._numPeakReadings + highestRecentPeak) / (this._numPeakReadings + 1);\n } else if (highestRecentPeak < this._floorPeakAmpl) {\n this._floorPeakAmpl = (this._floorPeakAmpl * 19 + highestRecentPeak) / 20;\n }\n this._numPeakReadings++;\n if (\n /*highestAmpl > 0.05 &&*/\n cTime - this._lastHitTime > this._instDO.minTimeBetweenClaps\n ) {\n let amplSlopeScore = this._detectHitByAmplSlope(\n windowSamples,\n highestAmpl,\n lowestAmpl\n );\n let peakFloorScore = this._numPeakReadings > 20 ? maxPeak / this._floorPeakAmpl : 0;\n if (peakFloorScore >= this._instDO.minAmplRatioToFloor && this._consecutiveQuietPeaks >= this._instDO.minConsecutiveQuietPeaks && amplSlopeScore >= this._instDO.minAmplSlopeScore) {\n this._consecutiveQuietPeaks = 0;\n this._lastHitTime = cTime;\n let hEvent = new HitEvent();\n hEvent.hitType = 0 /* rhythm_hit */;\n hEvent.time = timeStamp / 1e3;\n this._eventEmitter.emit(hEvent);\n } else if (peakFloorScore < this._instDO.minAmplRatioToFloor) {\n this._consecutiveQuietPeaks++;\n }\n }\n this._currentSampleIndex += ~~(this._windowSize / 2);\n }\n }\n _detectHitByAmplSlope(samplesList, highestAmpl, lowestAmpl) {\n let bestJumpRatio = this._recentPeaks.length > 1 ? this._recentPeaks[this._recentPeaks.length - 1] / this._recentPeaks[this._recentPeaks.length - 2] : 0;\n let score = bestJumpRatio;\n return score;\n }\n _detectHitByJerkiness(samplesList, highestAmpl, lowestAmpl) {\n let numSamples = samplesList.length;\n let prevAmpl;\n let cAmpl = samplesList[0];\n let nextAmpl = samplesList[1];\n let biggestJerk = 0;\n for (let i = 1; i < numSamples - 1; i++) {\n prevAmpl = cAmpl;\n cAmpl = nextAmpl;\n nextAmpl = samplesList[i + 1];\n let midPointAmpl = (prevAmpl + nextAmpl) / 2;\n if (midPointAmpl - cAmpl > 0.01 || cAmpl - midPointAmpl > 0.01) {\n if (midPointAmpl - cAmpl > biggestJerk) {\n biggestJerk = midPointAmpl - cAmpl;\n } else if (cAmpl - midPointAmpl > biggestJerk) {\n biggestJerk = cAmpl - midPointAmpl;\n }\n }\n }\n let score = ~~(100 * biggestJerk);\n if (score > 10) {\n score = 10;\n }\n return score;\n }\n};\n\n// src/analysis/PitchRecognizer.ts\nimport { createEmitter as createEmitter5 } from \"ts_utils\";\nvar PitchRecognizer = class {\n constructor(micManager) {\n this._isRunning = false;\n this._eventEmitter = createEmitter5();\n this._onMicData = (data) => {\n let time = this._micManager.audioContext.currentTime;\n let durOfData = data.length / this._micSampleRate;\n if (this._recordDelay === -1) {\n this._recordDelay = time - this._recordTimeStamp - durOfData;\n }\n this._processData(Array.from(data), time - durOfData);\n };\n this._micManager = micManager;\n this._init();\n }\n //in seconds\n get pitchRecMethod() {\n return this._pitchRecMethod;\n }\n /**[true] when pitch rec is running*/\n get isRunning() {\n return this._isRunning;\n }\n get pitchRecEvent() {\n return this._eventEmitter.event;\n }\n _init() {\n this.setInstrument(AssessmentInstrumentUtils.getInstrumentByID(3));\n this._micSampleRate = ~~this._micManager.audioContext.sampleRate;\n }\n /**\n * start pitch rec. \n * set startMicCapture to true if you aren't planning to use the mic data \n * elsewhere (for recording, etc.). If you need to keep the recorded data, \n * you should call MicManager.startCapture() separately and set \n * startMicCapture to false here.\n */\n startPRec(startMicCapture) {\n this._prEvents = [];\n this._leftOverMicData = [];\n this._recordDelay = -1;\n this._recordTimeStamp = this._micManager.audioContext.currentTime;\n this._micManager.micData.on(this._onMicData);\n if (startMicCapture) {\n this._micManager.startCapture();\n }\n this._isRunning = true;\n }\n stopPRec(stopMicCapture) {\n this._micManager.micData.off(this._onMicData);\n if (stopMicCapture) {\n this._micManager.stopCapture();\n }\n this._isRunning = false;\n }\n setInstrument(instDO) {\n this._minFreq = instDO.minFreq;\n this._maxFreq = instDO.maxFreq;\n this._windowWidth = instDO.windowWidth;\n this._resampleDivisor = 1;\n if (instDO.sampleRate != null) {\n let sampleRate = instDO.sampleRate;\n while (sampleRate <= this._micSampleRate / 2) {\n this._resampleDivisor *= 2;\n sampleRate *= 2;\n }\n }\n this._quality = instDO.pRecQuality;\n this._pitchRecMethod = instDO.pRecMethod;\n this._overSampTimes = instDO.overSampTimes;\n }\n _processData(data, timeStamp) {\n if (this._leftOverMicData.length > 0) {\n this._leftOverMicData.push(...data);\n data = this._leftOverMicData;\n }\n let pitchesToRead = ~~(data.length / (this._windowWidth * this._resampleDivisor));\n let secondsPerPitch = this._windowWidth / this._micSampleRate;\n let secondsPerOverSampIteration = secondsPerPitch / this._overSampTimes;\n let dataPos = 0;\n for (let i = 0; i < pitchesToRead; i++) {\n let overSampIteration = 0;\n while (overSampIteration < this._overSampTimes && i < pitchesToRead - 1 || i === pitchesToRead - 1 && overSampIteration === 0) {\n let curData = new Array(this._windowWidth);\n let sum = 0;\n let value;\n let peakAmpl = 0;\n for (let j = 0; j < this._windowWidth; j++) {\n value = data[dataPos];\n sum += value * value;\n if (value > peakAmpl) {\n peakAmpl = value;\n }\n curData[j] = value;\n dataPos += this._resampleDivisor;\n }\n let rms = Math.sqrt(sum / this._windowWidth);\n let adjustedStartTime = timeStamp + i * secondsPerPitch + overSampIteration * secondsPerOverSampIteration;\n let frequency;\n switch (this._pitchRecMethod) {\n case 1:\n frequency = this._autoCorrelateProductDifferenceMethod(\n curData,\n peakAmpl\n );\n break;\n default:\n console.log(\"unsupported method! PitchRecognizer.processData()\");\n }\n if (frequency > 0) {\n this._notifyOfPitch(\n frequency,\n adjustedStartTime,\n rms,\n peakAmpl\n );\n }\n overSampIteration++;\n dataPos = overSampIteration * ~~(this._windowWidth / this._overSampTimes);\n }\n }\n }\n /**method 1\n * product peak and subtraction average sum method*/\n _autoCorrelateProductDifferenceMethod(samplesVector, peakAmpl) {\n let validIValues = this._getValidIntervals(samplesVector);\n if (validIValues.length === 0)\n return 0;\n let bestSinglePeriodInterval = this._findPeriodViaProductSums(samplesVector, validIValues);\n let bestMultiPeriodInterval = this._findAveragePeriodViaAverageDifferenceSums(\n samplesVector,\n bestSinglePeriodInterval\n );\n this._correlationScore = this._getCorrelationScore(\n samplesVector,\n Math.round(bestMultiPeriodInterval),\n peakAmpl\n );\n return this._micSampleRate / this._resampleDivisor / bestMultiPeriodInterval;\n }\n _getValidIntervals(samplesVector) {\n let length = samplesVector.length;\n let validIValues = [];\n let firstPeakIndex = -1;\n let readyForPeak = false;\n let lastValue = samplesVector[0];\n for (let i = 0; i < length; i++) {\n if (samplesVector[i] <= lastValue && readyForPeak) {\n if (firstPeakIndex !== -1) {\n let distance = i - firstPeakIndex;\n let frequencyToCheck = 44100 / distance;\n if (frequencyToCheck >= this._minFreq && frequencyToCheck <= this._maxFreq) {\n validIValues.push(i - firstPeakIndex);\n } else if (frequencyToCheck < this._minFreq) {\n break;\n }\n } else {\n firstPeakIndex = i;\n }\n readyForPeak = false;\n } else if (samplesVector[i] > lastValue) {\n readyForPeak = true;\n }\n lastValue = samplesVector[i];\n }\n return validIValues;\n }\n _findPeriodViaProductSums(samplesVector, validIValues) {\n let length = samplesVector.length;\n let sum;\n let greatestSum = -10;\n let greatestSumsInterval = -1;\n let quality = this._quality;\n for (let interval of validIValues) {\n sum = 0;\n for (let j = 0; j < length - interval; j += quality) {\n sum += samplesVector[j] * samplesVector[j + interval];\n }\n if (sum >= greatestSum) {\n greatestSum = sum;\n greatestSumsInterval = interval;\n }\n }\n return greatestSumsInterval;\n }\n _findAveragePeriodViaAverageDifferenceSums(samplesVector, bestSinglePeriodInterval) {\n let length = samplesVector.length;\n let minBufferSamples = 10;\n let totalPeriods = ~~(length / bestSinglePeriodInterval);\n totalPeriods = length % bestSinglePeriodInterval < minBufferSamples && totalPeriods > 1 ? totalPeriods - 1 : totalPeriods;\n let startingPoint = totalPeriods * bestSinglePeriodInterval;\n let bestAverage = -1;\n let bestIntervalIndex = startingPoint;\n let improvedCorrelation = false;\n let sum;\n let minIValueToCheck = startingPoint - minBufferSamples >= 0 ? startingPoint - minBufferSamples : 0;\n let currentAverage;\n for (let i = startingPoint; i > minIValueToCheck; i--) {\n sum = 0;\n for (let j = 0; j < length - i; j += 1) {\n sum += Math.abs(samplesVector[j] - samplesVector[j + i]);\n }\n currentAverage = sum / (length - i);\n if (currentAverage < bestAverage || i === startingPoint) {\n bestAverage = currentAverage;\n bestIntervalIndex = i;\n improvedCorrelation = i !== startingPoint ? true : false;\n } else {\n break;\n }\n }\n if (improvedCorrelation === false) {\n let maxIValue = startingPoint + minBufferSamples <= length ? startingPoint + minBufferSamples : length;\n for (let i = startingPoint; i < maxIValue; i++) {\n sum = 0;\n for (let j = 0; j < length - i; j += 1) {\n sum += Math.abs(samplesVector[j] - samplesVector[j + i]);\n }\n currentAverage = sum / (length - i);\n if (currentAverage < bestAverage || i === startingPoint) {\n bestAverage = currentAverage;\n bestIntervalIndex = i;\n } else {\n break;\n }\n }\n }\n return bestIntervalIndex / totalPeriods;\n }\n _getCorrelationScore(samplesVector, interval, peakAmpl) {\n if (peakAmpl <= 0)\n return 0;\n let length = samplesVector.length;\n let p1;\n let p2;\n let sum = 0;\n for (let i = 0; i < length - interval; i++) {\n p1 = samplesVector[i];\n p2 = samplesVector[i + interval];\n if (p1 >= p2)\n sum += p1 - p2;\n else\n sum += p2 - p1;\n }\n sum *= 1 / peakAmpl;\n let average = sum / (length - interval);\n let score = 1 - average;\n return score;\n }\n _notifyOfPitch(frequency, time, rms, peakAmpl) {\n let ev = new PitchRecEvent();\n ev.frequency = frequency;\n let midiUnrounded = 69 + 17.3123404907 * Math.log(frequency / 440);\n let roundedCents = 100 * Math.round(midiUnrounded);\n ev.cents = roundedCents;\n ev.pitchName = PitchUtils.getCommonPitchNameFromCents(roundedCents);\n ev.time = time;\n let tuningDelta = Math.round(midiUnrounded * 100) % 100;\n if (tuningDelta >= 50) {\n tuningDelta -= 100;\n }\n ev.tuning = tuningDelta;\n ev.correlationScore = this._correlationScore;\n ev.rms = rms;\n ev.peakAmpl = peakAmpl;\n this._prEvents.push(ev);\n this._eventEmitter.emit(ev);\n }\n};\nvar PitchRecEvent = class {\n constructor() {\n this.pitchSplit = false;\n this.amplSplit = false;\n }\n};\nPitchRecEvent.totalEvents = 0;\nvar _PitchUtils = class _PitchUtils {\n static getCommonPitchNameFromCents(cents) {\n let letter = cents >= 0 ? _PitchUtils.centPitchNames[cents / 100 % 12 * 100] : _PitchUtils.centPitchNames[(cents / 100 % 12 + 12) * 100];\n letter += (~~(cents / 1200) - 1).toString();\n return letter;\n }\n};\n_PitchUtils.centPitchNames = {\n 0: \"C\",\n 100: \"C#\",\n 200: \"D\",\n 300: \"Eb\",\n 400: \"E\",\n 500: \"F\",\n 600: \"F#\",\n 700: \"G\",\n 800: \"Ab\",\n 900: \"A\",\n 1e3: \"Bb\",\n 1100: \"B\"\n};\nvar PitchUtils = _PitchUtils;\n\n// src/analysis/PitchRecognizer2.ts\nimport { createEmitter as createEmitter6 } from \"ts_utils\";\n\n// src/analysis/YinDetector.ts\nvar YinDetector = class {\n constructor() {\n this.threshold = 0.1;\n this.sampleRate = 44100;\n this.probabilityThreshold = 0.1;\n this.quality = 1;\n }\n getFrequency(samples) {\n let minInterval = Math.ceil(this.sampleRate / this.maxFreq) - 3;\n let maxInterval = Math.floor(this.sampleRate / this.minFreq);\n let bufferSize = 2 * maxInterval;\n if (bufferSize > samples.length) {\n return null;\n }\n while (bufferSize + maxInterval < samples.length) {\n bufferSize += maxInterval;\n }\n let yinBufferLength = maxInterval - minInterval + 1;\n let yinBuffer = new Array(yinBufferLength).fill(0);\n let probability = 0;\n let tau;\n for (let t = minInterval; t <= maxInterval; t++) {\n for (let i = 0; i < bufferSize - maxInterval; i += this.quality) {\n let delta = samples[i] - samples[i + t];\n yinBuffer[t - minInterval] += delta * delta;\n }\n }\n yinBuffer[0] = 1;\n yinBuffer[1] = 1;\n let runningSum = 0;\n for (let t = 1; t < yinBufferLength; t++) {\n runningSum += yinBuffer[t];\n yinBuffer[t] *= t / runningSum;\n }\n for (tau = 2; tau < yinBufferLength; tau++) {\n if (yinBuffer[tau] < this.threshold) {\n while (tau + 1 < yinBufferLength && yinBuffer[tau + 1] < yinBuffer[tau]) {\n tau++;\n }\n probability = 1 - yinBuffer[tau];\n break;\n }\n }\n if (tau === yinBufferLength || yinBuffer[tau] >= this.threshold) {\n return null;\n }\n if (probability < this.probabilityThreshold) {\n return null;\n }\n if (tau <= 2) {\n return null;\n }\n let betterTau;\n let x0;\n let x2;\n if (tau < 1) {\n x0 = tau;\n } else {\n x0 = tau - 1;\n }\n if (tau + 1 < yinBufferLength) {\n x2 = tau + 1;\n } else {\n x2 = tau;\n }\n if (x0 === tau) {\n if (yinBuffer[tau] <= yinBuffer[x2]) {\n betterTau = tau;\n } else {\n betterTau = x2;\n }\n } else if (x2 === tau) {\n if (yinBuffer[tau] <= yinBuffer[x0]) {\n betterTau = tau;\n } else {\n betterTau = x0;\n }\n } else {\n let s0 = yinBuffer[x0];\n let s1 = yinBuffer[tau];\n let s2 = yinBuffer[x2];\n betterTau = tau + (s2 - s0) / (2 * (2 * s1 - s2 - s0));\n }\n let result = new YinResult();\n result.frequency = this.sampleRate / (minInterval + betterTau);\n result.probability = probability;\n return result;\n }\n};\nvar YinResult = class {\n};\n\n// src/analysis/PitchRecognizer2.ts\nvar PitchRecognizer2 = class {\n constructor(micManager) {\n /** the number of ms between readings*/\n this._msReadingInterval = 250;\n /** the minimum time period, in ms, that a reading should extend over*/\n this._msAnalysisDuration = 10;\n this._isRunning = false;\n this._eventEmitter = createEmitter6();\n this._onMicData = (data) => {\n this._samples.push(...data);\n let time = this._micManager.audioContext.currentTime;\n let durOfData = data.length / this._micSampleRate;\n if (this._recordDelay == -1) {\n this._recordDelay = time - this._recordTimeStamp - durOfData;\n }\n this._processData(time - durOfData);\n };\n this._micManager = micManager;\n this._init();\n }\n /**[true] when pitch rec is running*/\n get isRunning() {\n return this._isRunning;\n }\n get pitchRecEvent() {\n return this._eventEmitter.event;\n }\n _init() {\n this._yin = new YinDetector();\n this._micSampleRate = ~~this._micManager.audioContext.sampleRate;\n this._yin.sampleRate = this._micSampleRate;\n this.setInstrument(AssessmentInstrumentUtils.getInstrumentByID(3));\n }\n /** start pitch rec. */\n startPRec(startMicCapture, msReadingInterval = 250, msAnalysisDuration = 10) {\n this._msReadingInterval = msReadingInterval;\n this._msAnalysisDuration = msAnalysisDuration;\n this._prEvents = [];\n this._samples = [];\n this._currentStartPos = 0;\n this._recordDelay = -1;\n this._recordTimeStamp = this._micManager.audioContext.currentTime;\n this._micManager.micData.on(this._onMicData);\n if (startMicCapture) {\n this._micManager.startCapture();\n }\n this._isRunning = true;\n }\n stopPRec(stopMicCapture) {\n this._micManager.micData.off(this._onMicData);\n if (stopMicCapture) {\n this._micManager.stopCapture();\n }\n this._isRunning = false;\n }\n setInstrument(instDO) {\n this._minFreq = instDO.minFreq;\n this._maxFreq = instDO.maxFreq;\n this._yin.minFreq = this._minFreq;\n this._yin.maxFreq = this._maxFreq;\n this._yin.quality = instDO.yinQuality;\n }\n _processData(timeStamp) {\n let cTime = timeStamp;\n let maxPeriodSampleLength = Math.ceil(this._micSampleRate / this._minFreq);\n let analysisSampleDuration = Math.ceil(this._msAnalysisDuration / 1e3 * this._micSampleRate);\n if (analysisSampleDuration <= maxPeriodSampleLength) {\n analysisSampleDuration = 2 * maxPeriodSampleLength;\n } else {\n analysisSampleDuration = Math.ceil(analysisSampleDuration / maxPeriodSampleLength) * maxPeriodSampleLength;\n }\n while (this._samples.length - this._currentStartPos > analysisSampleDuration) {\n let startIndex = this._currentStartPos;\n let endIndex = startIndex + analysisSampleDuration;\n this._stats = this._calculateStats(startIndex, endIndex);\n this._stats.startTime = cTime;\n let samples = this._samples.slice(startIndex, endIndex + 1);\n let result = this._yin.getFrequency(samples);\n this._stats.frequency = result?.frequency ?? 0;\n this._stats.correlationScore = result?.probability ?? 0;\n if (this._stats.frequency > 0) {\n this._notifyOfPitch(this._stats);\n }\n cTime += this._msReadingInterval / 1e3;\n this._currentStartPos += Math.floor(\n this._msReadingInterval / 1e3 * this._micSampleRate\n );\n }\n if (this._currentStartPos > 0) {\n let end = Math.min(\n this._currentStartPos - 1,\n this._samples.length - 1\n );\n this._samples.splice(0, end);\n this._currentStartPos = 0;\n }\n }\n _calculateStats(startIndex, endIndex) {\n let sum = 0;\n let value;\n let peakAmpl = 0;\n for (let i = startIndex; i <= endIndex; i++) {\n value = this._samples[i];\n sum += value * value;\n if (value > peakAmpl) {\n peakAmpl = value;\n }\n }\n let stats = new _AnalysisStats();\n stats.peakAmpl = peakAmpl;\n stats.rms = Math.sqrt(sum / (endIndex - startIndex + 1));\n return stats;\n }\n _notifyOfPitch(stats) {\n let ev = new PitchRecEvent();\n ev.frequency = stats.frequency;\n let midiUnrounded = 69 + 17.3123404907 * Math.log(stats.frequency / 440);\n let roundedCents = 100 * Math.round(midiUnrounded);\n ev.cents = roundedCents;\n ev.pitchName = PitchUtils.getCommonPitchNameFromCents(roundedCents);\n ev.time = stats.startTime;\n let tuningDelta = Math.round(midiUnrounded * 100) % 100;\n if (tuningDelta >= 50) {\n tuningDelta -= 100;\n }\n ev.tuning = tuningDelta;\n ev.correlationScore = this._stats.correlationScore;\n ev.rms = stats.rms;\n ev.peakAmpl = stats.peakAmpl;\n this._prEvents.push(ev);\n this._eventEmitter.emit(ev);\n }\n /**Gets the most recent peak amplitude level or 0 if there have been no\n * readings*/\n get peakAmplitude() {\n return this._stats?.peakAmpl ?? 0;\n }\n};\nvar _AnalysisStats = class {\n};\n\n// src/analysis/TuningProvider.ts\nvar _TuningProvider = class _TuningProvider {\n constructor(micManager) {\n this._isActive = false;\n this._isSilent = true;\n this._minAmplitude = 0.05;\n this._onPitchRec = (e) => {\n this._history.push(e);\n if (this._history.length > _TuningProvider.maxHistoryLength) {\n this._history.splice(0, 1);\n }\n if (e.peakAmpl < this._minAmplitude) {\n this._isSilent = true;\n return;\n }\n let numMatches = 0;\n let tuningSum = 0;\n for (let pre of this._history) {\n if (pre.cents == e.cents) {\n numMatches++;\n tuningSum += pre.tuning;\n }\n }\n if (numMatches >= _TuningProvider.minHistoryMatches) {\n let avgTuning = tuningSum / numMatches;\n this._lastPitchName = e.pitchName;\n this._lastCents = e.cents;\n this._lastTuning = Math.round(avgTuning);\n this._lastPitchMsTime = Math.floor(performance.now());\n }\n };\n this._pitchRecognizer = new PitchRecognizer2(micManager);\n this.setInstrument(3);\n }\n /**true if the tuner is currently listening for pitch results*/\n get isActive() {\n return this._isActive;\n }\n /**gets the cents, rounded to the nearest 100, of the most recent solid\n * reading. Will be null if no readings have occurred.*/\n get lastCents() {\n return this._lastCents;\n }\n /**gets the offset in cents, -50 to 50, of the most recent solid reading.\n * Will be null if no readings have occurred.*/\n get lastTuning() {\n return this._lastTuning;\n }\n /**gets the pitch name, with no number, of the most recent solid reading.\n * Will be null if no readings have occurred.*/\n get lastPitchName() {\n return this._lastPitchName;\n }\n /**gets the time, in seconds, since the last reported pitch reading. Can\n * be used to determine when to stop displaying pitch.*/\n get timeSinceLastPitch() {\n return (window.performance.now() - this._lastPitchMsTime) / 1e3;\n }\n /**returns true if the most recent reading registered below the \n * [minAmplutide] level*/\n get isSilent() {\n return this._isSilent;\n }\n /**a value from 0 to 1.0 that sets the minimum microphone level that must\n * be met for tuning readings to be reported.*/\n get minAmplitude() {\n return this._minAmplitude;\n }\n set minAmplitude(value) {\n this._minAmplitude = value;\n }\n /**Gets the most recent peak amplitude level or 0 if there have been no\n * readings*/\n get peakAmplitude() {\n return this._pitchRecognizer.peakAmplitude;\n }\n start() {\n this._history = [];\n this._lastPitchMsTime = 0;\n this._pitchRecognizer.pitchRecEvent.on(this._onPitchRec);\n if (!this._pitchRecognizer.isRunning) {\n this._pitchRecognizer.startPRec(false);\n }\n this._isActive = true;\n }\n stop() {\n this._pitchRecognizer.pitchRecEvent.off(this._onPitchRec);\n this._isActive = false;\n }\n setInstrument(instrumentId) {\n let inst = AssessmentInstrumentUtils.getInstrumentByID(instrumentId);\n if (inst == null) {\n throw \"InstrumentDO.id doesn't match an assessment inst\";\n }\n this._pitchRecognizer.setInstrument(inst);\n }\n};\n_TuningProvider.maxHistoryLength = 10;\n_TuningProvider.minHistoryMatches = 5;\nvar TuningProvider = _TuningProvider;\n\n// src/audio_worklets/PRec2Node.ts\nimport { createEmitter as createEmitter7 } from \"ts_utils\";\nvar _PRec2Node = class _PRec2Node extends AudioWorkletNode {\n constructor() {\n super(MicManager.get().audioContext, \"prec2-worklet\");\n this._pitchRecEmitter = createEmitter7();\n this._onProcessorMessage = (ev) => {\n this._pitchRecEmitter.emit(ev.data);\n };\n if (!_PRec2Node.workletRegistered) {\n throw \"call registerWorklet() before instantiating\";\n }\n this._init();\n }\n get instrument() {\n return this._instrument;\n }\n get pitchRec() {\n return this._pitchRecEmitter.event;\n }\n static async registerWorklet(context) {\n if (_PRec2Node.workletRegistered) {\n return true;\n }\n try {\n let blob = new Blob([pRec2Worklet], { type: \"text/javascript\" });\n let url = window.URL.createObjectURL(blob);\n await context.audioWorklet.addModule(url);\n _PRec2Node.workletRegistered = true;\n return true;\n } catch (err) {\n console.log(err);\n return false;\n }\n }\n resetPRec(msReadingInterval = 250, msAnalysisDuration = 10) {\n this.port.postMessage({\n type: \"reset\",\n msReadingInterval,\n msAnalysisDuration\n });\n }\n setInstrument(instDO) {\n this._instrument = instDO;\n this.port.postMessage({\n type: \"setInstrument\",\n minFreq: instDO.minFreq,\n maxFreq: instDO.maxFreq,\n yinQuality: instDO.yinQuality\n });\n }\n _init() {\n this.port.onmessage = this._onProcessorMessage;\n }\n};\n_PRec2Node.workletRegistered = false;\nvar PRec2Node = _PRec2Node;\nvar pRec2Worklet = `\nclass PRec2Processor extends AudioWorkletProcessor {\n\t_minFreq;\n\t_maxFreq;\n\t\n\t_msReadingInterval = 250;\n\t_msAnalysisDuration = 10;\n\t\n\t_samples = [];\n\t_currentStartPos = 0;\n\t\n\t_lastLowPeakTime = 0;\n\t_lastPeak = 0;\n\t\n\t_yin;\n\t\n\t_centPitchNames = { 0:'C', 100:'C#', 200:'D', 300:'Eb', 400:'E', 500:'F',\n\t\t600:'F#', 700:'G', 800:'Ab', 900:'A', 1000:'Bb', 1100:'B' };\n\t\n\tconstructor(){\n\t\tsuper();\n\t\tthis._yin = new YinDetector();\n\t\tthis._yin.sampleRate = sampleRate;\n\t\tthis.port.onmessage = this._handleMessage;\n\t}\n\t\n\t_handleMessage = (ev) => {\n\t\tswitch(ev.data.type){\n\t\t\tcase \"reset\": {\n\t\t\t\tthis._msReadingInterval = ev.data.msReadingInterval;\n\t\t\t\tthis._msAnalysisDuration = ev.data.msAnalysisDuration;\n\t\t\t\tthis._samples = [];\n\t\t\t\tthis._currentStartPos = 0;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t\tcase \"setInstrument\": {\n\t\t\t\tthis._minFreq = ev.data.minFreq;\n\t\t\t\tthis._maxFreq = ev.data.maxFreq;\n\t\t\t\tthis._yin.minFreq = ev.data.minFreq;\n\t\t\t\tthis._yin.maxFreq = ev.data.maxFreq;\n\t\t\t\tthis._yin.quality = ev.data.yinQuality;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t\tdefault: {\n\t\t\t\tthrow 'unsupported message type';\n\t\t\t}\n\t\t}\n\t}\n\t\n\tprocess(inputs, outputs){\n\t\tlet data = inputs[0][0];\n\t\tif (data == null){\n\t\t\treturn true;\n\t\t}\n\t\t\n\t\tthis._samples.push(...data);\n\t\t\n\t\tlet time = currentTime;\n\t\tlet durOfData = data.length / sampleRate;\n\t\t\n\t\tthis._processData(time - durOfData);\n\t\t\n\t\treturn true;\n\t}\n\t\n\t_processData(timeStamp) {\n\t\tlet cTime = timeStamp;\n\t\t\n\t\t//the duration, samples, of the longest possible single period for this\n\t\t//instrument.\n\t\tlet maxPeriodSampleLength = Math.ceil(sampleRate / this._minFreq);\n\t\t//the target duration, in samples, of each chunk of data we'd like to \n\t\t//analyze.\n\t\tlet analysisSampleDuration = Math.ceil(this._msAnalysisDuration / 1000 * \n\t\t\tsampleRate);\n\t\t//We'll increase the duration so that it's evenly divisible by\n\t\t//our maxPeriodSampleLength and ensure that we have at least 2 periods\n\t\t//worth of data to analyze\n\t\tif (analysisSampleDuration <= maxPeriodSampleLength){\n\t\t\tanalysisSampleDuration = 2 * maxPeriodSampleLength;\n\t\t}\n\t\telse {\n\t\t\tanalysisSampleDuration = Math.ceil(analysisSampleDuration / \n\t\t\t\tmaxPeriodSampleLength) * maxPeriodSampleLength;\n\t\t}\n\t\t\n\t\t// console.log(this._samples.length, this._currentStartPos,\n\t\t// \tanalysisSampleDuration);\n\t\t\n\t\twhile ((this._samples.length - this._currentStartPos) > \n\t\t\t\tanalysisSampleDuration){\n\t\t\t// let startTime = html.window.performance.now();\n\t\t\t\n\t\t\tlet startIndex = this._currentStartPos;\n\t\t\tlet endIndex = startIndex + analysisSampleDuration;\n\t\t\t\n\t\t\tthis._stats = this._calculateStats(startIndex, endIndex, cTime);\n\t\t\tthis._stats.startTime = cTime;\n\t\t\t\n\t\t\tlet samples = this._samples.slice(startIndex, endIndex + 1);\n\t\t\tlet result = this._yin.getFrequency(samples);\n\t\t\tif (result != null){\n\t\t\t\tthis._stats.frequency = result.frequency;\n\t\t\t\tthis._stats.correlationScore = result.probability;\n\t\t\t\tthis._stats.hasPitch = true;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis._stats.frequency = 0;\n\t\t\t\tthis._stats.correlationScore = 0;\n\t\t\t\tthis._stats.hasPitch = false;\n\t\t\t}\n\t\t\t\n\t\t\tthis._notifyOfPitch(this._stats);\n\t\t\t\n\t\t\t\n\t\t\tcTime += this._msReadingInterval / 1000;\n\t\t\tthis._currentStartPos += Math.floor(\n\t\t\t\t(this._msReadingInterval / 1000) * sampleRate);\n\t\t\t\n\t\t\t// print(html.window.performance.now() - startTime);\n\t\t}\n\t\t\n\t\tif (this._currentStartPos > 0){\n\t\t\tlet end = Math.min(this._currentStartPos - 1,\n\t\t\t\tthis._samples.length - 1);\n\t\t\tthis._samples.splice(0, end);\n\t\t\t// this._samples.removeRange(0, end); //dart version\n\t\t\tthis._currentStartPos = 0;\n\t\t}\n\t}\n\t\n\t_calculateStats(startIndex, endIndex, cTime) {\n\t\tlet sum = 0;\n\t\tlet value;\n\t\tlet peakAmpl = this._samples[startIndex];\n\t\tlet lastValue = this._samples[startIndex];\n\t\tlet peakIndex = startIndex;\n\t\tlet numDescending = 0;\n\t\tfor (let i = startIndex; i <= endIndex; i++) {\n\t\t\tvalue = this._samples[i];\n\t\t\tsum += value * value;\n\t\t\tif (value < lastValue){\n\t\t\t\tnumDescending++;\n\t\t\t\tif (numDescending === 1 && value > 0){\n\t\t\t\t\tif (lastValue > peakAmpl){\n\t\t\t\t\t\tpeakAmpl = lastValue;\n\t\t\t\t\t\tpeakIndex = i - 1;\n\t\t\t\t\t}\n\t\t\t\t\tif (lastValue < this._lastPeak){\n\t\t\t\t\t\tthis._lastLowPeakTime = cTime + ((i - 1) / sampleRate);\n\t\t\t\t\t}\n\t\t\t\t\tthis._lastPeak = lastValue;\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnumDescending = 0;\n\t\t\t}\n\t\t\tlastValue = value;\n\t\t}\n\t\t\n\t\tlet stats = new _AnalysisStats();\n\t\tstats.peakAmpl = peakAmpl;\n\t\tstats.rms = Math.sqrt(sum / (endIndex - startIndex + 1));\n\t\treturn stats;\n\t}\n\t\n\t_notifyOfPitch(stats){\n\t\tlet ev = {};\n\t\tev.frequency = stats.frequency;\n\t\t\n\t\tlet midiUnrounded = 69 + 17.3123404907 * \n\t\t\tMath.log(stats.frequency / 440);\n\t\tlet roundedCents = 100 * Math.round(midiUnrounded);\n\t\tev.cents = roundedCents;\n\t\tev.pitchName = this._getCommonPitchNameFromCents(roundedCents);\n\t\tev.time = stats.startTime;\n\t\t//compute the tuning (distance from 100 cent multiple - ex. 23, -44,\n\t\t//etc.\n\t\tlet tuningDelta = Math.round(midiUnrounded * 100) % 100;\n\t\tif (tuningDelta >= 50) {\n\t\t\ttuningDelta -= 100;\n\t\t}\n\t\tev.tuning = tuningDelta;\n\t\tev.correlationScore = this._stats.correlationScore;\n\t\tev.hasPitch = this._stats.hasPitch;\n\t\tev.rms = stats.rms;\n\t\tev.peakAmpl = stats.peakAmpl;\n\t\tev.lastLowPeakTime = this._lastLowPeakTime;\n\t\t\n\t\tthis.port.postMessage(ev);\n\t}\n\t\n\t_getCommonPitchNameFromCents(cents) {\n\t\t//we really mean Dart's %12... -100 is a B, so -1%12 == 11\n\t\tlet letter = (cents >= 0)\n\t\t\t? this._centPitchNames[(cents / 100) % 12 * 100]\n\t\t\t: this._centPitchNames[((cents / 100) % 12 + 12) * 100]\n\t\tletter += (~~(cents / 1200) - 1).toString();\n\t\treturn letter;\n\t}\n}\n\nclass _AnalysisStats {\n\trms;\n\tpeakAmpl;\n\tstartTime;\n\tfrequency;\n\tcorrelationScore;\n\thasPitch;\n}\n\n\nclass YinDetector {\n\tthreshold = 0.1;\n\tsampleRate = 44100;\n\tprobabilityThreshold = 0.1;\n \n\tminFreq;\n\tmaxFreq;\n\tquality = 1;\n\n\tconstructor() {}\n\t\n\tgetFrequency(samples) {\n\t\t//start with the shortest possible period (the highest frequency)\n\t\tlet minInterval = Math.ceil(this.sampleRate / this.maxFreq) - 3;\n\t\tlet maxInterval = Math.floor(this.sampleRate / this.minFreq);\n\t\n\t\t// Set buffer size to the highest multiple of maxInterval below samples\n\t\t// length\n\t\tlet bufferSize = 2 * maxInterval;\n\t\tif (bufferSize > samples.length){\n\t\t\t//not enough samples to analyze\n\t\t\treturn null;\n\t\t}\n\t\twhile (bufferSize + maxInterval < samples.length){\n\t\t\tbufferSize += maxInterval;\n\t\t}\n\n\t\t// Set up the yinBuffer as described in step one of the YIN paper.\n\t\tlet yinBufferLength = maxInterval - minInterval + 1;\n\t\tlet yinBuffer = new Array(yinBufferLength).fill(0.0);\n\n\t\tlet probability = 0;\n\t\tlet tau;\n\n\t\t// Compute the difference function as described in step 2 of the YIN\n\t\t//paper.\n\t\tfor (let t = minInterval; t <= maxInterval; t++) {\n\t\t\tfor (let i = 0; i < bufferSize - maxInterval; i += this.quality) {\n\t\t\t\tlet delta = samples[i] - samples[i + t];\n\t\t\t\tyinBuffer[t - minInterval] += delta * delta;\n\t\t\t}\n\t\t}\n\n\t\t// Compute the cumulative mean normalized difference as described in\n\t\t//step 3 of the paper.\n\t\tyinBuffer[0] = 1;\n\t\tyinBuffer[1] = 1;\n\t\tlet runningSum = 0;\n\t\tfor (let t = 1; t < yinBufferLength; t++) {\n\t\t\trunningSum += yinBuffer[t];\n\t\t\tyinBuffer[t] *= t / runningSum;\n\t\t}\n\n\t\t// Compute the absolute threshold as described in step 4 of the paper.\n\t\t// Since the first two positions in the array are 1,\n\t\t// we can start at the third position.\n\t\tfor (tau = 2; tau < yinBufferLength; tau++) {\n\t\t\tif (yinBuffer[tau] < this.threshold) {\n\t\t\t\twhile (tau + 1 < yinBufferLength && \n\t\t\t\t\t\tyinBuffer[tau + 1] < yinBuffer[tau]) {\n\t\t\t\t\ttau++;\n\t\t\t\t}\n\t\t\t\t// found tau, exit loop and return\n\t\t\t\t// store the probability\n\t\t\t\t// From the YIN paper: The threshold determines the list of\n\t\t\t\t// candidates admitted to the set, and can be interpreted as the\n\t\t\t\t// proportion of aperiodic power tolerated\n\t\t\t\t// within a periodic signal.\n\t\t\t\t//\n\t\t\t\t// Since we want the periodicity and and not aperiodicity:\n\t\t\t\t// periodicity = 1 - aperiodicity\n\t\t\t\tprobability = 1 - yinBuffer[tau];\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\t// if no pitch found, return null.\n\t\tif (tau === yinBufferLength || yinBuffer[tau] >= this.threshold) {\n\t\t\treturn null;\n\t\t}\n\n\t\t// If probability too low, return -1.\n\t\tif (probability < this.probabilityThreshold) {\n\t\t\treturn null;\n\t\t}\n\t\t\n\t\tif (tau <= 2){\n\t\t\t// 2 seems to be the result we get when the mic is silent and\n\t\t\t// we just have room noise. It's better to lose a little more of\n\t\t\t// our maxFreq range and discard this result.\n\t\t\treturn null;\n\t\t}\n\n\t\t/**\n\t\t * Implements step 5 of the AUBIO_YIN paper. It refines the estimated\n\t\t * tau value using parabolic interpolation. This is needed to detect\n\t\t * higher frequencies more precisely. See\n\t\t * http://fizyka.umk.pl/nrbook/c10-2.pdf and for more background\n\t\t * http://fedc.wiwi.hu-berlin.de/xplore/tutorials/xegbohtmlnode62.html\n\t\t */\n\t\tlet betterTau;\n\t\tlet x0;\n\t\tlet x2;\n\t\tif (tau < 1) {\n\t\t\tx0 = tau;\n\t\t} \n\t\telse {\n\t\t\tx0 = tau - 1;\n\t\t}\n\t\tif (tau + 1 < yinBufferLength) {\n\t\t\tx2 = tau + 1;\n\t\t} \n\t\telse {\n\t\t\tx2 = tau;\n\t\t}\n\t\tif (x0 === tau) {\n\t\t\tif (yinBuffer[tau] <= yinBuffer[x2]) {\n\t\t\t\tbetterTau = tau;\n\t\t\t} \n\t\t\telse {\n\t\t\t\tbetterTau = x2;\n\t\t\t}\n\t\t} \n\t\telse if (x2 === tau) {\n\t\t\tif (yinBuffer[tau] <= yinBuffer[x0]) {\n\t\t\t\tbetterTau = tau;\n\t\t\t} \n\t\t\telse {\n\t\t\t\tbetterTau = x0;\n\t\t\t}\n\t\t} \n\t\telse {\n\t\t\tlet s0 = yinBuffer[x0];\n\t\t\tlet s1 = yinBuffer[tau];\n\t\t\tlet s2 = yinBuffer[x2];\n\t\t\t// fixed AUBIO implementation, thanks to Karl Helgason:\n\t\t\t// (2.0f * s1 - s2 - s0) was incorrectly multiplied with -1\n\t\t\tbetterTau = tau + (s2 - s0) / (2 * (2 * s1 - s2 - s0));\n\t\t}\n\t\t\n\t\tlet result = new YinResult();\n\t\tresult.frequency = this.sampleRate / (minInterval + betterTau);\n\t\tresult.probability = probability;\n\n\t\treturn result;\n\t}\n}\n\nclass YinResult {\n\tfrequency;\n\tprobability;\n}\n\nregisterProcessor('prec2-worklet', PRec2Processor);\n`;\n\n// src/analysis/TuningProvider2.ts\nimport { createEmitter as createEmitter8 } from \"ts_utils\";\nvar _TuningProvider2 = class _TuningProvider2 {\n constructor() {\n this._initialized = false;\n this._isActive = false;\n this._readingsActive = false;\n this._isSilent = true;\n this._minAmplitude = 0.05;\n this._sendPitchNoteEvents = false;\n this._emitter = createEmitter8();\n this._onPitchRec = (e) => {\n this._history.push(e);\n if (this._history.length > _TuningProvider2.maxHistoryLength) {\n this._history.splice(0, 1);\n }\n this._averageAmpl = (this._averageAmpl * this._numAmplReadings + e.peakAmpl) / (this._numAmplReadings + 1);\n this._numAmplReadings++;\n if (this._numAmplReadings > 12e4) {\n this._numAmplReadings = 12e4;\n }\n if (e.peakAmpl < this._minAmplitude) {\n this._isSilent = true;\n return;\n }\n if (!e.hasPitch) {\n return;\n }\n let numMatches = 0;\n let tuningSum = 0;\n for (let pre of this._history) {\n if (pre.cents === e.cents) {\n numMatches++;\n tuningSum += pre.tuning;\n }\n }\n if (numMatches >= _TuningProvider2.minHistoryMatches) {\n if (e.cents !== this._lastCents) {\n this._processPitchNote(e.cents);\n }\n let avgTuning = tuningSum / numMatches;\n this._lastPitchName = e.pitchName;\n this._lastCents = e.cents;\n this._lastTuning = Math.round(avgTuning);\n this._lastPitchMsTime = Math.floor(performance.now());\n }\n };\n this._onMicManagerEvent = (e) => {\n switch (e.type) {\n case 0 /* streamCreated */: {\n this.stop();\n this.start();\n break;\n }\n case 1 /* streamClosed */: {\n this._setReadingsStopped();\n break;\n }\n }\n };\n }\n /**true if the tuner is currently listening for pitch results*/\n get isActive() {\n return this._isActive;\n }\n get readingsActive() {\n return this._readingsActive;\n }\n get instrument() {\n return this._prec2Node.instrument;\n }\n /**gets the cents, rounded to the nearest 100, of the most recent solid\n * reading. Will be null if no readings have occurred.*/\n get lastCents() {\n return this._lastCents;\n }\n /**gets the offset in cents, -50 to 50, of the most recent solid reading.\n * Will be null if no readings have occurred.*/\n get lastTuning() {\n return this._lastTuning;\n }\n /**gets the pitch name, with no number, of the most recent solid reading.\n * Will be null if no readings have occurred.*/\n get lastPitchName() {\n return this._lastPitchName;\n }\n /**gets the time, in seconds, since the last reported pitch reading. Can\n * be used to determine when to stop displaying pitch.*/\n get timeSinceLastPitch() {\n return (window.performance.now() - this._lastPitchMsTime) / 1e3;\n }\n /**returns true if the most recent reading registered below the \n * [minAmplutide] level*/\n get isSilent() {\n return this._isSilent;\n }\n /**a value from 0 to 1.0 that sets the minimum microphone level that must\n * be met for tuning readings to be reported.*/\n get minAmplitude() {\n return this._minAmplitude;\n }\n set minAmplitude(value) {\n this._minAmplitude = value;\n }\n /**Gets the most recent peak amplitude level or 0 if there have been no\n * readings*/\n get peakAmplitude() {\n return this._history != null && this._history.length > 0 ? this._history[this._history.length - 1].peakAmpl : 0;\n }\n get sendPitchNoteEvents() {\n return this._sendPitchNoteEvents;\n }\n set sendPitchNoteEvents(value) {\n this._sendPitchNoteEvents = value;\n }\n get averageAmpl() {\n return this._averageAmpl;\n }\n get event() {\n return this._emitter.event;\n }\n async init(context) {\n await PRec2Node.registerWorklet(context);\n this._prec2Node = new PRec2Node();\n this.setInstrument(3);\n this._initialized = true;\n }\n /**calling start() does not guarantee tuning events will immediately begin.\n * Listen for TuningProvider2EventType.readingsStarted/readingsStopped */\n start() {\n if (!this._initialized) {\n throw \"you must call init() before using TuningProvider2 instance\";\n }\n if (!this._isActive) {\n let micManager = MicManager.get();\n micManager.event.on(this._onMicManagerEvent);\n this._history = [];\n this._lastPitchMsTime = 0;\n this._prec2Node.pitchRec.on(this._onPitchRec);\n this._averageAmpl = 0;\n this._numAmplReadings = 0;\n if (micManager.isStreamActive) {\n let context = micManager.audioContext;\n this._sourceNode = context.createMediaStreamSource(\n micManager.stream\n );\n this._prec2Node.resetPRec(250, 10);\n this._sourceNode.connect(this._prec2Node);\n this._prec2Node.connect(context.destination);\n this._setReadingsStarted();\n }\n this._isActive = true;\n }\n }\n stop() {\n if (this._isActive) {\n this._prec2Node.pitchRec.off(this._onPitchRec);\n this._prec2Node.disconnect();\n if (this._sourceNode != null) {\n this._sourceNode.disconnect();\n this._sourceNode = null;\n }\n MicManager.get().event.off(this._onMicManagerEvent);\n this._setReadingsStopped();\n this._isActive = false;\n }\n }\n setInstrument(instrumentId) {\n let inst = AssessmentInstrumentUtils.getInstrumentByID(instrumentId);\n if (inst == null) {\n throw \"InstrumentDO.id doesn't match an assessment inst\";\n }\n this._prec2Node.setInstrument(inst);\n }\n _processPitchNote(cents) {\n let firstEv;\n let peakAmpl = 0;\n for (let i = 0; i < this._history.length; i++) {\n let ev2 = this._history[i];\n if (ev2.cents === cents) {\n if (firstEv == null) {\n firstEv = ev2;\n }\n if (ev2.peakAmpl > peakAmpl) {\n peakAmpl = ev2.peakAmpl;\n }\n }\n }\n let ev = new TuningProvider2Event();\n ev.type = 2 /* newPitchNote */;\n ev.noteStartTime = firstEv.lastLowPeakTime;\n ev.noteCents = cents;\n ev.notePitchName = firstEv.pitchName;\n ev.notePeakAmpl = peakAmpl;\n this._emitter.emit(ev);\n }\n _setReadingsStarted() {\n this._readingsActive = true;\n let ev = new TuningProvider2Event();\n ev.type = 0 /* readingsStarted */;\n this._emitter.emit(ev);\n }\n _setReadingsStopped() {\n this._readingsActive = false;\n let ev = new TuningProvider2Event();\n ev.type = 1 /* readingsStopped */;\n this._emitter.emit(ev);\n }\n};\n_TuningProvider2.maxHistoryLength = 10;\n_TuningProvider2.minHistoryMatches = 5;\nvar TuningProvider2 = _TuningProvider2;\nvar TuningProvider2Event = class {\n};\nvar TuningProvider2EventType = /* @__PURE__ */ ((TuningProvider2EventType2) => {\n TuningProvider2EventType2[TuningProvider2EventType2[\"readingsStarted\"] = 0] = \"readingsStarted\";\n TuningProvider2EventType2[TuningProvider2EventType2[\"readingsStopped\"] = 1] = \"readingsStopped\";\n TuningProvider2EventType2[TuningProvider2EventType2[\"newPitchNote\"] = 2] = \"newPitchNote\";\n return TuningProvider2EventType2;\n})(TuningProvider2EventType || {});\n\n// src/mic/AudioRecorder.ts\nvar AudioRecorder = class {\n constructor(micManager) {\n this._encodeLive = false;\n this._isRecording = false;\n this._onMicData = (data) => {\n if (this._encodeLive)\n this._encoder.encode([data]);\n else {\n this._audioChunks.push(Float32Array.from(data));\n }\n };\n this._micManager = micManager;\n }\n /**\n * start recording.\n * set startMicCapture to true if you aren't initializing it elsewhere\n * (for pitch rec, etc.).\n */\n record(startMicCapture) {\n if (this._encoder != null) {\n this._encoder.cancel();\n }\n if (this._encodeLive) {\n this._initOggEncoder();\n } else\n this._audioChunks = [];\n this._micManager.micData.on(this._onMicData);\n if (startMicCapture) {\n this._micManager.startCapture();\n }\n this._recordStartTime = this._micManager.audioContext.currentTime;\n this._isRecording = true;\n }\n /**stops recording. If stopMicCapture is true, the microphone capture is\n * also stopped in the MicManager.*/\n stop(stopMicCapture) {\n if (this._isRecording) {\n this._micManager.micData.off(this._onMicData);\n if (stopMicCapture) {\n this._micManager.stopCapture();\n }\n this._recordStopTime = this._micManager.audioContext.currentTime;\n this._isRecording = false;\n }\n }\n /**Gets the recorded audio as an AudioBuffer.\n * @stereo - if true, mono recording is copied to both channels\n * @resampleRate - default null means no resampling. If specified, must\n * be a value lower than AudioContext's sample rate.\n * @deleteRecordedAudio - clears audio data from this class so it can be\n * garbage collected.*/\n async getAudioBuffer(stereo, resampleRate = null, deleteRecordedAudio = true) {\n if (this._audioChunks == null || this.encodeLive) {\n return null;\n }\n let length = 0;\n for (let chunk of this._audioChunks) {\n length += chunk.length;\n }\n let context = this._micManager.audioContext;\n let numChannels = stereo ? 2 : 1;\n let buffer = context.createBuffer(\n numChannels,\n length,\n context.sampleRate\n );\n let position = 0;\n for (let chunk of this._audioChunks) {\n for (let i = 0; i < numChannels; i++) {\n buffer.copyToChannel(chunk, i, position);\n }\n position += chunk.length;\n }\n if (deleteRecordedAudio) {\n this._audioChunks = null;\n }\n if (resampleRate == null || resampleRate >= context.sampleRate) {\n return buffer;\n } else {\n let resampleLength = Math.ceil(resampleRate / context.sampleRate * length);\n let oac = new OfflineAudioContext(\n numChannels,\n resampleLength,\n resampleRate\n );\n let bsn = oac.createBufferSource();\n bsn.buffer = buffer;\n bsn.connect(oac.destination);\n bsn.start(0);\n let renderedBuffer = await oac.startRendering();\n bsn.disconnect();\n bsn = null;\n buffer = null;\n oac = null;\n return renderedBuffer;\n }\n }\n /**gets recording as an html.Blob object that can be saved to a file*/\n getOggAudioBlob() {\n let recording;\n if (this._encoder == null) {\n this._initOggEncoder();\n }\n if (this._encoder != null) {\n if (!this._encodeLive && this._audioChunks != null) {\n while (this._audioChunks.length > 0) {\n this._encoder.encode([this._audioChunks.splice(0, 1)[0]]);\n }\n }\n recording = this._encoder.finish(\"audio/ogg\");\n this._encoder = null;\n this._audioChunks = null;\n }\n return recording;\n }\n /**converts an audioBlob (typically from getOggAudioBlob()) into an\n * AudioBuffer object that can be used with an AudioBufferSourceNode.\n * After making a recording (or reloading one from a server), use\n * getOggAudioBlob() to get the recording as an html.Blob object. Then\n * pass that to this getAudioBuffer() method and wait for the result\n * of the future, which will be the AudioBuffer object. To play it, use\n * something like:\n * let playbackNode = context.createBufferSource();\n * _playbackNode.buffer = audioBuffer;\n * _playbackNode.connectNode(context.destination);\n * _playbackNode.start(0);*/\n getAudioBufferFromBlob(audioBlob) {\n return new Promise((resolve, reject) => {\n let reader = new FileReader();\n reader.onloadend = async (e) => {\n reader.onloadend = null;\n reader.onerror = null;\n let context = this._micManager.audioContext;\n let ab = await context.decodeAudioData(\n reader.result\n );\n resolve(ab);\n };\n reader.onerror = (e) => {\n reader.onloadend = null;\n reader.onerror = null;\n reject();\n };\n reader.readAsArrayBuffer(audioBlob);\n });\n }\n _initOggEncoder() {\n this._encoder = new window.OggVorbisEncoder(\n Math.floor(this._micManager.audioContext.sampleRate),\n 1,\n 0.5\n );\n }\n /**default is false. If true, ogg encoding happens in real time as date is\n * received. Could create performance issues (but seems pretty fast)*/\n get encodeLive() {\n return this._encodeLive;\n }\n set encodeLive(value) {\n this._encodeLive = value;\n }\n /**true when recording is active*/\n get isRecording() {\n return this._isRecording;\n }\n /**returns the AudioContext time, in seconds, when recording starts.*/\n get recordStartTime() {\n return this._recordStartTime;\n }\n /**returns the AudioContext time, in seconds, when recording stops.*/\n get recordStopTime() {\n return this._recordStopTime;\n }\n};\n\n// src/mic/AudioRecordJob.ts\nimport ysFixWebmDuration2 from \"fix-webm-duration\";\nvar AudioRecordJob = class _AudioRecordJob {\n constructor(micManager) {\n this._isRecording = false;\n this._fixWebmDuration = false;\n this._onDataAvailable = (e) => {\n this._recordingBlobs.push(e.data);\n if (!this._isRecording) {\n this._mediaRecorder.removeEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this._recordingComplete = true;\n this._completeBlobReturn();\n }\n };\n this._onMicManagerEvent = (e) => {\n switch (e.type) {\n case 1 /* streamClosed */:\n if (this._isRecording) {\n this.stop();\n this._recordingBlobs = null;\n }\n this._killMediaRecorder();\n break;\n case 0 /* streamCreated */:\n if (this._isRecording) {\n this.stop();\n this._recordingBlobs = null;\n }\n this._createMediaRecorder();\n break;\n }\n };\n this._micManager = micManager;\n this._init();\n }\n /**\n * start recording.\n * set startMicCapture to true if you aren't initializing it elsewhere\n * (for pitch rec, etc.).\n */\n record() {\n if (!_AudioRecordJob.isSupported) {\n return false;\n }\n if (this._mediaRecorder == null) {\n if (!this._createMediaRecorder()) {\n throw \"MediaRecorder could not be created. Make sure to call MicManager.initMicMediaStream before using.\";\n }\n }\n this._recordingBlobs = [];\n this._mediaRecorder.addEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this._mediaRecorder.start();\n this._recordStartTime = this._micManager.audioContext.currentTime;\n this._isRecording = true;\n this._recordingComplete = false;\n return true;\n }\n /**stops recording.*/\n stop() {\n if (!_AudioRecordJob.isSupported) {\n return;\n }\n if (this._isRecording) {\n this._mediaRecorder.stop();\n this._recordStopTime = this._micManager.audioContext.currentTime;\n this._isRecording = false;\n }\n }\n /**gets recording as an html.Blob object that can be saved to a file*/\n getAudioBlob() {\n return new Promise((resolve, reject) => {\n this._returnBlobCompleter = resolve;\n if (this._recordingComplete) {\n this._completeBlobReturn();\n }\n });\n }\n /**Gets an AudioElement with the recorded audio*/\n async getAudioElement() {\n let blob = await this.getAudioBlob();\n if (blob != null) {\n let audioEl = document.createElement(\"audio\");\n audioEl.src = URL.createObjectURL(blob);\n return audioEl;\n }\n return null;\n }\n dispose() {\n this._micManager.event.off(this._onMicManagerEvent);\n this._mediaRecorder.removeEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this.stop();\n this._mediaRecorder = null;\n this._recordingBlobs = null;\n this._returnBlobCompleter = null;\n }\n _init() {\n this._micManager.event.on(this._onMicManagerEvent);\n this._createMediaRecorder();\n }\n _createMediaRecorder() {\n if (!this._audioStreamIsReady()) {\n return false;\n }\n try {\n let audioOptions = this._micManager.audioOptions;\n let options = {\n \"mimeType\": audioOptions.mimeCodecsString,\n \"audioBitsPerSecond\": audioOptions.bitRate\n };\n this._mediaRecorder = new MediaRecorder(\n this._micManager.stream,\n options\n );\n return true;\n } catch (err) {\n console.log(err.toString());\n return false;\n }\n }\n _audioStreamIsReady() {\n let audioStreams = this._micManager.stream?.getAudioTracks();\n if (audioStreams == null || audioStreams.length < 1 || audioStreams[0].readyState !== \"live\") {\n return false;\n }\n return true;\n }\n _completeBlobReturn() {\n if (this._returnBlobCompleter == null) {\n return;\n }\n if (this._recordingBlobs == null || this._recordingBlobs.length === 0) {\n this._recordingBlobs = null;\n this._returnBlobCompleter(null);\n this._returnBlobCompleter = null;\n } else {\n let mimeType = MediaFileUtils.getMimeType(\n this._micManager.audioOptions.mimeCodecsString\n );\n let blob = new Blob(this._recordingBlobs, { type: mimeType });\n this._recordingBlobs = null;\n if (!this._fixWebmDuration) {\n this._returnBlobCompleter(blob);\n this._returnBlobCompleter = null;\n } else {\n let duration = Math.ceil((this._recordStopTime - this._recordStartTime) * 1e3);\n ysFixWebmDuration2(blob, duration, (fixedBlob) => {\n this._returnBlobCompleter(fixedBlob);\n this._returnBlobCompleter = null;\n }, { logger: false });\n }\n }\n }\n _killMediaRecorder() {\n if (this._mediaRecorder != null) {\n this._mediaRecorder.removeEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this._mediaRecorder = null;\n }\n }\n /**if true, recording is currently in progress.*/\n get isRecording() {\n return this._isRecording;\n }\n /**returns the AudioContext time, in seconds, when recording starts.*/\n get recordStartTime() {\n return this._recordStartTime;\n }\n /**returns the AudioContext time, in seconds, when recording stops.*/\n get recordStopTime() {\n return this._recordStopTime;\n }\n /**if fixWebmDuration is true, recordings will be processed to add duration\n * metadata */\n get fixWebmDuration() {\n return this._fixWebmDuration;\n }\n set fixWebmDuration(value) {\n this._fixWebmDuration = value;\n }\n /**returns true if the browser supports the MediaRecorder API*/\n static get isSupported() {\n if (_AudioRecordJob._isSupported == null) {\n _AudioRecordJob._isSupported = MediaRecorder != null;\n }\n return _AudioRecordJob._isSupported;\n }\n};\n\n// src/video/VideoManager.ts\nimport { createEmitter as createEmitter9 } from \"ts_utils\";\nvar VideoManager = class _VideoManager {\n /**Creates/gets a [VideoManager] singleton. [context] and [VideoOptions] are\n * only necessary the first time the constructor is called and will be \n * ignored on future calls.*/\n constructor(context, options) {\n this._use720PForCanvasStream = true;\n this._createCanvasSnapshots = false;\n this._eventEmitter = createEmitter9();\n this._onMediaDeviceManagerEvent = (e) => {\n if (e.cameraChanged) {\n this.killStream();\n }\n };\n this._onCanvasTimer = () => {\n let origWidth = this._canvasVideoEl.videoWidth;\n let origHeight = this._canvasVideoEl.videoHeight;\n let targetWidth = this._options.width;\n let targetHeight = this._options.height;\n if (origWidth === 0 || origHeight === 0) {\n this._ctx2d.fillStyle = \"rgba(0,0,0,0)\";\n this._ctx2d.fillRect(0, 0, 1, 1);\n } else {\n if (this._canvasVideoEl.height !== origHeight) {\n this._canvasVideoEl.height = origHeight;\n this._canvasVideoEl.width = origWidth;\n }\n let scale = origHeight / targetHeight;\n let sWidth = targetWidth * scale;\n let sx = (origWidth - sWidth) / 2;\n this._ctx2d.drawImage(\n this._canvasVideoEl,\n sx,\n 0,\n sWidth,\n origHeight,\n 0,\n 0,\n targetWidth,\n targetHeight\n );\n }\n if (this._createCanvasSnapshots) {\n createImageBitmap(this._canvas).then((img) => {\n let ev = new VideoManagerEvent(\n 2 /* canvasSnapshot */\n );\n ev.canvasSnapshot = img;\n this._eventEmitter.emit(ev);\n });\n }\n this._canvasTimerId = window.setTimeout(\n this._onCanvasTimer,\n 1e3 / this._options.idealFrameRate\n );\n };\n this._init(context, options);\n }\n get event() {\n return this._eventEmitter.event;\n }\n static get(context, options) {\n if (!_VideoManager._ref) {\n _VideoManager._ref = new _VideoManager(context, options);\n }\n return _VideoManager._ref;\n }\n _init(context, options) {\n if (context == null) {\n throw \"AudioContext must be specified the first time you call the VideoManager constructor.\";\n }\n if (options == null) {\n throw \"VideoOptions must be specified the first time you call the VideoManager constructor\";\n }\n if (!MediaDeviceManager.isInitialized) {\n throw \"You must instantiate and initialize a MediaDeviceManager before creating the VideoManager\";\n }\n this._context = context;\n this._options = options;\n _VideoManager._ref = this;\n MediaDeviceManager.get().event.on(this._onMediaDeviceManagerEvent);\n }\n /**kills any existing media stream and initializes a new one. If successful,\n * resolves true, otherwise false.*/\n async initVideoMediaStream(width, height) {\n let deviceManager = MediaDeviceManager.get();\n if (!deviceManager.isCameraReady) {\n throw \"You must set a camera device in the MediaDeviceManager and get permission to use it before adding a video stream\";\n }\n this.killStream();\n let options = this._options.toMap(deviceManager.currentCamera.id);\n if (width != null) {\n options[\"width\"] = { \"ideal\": width };\n }\n if (height != null) {\n options[\"height\"] = { \"ideal\": height };\n }\n try {\n this._stream = await navigator.mediaDevices.getUserMedia(\n { video: options }\n );\n if (this._useCanvasStream) {\n await this._startCanvasStream();\n }\n let ev = new VideoManagerEvent(0 /* streamCreated */);\n this._eventEmitter.emit(ev);\n return true;\n } catch (err) {\n console.log(err.toString() + \" ...maybe make sure camera is enabled.\");\n return false;\n }\n }\n killStream() {\n if (this._stream != null) {\n this._stopCanvasStream();\n let tracks = this._stream.getTracks();\n for (let i = tracks.length - 1; i >= 0; i--) {\n let track = tracks[i];\n track.stop();\n track.enabled = false;\n this._stream.removeTrack(track);\n }\n this._stream = null;\n let ev = new VideoManagerEvent(1 /* streamClosed */);\n this._eventEmitter.emit(ev);\n }\n }\n async _startCanvasStream() {\n this._canvas = document.createElement(\"canvas\");\n this._canvas.width = this._options.width;\n this._canvas.height = this._options.height;\n this._ctx2d = this._canvas.getContext(\"2d\");\n this._canvasStream = this._canvas.captureStream(\n this._options.idealFrameRate\n );\n this._canvasVideoEl = document.createElement(\"video\");\n this._canvasVideoEl.srcObject = this._stream;\n await this._canvasVideoEl.play();\n this._onCanvasTimer();\n }\n _stopCanvasStream() {\n if (this._canvasTimerId == null) {\n return;\n }\n window.clearTimeout(this._canvasTimerId);\n this._canvasTimerId = null;\n if (this._canvasVideoEl != null) {\n this._canvasVideoEl.pause();\n this._canvasVideoEl = null;\n }\n this._ctx2d = null;\n this._canvas = null;\n this._canvasStream = null;\n }\n get audioContext() {\n return this._context;\n }\n set audioContext(value) {\n this._context = value;\n }\n get videoOptions() {\n return this._options;\n }\n get stream() {\n return this._stream;\n }\n /**returns the [MediaStreamTrack] for the camera video*/\n get cameraVideoTrack() {\n return this._stream?.getVideoTracks()[0];\n }\n /**if true, whenever a stream is initialized, a second stream will also be\n * generated and accessible via the canvasStream property. This can only\n * be set when no stream is active. Note that when using a canvas stream,\n * it may help to pass a common 16/9 resolution to initVideoMediaStream().\n * For example, 1280 X 720*/\n get useCanvasStream() {\n return this._useCanvasStream;\n }\n set useCanvasStream(value) {\n if (this._stream != null) {\n throw \"can not set while a current video stream exists. Use killStream() first or call before first stream initialization\";\n }\n this._useCanvasStream = value;\n }\n /**a generated stream meant to enforce the exact width, height and framerate\n * from the VideoOptions. */\n get canvasStream() {\n return this._canvasStream;\n }\n /**returns the [MediaStreamTrack] for the canvas video*/\n get canvasVideoTrack() {\n return this._canvasStream?.getVideoTracks()[0];\n }\n /**if true, when the canvas stream is enabled, snapshots will be taken of\n * each frame and dispatched via a VideoManagerEvent. */\n get createCanvasSnapshots() {\n return this._createCanvasSnapshots;\n }\n set createCanvasSnapshots(value) {\n this._createCanvasSnapshots = value;\n }\n};\nvar VideoManagerEvent = class {\n constructor(type) {\n this.type = type;\n }\n};\nvar VideoManagerEventType = /* @__PURE__ */ ((VideoManagerEventType2) => {\n VideoManagerEventType2[VideoManagerEventType2[\"streamCreated\"] = 0] = \"streamCreated\";\n VideoManagerEventType2[VideoManagerEventType2[\"streamClosed\"] = 1] = \"streamClosed\";\n VideoManagerEventType2[VideoManagerEventType2[\"canvasSnapshot\"] = 2] = \"canvasSnapshot\";\n return VideoManagerEventType2;\n})(VideoManagerEventType || {});\n\n// src/video/VideoRecorder.ts\nimport ysFixWebmDuration3 from \"fix-webm-duration\";\nvar VideoRecorder = class _VideoRecorder {\n constructor(videoManager) {\n this._isRecording = false;\n this._fixWebmDuration = false;\n this._onDataAvailable = (e) => {\n this._recordingBlobs.push(e.data);\n if (!this._isRecording) {\n this._mediaRecorder.removeEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this._recordingComplete = true;\n this._completeBlobReturn();\n }\n };\n this._onVideoManagerEvent = (e) => {\n switch (e.type) {\n case 1 /* streamClosed */:\n if (this._isRecording) {\n this.stop();\n this._recordingBlobs = null;\n }\n this._killMediaRecorder();\n break;\n case 0 /* streamCreated */:\n if (this._isRecording) {\n this.stop();\n this._recordingBlobs = null;\n }\n this._createMediaRecorder();\n break;\n }\n };\n this._videoManager = videoManager;\n this._init();\n }\n /** start recording.*/\n record() {\n if (!_VideoRecorder.isSupported) {\n return false;\n }\n if (this._mediaRecorder == null) {\n if (!this._createMediaRecorder()) {\n throw \"MediaRecorder could not be created. Make sure to call VideoManager.initVideoMediaStream before using the VideoRecorder\";\n }\n }\n this._recordingBlobs = [];\n this._mediaRecorder.addEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this._clipEndTime = null;\n this._mediaRecorder.start(\n this._videoManager.videoOptions.recordingBlobSize\n );\n this._recordStartTime = this._videoManager.audioContext.currentTime;\n this._isRecording = true;\n this._recordingComplete = false;\n return true;\n }\n /**stops recording.*/\n stop() {\n if (!_VideoRecorder.isSupported) {\n return;\n }\n if (this._isRecording) {\n this._mediaRecorder.stop();\n this._recordStopTime = this._videoManager.audioContext.currentTime;\n this._isRecording = false;\n }\n }\n /**gets recording as an html.Blob object that can be saved to a file. \n * Optionally set and [endTime] in seconds to clip the video before\n * returning the blob. Clipping resolution will be limited by the\n * [VideoOptions.recordingBlobSize]*/\n getVideoBlob(endTime) {\n return new Promise((resolve, reject) => {\n this._returnBlobCompleter = resolve;\n this._clipEndTime = endTime;\n if (this._recordingComplete) {\n this._completeBlobReturn();\n }\n });\n }\n /**Gets a VideoElement with the recorded video*/\n async getVideoElement() {\n let blob = await this.getVideoBlob();\n if (blob != null) {\n let videoEl = document.createElement(\"video\");\n videoEl.src = URL.createObjectURL(blob);\n return videoEl;\n }\n return null;\n }\n _init() {\n this._videoManager.event.on(this._onVideoManagerEvent);\n this._createMediaRecorder();\n }\n _createMediaRecorder() {\n this._killMediaRecorder();\n if (!this._videoStreamIsReady()) {\n return false;\n }\n try {\n let stream = this._videoManager.useCanvasStream ? this._videoManager.canvasStream : this._videoManager.stream;\n let vidOptions = this._videoManager.videoOptions;\n this._mediaRecorder = new MediaRecorder(stream, {\n \"mimeType\": vidOptions.mimeCodecsString,\n \"videoBitsPerSecond\": vidOptions.bitRate\n });\n return true;\n } catch (err) {\n console.log(err.toString());\n return false;\n }\n }\n _videoStreamIsReady() {\n let stream = this._videoManager.useCanvasStream ? this._videoManager.canvasStream : this._videoManager.stream;\n let videoTracks = stream?.getVideoTracks();\n if (videoTracks == null || videoTracks.length < 1 || videoTracks[0].readyState !== \"live\") {\n return false;\n }\n return true;\n }\n _completeBlobReturn() {\n if (this._returnBlobCompleter == null) {\n return;\n }\n if (this._recordingBlobs == null || this._recordingBlobs.length == 0) {\n this._recordingBlobs = null;\n this._returnBlobCompleter(null);\n this._returnBlobCompleter = null;\n } else {\n let blobSize = this._videoManager.videoOptions.recordingBlobSize / 1e3;\n if (this._clipEndTime != null) {\n let endIndex = Math.ceil(this._clipEndTime / blobSize);\n if (endIndex < this._recordingBlobs.length) {\n this._recordingBlobs.splice(\n endIndex,\n this._recordingBlobs.length\n );\n }\n }\n let blob = new Blob(this._recordingBlobs, { type: \"video/webm\" });\n this._recordingBlobs = null;\n if (!this._fixWebmDuration) {\n this._returnBlobCompleter(blob);\n this._returnBlobCompleter = null;\n } else {\n let duration = Math.ceil((this._recordStopTime - this._recordStartTime) * 1e3);\n ysFixWebmDuration3(blob, duration, (fixedBlob) => {\n this._returnBlobCompleter(fixedBlob);\n this._returnBlobCompleter = null;\n }, { logger: false });\n }\n }\n }\n _killMediaRecorder() {\n if (this._mediaRecorder != null) {\n this._mediaRecorder.removeEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this._mediaRecorder = null;\n }\n }\n /**if true, recording is currently in progress.*/\n get isRecording() {\n return this._isRecording;\n }\n /**returns the AudioContext time, in seconds, when recording starts.*/\n get recordStartTime() {\n return this._recordStartTime;\n }\n /**returns the AudioContext time, in seconds, when recording stops.*/\n get recordStopTime() {\n return this._recordStopTime;\n }\n /**if fixWebmDuration is true, recordings will be processed to add duration\n * metadata */\n get fixWebmDuration() {\n return this._fixWebmDuration;\n }\n set fixWebmDuration(value) {\n this._fixWebmDuration = value;\n }\n /**returns true if the browser supports the MediaRecorder API*/\n static get isSupported() {\n if (_VideoRecorder._isSupported == null) {\n _VideoRecorder._isSupported = MediaRecorder != null;\n }\n return _VideoRecorder._isSupported;\n }\n};\n\n// src/video/VideoRecordJob.ts\nimport ysFixWebmDuration4 from \"fix-webm-duration\";\nvar VideoRecordJob = class _VideoRecordJob {\n constructor(videoManager) {\n this._isRecording = false;\n this._fixWebmDuration = false;\n this._onDataAvailable = (e) => {\n this._recordingBlobs.push(e.data);\n if (!this._isRecording) {\n this._mediaRecorder.removeEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this._recordingComplete = true;\n this._completeBlobReturn();\n }\n };\n this._onVideoManagerEvent = (e) => {\n switch (e.type) {\n case 1 /* streamClosed */:\n if (this._isRecording) {\n this.stop();\n this._recordingBlobs = null;\n }\n this._killMediaRecorder();\n break;\n case 0 /* streamCreated */:\n if (this._isRecording) {\n this.stop();\n this._recordingBlobs = null;\n }\n this._createMediaRecorder();\n break;\n }\n };\n this._videoManager = videoManager;\n this._init();\n }\n /** start recording.*/\n record() {\n if (!_VideoRecordJob.isSupported) {\n return false;\n }\n if (this._mediaRecorder == null) {\n if (!this._createMediaRecorder()) {\n throw \"MediaRecorder could not be created. Make sure to call VideoManager.initVideoMediaStream before using\";\n }\n }\n this._recordingBlobs = [];\n this._mediaRecorder.addEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this._clipEndTime = null;\n this._mediaRecorder.start(\n this._videoManager.videoOptions.recordingBlobSize\n );\n this._recordStartTime = this._videoManager.audioContext.currentTime;\n this._isRecording = true;\n this._recordingComplete = false;\n return true;\n }\n /**stops recording.*/\n stop() {\n if (!_VideoRecordJob.isSupported) {\n return;\n }\n if (this._isRecording) {\n this._mediaRecorder.stop();\n this._recordStopTime = this._videoManager.audioContext.currentTime;\n this._isRecording = false;\n }\n }\n /**gets recording as an html.Blob object that can be saved to a file. \n * Optionally set and [endTime] in seconds to clip the video before\n * returning the blob. Clipping resolution will be limited by the\n * [VideoOptions.recordingBlobSize]*/\n getVideoBlob(endTime) {\n return new Promise((resolve, reject) => {\n this._returnBlobCompleter = resolve;\n this._clipEndTime = endTime;\n if (this._recordingComplete) {\n this._completeBlobReturn();\n }\n });\n }\n /**Gets a VideoElement with the recorded video*/\n async getVideoElement() {\n let blob = await this.getVideoBlob();\n if (blob != null) {\n let videoEl = document.createElement(\"video\");\n videoEl.src = URL.createObjectURL(blob);\n return videoEl;\n }\n return null;\n }\n dispose() {\n this._videoManager.event.off(this._onVideoManagerEvent);\n this._mediaRecorder.removeEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this.stop();\n this._mediaRecorder = null;\n this._recordingBlobs = null;\n this._returnBlobCompleter = null;\n }\n _init() {\n this._videoManager.event.on(this._onVideoManagerEvent);\n this._createMediaRecorder();\n }\n _createMediaRecorder() {\n if (!this._videoStreamIsReady()) {\n return false;\n }\n try {\n let stream = this._videoManager.useCanvasStream ? this._videoManager.canvasStream : this._videoManager.stream;\n let vidOptions = this._videoManager.videoOptions;\n this._mediaRecorder = new MediaRecorder(stream, {\n \"mimeType\": vidOptions.mimeCodecsString,\n \"videoBitsPerSecond\": vidOptions.bitRate\n });\n return true;\n } catch (err) {\n console.log(err.toString());\n return false;\n }\n }\n _videoStreamIsReady() {\n let stream = this._videoManager.useCanvasStream ? this._videoManager.canvasStream : this._videoManager.stream;\n let videoTracks = stream?.getVideoTracks();\n if (videoTracks == null || videoTracks.length < 1 || videoTracks[0].readyState !== \"live\") {\n return false;\n }\n return true;\n }\n _completeBlobReturn() {\n if (this._returnBlobCompleter == null) {\n return;\n }\n if (this._recordingBlobs == null || this._recordingBlobs.length == 0) {\n this._recordingBlobs = null;\n this._returnBlobCompleter(null);\n this._returnBlobCompleter = null;\n } else {\n let blobSize = this._videoManager.videoOptions.recordingBlobSize / 1e3;\n if (this._clipEndTime != null) {\n let endIndex = Math.ceil(this._clipEndTime / blobSize);\n if (endIndex < this._recordingBlobs.length) {\n this._recordingBlobs.splice(\n endIndex,\n this._recordingBlobs.length\n );\n }\n }\n let mimeType = MediaFileUtils.getMimeType(\n this._videoManager.videoOptions.mimeCodecsString\n );\n let blob = new Blob(this._recordingBlobs, { type: mimeType });\n this._recordingBlobs = null;\n if (!this._fixWebmDuration || !mimeType.includes(\"webm\")) {\n this._returnBlobCompleter(blob);\n this._returnBlobCompleter = null;\n } else {\n let duration = Math.ceil((this._recordStopTime - this._recordStartTime) * 1e3);\n ysFixWebmDuration4(blob, duration, (fixedBlob) => {\n this._returnBlobCompleter(fixedBlob);\n this._returnBlobCompleter = null;\n }, { logger: false });\n }\n }\n }\n _killMediaRecorder() {\n if (this._mediaRecorder != null) {\n this._mediaRecorder.removeEventListener(\n \"dataavailable\",\n this._onDataAvailable\n );\n this._mediaRecorder = null;\n }\n }\n /**if true, recording is currently in progress.*/\n get isRecording() {\n return this._isRecording;\n }\n /**returns the AudioContext time, in seconds, when recording starts.*/\n get recordStartTime() {\n return this._recordStartTime;\n }\n /**returns the AudioContext time, in seconds, when recording stops.*/\n get recordStopTime() {\n return this._recordStopTime;\n }\n /**if fixWebmDuration is true, recordings will be processed to add duration\n * metadata */\n get fixWebmDuration() {\n return this._fixWebmDuration;\n }\n set fixWebmDuration(value) {\n this._fixWebmDuration = value;\n }\n /**returns true if the browser supports the MediaRecorder API*/\n static get isSupported() {\n if (_VideoRecordJob._isSupported == null) {\n _VideoRecordJob._isSupported = MediaRecorder != null;\n }\n return _VideoRecordJob._isSupported;\n }\n};\nexport {\n AssessmentInstrumentDO,\n AssessmentInstrumentUtils,\n AudioOptions,\n AudioRecordJob,\n AudioRecorder,\n AudioRecorder2,\n DelayInfo,\n DelayTester,\n DelayTester2,\n Device,\n DeviceType,\n HitEvent,\n HitRecognizer,\n HitType,\n KeyHitRecognizer,\n MediaDeviceManager,\n MediaDeviceManagerEvent,\n MediaDeviceManagerEventType,\n MediaFileUtils,\n MicHitRecognizer,\n MicManager,\n MicManagerEvent,\n MicManagerEventType,\n MicOptions,\n MimeCodecsString,\n PitchRecEvent,\n PitchRecognizer,\n PitchRecognizer2,\n PitchUtils,\n TuningProvider,\n TuningProvider2,\n TuningProvider2Event,\n TuningProvider2EventType,\n VideoManager,\n VideoManagerEvent,\n VideoManagerEventType,\n VideoOptions,\n VideoRecordJob,\n VideoRecorder,\n YinDetector\n};\n","import { MediaFileUtils, MimeCodecsString } from \"audio_input\";\r\n\r\nexport enum IndexPageType {\r\n\tmain = 0,\r\n\trecorder = 1\r\n}\r\n\r\nexport function getIndexPageUi():HTMLDivElement {\r\n\tswitch (AppSettings.indexPageType){\r\n\t\tcase IndexPageType.main: {\r\n\t\t\treturn document.body.querySelector(\"#indexScreen\");\r\n\t\t}\r\n\t\tcase IndexPageType.recorder: {\r\n\t\t\treturn document.body.querySelector(\"#recorderIndexScreen\");\r\n\t\t}\r\n\t}\r\n}\r\n\r\nexport class AppSettings {\r\n\tpublic static readonly useIdxDb:boolean = true;\r\n\t\r\n\tprivate static _jsParams:any;\r\n\tprivate static _isBot:boolean;\r\n\tprivate static _isGuest:boolean;\r\n\t\r\n\tpublic static init():void {\r\n\t\tthis._jsParams = window['params'];\r\n\t\t\r\n\t\tlet rx = /bot|googlebot|crawler|spider|robot|crawling/i;\r\n\t\tAppSettings._isBot = (rx.test(window.navigator.userAgent) ||\r\n\t\t\tAppSettings.getJSParam(\"fakeBot\") === true);\r\n\t\t\r\n\t\tAppSettings._isGuest = AppSettings.getJSParam(\"tryAsGuest\");\r\n\t}\r\n\t\r\n\tpublic static getJSParam(paramName:string):any {\r\n\t\tif (AppSettings._jsParams.hasOwnProperty(paramName)){\r\n\t\t\treturn AppSettings._jsParams[paramName];\r\n\t\t}\r\n\t\telse {\r\n\t\t\treturn null;\r\n\t\t}\r\n\t}\r\n\t\r\n\tpublic static get indexPageType():IndexPageType {\r\n\t\treturn window[\"LCIndexPageType\"];\r\n\t}\r\n\t\r\n\tpublic static get isBot():boolean {\r\n\t\treturn AppSettings._isBot;\r\n\t}\r\n\t\r\n\tpublic static get resourcesPath():string {\r\n\t\treturn AppSettings.getJSParam(\"resourcesUrl\");\r\n\t}\r\n\t\r\n\tpublic static get pageUrl():string {\r\n\t\treturn AppSettings.getJSParam(\"pageUrl\");\r\n\t}\r\n\t\r\n\tpublic static get serverRoot():string {\r\n\t\treturn AppSettings.getJSParam(\"serverRoot\");\r\n\t}\r\n\t\r\n\tpublic static get videoEmbedId():string {\r\n\t\treturn AppSettings.getJSParam(\"videoEmbedId\");\r\n\t}\r\n\t\r\n\tpublic static get soundTouchWorkletUrl():string {\r\n\t\treturn AppSettings.getJSParam(\"soundTouchWorkletUrl\");\r\n\t}\r\n\t\r\n\tpublic static get phazeWorkletUrl():string {\r\n\t\treturn AppSettings.getJSParam(\"phazeWorkletUrl\");\r\n\t}\r\n\t\r\n\tpublic static get signalSmithWorkletUrl():string {\r\n\t\treturn AppSettings.getJSParam(\"signalSmithWorkletUrl\");\r\n\t}\r\n\t\r\n\tpublic static get signalSmithIframeUrl():string {\r\n\t\treturn AppSettings.getJSParam(\"signalSmithIframeUrl\");\r\n\t}\r\n\t\r\n\tpublic static get allowGuests():boolean {\r\n\t\treturn true;\r\n\t\t// return (AppSettings.queryParams.showGuestStart === \"1\");\r\n\t}\r\n\t\r\n\tpublic static get isGuest():boolean {\r\n\t\treturn AppSettings._isGuest;\r\n\t}\r\n\t\r\n\tpublic static get jumpToCheckout():boolean {\r\n\t\treturn (AppSettings.queryParams.checkout === \"1\");\r\n\t}\r\n\t\r\n\tpublic static get stripePublicKey():string {\r\n\t\treturn AppSettings.getJSParam(\"stripePublicKey\");\r\n\t}\r\n\t\r\n\tpublic static get externalUrl():string {\r\n\t\treturn AppSettings.getJSParam(\"externalUrl\");\r\n\t}\r\n\t\r\n\tpublic static get queryParams():QueryParams {\r\n\t\tlet params = AppSettings.getJSParam(\"queryParams\") as QueryParams;\r\n\t\tif (params == null){\r\n\t\t\tparams = {} as QueryParams;\r\n\t\t}\r\n\t\treturn params;\r\n\t}\r\n\t\r\n\tpublic static get videoMimeCodecsString() {\r\n\t\treturn MimeCodecsString.videoWebmAvc1;\r\n\t}\r\n\t\r\n\tpublic static get videoMimeType() {\r\n\t\treturn MediaFileUtils.getMimeType(AppSettings.videoMimeCodecsString);\r\n\t}\r\n\t\r\n\tpublic static get audioMimeCodecsString() {\r\n\t\treturn MimeCodecsString.audioWebmOpus;\r\n\t}\r\n\t\r\n\tpublic static get audioMimeType() {\r\n\t\treturn MediaFileUtils.getMimeType(AppSettings.audioMimeCodecsString);\r\n\t}\r\n}\r\n\r\nexport interface QueryParams {\r\n\t/**song id */\r\n\tid: string | undefined;\r\n\t\r\n\tskipToSignin: string | undefined;\r\n\t\r\n\t/**https://firebase.google.com/docs/auth/custom-email-handler#web_6 */\r\n\t/**fb user management action */\r\n\tmode: \"resetPassword\" | \"recoverEmail\" | \"verifyEmail\" | undefined;\r\n\t/**A one-time code, used to identify and verify a request */\r\n\toobCode: string | undefined;\r\n\t/**Firebase project's API key, provided for convenience */\r\n\tapiKey: string | undefined;\r\n\tcontinueUrl: string | undefined;\r\n\tlang: string | undefined;\r\n\t/**pro=1 means pro purchases are allowed */\r\n\tpro: string | undefined;\r\n\t/**localStorageOff=1 means settings should not be loaded from local\r\n\t * storage. Can still be saved to it. */\r\n\tlocalStorageOff: string | undefined;\r\n\tshowGuestStart: string | undefined;\r\n\tcheckout: string | undefined;\r\n}","import { createEmitter } from \"ts_utils\";\r\nimport { Templates } from \"../ui/Templates\";\r\n\r\nexport interface PublicCommunityLIData {\r\n\tcommunityId:number;\r\n\tname:string;\r\n\tpublicDescription:string;\r\n\tpublicAges:string;\r\n}\r\n\r\nexport class PublicCommunityLI {\r\n\tpublic data:PublicCommunityLIData;\r\n\tpublic ui:HTMLLIElement;\r\n\t\r\n\tprivate _communityLI:HTMLDivElement;\r\n\tprivate _titleDiv:HTMLDivElement;\r\n\tprivate _descriptionDiv:HTMLDivElement;\r\n\tprivate _agesDiv:HTMLDivElement;\r\n\tprivate _joinDiv:HTMLDivElement;\r\n\t\r\n\tpublic get event() { return this._emitter.event; }\r\n\tprivate _emitter = createEmitter();\r\n\t\r\n\tconstructor(data:PublicCommunityLIData){\r\n\t\tthis.data = data;\r\n\t\t\r\n\t\tthis._init();\r\n\t}\r\n\t\r\n\tpublic showJoinDiv():void {\r\n\t\tthis._communityLI.classList.add(\"showJoin\");\r\n\t}\r\n\t\r\n\tpublic hideJoinDiv():void {\r\n\t\tthis._communityLI.classList.remove(\"showJoin\");\r\n\t}\r\n\t\r\n\tpublic showGuestVisitDiv():void {\r\n\t\tthis._joinDiv.innerHTML = \"Visit\";\r\n\t\tthis.showJoinDiv();\r\n\t}\r\n\t\r\n\tprivate _init():void {\r\n\t\tthis.ui = Templates.createElement(communityLITemplate) as\r\n\t\t\tHTMLLIElement;\r\n\t\tthis._communityLI = this.ui.querySelector(\".stscr-communityLI\");\r\n\t\tthis._titleDiv = this.ui.querySelector(\".stscr-cli-title\");\r\n\t\tthis._descriptionDiv = this.ui.querySelector(\".stscr-cli-description\");\r\n\t\tthis._agesDiv = this.ui.querySelector(\".stscr-cli-ages\");\r\n\t\tthis._joinDiv = this.ui.querySelector(\".stscr-cli-join\");\r\n\t\t\r\n\t\tthis._titleDiv.innerHTML += this.data.name;\r\n\t\tthis._descriptionDiv.innerHTML += this.data.publicDescription;\r\n\t\tthis._agesDiv.innerHTML += this.data.publicAges;\r\n\t\t\r\n\t\tthis._joinDiv.addEventListener(\"click\", this._onJoinClick);\r\n\t}\r\n\t\r\n\tprivate _onJoinClick = (e:MouseEvent) => {\r\n\t\tlet ev = new PublicCommunityLIEvent();\r\n\t\tev.type = PublicCommunityLIEventType.joinRequest;\r\n\t\tev.target = this;\r\n\t\tthis._emitter.emit(ev);\r\n\t}\r\n}\r\n\r\nexport class PublicCommunityLIEvent {\r\n\tpublic type:PublicCommunityLIEventType;\r\n\tpublic target:PublicCommunityLI;\r\n}\r\n\r\nexport enum PublicCommunityLIEventType {\r\n\tjoinRequest\r\n}\r\n\r\nconst communityLITemplate = `\r\n
  • \r\n\t
    \r\n\t\t
    \r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\tDescription: \r\n\t\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\tAges: \r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\t\t
    \r\n\t\t
    \r\n\t\t\t
    Join
    \r\n\t\t
    \r\n\t
    \r\n
  • \r\n`;","import { AppSettings } from \"../settings/AppSettings\";\r\n\r\nexport class Templates {\r\n\t\r\n\tpublic static createElement(htmlString:string):HTMLElement {\r\n\t\tlet template = document.createElement(\"template\");\r\n\t\thtmlString = htmlString.replace(/{{r}}/g, AppSettings.resourcesPath);\r\n\t\thtmlString = htmlString.replace(/{{sr}}/g, AppSettings.serverRoot);\r\n\t\ttemplate.innerHTML = htmlString;\r\n\t\tlet el = template.content.firstElementChild;\r\n\t\tel.remove();\r\n\t\treturn el as HTMLElement;\r\n\t}\r\n\t\r\n\tpublic static createDiv(htmlString:string):HTMLDivElement {\r\n\t\treturn Templates.createElement(htmlString) as HTMLDivElement;\r\n\t}\r\n\t\r\n\t\r\n\t\r\n\tpublic static readonly confirmationBox:string = `\r\n\t
    \r\n\t\t
    \r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t
    \r\n\t\t
    \r\n\t
    \r\n\t`;\r\n\t\r\n\tpublic static readonly loadingOverlay:string = `\r\n\t
    \r\n\t\t
    \r\n\t\t\t
    Please wait...
    \r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\t\t
    \r\n\t
    \r\n\t`;\r\n\t\r\n\tpublic static readonly discordVoiceDialog = `\r\n\t
    \r\n\t\t
    \r\n\t\t\t
    Discord Voice Chat
    \r\n\t\t\t
    \r\n\t\t\t\t
    Chatting via voice is a super fun\r\n\t\t\t\t\tway to enjoy making music together! Join our Discord and use the\r\n\t\t\t\t\tCollab Voice Chat Rooms to chat with friends! Some tips:\r\n\t\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\t
      \r\n\t\t\t\t\t\t
    • Share the room you pick in your session's text chat so others\r\n\t\t\t\t\t\t\tcan join you.\r\n\t\t\t\t\t\t
    • \r\n\t\t\t\t\t\t
    • Mute your mic when you record and then unmute after so you can\r\n\t\t\t\t\t\t\tchat. Alternatively, use Push to Talk mode.\r\n\t\t\t\t\t\t
    • \r\n\t\t\t\t\t\t
    • New to Discord? Ask questions! The community is happy to help!\r\n\t\t\t\t\t\t
    • \r\n\t\t\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\t\t
    \r\n\t
    \r\n\t`;\r\n}","import Splide from \"@splidejs/splide\";\r\nimport { PublicCommunityLI, PublicCommunityLIData }\r\n\tfrom \"../../web/src/community/PublicCommunityLI\";\r\nimport { Templates } from \"../../web/src/ui/Templates\";\r\nimport { AppSettings, getIndexPageUi, QueryParams } from \"../../web/src/settings/AppSettings\";\r\nimport { HttpUtils } from \"ts_utils\";\r\n\r\nconst infoVideoLI = `\r\n
    \r\n\t
    \r\n\t\tBonnie at Morn\r\n\t
    \r\n
    \r\n`;\r\n\r\nconst introVids = [\r\n\t{\r\n\t\t\"name\": \"Brass Ensemble with One Euphonium\",\r\n\t\t\"id\": \"MTZMTCnQexg\",\r\n\t\t\"indexPageTypes\": [0]\r\n\t},\r\n\t{\r\n\t\t\"name\": \"Renaissance Ensemble with Soprano Recorder\",\r\n\t\t\"id\": \"O1_BAn3CFFs\",\r\n\t\t\"indexPageTypes\": [0]\r\n\t},\r\n\t{\r\n\t\t\"name\": \"Looping Hot Cross Buns on Trumpet\",\r\n\t\t\"id\": \"6J8U2M2lVTo\",\r\n\t\t\"indexPageTypes\": [0]\r\n\t},\r\n\t{\r\n\t\t\"name\": \"Easy Recorder Loop - Waltz in the Shadows\",\r\n\t\t\"id\": \"6sDpu2el1DI\",\r\n\t\t\"indexPageTypes\": [0]\r\n\t},\r\n\t{\r\n\t\t\"name\": \"Euphonium - Courtly Masking Ayres no. 8\",\r\n\t\t\"id\": \"mjo-gs9fGU0\",\r\n\t\t\"indexPageTypes\": [0]\r\n\t},\r\n\t{\r\n\t\t\"name\": \"Quick Trumpet Loop with Some Improv\",\r\n\t\t\"id\": \"LdNvfvMKCl4\",\r\n\t\t\"indexPageTypes\": [0]\r\n\t},\r\n\t{\r\n\t\t\"name\": \"Playing Together Live - Celtic Music\",\r\n\t\t\"id\": \"ojeqGKzrwgc\",\r\n\t\t\"indexPageTypes\": [0]\r\n\t},\r\n\t{\r\n\t\t\"name\": \"Pachelbel's Canon, Soprano Recorder\",\r\n\t\t\"id\": \"lNolZz0FoTE\",\r\n\t\t\"indexPageTypes\": [0]\r\n\t},\r\n\t{\r\n\t\t\"name\": \"Beginner Trumpet Looping\",\r\n\t\t\"id\": \"QoV95pNL7Eo\",\r\n\t\t\"indexPageTypes\": [0]\r\n\t},\r\n\t{\r\n\t\t\"name\": \"Hot Cross Buns 2 Looped on Trumpet\",\r\n\t\t\"id\": \"-0WxknEiqNU\",\r\n\t\t\"indexPageTypes\": [0]\r\n\t},\r\n\t{ \r\n\t\t\"name\": \"Collab - Old MacDonald\",\r\n\t\t\"id\": \"wv59j27V5OA\",\r\n\t\t\"indexPageTypes\": [0]\r\n\t},\r\n\t\r\n\t////////RECORDER PAGE VIDEOS//////////\r\n\t{\r\n\t\t\"name\": \"Easy Recorder Loop - Waltz in the Shadows\",\r\n\t\t\"id\": \"6sDpu2el1DI\",\r\n\t\t\"indexPageTypes\": [1]\r\n\t},\r\n\t{\r\n\t\t\"name\": \"Looping Hot Cross Buns on Recorder\",\r\n\t\t\"id\": \"2Y6O2hky6G0\",\r\n\t\t\"indexPageTypes\": [1]\r\n\t},\r\n\t{\r\n\t\t\"name\": \"Renaissance Ensemble with Recorder\",\r\n\t\t\"id\": \"O1_BAn3CFFs\",\r\n\t\t\"indexPageTypes\": [1]\r\n\t},\r\n\t{\r\n\t\t\"name\": \"Pink Recorder Improv\",\r\n\t\t\"id\": \"mV3YSOmc0tE\",\r\n\t\t\"indexPageTypes\": [1]\r\n\t},\r\n\t{\r\n\t\t\"name\": \"Pachelbel's Canon Looped with Recorder\",\r\n\t\t\"id\": \"lNolZz0FoTE\",\r\n\t\t\"indexPageTypes\": [1]\r\n\t},\r\n\t{ \r\n\t\t\"name\": \"Collab - Old MacDonald\",\r\n\t\t\"id\": \"wv59j27V5OA\",\r\n\t\t\"indexPageTypes\": [1]\r\n\t},\r\n\t// {\r\n\t// \t\"name\": \"Soprano Recorder Renaissance Ensemble\",\r\n\t// \t\"id\": \"AgKgfE93pVM\",\r\n\t// \t\"indexPageTypes\": [1]\r\n\t// },\r\n\t// {\r\n\t// \t\"name\": \"LoopCollab Tutorial - Recorder Hot Cross Buns\",\r\n\t// \t\"id\": \"SMrfjlwkmqk\",\r\n\t// \t\"indexPageTypes\": [1]\r\n\t// },\r\n];\r\n\r\nconst iframeString = `\r\n\t\r\n`;\r\n\r\n\r\n\r\nexport class IndexPage {\r\n\tprivate _signinBtnDiv:HTMLDivElement;\r\n\tprivate _signinGuestBtnDiv:HTMLDivElement;\r\n\t\r\n\tprivate _debugDuplicateCommunities:boolean = false;\r\n\t\r\n\tconstructor(){\r\n\t\tthis._init();\r\n\t}\r\n\t\r\n\tprivate _init(){\r\n\t\tAppSettings.init();\r\n\t\t\r\n\t\tthis._ensureChrome();\r\n\t\t\r\n\t\tlet ui = getIndexPageUi();\r\n\r\n\t\tthis._signinBtnDiv = ui.querySelector(\"#stscr-signinBtnDiv\");\r\n\t\tthis._signinBtnDiv.addEventListener(\"click\", this._onSignInClick);\r\n\r\n\t\tthis._signinGuestBtnDiv = ui.querySelector(\"#stscr-signinGuestBtnDiv\");\r\n\t\tthis._signinGuestBtnDiv.addEventListener(\"click\",\r\n\t\t\tthis._onSignInGuestClick);\r\n\r\n\r\n\t\tthis._parseQueryParams();\r\n\t\tthis._setupCommunities();\r\n\t\tthis._setUpIntroVideos();\r\n\t\t\r\n\t\tif (AppSettings.allowGuests){\r\n\t\t\tui.classList.add(\"showGuest\");\r\n\t\t\tthis._signinBtnDiv.innerText = \"Sign In\";\r\n\t\t}\r\n\t\t\r\n\t\tif (AppSettings.jumpToCheckout){\r\n\t\t\tthis._onSignInClick(null);\r\n\t\t}\r\n\t}\r\n\t\r\n\tprivate _ensureChrome(){\r\n\t\tif (!MediaRecorder.isTypeSupported(AppSettings.videoMimeCodecsString)){\r\n\t\t\tlet warning = document.querySelector(\"#stscr-chromiumWarning\") as\r\n\t\t\t\tHTMLDivElement;\r\n\t\t\twarning.style.display = \"block\";\r\n\t\t\t\r\n\t\t\tlet signinDiv = document.querySelector(\"#stscr-signinDiv\") as\r\n\t\t\t\tHTMLDivElement;\r\n\t\t\tsigninDiv.style.display = \"none\";\r\n\t\t}\r\n\t}\r\n\t\r\n\tprivate _parseQueryParams(){\r\n\t\tlet queryParams = HttpUtils.parseQueryString(window.location.search) as\r\n\t\t\tQueryParams;\r\n\t\t\r\n\t\twindow[\"params\"].queryParams = queryParams;\r\n\t\t\r\n\t\tif (Object.keys(queryParams).length > 0){\r\n\t\t\tlet newUrl = window.location.href.split(\"?\")[0];\r\n\t\t\twindow.history.replaceState({}, document.title, newUrl);\r\n\t\t}\r\n\t\tif (queryParams.mode === \"resetPassword\" ||\r\n\t\t\t\tqueryParams.mode === \"recoverEmail\" ||\r\n\t\t\t\tqueryParams.mode === \"verifyEmail\" ||\r\n\t\t\t\tqueryParams.skipToSignin === \"1\"){\r\n\t\t\tthis._onSignInClick(null);\r\n\t\t\tdocument.getElementById(\"stscr-appContainer\").scrollIntoView();\r\n\t\t}\r\n\t}\r\n\t\r\n\tprivate _setupCommunities():void {\r\n\t\tlet splide = new Splide(\".splide\", {\r\n\t\t\tpadding: \"45px\",\r\n\t\t\tautoWidth: true,\r\n\t\t\tgap: \"20px\",\r\n\t\t\tpagination: false,\r\n\t\t\t// type: \"loop\",\r\n\t\t\t// rewind: false\r\n\t\t});\r\n\t\tsplide.mount();\r\n\t\t\r\n\t\tlet communities = window[\"publicCommunityLIData\"] as\r\n\t\t\tPublicCommunityLIData[];\r\n\t\tif (communities.length > 0 && this._debugDuplicateCommunities){\r\n\t\t\tcommunities[0].name = \"The Bright Trumpets Community\";\r\n\t\t\twhile (communities.length < 10){\r\n\t\t\t\tcommunities.push(communities[0]);\r\n\t\t\t}\r\n\t\t}\r\n\t\tlet items:PublicCommunityLI[] = [];\r\n\t\tcommunities.forEach(data => {\r\n\t\t\tlet li = new PublicCommunityLI(data);\r\n\t\t\tsplide.add(li.ui);\r\n\t\t\titems.push(li);\r\n\t\t});\r\n\t\twindow[\"publicCommunityListItems\"] = items;\r\n\t\t\r\n\t\tif (communities.length > 0){\r\n\t\t\tlet coms = document.querySelector(\"#stscr-findACommunity\") as\r\n\t\t\t\tHTMLDivElement;\r\n\t\t\tcoms.style.display = \"block\";\r\n\t\t}\r\n\t}\r\n\t\r\n\tprivate _setUpIntroVideos():void {\r\n\t\tlet videoListItems = [];\r\n\r\n\t\tlet vidListDiv = document.querySelector(\"#stscr-iv-videoList\");\r\n\t\tlet introVidPlaceholderImg = document.querySelector(\r\n\t\t\t\"#stscr-iv-left img\") as HTMLImageElement;\r\n\t\tfor (let vid of introVids){\r\n\t\t\tif (!vid.indexPageTypes.includes(AppSettings.indexPageType)){\r\n\t\t\t\tcontinue;\r\n\t\t\t}\r\n\t\t\tlet li = Templates.createDiv(infoVideoLI);\r\n\t\t\tli.querySelector(\".videoLI-title\").innerHTML = vid.name;\r\n\t\t\tli.setAttribute(\"data-id\", vid.id);\r\n\t\t\tvidListDiv.append(li);\r\n\t\t\tli.addEventListener(\"click\", (e) => {\r\n\t\t\t\tvideoListItems.forEach(vli =>\r\n\t\t\t\t\tvli.classList.remove(\"currentVid\"));\r\n\t\t\t\t\r\n\t\t\t\tli.classList.add(\"currentVid\");\r\n\t\t\t\tintroVidPlaceholderImg.style.display = \"none\";\r\n\t\t\t\t\r\n\t\t\t\tlet iframe = document.querySelector(\"#stscr-iv-left iframe\") as\r\n\t\t\t\t\tHTMLIFrameElement;\r\n\t\t\t\tiframe.style.display = \"block\";\r\n\t\t\t\tiframe.src = \"https://www.youtube.com/embed/\" + vid.id +\r\n\t\t\t\t\t\"?autoplay=1\";\r\n\t\t\t});\r\n\t\t\tvideoListItems.push(li);\r\n\t\t}\r\n\r\n\t\tintroVidPlaceholderImg.addEventListener(\"click\", (e) => {\r\n\t\t\tvideoListItems[0].click();\r\n\t\t});\r\n\r\n\t\t// INFORMATION-SECTION VIDEOS\r\n\t\t\r\n\t\tlet videoItems = [... document.querySelectorAll(\".stscr-is-videoItem\")];\r\n\t\tvideoItems.forEach((vi) => {\r\n\t\t\tlet ytId = vi.getAttribute(\"data-vidId\");\r\n\t\t\tlet callback = (e) => {\r\n\t\t\t\tthis._onVideoItemClick(vi, ytId, callback);\r\n\t\t\t}\r\n\t\t\tvi.addEventListener(\"click\", callback);\r\n\t\t});\r\n\t}\r\n\t\r\n\tprivate _onVideoItemClick = (videoItem, youTubeId, callback) => {\r\n\t\tvideoItem.removeEventListener(\"click\", callback);\r\n\t\tlet ytPreviewImg = videoItem.querySelector(\"img\");\r\n\t\tytPreviewImg.remove();\r\n\t\tvideoItem.innerHTML = iframeString;\r\n\t\tlet iframe = videoItem.querySelector(\"iframe\");\r\n\t\tiframe.src = \"https://www.youtube.com/embed/\" + youTubeId +\r\n\t\t\t\"?autoplay=1\";\r\n\t}\r\n\t\r\n\tprivate _onSignInClick = (e:MouseEvent) => {\r\n\t\twindow[\"params\"].tryAsGuest = false;\r\n\t\tthis._signIn();\r\n\t}\r\n\t\r\n\tprivate _onSignInGuestClick = (e:MouseEvent) => {\r\n\t\twindow[\"params\"].tryAsGuest = true;\r\n\t\tthis._signIn();\r\n\t}\r\n\t\r\n\tprivate _signIn(){\r\n\t\tthis._signinBtnDiv.removeEventListener(\"click\", this._onSignInClick);\r\n\t\tthis._signinGuestBtnDiv.removeEventListener(\"click\",\r\n\t\t\tthis._onSignInGuestClick);\r\n\t\t\r\n\t\tlet signinDiv = document.getElementById(\"stscr-signinDiv\");\r\n\t\tsigninDiv.classList.add(\"hideSigninBtns\");\r\n\t\t\r\n\t\tlet busyDiv = document.querySelector(\"#stscr-signinBusyDiv\") as\r\n\t\t\tHTMLDivElement;\r\n\t\tbusyDiv.style.display = \"block\";\r\n\t\t\r\n\t\tlet script = document.createElement(\"script\");\r\n\t\tscript.type = \"text/javascript\";\r\n\t\tscript.src = window[\"params\"].resourcesUrl +\r\n\t\t\t`main.js?v=${window[\"params\"].appVersion}`;\r\n\t\tdocument.body.append(script);\r\n\t}\r\n\t\r\n}\r\n\r\n\r\n\r\nnew IndexPage();"],"names":["_createClass","Constructor","protoProps","staticProps","target","props","i","length","descriptor","enumerable","configurable","writable","Object","defineProperty","key","_defineProperties","prototype","MEDIA_PREFERS_REDUCED_MOTION","MOVING","SCROLLING","STATES","CREATED","MOUNTED","IDLE","DRAGGING","DESTROYED","empty","array","slice","arrayLike","start","end","Array","call","apply","func","bind","concat","arguments","nextTick","setTimeout","noop","raf","requestAnimationFrame","typeOf","type","subject","isObject","isNull","isArray","isFunction","isString","isUndefined","isHTMLElement","ownerDocument","defaultView","window","HTMLElement","e","toArray","value","forEach","values","iteratee","includes","indexOf","push","items","toggleClass","elm","classes","add","name","classList","addClass","split","append","parent","children","appendChild","before","nodes","ref","node","parentNode","insertBefore","matches","selector","children2","filter","child","firstElementChild","ownKeys","keys","forOwn","object","right","reverse","assign","source","merge","omit","removeAttribute","elms","attrs","attr","setAttribute","value2","String","create","tag","document","createElement","style","prop","getComputedStyle","display","display2","focus","preventScroll","getAttribute","hasClass","className","contains","rect","getBoundingClientRect","remove","removeChild","parseHtml","html","DOMParser","parseFromString","body","prevent","stopPropagation","preventDefault","stopImmediatePropagation","query","querySelector","queryAll","querySelectorAll","removeClass","timeOf","timeStamp","unit","PROJECT_CODE","DATA_ATTRIBUTE","assert","condition","message","Error","min","Math","max","floor","ceil","abs","approximatelyEqual","x","y","epsilon","between","number","exclusive","minimum","maximum","clamp","sign","format","string","replacements","replacement","replace","pad","ids","EventBinder","listeners","forEachEvent","targets","events","events2","eventNS","fragment","callback","options","event","namespace","isEventTarget","remover","removeEventListener","addEventListener","unbind","listener","dispatch","detail","bubbles","CustomEvent","createEvent","initCustomEvent","dispatchEvent","destroy","data","EVENT_MOUNTED","EVENT_READY","EVENT_MOVE","EVENT_MOVED","EVENT_CLICK","EVENT_ACTIVE","EVENT_INACTIVE","EVENT_VISIBLE","EVENT_HIDDEN","EVENT_REFRESH","EVENT_UPDATED","EVENT_RESIZE","EVENT_RESIZED","EVENT_SCROLL","EVENT_SCROLLED","EVENT_DESTROY","EVENT_ARROWS_MOUNTED","EVENT_NAVIGATION_MOUNTED","EVENT_AUTOPLAY_PLAY","EVENT_AUTOPLAY_PAUSE","EVENT_LAZYLOAD_LOADED","EVENT_SLIDE_KEYDOWN","EVENT_SHIFTED","EVENT_END_INDEX_CHANGED","EventInterface","Splide2","bus","createDocumentFragment","binder","on","join","off","emit","RequestInterval","interval","onInterval","onUpdate","limit","startTime","id","now","Date","rate","paused","count","update","pause","cancel","cancelAnimationFrame","resume","rewind","set","time","isPaused","ARROW","ARROW_LEFT","ARROW_RIGHT","ARROW_UP","ARROW_DOWN","TTB","ORIENTATION_MAP","width","left","X","Y","ArrowLeft","ArrowRight","ROLE","TAB_INDEX","ARIA_PREFIX","ARIA_CONTROLS","ARIA_CURRENT","ARIA_SELECTED","ARIA_LABEL","ARIA_LABELLEDBY","ARIA_HIDDEN","ARIA_ORIENTATION","ARIA_ROLEDESCRIPTION","ARIA_LIVE","ARIA_BUSY","ARIA_ATOMIC","ALL_ATTRIBUTES","CLASS_PREFIX","STATUS_CLASS_PREFIX","CLASS_ROOT","CLASS_TRACK","CLASS_LIST","CLASS_SLIDE","CLASS_CLONE","CLASS_CONTAINER","CLASS_ARROWS","CLASS_ARROW","CLASS_ARROW_PREV","CLASS_ARROW_NEXT","CLASS_PAGINATION","CLASS_PAGINATION_PAGE","CLASS_PROGRESS_BAR","CLASS_TOGGLE","CLASS_SR","CLASS_INITIALIZED","CLASS_ACTIVE","CLASS_PREV","CLASS_NEXT","CLASS_VISIBLE","CLASS_LOADING","CLASS_FOCUS_IN","CLASS_OVERFLOW","STATUS_CLASSES","CLASSES","slide","clone","arrows","arrow","prev","next","pagination","page","spinner","POINTER_DOWN_EVENTS","POINTER_MOVE_EVENTS","POINTER_UP_EVENTS","SLIDE","LOOP","FADE","Slide$1","index","slideIndex","destroyed","Components","root","isNavigation","updateOnMove","i18n","slideFocus","resolve","Direction","styles","label","isClone","container","initNavigation","controls","splides","map","Slide2","splide","Slides","getAt","slideX","onMove","curr","active","isActive","self","visible","is","trackRect","Elements","track","slideRect","isVisible","hidden","state","focusableNodes","activeElement","updateVisibility","cloneStatus","mount","slideLabel","useContainer","isWithin","from","distance","diff","INTERVAL_DATA_ATTRIBUTE","SCROLL_LISTENER_OPTIONS","passive","capture","NORMALIZATION_MAP","Spacebar","Right","Left","Up","Down","normalizeKey","KEYBOARD_EVENT","SRC_DATA_ATTRIBUTE","SRCSET_DATA_ATTRIBUTE","IMAGE_SELECTOR","TRIGGER_KEYS","ComponentConstructors","freeze","__proto__","Media","Components2","breakpoints","reducedMotion","queries","completely","register","options2","queryList","matchMedia","direction","merged","reduce","merged2","entry","refresh","opts","base","notify","getPrototypeOf","setup","isMin","mediaQuery","sort","n","m","enable","axisOnly","match","offset","toLowerCase","charAt","toUpperCase","orient","list","isUsingKey","_EventInterface","elements","slides","rootClasses","trackClasses","find","bar","toggle","prefix","role","tagName","carousel","init","getClasses","labelledby","closest","nodeType","parentElement","drag","_EventInterface2","_Components2$Elements","Slides2","forEach$1","Slide1","get","excludeClones","matcher","getIn","Controller","toIndex","hasFocus","perPage","images","img","getLength","isEnough","Layout","vertical","rootRect","overflow","_EventInterface3","_Components2$Elements2","styleSlides","cssPadding","resize","force","newRect","height","cssHeight","cssTrackHeight","gap","autoWidth","fixedWidth","cssSlideSize","fixedHeight","autoHeight","isOverflow","padding","heightRatio","listSize","slideSize","withoutGap","Slide","getGap","totalSize","sliderSize","parseFloat","getPadding","Clones","cloneCount","clones","remount","observe","computeCloneCount","isHead","cloneNode","cloneDeep","generate","clones2","fixedSize","Move","Transition","_EventInterface4","_Components2$Layout","_Components2$Directio","_Components2$Elements3","reposition","isBusy","Scroll","jump","translate","toPosition","position","preventLoop","destination","exceededMax","getEnd","shift","loop","backwards","excess","getLimit","size","getPosition","minDistance","Infinity","trimming","trimSpace","trim","move","dest","shifted","exceededLimit","exceededMin","endIndex","slideCount","perMove","_EventInterface5","_Components2$Slides","omitEnd","isLoop","isSlide","getNext","getAdjacent","getPrev","currIndex","prevIndex","onResized","computeDestIndex","snapPage","computeMovableDestIndex","toPage","setIndex","waitForTransition","go","control","allowSameIndex","_ref","indicator","parse","scroll","duration","snap","getIndex","toDest","Arrows","created","wrapperClasses","placeholder","wrapper","enabled","createArrow","prev2","arrowPath","nextIndex","prevLabel","last","nextLabel","first","disabled","Autoplay","hovered","focused","_EventInterface6","_Components2$Elements4","autoplay","stopped","play","resetProgress","stop","autoToggle","pauseOnHover","pauseOnFocus","listen","Cover","cover","cover2","src","_EventInterface8","friction","onScrolled","noConstrain","clear","noDistance","onEnd","to","t","easingFunc","pow","Drag","basePosition","baseEvent","prevBaseEvent","isFree","dragging","clickPrevented","_EventInterface9","_Components2$Directio2","exceeded","disable","onPointerDown","isTouch","isTouchEvent","target2","noDrag","button","onPointerMove","onPointerUp","save","cancelable","diffCoord","expired","diffTime","hasExceeded","isSliderDirection","thresholds","dragMinThreshold","isObj","mouse","touch","shouldStart","velocity","computeVelocity","flickPower","flickMaxPages","computeDestination","rewindByDrag","onClick","orthogonal","coordOf","getBaseEvent","changedTouches","TouchEvent","isDragging","Keyboard","_EventInterface10","keyboard","onKeydown","_disabled","LazyLoad","_EventInterface11","isSequential","lazyLoad","entries","srcset","loadNext","check","preloadPages","load","onLoad","Pagination","paginationClasses","dir","getDirection","nextPage","item","paginationDirection","_button","select","li","class","text","pageX","paginationKeyboard","createPagination","Sync","isParent","sync","Wheel","lastTime","onWheel","deltaY","_min","wheelMinThreshold","sleep","wheelSleep","releaseWheel","shouldPrevent","wheel","Live","live","sr","textContent","DEFAULTS","speed","easing","rewindSpeed","Fade","done","endCallback","transition","getSpeed","useScroll","_Splide","this","states","_o","_E","defaults","JSON","_proto","Extensions","_this","_C","_T","Component","component","_this$event","Splide","MAX_BITS","LITERALS","HEAP_SIZE","END_BLOCK","Z_STREAM_ERROR","Z_BUF_ERROR","extractArray","flatArray","fill","a","b","_dist_code","Tree","that","bi_reverse","code","len","res","build_tree","s","tree","dyn_tree","stree","stat_desc","static_tree","elems","max_code","heap_len","heap_max","heap","depth","opt_len","static_len","pqdownheap","extra","extra_bits","extra_base","max_length","h","bits","xbits","f","bl_count","gen_bitlen","next_code","gen_codes","StaticTree","_length_code","base_length","base_dist","d_code","dist","extra_lbits","extra_dbits","extra_blbits","bl_order","static_ltree","static_dtree","static_l_desc","static_d_desc","static_bl_desc","Config","good_length","max_lazy","nice_length","max_chain","config_table","z_errmsg","BUSY_STATE","FINISH_STATE","MAX_MATCH","MIN_LOOKAHEAD","smaller","tn2","tm2","Deflate","strm","status","pending_buf_size","last_flush","w_size","w_bits","w_mask","window_size","head","ins_h","hash_size","hash_bits","hash_mask","hash_shift","block_start","match_length","prev_match","match_available","strstart","match_start","lookahead","prev_length","max_chain_length","max_lazy_match","level","strategy","good_match","nice_match","dyn_ltree","dyn_dtree","bl_tree","l_desc","d_desc","bl_desc","l_buf","lit_bufsize","last_lit","d_buf","last_eob_len","bi_buf","bi_valid","init_block","scan_tree","curlen","prevlen","nextlen","max_count","min_count","REP_3_6","REPZ_3_10","REPZ_11_138","put_byte","p","pending_buf","pending","put_short","w","send_bits","val","send_code","c","c2","send_tree","bi_flush","_tr_tally","lc","out_length","in_length","dcode","compress_block","ltree","dtree","lx","bi_windup","_tr_stored_block","buf","stored_len","eof","header","subarray","copy_block","_tr_flush_block","opt_lenb","static_lenb","max_blindex","BL_CODES","build_bl_tree","lcodes","dcodes","blcodes","rank","send_all_trees","flush_block_only","flush_pending","fill_window","more","avail_in","read_buf","longest_match","cur_match","chain_length","scan","best_len","_nice_match","wmask","strend","scan_end1","scan_end","deflateReset","total_in","total_out","msg","pending_out","MIN_MATCH","lm_init","k","v","j","deflateInit","_level","_method","memLevel","_strategy","dstate","Uint8Array","deflateEnd","deflateParams","err","deflate","deflateSetDictionary","dictionary","dictLength","_strm","flush","level_flags","old_flush","bstate","next_out","next_in","Z_NEED_DICT","avail_out","max_start","max_block_size","deflate_stored","bflush","hash_head","deflate_fast","max_insert","deflate_slow","STATIC_TREES","ZStream","next_in_index","next_out_index","ZStream$1","ret","Z_OK","Z_STREAM_END","Z_DATA_ERROR","Z_MEM_ERROR","inflate_mask","MANY","fixed_tl","fixed_td","cplens","cplext","cpdist","cpdext","BMAX","InfTree","hn","r","u","huft_build","bindex","d","hp","g","l","mask","q","xp","z","initWorkArea","vsize","Int32Array","inflate_trees_bits","bb","tb","result","inflate_trees_dynamic","nl","nd","bl","bd","tl","td","inflate_trees_fixed","START","LEN","LENEXT","DIST","DISTEXT","COPY","LIT","WASH","END","BADCODE","InfCodes","mode","tree_index","need","lit","lbits","dbits","ltree_index","dtree_index","inflate_fast","tl_index","td_index","tp","tp_index","ml","md","tp_index_t_3","bitb","bitk","write","read","read_byte","proc","tindex","inflate_flush","free","border","TYPE","LENS","STORED","TABLE","BTREE","DTREE","CODES","DRY","DONELOCKS","BADBLOCKS","InfBlocks","blens","table","codes","hufts","inftree","reset","bl_","bd_","tl_","td_","set_dictionary","sync_point","BAD","mark","Inflate","inflateReset","istate","blocks","method","was","marker","wbits","inflateEnd","inflateInit","inflate","inflateSetDictionary","inflateSync","inflateSyncPoint","DEFAULT_CONFIGURATION","chunkSize","maxWorkers","navigator","hardwareConcurrency","terminateWorkerTimeout","useWebWorkers","workerScripts","undefined","config","configure","configuration","baseURL","application","annodex","bbolin","cap","dsptype","ecmascript","futuresplash","hta","javascript","m3g","mathematica","msaccess","msword","mxf","oda","ogg","pdf","postscript","rar","rtf","smil","xml","zip","applixware","exi","gxf","hyperstudio","ipfix","json","marc","mbox","mp21","mp4","onenote","oxps","pkcs10","pkcs8","pkixcmp","sdp","srgs","widget","winhlp","yang","envoy","fractals","olescript","audio","amr","basic","flac","midi","mpeg","mpegurl","adpcm","s3m","silk","webm","xm","mid","chemical","image","gif","ief","jpeg","pcx","png","tiff","bmp","cgm","g3fax","ktx","sgi","webp","pipeg","rfc822","model","iges","mesh","vrml","calendar","css","csv","h323","iuls","mathml","plain","richtext","scriptlet","texmacs","n3","sgml","troff","turtle","vcard","webviewhtml","video","avif","dl","dv","fli","gl","quicktime","h261","h263","h264","jpm","mj2","mimeTypes","hasOwnProperty","subtype","indexMimeType","bitArray","a1","a2","getPartial","_shiftRight","bitLength","partial","_end","round","carry","out","last2","shift2","pop","codec","bytes","fromBits","arr","byteLength","tmp","toBits","hash","_h","_buffer","_length","sha1","blockSize","_init","utf8String","ol","Uint32Array","_block","splice","finalize","_key","_f","_S","words","PBKDF2_ALGORITHM","iterations","_documentCurrentScript","URL","baseURI","href","error","createObjectURL","Blob","configureWebWorker","bufsize","uncompressedSize","onprogress","lastIndex","bufferIndex","bufferSize","buffers","chunk","nomoreinput","ConversionUtils","_ConversionUtils","getUint8ArrayFromArrayBuffer","buffer","getBlobFromArrayBuffer","getUint8ArrayFromBlob","blob","Promise","reject","getArrayBufferFromBinaryBlob","then","catch","getNumberArrayFromUint8Array","uint8Array","getStringFromUint8Array","TextDecoder","decode","getUint8ArrayFromString","TextEncoder","encode","getStringFromTextBlob","encoding","reader","FileReader","onload","_","onerror","ev","toString","readAsText","readAsArrayBuffer","JsonUtils","console","log","decodeAsList","decodeAsMapOfStringKeys","stringify","jsArrayToArray","el","StringUtils","obj","generateRandomString","characters","trunc","random","str","isEmpty","isNullOrEmpty","isNotNull","isNotEmpty","HttpUtils","_HttpUtils","url","userToken","responseType","request","XMLHttpRequest","open","setRequestHeader","send","getString","responseText","getArrayBuffer","response","getBinaryBlob","mediaType","ab","post","formData","encodedJson","parseQueryString","queryString","location","search","searchParams","URLSearchParams","params","BaseEvent","constructor","once","promise","originalLength","offAll","SealedEvent","createEmitter","publicListenersEvent","emitting","hadListeners","createEmitterWithBaseEvent","createEmitter2","definition","supportMap","sections","doInherit","newClass","baseClass","WebmBase","WebmUint","padHex","hex","WebmFloat","WebmContainer","WebmFile","setSource","fixWebmDuration","onloadend","file","fixDuration","toBlob","ex","updateBySource","updateByData","setData","substr","parseInt","getValue","setValue","getFloatArrayType","Float32Array","Float64Array","byteArray","floatArray","readByte","readUint","firstByte","info","ctr","section","idHex","writeUint","draft","flag","writeSections","content","contentLength","getSectionById","logger","segmentSection","infoSection","timeScaleSection","durationSection","mimeType","default","exports","module","ysFixWebmDuration","MediaFileUtils","getFileExtension","mimeCodecString","getMimeType","isMimeCodecSupported","Map","MediaRecorder","isTypeSupported","canPlayMimeCodec","MimeCodecsString","MimeCodecsString2","AssessmentInstrumentDO","assessmentType","transposition","minFreq","maxFreq","yinQuality","windowWidth","sampleRate","pRecMethod","pRecQuality","overSampTimes","requiredPitchesPerSecond","tuningWindow","ignoreOctave","checkNoteStartTimes","timeBucketLeft","timeBucketRight","minAmplPerc","psMinPitchStabilityThresh","psPitchesToConsider","psMinStablePitches","psMinTotalPitchJump","asMinAmplPercRise","asMaxAmplRiseTime","spMinTimeBetweenSplits","minTimeBetweenClaps","minAmplRatioToFloor","minConsecutiveQuietPeaks","minAmplSlopeScore","qNoteNudge","qNoteBucket","_MicDataNode","AudioWorkletNode","context","super","_micDataEmitter","_onProcessorMessage","workletRegistered","_context","micData","registerWorklet","micDataWorklet","audioWorklet","addModule","setWindowSize","windowSize","port","postMessage","onmessage","MicDataNode","MicOptions","channelCount","autoGainControl","echoCancellation","latency","noiseSuppression","toMap","deviceId","settings","VideoOptions","idealFrameRate","maxFrameRate","bitRate","recordingBlobSize","mimeCodecsString","ideal","frameRate","Device","MediaDeviceManagerEvent","MediaDeviceManager","_MediaDeviceManager","_micPermissionGranted","_cameraPermissionGranted","_isInitialized","_eventEmitter","_onDeviceChange","async","getDevices","micChanged","_currentMic","deviceAvailable","cameraChanged","_currentCamera","_dispatchDeviceChangeEvent","devices","_devices","currentMic","currentCamera","micPermissionGranted","cameraPermissionGranted","isMicReady","isCameraReady","isInitialized","_checkIfPermissionGranted","mediaDevices","initWithDefaultDevices","initMic","initCamera","getPermissions","micSuccess","setMic","cameraSuccess","setCamera","mic","camera","success","_createStreams","deviceObjects","enumerateDevices","dev","device","kind","isDefault","some","clearMic","clearCamera","stream","getUserMedia","tracks","getTracks","removeTrack","permissions","AudioOptions","_MicManager","createEmitter3","_recordingBufferSize","_isCapturing","_micOptions","_onMicData","_onMediaDeviceManagerEvent","includesVideo","killStream","_audioOptions","initMicMediaStream","micOptions","videoOptions","deviceManager","_setupWorklets","_videoOptions","_stream","MicManagerEvent","addFiltering","wasCapturing","startCapture","removeFiltering","stopCapture","_inputNode","createMediaStreamSource","_micDataNode","connect","_micMonitorOutput","disconnect","getNumAudioChannels","getAudioTracks","getSettings","audioContext","recordingBufferSize","audioOptions","isCapturing","micMonitorOutput","isStreamActive","micAudioTrack","useOldChromeSettings","MicManager","_PRec2Node","_pitchRecEmitter","createEmitter7","instrument","_instrument","pitchRec","pRec2Worklet","resetPRec","msReadingInterval","msAnalysisDuration","setInstrument","instDO","IndexPageType","PublicCommunityLIEventType","AppSettings","_jsParams","_isBot","test","userAgent","getJSParam","_isGuest","paramName","indexPageType","isBot","resourcesPath","pageUrl","serverRoot","videoEmbedId","soundTouchWorkletUrl","phazeWorkletUrl","signalSmithWorkletUrl","signalSmithIframeUrl","allowGuests","isGuest","jumpToCheckout","queryParams","checkout","stripePublicKey","externalUrl","videoMimeCodecsString","videoWebmAvc1","videoMimeType","audioMimeCodecsString","audioWebmOpus","audioMimeType","useIdxDb","Templates","htmlString","template","innerHTML","createDiv","confirmationBox","loadingOverlay","discordVoiceDialog","PublicCommunityLI","_emitter","_onJoinClick","PublicCommunityLIEvent","joinRequest","showJoinDiv","_communityLI","hideJoinDiv","showGuestVisitDiv","_joinDiv","ui","communityLITemplate","_titleDiv","_descriptionDiv","_agesDiv","publicDescription","publicAges","introVids","indexPageTypes","IndexPage","_debugDuplicateCommunities","_onVideoItemClick","videoItem","youTubeId","_onSignInClick","tryAsGuest","_signIn","_onSignInGuestClick","_ensureChrome","main","recorder","getIndexPageUi","_signinBtnDiv","_signinGuestBtnDiv","_parseQueryParams","_setupCommunities","_setUpIntroVideos","innerText","newUrl","history","replaceState","title","skipToSignin","getElementById","scrollIntoView","communities","videoListItems","vidListDiv","introVidPlaceholderImg","vid","vli","iframe","click","vi","ytId","script","resourcesUrl","appVersion"],"mappings":"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AK,EAAG,GAAI,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,EAAG,EAAG,IAAK,EAC/I,GAAI,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,GAAI,EAC7I,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAChJ,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EACjJ,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAC7I,EAAG,IAAK,EAAG,IAAK,EAAG,EAAG,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAC/I,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,GAAI,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,EAAG,IAAK,E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,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,GAAI,EAAG,IAAK,GAAI,EAC9I,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAC9I,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAC/I,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,IAAK,EAAG,EAAG,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAC/I,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EACjJ,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,GAAI,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,GAC/I,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAC7I,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,GAAI,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAC/I,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAC7I,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAChJ,EAAG,EAAG,GAAI,GAAI,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAC/I,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAC/I,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,IAAK,EAAG,EAAG,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAC/I,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAC9I,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,GAAI,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAC9I,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAC/I,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,GAAI,EAChJ,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EACjJ,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EACjJ,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,GAAI,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAChJ,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EACjJ,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,IAAK,EAAG,EAAG,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EACjJ,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAC/I,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,GAAI,EAAG,IAAK,GAAI,EAAG,GAAI,EACjJ,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EACjJ,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EACjJ,GAAI,EAAG,EAAG,GAAI,GAAI,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EACjJ,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EACjJ,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,GAAI,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,IAAK,EAAG,EAAG,GAAI,EAAG,EAAG,IAAK,GAAI,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EAAG,GAAI,EAAG,EACjJ,IAAK,EAAG,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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,12]}