@everymatrix/casino-jackpot-banner 1.32.13 → 1.32.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,660 @@
1
+ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).app=e()}(this,(function(){"use strict";function t(){}function e(t){return t()}function r(){return Object.create(null)}function n(t){t.forEach(e)}function i(t){return"function"==typeof t}function o(t,e){return t!=t?e==e:t!==e||t&&"object"==typeof t||"function"==typeof t}let s,a;function c(t,e){return s||(s=document.createElement("a")),s.href=e,t===s.href}function l(t,e){t.appendChild(e)}function u(t,e,r){t.insertBefore(e,r||null)}function h(t){t.parentNode&&t.parentNode.removeChild(t)}function p(t){return document.createElement(t)}function f(t){return document.createTextNode(t)}function d(){return f(" ")}function m(t,e,r){null==r?t.removeAttribute(e):t.getAttribute(e)!==r&&t.setAttribute(e,r)}function y(t,e){e=""+e,t.data!==e&&(t.data=e)}function b(t,e,r,n){null==r?t.style.removeProperty(e):t.style.setProperty(e,r,n?"important":"")}function g(t){const e={};for(const r of t)e[r.name]=r.value;return e}function v(t){a=t}const E=[],_=[];let T=[];const w=[],A=Promise.resolve();let B=!1;function H(t){T.push(t)}
2
+ // flush() calls callbacks in this order:
3
+ // 1. All beforeUpdate callbacks, in order: parents before children
4
+ // 2. All bind:this callbacks, in reverse order: children before parents.
5
+ // 3. All afterUpdate callbacks, in order: parents before children. EXCEPT
6
+ // for afterUpdates called during the initial onMount, which are called in
7
+ // reverse order: children before parents.
8
+ // Since callbacks might update component values, which could trigger another
9
+ // call to flush(), the following steps guard against this:
10
+ // 1. During beforeUpdate, any updated components will be added to the
11
+ // dirty_components array and will cause a reentrant call to flush(). Because
12
+ // the flush index is kept outside the function, the reentrant call will pick
13
+ // up where the earlier call left off and go through all dirty components. The
14
+ // current_component value is saved and restored so that the reentrant call will
15
+ // not interfere with the "parent" flush() call.
16
+ // 2. bind:this callbacks cannot trigger new flush() calls.
17
+ // 3. During afterUpdate, any updated components will NOT have their afterUpdate
18
+ // callback called a second time; the seen_callbacks set, outside the flush()
19
+ // function, guarantees this behavior.
20
+ const S=new Set;let P=0;// Do *not* move this inside the flush() function
21
+ function L(){
22
+ // Do not reenter flush while dirty components are updated, as this can
23
+ // result in an infinite loop. Instead, let the inner flush handle it.
24
+ // Reentrancy is ok afterwards for bindings etc.
25
+ if(0!==P)return;const t=a;do{
26
+ // first, call beforeUpdate functions
27
+ // and update components
28
+ try{for(;P<E.length;){const t=E[P];P++,v(t),C(t.$$)}}catch(t){
29
+ // reset dirty state to not end up in a deadlocked state and then rethrow
30
+ throw E.length=0,P=0,t}for(v(null),E.length=0,P=0;_.length;)_.pop()();
31
+ // then, once components are updated, call
32
+ // afterUpdate functions. This may cause
33
+ // subsequent updates...
34
+ for(let t=0;t<T.length;t+=1){const e=T[t];S.has(e)||(
35
+ // ...so guard against infinite loops
36
+ S.add(e),e())}T.length=0}while(E.length);for(;w.length;)w.pop()();B=!1,S.clear(),v(t)}function C(t){if(null!==t.fragment){t.update(),n(t.before_update);const e=t.dirty;t.dirty=[-1],t.fragment&&t.fragment.p(t.ctx,e),t.after_update.forEach(H)}}
37
+ /**
38
+ * Useful for example to execute remaining `afterUpdate` callbacks before executing `destroy`.
39
+ */const O=new Set;function x(t,e){const r=t.$$;null!==r.fragment&&(!function(t){const e=[],r=[];T.forEach((n=>-1===t.indexOf(n)?e.push(n):r.push(n))),r.forEach((t=>t())),T=e}(r.after_update),n(r.on_destroy),r.fragment&&r.fragment.d(e),
40
+ // TODO null out other refs, including component.$$ (but need to
41
+ // preserve final state?)
42
+ r.on_destroy=r.fragment=null,r.ctx=[])}function I(t,e){-1===t.$$.dirty[0]&&(E.push(t),B||(B=!0,A.then(L)),t.$$.dirty.fill(0)),t.$$.dirty[e/31|0]|=1<<e%31}function N(o,s,c,l,u,p,f,d=[-1]){const m=a;v(o);const y=o.$$={fragment:null,ctx:[],
43
+ // state
44
+ props:p,update:t,not_equal:u,bound:r(),
45
+ // lifecycle
46
+ on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(s.context||(m?m.$$.context:[])),
47
+ // everything else
48
+ callbacks:r(),dirty:d,skip_bound:!1,root:s.target||m.$$.root};f&&f(y.root);let b=!1;if(y.ctx=c?c(o,s.props||{},((t,e,...r)=>{const n=r.length?r[0]:e;return y.ctx&&u(y.ctx[t],y.ctx[t]=n)&&(!y.skip_bound&&y.bound[t]&&y.bound[t](n),b&&I(o,t)),e})):[],y.update(),b=!0,n(y.before_update),
49
+ // `false` as a special case of no DOM component
50
+ y.fragment=!!l&&l(y.ctx),s.target){if(s.hydrate){const t=function(t){return Array.from(t.childNodes)}(s.target);
51
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
52
+ y.fragment&&y.fragment.l(t),t.forEach(h)}else
53
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
54
+ y.fragment&&y.fragment.c();s.intro&&((g=o.$$.fragment)&&g.i&&(O.delete(g),g.i(E))),function(t,r,o,s){const{fragment:a,after_update:c}=t.$$;a&&a.m(r,o),s||
55
+ // onMount happens before the initial afterUpdate
56
+ H((()=>{const r=t.$$.on_mount.map(e).filter(i);
57
+ // if the component was destroyed immediately
58
+ // it will update the `$$.on_destroy` reference to `null`.
59
+ // the destructured on_destroy may still reference to the old array
60
+ t.$$.on_destroy?t.$$.on_destroy.push(...r):
61
+ // Edge case - component was destroyed immediately,
62
+ // most likely as a result of a binding initialising
63
+ n(r),t.$$.on_mount=[]})),c.forEach(H)}(o,s.target,s.anchor,s.customElement),L()}var g,E;v(m)}let R;"function"==typeof HTMLElement&&(R=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:t}=this.$$;this.$$.on_disconnect=t.map(e).filter(i);
64
+ // @ts-ignore todo: improve typings
65
+ for(const t in this.$$.slotted)
66
+ // @ts-ignore todo: improve typings
67
+ this.appendChild(this.$$.slotted[t])}attributeChangedCallback(t,e,r){this[t]=r}disconnectedCallback(){n(this.$$.on_disconnect)}$destroy(){x(this,1),this.$destroy=t}$on(e,r){
68
+ // TODO should this delegate to addEventListener?
69
+ if(!i(r))return t;const n=this.$$.callbacks[e]||(this.$$.callbacks[e]=[]);return n.push(r),()=>{const t=n.indexOf(r);-1!==t&&n.splice(t,1)}}$set(t){var e;this.$$set&&(e=t,0!==Object.keys(e).length)&&(this.$$.skip_bound=!0,this.$$set(t),this.$$.skip_bound=!1)}})
70
+ /* eslint-disable no-prototype-builtins */;var M="undefined"!=typeof globalThis&&globalThis||"undefined"!=typeof self&&self||
71
+ // eslint-disable-next-line no-undef
72
+ "undefined"!=typeof global&&global||{},U="URLSearchParams"in M,$="Symbol"in M&&"iterator"in Symbol,D="FileReader"in M&&"Blob"in M&&function(){try{return new Blob,!0}catch(t){return!1}}(),k="FormData"in M,G="ArrayBuffer"in M;if(G)var j=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],F=ArrayBuffer.isView||function(t){return t&&j.indexOf(Object.prototype.toString.call(t))>-1};function V(t){if("string"!=typeof t&&(t=String(t)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(t)||""===t)throw new TypeError('Invalid character in header field name: "'+t+'"');return t.toLowerCase()}function W(t){return"string"!=typeof t&&(t=String(t)),t}
73
+ // Build a destructive iterator for the value list
74
+ function X(t){var e={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return $&&(e[Symbol.iterator]=function(){return e}),e}function z(t){this.map={},t instanceof z?t.forEach((function(t,e){this.append(e,t)}),this):Array.isArray(t)?t.forEach((function(t){if(2!=t.length)throw new TypeError("Headers constructor: expected name/value pair to be length 2, found"+t.length);this.append(t[0],t[1])}),this):t&&Object.getOwnPropertyNames(t).forEach((function(e){this.append(e,t[e])}),this)}function K(t){if(!t._noBody)return t.bodyUsed?Promise.reject(new TypeError("Already read")):void(t.bodyUsed=!0)}function Y(t){return new Promise((function(e,r){t.onload=function(){e(t.result)},t.onerror=function(){r(t.error)}}))}function Z(t){var e=new FileReader,r=Y(e);return e.readAsArrayBuffer(t),r}function q(t){if(t.slice)return t.slice(0);var e=new Uint8Array(t.byteLength);return e.set(new Uint8Array(t)),e.buffer}function J(){return this.bodyUsed=!1,this._initBody=function(t){var e;
75
+ /*
76
+ fetch-mock wraps the Response object in an ES6 Proxy to
77
+ provide useful test harness features such as flush. However, on
78
+ ES5 browsers without fetch or Proxy support pollyfills must be used;
79
+ the proxy-pollyfill is unable to proxy an attribute unless it exists
80
+ on the object before the Proxy is created. This change ensures
81
+ Response.bodyUsed exists on the instance, while maintaining the
82
+ semantic of setting Request.bodyUsed in the constructor before
83
+ _initBody is called.
84
+ */
85
+ // eslint-disable-next-line no-self-assign
86
+ this.bodyUsed=this.bodyUsed,this._bodyInit=t,t?"string"==typeof t?this._bodyText=t:D&&Blob.prototype.isPrototypeOf(t)?this._bodyBlob=t:k&&FormData.prototype.isPrototypeOf(t)?this._bodyFormData=t:U&&URLSearchParams.prototype.isPrototypeOf(t)?this._bodyText=t.toString():G&&D&&((e=t)&&DataView.prototype.isPrototypeOf(e))?(this._bodyArrayBuffer=q(t.buffer),
87
+ // IE 10-11 can't handle a DataView body.
88
+ this._bodyInit=new Blob([this._bodyArrayBuffer])):G&&(ArrayBuffer.prototype.isPrototypeOf(t)||F(t))?this._bodyArrayBuffer=q(t):this._bodyText=t=Object.prototype.toString.call(t):(this._noBody=!0,this._bodyText=""),this.headers.get("content-type")||("string"==typeof t?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):U&&URLSearchParams.prototype.isPrototypeOf(t)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},D&&(this.blob=function(){var t=K(this);if(t)return t;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))}),this.arrayBuffer=function(){if(this._bodyArrayBuffer){var t=K(this);return t||(ArrayBuffer.isView(this._bodyArrayBuffer)?Promise.resolve(this._bodyArrayBuffer.buffer.slice(this._bodyArrayBuffer.byteOffset,this._bodyArrayBuffer.byteOffset+this._bodyArrayBuffer.byteLength)):Promise.resolve(this._bodyArrayBuffer))}if(D)return this.blob().then(Z);throw new Error("could not read as ArrayBuffer")},this.text=function(){var t,e,r,n,i,o=K(this);if(o)return o;if(this._bodyBlob)return t=this._bodyBlob,e=new FileReader,r=Y(e),n=/charset=([A-Za-z0-9_-]+)/.exec(t.type),i=n?n[1]:"utf-8",e.readAsText(t,i),r;if(this._bodyArrayBuffer)return Promise.resolve(function(t){for(var e=new Uint8Array(t),r=new Array(e.length),n=0;n<e.length;n++)r[n]=String.fromCharCode(e[n]);return r.join("")}(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},k&&(this.formData=function(){return this.text().then(et)}),this.json=function(){return this.text().then(JSON.parse)},this}
89
+ // HTTP methods whose capitalization should be normalized
90
+ z.prototype.append=function(t,e){t=V(t),e=W(e);var r=this.map[t];this.map[t]=r?r+", "+e:e},z.prototype.delete=function(t){delete this.map[V(t)]},z.prototype.get=function(t){return t=V(t),this.has(t)?this.map[t]:null},z.prototype.has=function(t){return this.map.hasOwnProperty(V(t))},z.prototype.set=function(t,e){this.map[V(t)]=W(e)},z.prototype.forEach=function(t,e){for(var r in this.map)this.map.hasOwnProperty(r)&&t.call(e,this.map[r],r,this)},z.prototype.keys=function(){var t=[];return this.forEach((function(e,r){t.push(r)})),X(t)},z.prototype.values=function(){var t=[];return this.forEach((function(e){t.push(e)})),X(t)},z.prototype.entries=function(){var t=[];return this.forEach((function(e,r){t.push([r,e])})),X(t)},$&&(z.prototype[Symbol.iterator]=z.prototype.entries);var Q=["CONNECT","DELETE","GET","HEAD","OPTIONS","PATCH","POST","PUT","TRACE"];function tt(t,e){if(!(this instanceof tt))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');var r,n,i=(e=e||{}).body;if(t instanceof tt){if(t.bodyUsed)throw new TypeError("Already read");this.url=t.url,this.credentials=t.credentials,e.headers||(this.headers=new z(t.headers)),this.method=t.method,this.mode=t.mode,this.signal=t.signal,i||null==t._bodyInit||(i=t._bodyInit,t.bodyUsed=!0)}else this.url=String(t);if(this.credentials=e.credentials||this.credentials||"same-origin",!e.headers&&this.headers||(this.headers=new z(e.headers)),this.method=(r=e.method||this.method||"GET",n=r.toUpperCase(),Q.indexOf(n)>-1?n:r),this.mode=e.mode||this.mode||null,this.signal=e.signal||this.signal||function(){if("AbortController"in M)return(new AbortController).signal}(),this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&i)throw new TypeError("Body not allowed for GET or HEAD requests");if(this._initBody(i),!("GET"!==this.method&&"HEAD"!==this.method||"no-store"!==e.cache&&"no-cache"!==e.cache)){
91
+ // Search for a '_' parameter in the query string
92
+ var o=/([?&])_=[^&]*/;if(o.test(this.url))
93
+ // If it already exists then set the value with the current time
94
+ this.url=this.url.replace(o,"$1_="+(new Date).getTime());else{this.url+=(/\?/.test(this.url)?"&":"?")+"_="+(new Date).getTime()}}}function et(t){var e=new FormData;return t.trim().split("&").forEach((function(t){if(t){var r=t.split("="),n=r.shift().replace(/\+/g," "),i=r.join("=").replace(/\+/g," ");e.append(decodeURIComponent(n),decodeURIComponent(i))}})),e}function rt(t,e){if(!(this instanceof rt))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');if(e||(e={}),this.type="default",this.status=void 0===e.status?200:e.status,this.status<200||this.status>599)throw new RangeError("Failed to construct 'Response': The status provided (0) is outside the range [200, 599].");this.ok=this.status>=200&&this.status<300,this.statusText=void 0===e.statusText?"":""+e.statusText,this.headers=new z(e.headers),this.url=e.url||"",this._initBody(t)}tt.prototype.clone=function(){return new tt(this,{body:this._bodyInit})},J.call(tt.prototype),J.call(rt.prototype),rt.prototype.clone=function(){return new rt(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new z(this.headers),url:this.url})},rt.error=function(){var t=new rt(null,{status:200,statusText:""});return t.status=0,t.type="error",t};var nt=[301,302,303,307,308];rt.redirect=function(t,e){if(-1===nt.indexOf(e))throw new RangeError("Invalid status code");return new rt(null,{status:e,headers:{location:t}})};var it=M.DOMException;try{new it}catch(t){(it=function(t,e){this.message=t,this.name=e;var r=Error(t);this.stack=r.stack}).prototype=Object.create(Error.prototype),it.prototype.constructor=it}function ot(t,e){return new Promise((function(r,n){var i=new tt(t,e);if(i.signal&&i.signal.aborted)return n(new it("Aborted","AbortError"));var o=new XMLHttpRequest;function s(){o.abort()}if(o.onload=function(){var t,e,n={statusText:o.statusText,headers:(t=o.getAllResponseHeaders()||"",e=new z,
95
+ // Avoiding split via regex to work around a common IE11 bug with the core-js 3.6.0 regex polyfill
96
+ // https://github.com/github/fetch/issues/748
97
+ // https://github.com/zloirock/core-js/issues/751
98
+ t.replace(/\r?\n[\t ]+/g," ").split("\r").map((function(t){return 0===t.indexOf("\n")?t.substr(1,t.length):t})).forEach((function(t){var r=t.split(":"),n=r.shift().trim();if(n){var i=r.join(":").trim();try{e.append(n,i)}catch(t){console.warn("Response "+t.message)}}})),e)};
99
+ // This check if specifically for when a user fetches a file locally from the file system
100
+ // Only if the status is out of a normal range
101
+ i.url.startsWith("file://")&&(o.status<200||o.status>599)?n.status=200:n.status=o.status,n.url="responseURL"in o?o.responseURL:n.headers.get("X-Request-URL");var s="response"in o?o.response:o.responseText;setTimeout((function(){r(new rt(s,n))}),0)},o.onerror=function(){setTimeout((function(){n(new TypeError("Network request failed"))}),0)},o.ontimeout=function(){setTimeout((function(){n(new TypeError("Network request timed out"))}),0)},o.onabort=function(){setTimeout((function(){n(new it("Aborted","AbortError"))}),0)},o.open(i.method,function(t){try{return""===t&&M.location.href?M.location.href:t}catch(e){return t}}(i.url),!0),"include"===i.credentials?o.withCredentials=!0:"omit"===i.credentials&&(o.withCredentials=!1),"responseType"in o&&(D?o.responseType="blob":G&&(o.responseType="arraybuffer")),e&&"object"==typeof e.headers&&!(e.headers instanceof z||M.Headers&&e.headers instanceof M.Headers)){var a=[];Object.getOwnPropertyNames(e.headers).forEach((function(t){a.push(V(t)),o.setRequestHeader(t,W(e.headers[t]))})),i.headers.forEach((function(t,e){-1===a.indexOf(e)&&o.setRequestHeader(e,t)}))}else i.headers.forEach((function(t,e){o.setRequestHeader(e,t)}));i.signal&&(i.signal.addEventListener("abort",s),o.onreadystatechange=function(){
102
+ // DONE (success or failure)
103
+ 4===o.readyState&&i.signal.removeEventListener("abort",s)}),o.send(void 0===i._bodyInit?null:i._bodyInit)}))}ot.polyfill=!0,M.fetch||(M.fetch=ot,M.Headers=z,M.Request=tt,M.Response=rt),
104
+ // the whatwg-fetch polyfill installs the fetch() function
105
+ // on the global object (window or self)
106
+ // Return that as the export for use in Webpack, Browserify etc.
107
+ self.fetch.bind(self);
108
+ /******************************************************************************
109
+ Copyright (c) Microsoft Corporation.
110
+
111
+ Permission to use, copy, modify, and/or distribute this software for any
112
+ purpose with or without fee is hereby granted.
113
+
114
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
115
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
116
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
117
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
118
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
119
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
120
+ PERFORMANCE OF THIS SOFTWARE.
121
+ ***************************************************************************** */
122
+ /* global Reflect, Promise, SuppressedError, Symbol */
123
+ var st=function(t,e){return st=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r])},st(t,e)};function at(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function r(){this.constructor=t}st(t,e),t.prototype=null===e?Object.create(e):(r.prototype=e.prototype,new r)}function ct(t){var e="function"==typeof Symbol&&Symbol.iterator,r=e&&t[e],n=0;if(r)return r.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function lt(t,e){var r="function"==typeof Symbol&&t[Symbol.iterator];if(!r)return t;var n,i,o=r.call(t),s=[];try{for(;(void 0===e||e-- >0)&&!(n=o.next()).done;)s.push(n.value)}catch(t){i={error:t}}finally{try{n&&!n.done&&(r=o.return)&&r.call(o)}finally{if(i)throw i.error}}return s}function ut(t,e,r){if(r||2===arguments.length)for(var n,i=0,o=e.length;i<o;i++)!n&&i in e||(n||(n=Array.prototype.slice.call(e,0,i)),n[i]=e[i]);return t.concat(n||Array.prototype.slice.call(e))}function ht(t){return"function"==typeof t}function pt(t){var e=t((function(t){Error.call(t),t.stack=(new Error).stack}));return e.prototype=Object.create(Error.prototype),e.prototype.constructor=e,e}"function"==typeof SuppressedError&&SuppressedError;var ft=pt((function(t){return function(e){t(this),this.message=e?e.length+" errors occurred during unsubscription:\n"+e.map((function(t,e){return e+1+") "+t.toString()})).join("\n "):"",this.name="UnsubscriptionError",this.errors=e}}));function dt(t,e){if(t){var r=t.indexOf(e);0<=r&&t.splice(r,1)}}var mt=function(){function t(t){this.initialTeardown=t,this.closed=!1,this._parentage=null,this._finalizers=null}return t.prototype.unsubscribe=function(){var t,e,r,n,i;if(!this.closed){this.closed=!0;var o=this._parentage;if(o)if(this._parentage=null,Array.isArray(o))try{for(var s=ct(o),a=s.next();!a.done;a=s.next()){a.value.remove(this)}}catch(e){t={error:e}}finally{try{a&&!a.done&&(e=s.return)&&e.call(s)}finally{if(t)throw t.error}}else o.remove(this);var c=this.initialTeardown;if(ht(c))try{c()}catch(t){i=t instanceof ft?t.errors:[t]}var l=this._finalizers;if(l){this._finalizers=null;try{for(var u=ct(l),h=u.next();!h.done;h=u.next()){var p=h.value;try{gt(p)}catch(t){i=null!=i?i:[],t instanceof ft?i=ut(ut([],lt(i)),lt(t.errors)):i.push(t)}}}catch(t){r={error:t}}finally{try{h&&!h.done&&(n=u.return)&&n.call(u)}finally{if(r)throw r.error}}}if(i)throw new ft(i)}},t.prototype.add=function(e){var r;if(e&&e!==this)if(this.closed)gt(e);else{if(e instanceof t){if(e.closed||e._hasParent(this))return;e._addParent(this)}(this._finalizers=null!==(r=this._finalizers)&&void 0!==r?r:[]).push(e)}},t.prototype._hasParent=function(t){var e=this._parentage;return e===t||Array.isArray(e)&&e.includes(t)},t.prototype._addParent=function(t){var e=this._parentage;this._parentage=Array.isArray(e)?(e.push(t),e):e?[e,t]:t},t.prototype._removeParent=function(t){var e=this._parentage;e===t?this._parentage=null:Array.isArray(e)&&dt(e,t)},t.prototype.remove=function(e){var r=this._finalizers;r&&dt(r,e),e instanceof t&&e._removeParent(this)},t.EMPTY=function(){var e=new t;return e.closed=!0,e}(),t}(),yt=mt.EMPTY;function bt(t){return t instanceof mt||t&&"closed"in t&&ht(t.remove)&&ht(t.add)&&ht(t.unsubscribe)}function gt(t){ht(t)?t():t.unsubscribe()}var vt={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},Et={setTimeout:function(t,e){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var i=Et.delegate;return(null==i?void 0:i.setTimeout)?i.setTimeout.apply(i,ut([t,e],lt(r))):setTimeout.apply(void 0,ut([t,e],lt(r)))},clearTimeout:function(t){var e=Et.delegate;return((null==e?void 0:e.clearTimeout)||clearTimeout)(t)},delegate:void 0};function _t(){}var Tt=null;function wt(t){if(vt.useDeprecatedSynchronousErrorHandling){var e=!Tt;if(e&&(Tt={errorThrown:!1,error:null}),t(),e){var r=Tt,n=r.errorThrown,i=r.error;if(Tt=null,n)throw i}}else t()}var At=function(t){function e(e){var r=t.call(this)||this;return r.isStopped=!1,e?(r.destination=e,bt(e)&&e.add(r)):r.destination=Ct,r}return at(e,t),e.create=function(t,e,r){return new Pt(t,e,r)},e.prototype.next=function(t){this.isStopped||this._next(t)},e.prototype.error=function(t){this.isStopped||(this.isStopped=!0,this._error(t))},e.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},e.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,t.prototype.unsubscribe.call(this),this.destination=null)},e.prototype._next=function(t){this.destination.next(t)},e.prototype._error=function(t){try{this.destination.error(t)}finally{this.unsubscribe()}},e.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},e}(mt),Bt=Function.prototype.bind;function Ht(t,e){return Bt.call(t,e)}var St=function(){function t(t){this.partialObserver=t}return t.prototype.next=function(t){var e=this.partialObserver;if(e.next)try{e.next(t)}catch(t){Lt(t)}},t.prototype.error=function(t){var e=this.partialObserver;if(e.error)try{e.error(t)}catch(t){Lt(t)}else Lt(t)},t.prototype.complete=function(){var t=this.partialObserver;if(t.complete)try{t.complete()}catch(t){Lt(t)}},t}(),Pt=function(t){function e(e,r,n){var i,o,s=t.call(this)||this;ht(e)||!e?i={next:null!=e?e:void 0,error:null!=r?r:void 0,complete:null!=n?n:void 0}:s&&vt.useDeprecatedNextContext?((o=Object.create(e)).unsubscribe=function(){return s.unsubscribe()},i={next:e.next&&Ht(e.next,o),error:e.error&&Ht(e.error,o),complete:e.complete&&Ht(e.complete,o)}):i=e;return s.destination=new St(i),s}return at(e,t),e}(At);function Lt(t){var e;e=t,Et.setTimeout((function(){throw e}))}var Ct={closed:!0,next:_t,error:function(t){throw t},complete:_t},Ot="function"==typeof Symbol&&Symbol.observable||"@@observable";function xt(t){return t}var It=function(){function t(t){t&&(this._subscribe=t)}return t.prototype.lift=function(e){var r=new t;return r.source=this,r.operator=e,r},t.prototype.subscribe=function(t,e,r){var n,i=this,o=(n=t)&&n instanceof At||function(t){return t&&ht(t.next)&&ht(t.error)&&ht(t.complete)}(n)&&bt(n)?t:new Pt(t,e,r);return wt((function(){var t=i,e=t.operator,r=t.source;o.add(e?e.call(o,r):r?i._subscribe(o):i._trySubscribe(o))})),o},t.prototype._trySubscribe=function(t){try{return this._subscribe(t)}catch(e){t.error(e)}},t.prototype.forEach=function(t,e){var r=this;return new(e=Nt(e))((function(e,n){var i=new Pt({next:function(e){try{t(e)}catch(t){n(t),i.unsubscribe()}},error:n,complete:e});r.subscribe(i)}))},t.prototype._subscribe=function(t){var e;return null===(e=this.source)||void 0===e?void 0:e.subscribe(t)},t.prototype[Ot]=function(){return this},t.prototype.pipe=function(){for(var t,e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return(0===(t=e).length?xt:1===t.length?t[0]:function(e){return t.reduce((function(t,e){return e(t)}),e)})(this)},t.prototype.toPromise=function(t){var e=this;return new(t=Nt(t))((function(t,r){var n;e.subscribe((function(t){return n=t}),(function(t){return r(t)}),(function(){return t(n)}))}))},t.create=function(e){return new t(e)},t}();function Nt(t){var e;return null!==(e=null!=t?t:vt.Promise)&&void 0!==e?e:Promise}var Rt=pt((function(t){return function(){t(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}})),Mt=function(t){function e(){var e=t.call(this)||this;return e.closed=!1,e.currentObservers=null,e.observers=[],e.isStopped=!1,e.hasError=!1,e.thrownError=null,e}return at(e,t),e.prototype.lift=function(t){var e=new Ut(this,this);return e.operator=t,e},e.prototype._throwIfClosed=function(){if(this.closed)throw new Rt},e.prototype.next=function(t){var e=this;wt((function(){var r,n;if(e._throwIfClosed(),!e.isStopped){e.currentObservers||(e.currentObservers=Array.from(e.observers));try{for(var i=ct(e.currentObservers),o=i.next();!o.done;o=i.next()){o.value.next(t)}}catch(t){r={error:t}}finally{try{o&&!o.done&&(n=i.return)&&n.call(i)}finally{if(r)throw r.error}}}}))},e.prototype.error=function(t){var e=this;wt((function(){if(e._throwIfClosed(),!e.isStopped){e.hasError=e.isStopped=!0,e.thrownError=t;for(var r=e.observers;r.length;)r.shift().error(t)}}))},e.prototype.complete=function(){var t=this;wt((function(){if(t._throwIfClosed(),!t.isStopped){t.isStopped=!0;for(var e=t.observers;e.length;)e.shift().complete()}}))},e.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(e.prototype,"observed",{get:function(){var t;return(null===(t=this.observers)||void 0===t?void 0:t.length)>0},enumerable:!1,configurable:!0}),e.prototype._trySubscribe=function(e){return this._throwIfClosed(),t.prototype._trySubscribe.call(this,e)},e.prototype._subscribe=function(t){return this._throwIfClosed(),this._checkFinalizedStatuses(t),this._innerSubscribe(t)},e.prototype._innerSubscribe=function(t){var e=this,r=this,n=r.hasError,i=r.isStopped,o=r.observers;return n||i?yt:(this.currentObservers=null,o.push(t),new mt((function(){e.currentObservers=null,dt(o,t)})))},e.prototype._checkFinalizedStatuses=function(t){var e=this,r=e.hasError,n=e.thrownError,i=e.isStopped;r?t.error(n):i&&t.complete()},e.prototype.asObservable=function(){var t=new It;return t.source=this,t},e.create=function(t,e){return new Ut(t,e)},e}(It),Ut=function(t){function e(e,r){var n=t.call(this)||this;return n.destination=e,n.source=r,n}return at(e,t),e.prototype.next=function(t){var e,r;null===(r=null===(e=this.destination)||void 0===e?void 0:e.next)||void 0===r||r.call(e,t)},e.prototype.error=function(t){var e,r;null===(r=null===(e=this.destination)||void 0===e?void 0:e.error)||void 0===r||r.call(e,t)},e.prototype.complete=function(){var t,e;null===(e=null===(t=this.destination)||void 0===t?void 0:t.complete)||void 0===e||e.call(t)},e.prototype._subscribe=function(t){var e,r;return null!==(r=null===(e=this.source)||void 0===e?void 0:e.subscribe(t))&&void 0!==r?r:yt},e}(Mt),$t={now:function(){return($t.delegate||Date).now()},delegate:void 0},Dt=function(t){function e(e,r,n){void 0===e&&(e=1/0),void 0===r&&(r=1/0),void 0===n&&(n=$t);var i=t.call(this)||this;return i._bufferSize=e,i._windowTime=r,i._timestampProvider=n,i._buffer=[],i._infiniteTimeWindow=!0,i._infiniteTimeWindow=r===1/0,i._bufferSize=Math.max(1,e),i._windowTime=Math.max(1,r),i}return at(e,t),e.prototype.next=function(e){var r=this,n=r.isStopped,i=r._buffer,o=r._infiniteTimeWindow,s=r._timestampProvider,a=r._windowTime;n||(i.push(e),!o&&i.push(s.now()+a)),this._trimBuffer(),t.prototype.next.call(this,e)},e.prototype._subscribe=function(t){this._throwIfClosed(),this._trimBuffer();for(var e=this._innerSubscribe(t),r=this._infiniteTimeWindow,n=this._buffer.slice(),i=0;i<n.length&&!t.closed;i+=r?1:2)t.next(n[i]);return this._checkFinalizedStatuses(t),e},e.prototype._trimBuffer=function(){var t=this,e=t._bufferSize,r=t._timestampProvider,n=t._buffer,i=t._infiniteTimeWindow,o=(i?1:2)*e;if(e<1/0&&o<n.length&&n.splice(0,n.length-o),!i){for(var s=r.now(),a=0,c=1;c<n.length&&n[c]<=s;c+=2)a=c;a&&n.splice(0,a+1)}},e}(Mt);let kt=[],Gt={};
124
+ /**
125
+ * @name topic
126
+ * @description A small wrapper over the rxjs to offer the topic method on top of it
127
+ * @param event [String] Event name
128
+ * @param step [String] How many values to be buffed for new subscribers - default 0
129
+ * @returns ReplaySubject
130
+ */
131
+ const jt=[];
132
+ /**
133
+ * Create a `Writable` store that allows both updating and reading by subscription.
134
+ * @param {*=}value initial value
135
+ * @param {StartStopNotifier=} start
136
+ */
137
+ function Ft(e,r=t){let n;const i=new Set;function s(t){if(o(e,t)&&(e=t,n)){// store is ready
138
+ const t=!jt.length;for(const t of i)t[1](),jt.push(t,e);if(t){for(let t=0;t<jt.length;t+=2)jt[t][0](jt[t+1]);jt.length=0}}}return{set:s,update:function(t){s(t(e))},subscribe:function(o,a=t){const c=[o,a];return i.add(c),1===i.size&&(n=r(s)||t),o(e),()=>{i.delete(c),0===i.size&&n&&(n(),n=null)}}}}function Vt(e,r,o){const s=!Array.isArray(e),a=s?[e]:e,c=r.length<2;return l=e=>{let o=!1;const l=[];let u=0,h=t;const p=()=>{if(u)return;h();const n=r(s?l[0]:l,e);c?e(n):h=i(n)?n:t},f=a.map(((e,r)=>function(e,...r){if(null==e)return t;const n=e.subscribe(...r);return n.unsubscribe?()=>n.unsubscribe():n}(e,(t=>{l[r]=t,u&=~(1<<r),o&&p()}),(()=>{u|=1<<r}))));return o=!0,p(),function(){n(f),h(),
139
+ // We need to set this to false because callbacks can still happen despite having unsubscribed:
140
+ // Callbacks might already be placed in the queue which doesn't know it should no longer
141
+ // invoke this derived store.
142
+ o=!1}},{subscribe:Ft(o,l).subscribe};
143
+ /**
144
+ * Creates a `Readable` store that allows reading by subscription.
145
+ * @param value initial value
146
+ * @param {StartStopNotifier} [start]
147
+ */
148
+ var l}var Wt=function(t){return function(t){return!!t&&"object"==typeof t}(t)&&!function(t){var e=Object.prototype.toString.call(t);return"[object RegExp]"===e||"[object Date]"===e||function(t){return t.$$typeof===Xt}(t)}
149
+ // see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25
150
+ (t)};var Xt="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function zt(t,e){return!1!==e.clone&&e.isMergeableObject(t)?Jt((r=t,Array.isArray(r)?[]:{}),t,e):t;var r}function Kt(t,e,r){return t.concat(e).map((function(t){return zt(t,r)}))}function Yt(t){return Object.keys(t).concat(function(t){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(t).filter((function(e){return Object.propertyIsEnumerable.call(t,e)})):[]}(t))}function Zt(t,e){try{return e in t}catch(t){return!1}}
151
+ // Protects from prototype poisoning and unexpected merging up the prototype chain.
152
+ function qt(t,e,r){var n={};return r.isMergeableObject(t)&&Yt(t).forEach((function(e){n[e]=zt(t[e],r)})),Yt(e).forEach((function(i){(function(t,e){return Zt(t,e)&&!(Object.hasOwnProperty.call(t,e)&&Object.propertyIsEnumerable.call(t,e));// and also unsafe if they're nonenumerable.
153
+ })(t,i)||(Zt(t,i)&&r.isMergeableObject(e[i])?n[i]=function(t,e){if(!e.customMerge)return Jt;var r=e.customMerge(t);return"function"==typeof r?r:Jt}(i,r)(t[i],e[i],r):n[i]=zt(e[i],r))})),n}function Jt(t,e,r){(r=r||{}).arrayMerge=r.arrayMerge||Kt,r.isMergeableObject=r.isMergeableObject||Wt,
154
+ // cloneUnlessOtherwiseSpecified is added to `options` so that custom arrayMerge()
155
+ // implementations can use it. The caller may not replace it.
156
+ r.cloneUnlessOtherwiseSpecified=zt;var n=Array.isArray(e);return n===Array.isArray(t)?n?r.arrayMerge(t,e,r):qt(t,e,r):zt(e,r)}Jt.all=function(t,e){if(!Array.isArray(t))throw new Error("first argument should be an array");return t.reduce((function(t,r){return Jt(t,r,e)}),{})};var Qt=Jt,te=function(t,e){return te=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r])},te(t,e)};function ee(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function r(){this.constructor=t}te(t,e),t.prototype=null===e?Object.create(e):(r.prototype=e.prototype,new r)}var re,ne,ie,oe=function(){return oe=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var i in e=arguments[r])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t},oe.apply(this,arguments)};function se(t,e,r){if(r||2===arguments.length)for(var n,i=0,o=e.length;i<o;i++)!n&&i in e||(n||(n=Array.prototype.slice.call(e,0,i)),n[i]=e[i]);return t.concat(n||Array.prototype.slice.call(e))}
157
+ /**
158
+ * Type Guards
159
+ */
160
+ function ae(t){return t.type===ne.literal}function ce(t){return t.type===ne.argument}function le(t){return t.type===ne.number}function ue(t){return t.type===ne.date}function he(t){return t.type===ne.time}function pe(t){return t.type===ne.select}function fe(t){return t.type===ne.plural}function de(t){return t.type===ne.pound}function me(t){return t.type===ne.tag}function ye(t){return!(!t||"object"!=typeof t||t.type!==ie.number)}function be(t){return!(!t||"object"!=typeof t||t.type!==ie.dateTime)}
161
+ // @generated from regex-gen.ts
162
+ "function"==typeof SuppressedError&&SuppressedError,function(t){
163
+ /** Argument is unclosed (e.g. `{0`) */
164
+ t[t.EXPECT_ARGUMENT_CLOSING_BRACE=1]="EXPECT_ARGUMENT_CLOSING_BRACE",
165
+ /** Argument is empty (e.g. `{}`). */
166
+ t[t.EMPTY_ARGUMENT=2]="EMPTY_ARGUMENT",
167
+ /** Argument is malformed (e.g. `{foo!}``) */
168
+ t[t.MALFORMED_ARGUMENT=3]="MALFORMED_ARGUMENT",
169
+ /** Expect an argument type (e.g. `{foo,}`) */
170
+ t[t.EXPECT_ARGUMENT_TYPE=4]="EXPECT_ARGUMENT_TYPE",
171
+ /** Unsupported argument type (e.g. `{foo,foo}`) */
172
+ t[t.INVALID_ARGUMENT_TYPE=5]="INVALID_ARGUMENT_TYPE",
173
+ /** Expect an argument style (e.g. `{foo, number, }`) */
174
+ t[t.EXPECT_ARGUMENT_STYLE=6]="EXPECT_ARGUMENT_STYLE",
175
+ /** The number skeleton is invalid. */
176
+ t[t.INVALID_NUMBER_SKELETON=7]="INVALID_NUMBER_SKELETON",
177
+ /** The date time skeleton is invalid. */
178
+ t[t.INVALID_DATE_TIME_SKELETON=8]="INVALID_DATE_TIME_SKELETON",
179
+ /** Exepct a number skeleton following the `::` (e.g. `{foo, number, ::}`) */
180
+ t[t.EXPECT_NUMBER_SKELETON=9]="EXPECT_NUMBER_SKELETON",
181
+ /** Exepct a date time skeleton following the `::` (e.g. `{foo, date, ::}`) */
182
+ t[t.EXPECT_DATE_TIME_SKELETON=10]="EXPECT_DATE_TIME_SKELETON",
183
+ /** Unmatched apostrophes in the argument style (e.g. `{foo, number, 'test`) */
184
+ t[t.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE=11]="UNCLOSED_QUOTE_IN_ARGUMENT_STYLE",
185
+ /** Missing select argument options (e.g. `{foo, select}`) */
186
+ t[t.EXPECT_SELECT_ARGUMENT_OPTIONS=12]="EXPECT_SELECT_ARGUMENT_OPTIONS",
187
+ /** Expecting an offset value in `plural` or `selectordinal` argument (e.g `{foo, plural, offset}`) */
188
+ t[t.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE=13]="EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE",
189
+ /** Offset value in `plural` or `selectordinal` is invalid (e.g. `{foo, plural, offset: x}`) */
190
+ t[t.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE=14]="INVALID_PLURAL_ARGUMENT_OFFSET_VALUE",
191
+ /** Expecting a selector in `select` argument (e.g `{foo, select}`) */
192
+ t[t.EXPECT_SELECT_ARGUMENT_SELECTOR=15]="EXPECT_SELECT_ARGUMENT_SELECTOR",
193
+ /** Expecting a selector in `plural` or `selectordinal` argument (e.g `{foo, plural}`) */
194
+ t[t.EXPECT_PLURAL_ARGUMENT_SELECTOR=16]="EXPECT_PLURAL_ARGUMENT_SELECTOR",
195
+ /** Expecting a message fragment after the `select` selector (e.g. `{foo, select, apple}`) */
196
+ t[t.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT=17]="EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT",
197
+ /**
198
+ * Expecting a message fragment after the `plural` or `selectordinal` selector
199
+ * (e.g. `{foo, plural, one}`)
200
+ */
201
+ t[t.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT=18]="EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT",
202
+ /** Selector in `plural` or `selectordinal` is malformed (e.g. `{foo, plural, =x {#}}`) */
203
+ t[t.INVALID_PLURAL_ARGUMENT_SELECTOR=19]="INVALID_PLURAL_ARGUMENT_SELECTOR",
204
+ /**
205
+ * Duplicate selectors in `plural` or `selectordinal` argument.
206
+ * (e.g. {foo, plural, one {#} one {#}})
207
+ */
208
+ t[t.DUPLICATE_PLURAL_ARGUMENT_SELECTOR=20]="DUPLICATE_PLURAL_ARGUMENT_SELECTOR",
209
+ /** Duplicate selectors in `select` argument.
210
+ * (e.g. {foo, select, apple {apple} apple {apple}})
211
+ */
212
+ t[t.DUPLICATE_SELECT_ARGUMENT_SELECTOR=21]="DUPLICATE_SELECT_ARGUMENT_SELECTOR",
213
+ /** Plural or select argument option must have `other` clause. */
214
+ t[t.MISSING_OTHER_CLAUSE=22]="MISSING_OTHER_CLAUSE",
215
+ /** The tag is malformed. (e.g. `<bold!>foo</bold!>) */
216
+ t[t.INVALID_TAG=23]="INVALID_TAG",
217
+ /** The tag name is invalid. (e.g. `<123>foo</123>`) */
218
+ t[t.INVALID_TAG_NAME=25]="INVALID_TAG_NAME",
219
+ /** The closing tag does not match the opening tag. (e.g. `<bold>foo</italic>`) */
220
+ t[t.UNMATCHED_CLOSING_TAG=26]="UNMATCHED_CLOSING_TAG",
221
+ /** The opening tag has unmatched closing tag. (e.g. `<bold>foo`) */
222
+ t[t.UNCLOSED_TAG=27]="UNCLOSED_TAG"}(re||(re={})),function(t){
223
+ /**
224
+ * Raw text
225
+ */
226
+ t[t.literal=0]="literal",
227
+ /**
228
+ * Variable w/o any format, e.g `var` in `this is a {var}`
229
+ */
230
+ t[t.argument=1]="argument",
231
+ /**
232
+ * Variable w/ number format
233
+ */
234
+ t[t.number=2]="number",
235
+ /**
236
+ * Variable w/ date format
237
+ */
238
+ t[t.date=3]="date",
239
+ /**
240
+ * Variable w/ time format
241
+ */
242
+ t[t.time=4]="time",
243
+ /**
244
+ * Variable w/ select format
245
+ */
246
+ t[t.select=5]="select",
247
+ /**
248
+ * Variable w/ plural format
249
+ */
250
+ t[t.plural=6]="plural",
251
+ /**
252
+ * Only possible within plural argument.
253
+ * This is the `#` symbol that will be substituted with the count.
254
+ */
255
+ t[t.pound=7]="pound",
256
+ /**
257
+ * XML-like tag
258
+ */
259
+ t[t.tag=8]="tag"}(ne||(ne={})),function(t){t[t.number=0]="number",t[t.dateTime=1]="dateTime"}(ie||(ie={}));var ge=/[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/,ve=/(?:[Eec]{1,6}|G{1,5}|[Qq]{1,5}|(?:[yYur]+|U{1,5})|[ML]{1,5}|d{1,2}|D{1,3}|F{1}|[abB]{1,5}|[hkHK]{1,2}|w{1,2}|W{1}|m{1,2}|s{1,2}|[zZOvVxX]{1,4})(?=([^']*'[^']*')*[^']*$)/g;
260
+ /**
261
+ * https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table
262
+ * Credit: https://github.com/caridy/intl-datetimeformat-pattern/blob/master/index.js
263
+ * with some tweaks
264
+ */
265
+ /**
266
+ * Parse Date time skeleton into Intl.DateTimeFormatOptions
267
+ * Ref: https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table
268
+ * @public
269
+ * @param skeleton skeleton string
270
+ */
271
+ function Ee(t){var e={};return t.replace(ve,(function(t){var r=t.length;switch(t[0]){
272
+ // Era
273
+ case"G":e.era=4===r?"long":5===r?"narrow":"short";break;
274
+ // Year
275
+ case"y":e.year=2===r?"2-digit":"numeric";break;case"Y":case"u":case"U":case"r":throw new RangeError("`Y/u/U/r` (year) patterns are not supported, use `y` instead");
276
+ // Quarter
277
+ case"q":case"Q":throw new RangeError("`q/Q` (quarter) patterns are not supported");
278
+ // Month
279
+ case"M":case"L":e.month=["numeric","2-digit","short","long","narrow"][r-1];break;
280
+ // Week
281
+ case"w":case"W":throw new RangeError("`w/W` (week) patterns are not supported");case"d":e.day=["numeric","2-digit"][r-1];break;case"D":case"F":case"g":throw new RangeError("`D/F/g` (day) patterns are not supported, use `d` instead");
282
+ // Weekday
283
+ case"E":e.weekday=4===r?"short":5===r?"narrow":"short";break;case"e":if(r<4)throw new RangeError("`e..eee` (weekday) patterns are not supported");e.weekday=["short","long","narrow","short"][r-4];break;case"c":if(r<4)throw new RangeError("`c..ccc` (weekday) patterns are not supported");e.weekday=["short","long","narrow","short"][r-4];break;
284
+ // Period
285
+ case"a":// AM, PM
286
+ e.hour12=!0;break;case"b":// am, pm, noon, midnight
287
+ case"B":// flexible day periods
288
+ throw new RangeError("`b/B` (period) patterns are not supported, use `a` instead");
289
+ // Hour
290
+ case"h":e.hourCycle="h12",e.hour=["numeric","2-digit"][r-1];break;case"H":e.hourCycle="h23",e.hour=["numeric","2-digit"][r-1];break;case"K":e.hourCycle="h11",e.hour=["numeric","2-digit"][r-1];break;case"k":e.hourCycle="h24",e.hour=["numeric","2-digit"][r-1];break;case"j":case"J":case"C":throw new RangeError("`j/J/C` (hour) patterns are not supported, use `h/H/K/k` instead");
291
+ // Minute
292
+ case"m":e.minute=["numeric","2-digit"][r-1];break;
293
+ // Second
294
+ case"s":e.second=["numeric","2-digit"][r-1];break;case"S":case"A":throw new RangeError("`S/A` (second) patterns are not supported, use `s` instead");
295
+ // Zone
296
+ case"z":// 1..3, 4: specific non-location format
297
+ e.timeZoneName=r<4?"short":"long";break;case"Z":// 1..3, 4, 5: The ISO8601 varios formats
298
+ case"O":// 1, 4: miliseconds in day short, long
299
+ case"v":// 1, 4: generic non-location format
300
+ case"V":// 1, 2, 3, 4: time zone ID or city
301
+ case"X":// 1, 2, 3, 4: The ISO8601 varios formats
302
+ case"x":// 1, 2, 3, 4: The ISO8601 varios formats
303
+ throw new RangeError("`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead")}return""})),e}
304
+ // @generated from regex-gen.ts
305
+ var _e=/[\t-\r \x85\u200E\u200F\u2028\u2029]/i;var Te=/^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g,we=/^(@+)?(\+|#+)?[rs]?$/g,Ae=/(\*)(0+)|(#+)(0+)|(0+)/g,Be=/^(0+)$/;function He(t){var e={};return"r"===t[t.length-1]?e.roundingPriority="morePrecision":"s"===t[t.length-1]&&(e.roundingPriority="lessPrecision"),t.replace(we,(function(t,r,n){
306
+ // @@@ case
307
+ return"string"!=typeof n?(e.minimumSignificantDigits=r.length,e.maximumSignificantDigits=r.length):"+"===n?e.minimumSignificantDigits=r.length:"#"===r[0]?e.maximumSignificantDigits=r.length:(e.minimumSignificantDigits=r.length,e.maximumSignificantDigits=r.length+("string"==typeof n?n.length:0)),""})),e}function Se(t){switch(t){case"sign-auto":return{signDisplay:"auto"};case"sign-accounting":case"()":return{currencySign:"accounting"};case"sign-always":case"+!":return{signDisplay:"always"};case"sign-accounting-always":case"()!":return{signDisplay:"always",currencySign:"accounting"};case"sign-except-zero":case"+?":return{signDisplay:"exceptZero"};case"sign-accounting-except-zero":case"()?":return{signDisplay:"exceptZero",currencySign:"accounting"};case"sign-never":case"+_":return{signDisplay:"never"}}}function Pe(t){
308
+ // Engineering
309
+ var e;if("E"===t[0]&&"E"===t[1]?(e={notation:"engineering"},t=t.slice(2)):"E"===t[0]&&(e={notation:"scientific"},t=t.slice(1)),e){var r=t.slice(0,2);if("+!"===r?(e.signDisplay="always",t=t.slice(2)):"+?"===r&&(e.signDisplay="exceptZero",t=t.slice(2)),!Be.test(t))throw new Error("Malformed concise eng/scientific notation");e.minimumIntegerDigits=t.length}return e}function Le(t){var e=Se(t);return e||{}}
310
+ /**
311
+ * https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md#skeleton-stems-and-options
312
+ */function Ce(t){for(var e={},r=0,n=t;r<n.length;r++){var i=n[r];switch(i.stem){case"percent":case"%":e.style="percent";continue;case"%x100":e.style="percent",e.scale=100;continue;case"currency":e.style="currency",e.currency=i.options[0];continue;case"group-off":case",_":e.useGrouping=!1;continue;case"precision-integer":case".":e.maximumFractionDigits=0;continue;case"measure-unit":case"unit":e.style="unit",e.unit=i.options[0].replace(/^(.*?)-/,"");continue;case"compact-short":case"K":e.notation="compact",e.compactDisplay="short";continue;case"compact-long":case"KK":e.notation="compact",e.compactDisplay="long";continue;case"scientific":e=oe(oe(oe({},e),{notation:"scientific"}),i.options.reduce((function(t,e){return oe(oe({},t),Le(e))}),{}));continue;case"engineering":e=oe(oe(oe({},e),{notation:"engineering"}),i.options.reduce((function(t,e){return oe(oe({},t),Le(e))}),{}));continue;case"notation-simple":e.notation="standard";continue;
313
+ // https://github.com/unicode-org/icu/blob/master/icu4c/source/i18n/unicode/unumberformatter.h
314
+ case"unit-width-narrow":e.currencyDisplay="narrowSymbol",e.unitDisplay="narrow";continue;case"unit-width-short":e.currencyDisplay="code",e.unitDisplay="short";continue;case"unit-width-full-name":e.currencyDisplay="name",e.unitDisplay="long";continue;case"unit-width-iso-code":e.currencyDisplay="symbol";continue;case"scale":e.scale=parseFloat(i.options[0]);continue;
315
+ // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#integer-width
316
+ case"integer-width":if(i.options.length>1)throw new RangeError("integer-width stems only accept a single optional option");i.options[0].replace(Ae,(function(t,r,n,i,o,s){if(r)e.minimumIntegerDigits=n.length;else{if(i&&o)throw new Error("We currently do not support maximum integer digits");if(s)throw new Error("We currently do not support exact integer digits")}return""}));continue}
317
+ // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#integer-width
318
+ if(Be.test(i.stem))e.minimumIntegerDigits=i.stem.length;else if(Te.test(i.stem)){
319
+ // Precision
320
+ // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#fraction-precision
321
+ // precision-integer case
322
+ if(i.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");i.stem.replace(Te,(function(t,r,n,i,o,s){
323
+ // .000* case (before ICU67 it was .000+)
324
+ return"*"===n?e.minimumFractionDigits=r.length:i&&"#"===i[0]?e.maximumFractionDigits=i.length:o&&s?(e.minimumFractionDigits=o.length,e.maximumFractionDigits=o.length+s.length):(e.minimumFractionDigits=r.length,e.maximumFractionDigits=r.length),""}));var o=i.options[0];
325
+ // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#trailing-zero-display
326
+ "w"===o?e=oe(oe({},e),{trailingZeroDisplay:"stripIfInteger"}):o&&(e=oe(oe({},e),He(o)))}
327
+ // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#significant-digits-precision
328
+ else if(we.test(i.stem))e=oe(oe({},e),He(i.stem));else{var s=Se(i.stem);s&&(e=oe(oe({},e),s));var a=Pe(i.stem);a&&(e=oe(oe({},e),a))}}return e}
329
+ // @generated from time-data-gen.ts
330
+ // prettier-ignore
331
+ var Oe,xe={AX:["H"],BQ:["H"],CP:["H"],CZ:["H"],DK:["H"],FI:["H"],ID:["H"],IS:["H"],ML:["H"],NE:["H"],RU:["H"],SE:["H"],SJ:["H"],SK:["H"],AS:["h","H"],BT:["h","H"],DJ:["h","H"],ER:["h","H"],GH:["h","H"],IN:["h","H"],LS:["h","H"],PG:["h","H"],PW:["h","H"],SO:["h","H"],TO:["h","H"],VU:["h","H"],WS:["h","H"],"001":["H","h"],AL:["h","H","hB"],TD:["h","H","hB"],"ca-ES":["H","h","hB"],CF:["H","h","hB"],CM:["H","h","hB"],"fr-CA":["H","h","hB"],"gl-ES":["H","h","hB"],"it-CH":["H","h","hB"],"it-IT":["H","h","hB"],LU:["H","h","hB"],NP:["H","h","hB"],PF:["H","h","hB"],SC:["H","h","hB"],SM:["H","h","hB"],SN:["H","h","hB"],TF:["H","h","hB"],VA:["H","h","hB"],CY:["h","H","hb","hB"],GR:["h","H","hb","hB"],CO:["h","H","hB","hb"],DO:["h","H","hB","hb"],KP:["h","H","hB","hb"],KR:["h","H","hB","hb"],NA:["h","H","hB","hb"],PA:["h","H","hB","hb"],PR:["h","H","hB","hb"],VE:["h","H","hB","hb"],AC:["H","h","hb","hB"],AI:["H","h","hb","hB"],BW:["H","h","hb","hB"],BZ:["H","h","hb","hB"],CC:["H","h","hb","hB"],CK:["H","h","hb","hB"],CX:["H","h","hb","hB"],DG:["H","h","hb","hB"],FK:["H","h","hb","hB"],GB:["H","h","hb","hB"],GG:["H","h","hb","hB"],GI:["H","h","hb","hB"],IE:["H","h","hb","hB"],IM:["H","h","hb","hB"],IO:["H","h","hb","hB"],JE:["H","h","hb","hB"],LT:["H","h","hb","hB"],MK:["H","h","hb","hB"],MN:["H","h","hb","hB"],MS:["H","h","hb","hB"],NF:["H","h","hb","hB"],NG:["H","h","hb","hB"],NR:["H","h","hb","hB"],NU:["H","h","hb","hB"],PN:["H","h","hb","hB"],SH:["H","h","hb","hB"],SX:["H","h","hb","hB"],TA:["H","h","hb","hB"],ZA:["H","h","hb","hB"],"af-ZA":["H","h","hB","hb"],AR:["H","h","hB","hb"],CL:["H","h","hB","hb"],CR:["H","h","hB","hb"],CU:["H","h","hB","hb"],EA:["H","h","hB","hb"],"es-BO":["H","h","hB","hb"],"es-BR":["H","h","hB","hb"],"es-EC":["H","h","hB","hb"],"es-ES":["H","h","hB","hb"],"es-GQ":["H","h","hB","hb"],"es-PE":["H","h","hB","hb"],GT:["H","h","hB","hb"],HN:["H","h","hB","hb"],IC:["H","h","hB","hb"],KG:["H","h","hB","hb"],KM:["H","h","hB","hb"],LK:["H","h","hB","hb"],MA:["H","h","hB","hb"],MX:["H","h","hB","hb"],NI:["H","h","hB","hb"],PY:["H","h","hB","hb"],SV:["H","h","hB","hb"],UY:["H","h","hB","hb"],JP:["H","h","K"],AD:["H","hB"],AM:["H","hB"],AO:["H","hB"],AT:["H","hB"],AW:["H","hB"],BE:["H","hB"],BF:["H","hB"],BJ:["H","hB"],BL:["H","hB"],BR:["H","hB"],CG:["H","hB"],CI:["H","hB"],CV:["H","hB"],DE:["H","hB"],EE:["H","hB"],FR:["H","hB"],GA:["H","hB"],GF:["H","hB"],GN:["H","hB"],GP:["H","hB"],GW:["H","hB"],HR:["H","hB"],IL:["H","hB"],IT:["H","hB"],KZ:["H","hB"],MC:["H","hB"],MD:["H","hB"],MF:["H","hB"],MQ:["H","hB"],MZ:["H","hB"],NC:["H","hB"],NL:["H","hB"],PM:["H","hB"],PT:["H","hB"],RE:["H","hB"],RO:["H","hB"],SI:["H","hB"],SR:["H","hB"],ST:["H","hB"],TG:["H","hB"],TR:["H","hB"],WF:["H","hB"],YT:["H","hB"],BD:["h","hB","H"],PK:["h","hB","H"],AZ:["H","hB","h"],BA:["H","hB","h"],BG:["H","hB","h"],CH:["H","hB","h"],GE:["H","hB","h"],LI:["H","hB","h"],ME:["H","hB","h"],RS:["H","hB","h"],UA:["H","hB","h"],UZ:["H","hB","h"],XK:["H","hB","h"],AG:["h","hb","H","hB"],AU:["h","hb","H","hB"],BB:["h","hb","H","hB"],BM:["h","hb","H","hB"],BS:["h","hb","H","hB"],CA:["h","hb","H","hB"],DM:["h","hb","H","hB"],"en-001":["h","hb","H","hB"],FJ:["h","hb","H","hB"],FM:["h","hb","H","hB"],GD:["h","hb","H","hB"],GM:["h","hb","H","hB"],GU:["h","hb","H","hB"],GY:["h","hb","H","hB"],JM:["h","hb","H","hB"],KI:["h","hb","H","hB"],KN:["h","hb","H","hB"],KY:["h","hb","H","hB"],LC:["h","hb","H","hB"],LR:["h","hb","H","hB"],MH:["h","hb","H","hB"],MP:["h","hb","H","hB"],MW:["h","hb","H","hB"],NZ:["h","hb","H","hB"],SB:["h","hb","H","hB"],SG:["h","hb","H","hB"],SL:["h","hb","H","hB"],SS:["h","hb","H","hB"],SZ:["h","hb","H","hB"],TC:["h","hb","H","hB"],TT:["h","hb","H","hB"],UM:["h","hb","H","hB"],US:["h","hb","H","hB"],VC:["h","hb","H","hB"],VG:["h","hb","H","hB"],VI:["h","hb","H","hB"],ZM:["h","hb","H","hB"],BO:["H","hB","h","hb"],EC:["H","hB","h","hb"],ES:["H","hB","h","hb"],GQ:["H","hB","h","hb"],PE:["H","hB","h","hb"],AE:["h","hB","hb","H"],"ar-001":["h","hB","hb","H"],BH:["h","hB","hb","H"],DZ:["h","hB","hb","H"],EG:["h","hB","hb","H"],EH:["h","hB","hb","H"],HK:["h","hB","hb","H"],IQ:["h","hB","hb","H"],JO:["h","hB","hb","H"],KW:["h","hB","hb","H"],LB:["h","hB","hb","H"],LY:["h","hB","hb","H"],MO:["h","hB","hb","H"],MR:["h","hB","hb","H"],OM:["h","hB","hb","H"],PH:["h","hB","hb","H"],PS:["h","hB","hb","H"],QA:["h","hB","hb","H"],SA:["h","hB","hb","H"],SD:["h","hB","hb","H"],SY:["h","hB","hb","H"],TN:["h","hB","hb","H"],YE:["h","hB","hb","H"],AF:["H","hb","hB","h"],LA:["H","hb","hB","h"],CN:["H","hB","hb","h"],LV:["H","hB","hb","h"],TL:["H","hB","hb","h"],"zu-ZA":["H","hB","hb","h"],CD:["hB","H"],IR:["hB","H"],"hi-IN":["hB","h","H"],"kn-IN":["hB","h","H"],"ml-IN":["hB","h","H"],"te-IN":["hB","h","H"],KH:["hB","h","H","hb"],"ta-IN":["hB","h","hb","H"],BN:["hb","hB","h","H"],MY:["hb","hB","h","H"],ET:["hB","hb","h","H"],"gu-IN":["hB","hb","h","H"],"mr-IN":["hB","hb","h","H"],"pa-IN":["hB","hb","h","H"],TW:["hB","hb","h","H"],KE:["hB","hb","H","h"],MM:["hB","hb","H","h"],TZ:["hB","hb","H","h"],UG:["hB","hb","H","h"]};
332
+ /**
333
+ * Returns the best matching date time pattern if a date time skeleton
334
+ * pattern is provided with a locale. Follows the Unicode specification:
335
+ * https://www.unicode.org/reports/tr35/tr35-dates.html#table-mapping-requested-time-skeletons-to-patterns
336
+ * @param skeleton date time skeleton pattern that possibly includes j, J or C
337
+ * @param locale
338
+ */
339
+ /**
340
+ * Maps the [hour cycle type](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/hourCycle)
341
+ * of the given `locale` to the corresponding time pattern.
342
+ * @param locale
343
+ */
344
+ function Ie(t){var e=t.hourCycle;if(void 0===e&&
345
+ // @ts-ignore hourCycle(s) is not identified yet
346
+ t.hourCycles&&
347
+ // @ts-ignore
348
+ t.hourCycles.length&&(
349
+ // @ts-ignore
350
+ e=t.hourCycles[0]),e)switch(e){case"h24":return"k";case"h23":return"H";case"h12":return"h";case"h11":return"K";default:throw new Error("Invalid hourCycle")}
351
+ // TODO: Once hourCycle is fully supported remove the following with data generation
352
+ var r,n=t.language;return"root"!==n&&(r=t.maximize().region),(xe[r||""]||xe[n||""]||xe["".concat(n,"-001")]||xe["001"])[0]}var Ne=new RegExp("^".concat(ge.source,"*")),Re=new RegExp("".concat(ge.source,"*$"));function Me(t,e){return{start:t,end:e}}
353
+ // #region Ponyfills
354
+ // Consolidate these variables up top for easier toggling during debugging
355
+ var Ue=!!String.prototype.startsWith,$e=!!String.fromCodePoint,De=!!Object.fromEntries,ke=!!String.prototype.codePointAt,Ge=!!String.prototype.trimStart,je=!!String.prototype.trimEnd,Fe=!!Number.isSafeInteger?Number.isSafeInteger:function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t&&Math.abs(t)<=9007199254740991},Ve=!0;try{
356
+ /**
357
+ * legacy Edge or Xbox One browser
358
+ * Unicode flag support: supported
359
+ * Pattern_Syntax support: not supported
360
+ * See https://github.com/formatjs/formatjs/issues/2822
361
+ */
362
+ Ve="a"===(null===(Oe=Je("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu").exec("a"))||void 0===Oe?void 0:Oe[0])}catch(t){Ve=!1}var We,Xe=Ue?// Native
363
+ function(t,e,r){return t.startsWith(e,r)}:// For IE11
364
+ function(t,e,r){return t.slice(r,r+e.length)===e},ze=$e?String.fromCodePoint:// IE11
365
+ function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];for(var r,n="",i=t.length,o=0;i>o;){if((r=t[o++])>1114111)throw RangeError(r+" is not a valid code point");n+=r<65536?String.fromCharCode(r):String.fromCharCode(55296+((r-=65536)>>10),r%1024+56320)}return n},Ke=
366
+ // native
367
+ De?Object.fromEntries:// Ponyfill
368
+ function(t){for(var e={},r=0,n=t;r<n.length;r++){var i=n[r],o=i[0],s=i[1];e[o]=s}return e},Ye=ke?// Native
369
+ function(t,e){return t.codePointAt(e)}:// IE 11
370
+ function(t,e){var r=t.length;if(!(e<0||e>=r)){var n,i=t.charCodeAt(e);return i<55296||i>56319||e+1===r||(n=t.charCodeAt(e+1))<56320||n>57343?i:n-56320+(i-55296<<10)+65536}},Ze=Ge?// Native
371
+ function(t){return t.trimStart()}:// Ponyfill
372
+ function(t){return t.replace(Ne,"")},qe=je?// Native
373
+ function(t){return t.trimEnd()}:// Ponyfill
374
+ function(t){return t.replace(Re,"")};
375
+ // Prevent minifier to translate new RegExp to literal form that might cause syntax error on IE11.
376
+ function Je(t,e){return new RegExp(t,e)}
377
+ // #endregion
378
+ if(Ve){
379
+ // Native
380
+ var Qe=Je("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");We=function(t,e){var r;return Qe.lastIndex=e,null!==(r=Qe.exec(t)[1])&&void 0!==r?r:""}}else
381
+ // IE11
382
+ We=function(t,e){for(var r=[];;){var n=Ye(t,e);if(void 0===n||rr(n)||nr(n))break;r.push(n),e+=n>=65536?2:1}return ze.apply(void 0,r)};var tr=/** @class */function(){function t(t,e){void 0===e&&(e={}),this.message=t,this.position={offset:0,line:1,column:1},this.ignoreTag=!!e.ignoreTag,this.locale=e.locale,this.requiresOtherClause=!!e.requiresOtherClause,this.shouldParseSkeletons=!!e.shouldParseSkeletons}return t.prototype.parse=function(){if(0!==this.offset())throw Error("parser can only be used once");return this.parseMessage(0,"",!1)},t.prototype.parseMessage=function(t,e,r){for(var n=[];!this.isEOF();){var i=this.char();if(123/* `{` */===i){if((o=this.parseArgument(t,r)).err)return o;n.push(o.val)}else{if(125/* `}` */===i&&t>0)break;if(35/* `#` */!==i||"plural"!==e&&"selectordinal"!==e){if(60/* `<` */===i&&!this.ignoreTag&&47===this.peek()){if(r)break;return this.error(re.UNMATCHED_CLOSING_TAG,Me(this.clonePosition(),this.clonePosition()))}if(60/* `<` */===i&&!this.ignoreTag&&er(this.peek()||0)){if((o=this.parseTag(t,e)).err)return o;n.push(o.val)}else{var o;if((o=this.parseLiteral(t,e)).err)return o;n.push(o.val)}}else{var s=this.clonePosition();this.bump(),n.push({type:ne.pound,location:Me(s,this.clonePosition())})}}}return{val:n,err:null}},
383
+ /**
384
+ * A tag name must start with an ASCII lower/upper case letter. The grammar is based on the
385
+ * [custom element name][] except that a dash is NOT always mandatory and uppercase letters
386
+ * are accepted:
387
+ *
388
+ * ```
389
+ * tag ::= "<" tagName (whitespace)* "/>" | "<" tagName (whitespace)* ">" message "</" tagName (whitespace)* ">"
390
+ * tagName ::= [a-z] (PENChar)*
391
+ * PENChar ::=
392
+ * "-" | "." | [0-9] | "_" | [a-z] | [A-Z] | #xB7 | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x37D] |
393
+ * [#x37F-#x1FFF] | [#x200C-#x200D] | [#x203F-#x2040] | [#x2070-#x218F] | [#x2C00-#x2FEF] |
394
+ * [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF]
395
+ * ```
396
+ *
397
+ * [custom element name]: https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name
398
+ * NOTE: We're a bit more lax here since HTML technically does not allow uppercase HTML element but we do
399
+ * since other tag-based engines like React allow it
400
+ */
401
+ t.prototype.parseTag=function(t,e){var r=this.clonePosition();this.bump();// `<`
402
+ var n=this.parseTagName();if(this.bumpSpace(),this.bumpIf("/>"))
403
+ // Self closing tag
404
+ return{val:{type:ne.literal,value:"<".concat(n,"/>"),location:Me(r,this.clonePosition())},err:null};if(this.bumpIf(">")){var i=this.parseMessage(t+1,e,!0);if(i.err)return i;var o=i.val,s=this.clonePosition();
405
+ // Expecting a close tag
406
+ if(this.bumpIf("</")){if(this.isEOF()||!er(this.char()))return this.error(re.INVALID_TAG,Me(s,this.clonePosition()));var a=this.clonePosition();return n!==this.parseTagName()?this.error(re.UNMATCHED_CLOSING_TAG,Me(a,this.clonePosition())):(this.bumpSpace(),this.bumpIf(">")?{val:{type:ne.tag,value:n,children:o,location:Me(r,this.clonePosition())},err:null}:this.error(re.INVALID_TAG,Me(s,this.clonePosition())))}return this.error(re.UNCLOSED_TAG,Me(r,this.clonePosition()))}return this.error(re.INVALID_TAG,Me(r,this.clonePosition()))},
407
+ /**
408
+ * This method assumes that the caller has peeked ahead for the first tag character.
409
+ */
410
+ t.prototype.parseTagName=function(){var t,e=this.offset();// the first tag name character
411
+ for(this.bump();!this.isEOF()&&(45/* '-' */===(t=this.char())||46/* '.' */===t||t>=48&&t<=57/* 0..9 */||95/* '_' */===t||t>=97&&t<=122/** a..z */||t>=65&&t<=90/* A..Z */||183==t||t>=192&&t<=214||t>=216&&t<=246||t>=248&&t<=893||t>=895&&t<=8191||t>=8204&&t<=8205||t>=8255&&t<=8256||t>=8304&&t<=8591||t>=11264&&t<=12271||t>=12289&&t<=55295||t>=63744&&t<=64975||t>=65008&&t<=65533||t>=65536&&t<=983039);)this.bump();return this.message.slice(e,this.offset())},t.prototype.parseLiteral=function(t,e){for(var r=this.clonePosition(),n="";;){var i=this.tryParseQuote(e);if(i)n+=i;else{var o=this.tryParseUnquoted(t,e);if(o)n+=o;else{var s=this.tryParseLeftAngleBracket();if(!s)break;n+=s}}}var a=Me(r,this.clonePosition());return{val:{type:ne.literal,value:n,location:a},err:null}},t.prototype.tryParseLeftAngleBracket=function(){return this.isEOF()||60/* `<` */!==this.char()||!this.ignoreTag&&(er(t=this.peek()||0)||47===t)?null:(this.bump(),"<");var t;
412
+ /** See `parseTag` function docs. */},
413
+ /**
414
+ * Starting with ICU 4.8, an ASCII apostrophe only starts quoted text if it immediately precedes
415
+ * a character that requires quoting (that is, "only where needed"), and works the same in
416
+ * nested messages as on the top level of the pattern. The new behavior is otherwise compatible.
417
+ */
418
+ t.prototype.tryParseQuote=function(t){if(this.isEOF()||39/* `'` */!==this.char())return null;
419
+ // Parse escaped char following the apostrophe, or early return if there is no escaped char.
420
+ // Check if is valid escaped character
421
+ switch(this.peek()){case 39/* `'` */:
422
+ // double quote, should return as a single quote.
423
+ return this.bump(),this.bump(),"'";
424
+ // '{', '<', '>', '}'
425
+ case 123:case 60:case 62:case 125:break;case 35:// '#'
426
+ if("plural"===t||"selectordinal"===t)break;return null;default:return null}this.bump();// apostrophe
427
+ var e=[this.char()];// escaped char
428
+ // read chars until the optional closing apostrophe is found
429
+ for(this.bump();!this.isEOF();){var r=this.char();if(39/* `'` */===r){if(39/* `'` */!==this.peek()){
430
+ // Optional closing apostrophe.
431
+ this.bump();break}e.push(39),
432
+ // Bump one more time because we need to skip 2 characters.
433
+ this.bump()}else e.push(r);this.bump()}return ze.apply(void 0,e)},t.prototype.tryParseUnquoted=function(t,e){if(this.isEOF())return null;var r=this.char();return 60/* `<` */===r||123/* `{` */===r||35/* `#` */===r&&("plural"===e||"selectordinal"===e)||125/* `}` */===r&&t>0?null:(this.bump(),ze(r))},t.prototype.parseArgument=function(t,e){var r=this.clonePosition();if(this.bump(),// `{`
434
+ this.bumpSpace(),this.isEOF())return this.error(re.EXPECT_ARGUMENT_CLOSING_BRACE,Me(r,this.clonePosition()));if(125/* `}` */===this.char())return this.bump(),this.error(re.EMPTY_ARGUMENT,Me(r,this.clonePosition()));
435
+ // argument name
436
+ var n=this.parseIdentifierIfPossible().value;if(!n)return this.error(re.MALFORMED_ARGUMENT,Me(r,this.clonePosition()));if(this.bumpSpace(),this.isEOF())return this.error(re.EXPECT_ARGUMENT_CLOSING_BRACE,Me(r,this.clonePosition()));switch(this.char()){
437
+ // Simple argument: `{name}`
438
+ case 125/* `}` */:// `}`
439
+ return this.bump(),{val:{type:ne.argument,
440
+ // value does not include the opening and closing braces.
441
+ value:n,location:Me(r,this.clonePosition())},err:null};
442
+ // Argument with options: `{name, format, ...}`
443
+ case 44/* `,` */:return this.bump(),// `,`
444
+ this.bumpSpace(),this.isEOF()?this.error(re.EXPECT_ARGUMENT_CLOSING_BRACE,Me(r,this.clonePosition())):this.parseArgumentOptions(t,e,n,r);default:return this.error(re.MALFORMED_ARGUMENT,Me(r,this.clonePosition()))}},
445
+ /**
446
+ * Advance the parser until the end of the identifier, if it is currently on
447
+ * an identifier character. Return an empty string otherwise.
448
+ */
449
+ t.prototype.parseIdentifierIfPossible=function(){var t=this.clonePosition(),e=this.offset(),r=We(this.message,e),n=e+r.length;return this.bumpTo(n),{value:r,location:Me(t,this.clonePosition())}},t.prototype.parseArgumentOptions=function(t,e,r,n){var i,o=this.clonePosition(),s=this.parseIdentifierIfPossible().value,a=this.clonePosition();
450
+ // Parse this range:
451
+ // {name, type, style}
452
+ // ^---^
453
+ switch(s){case"":
454
+ // Expecting a style string number, date, time, plural, selectordinal, or select.
455
+ return this.error(re.EXPECT_ARGUMENT_TYPE,Me(o,a));case"number":case"date":case"time":
456
+ // Parse this range:
457
+ // {name, number, style}
458
+ // ^-------^
459
+ this.bumpSpace();var c=null;if(this.bumpIf(",")){this.bumpSpace();var l=this.clonePosition();if((b=this.parseSimpleArgStyleIfPossible()).err)return b;if(0===(f=qe(b.val)).length)return this.error(re.EXPECT_ARGUMENT_STYLE,Me(this.clonePosition(),this.clonePosition()));c={style:f,styleLocation:Me(l,this.clonePosition())}}if((g=this.tryParseArgumentClose(n)).err)return g;var u=Me(n,this.clonePosition());
460
+ // Extract style or skeleton
461
+ if(c&&Xe(null==c?void 0:c.style,"::",0)){
462
+ // Skeleton starts with `::`.
463
+ var h=Ze(c.style.slice(2));if("number"===s)return(b=this.parseNumberSkeletonFromString(h,c.styleLocation)).err?b:{val:{type:ne.number,value:r,location:u,style:b.val},err:null};if(0===h.length)return this.error(re.EXPECT_DATE_TIME_SKELETON,u);var p=h;
464
+ // Get "best match" pattern only if locale is passed, if not, let it
465
+ // pass as-is where `parseDateTimeSkeleton()` will throw an error
466
+ // for unsupported patterns.
467
+ this.locale&&(p=function(t,e){for(var r="",n=0;n<t.length;n++){var i=t.charAt(n);if("j"===i){for(var o=0;n+1<t.length&&t.charAt(n+1)===i;)o++,n++;var s=1+(1&o),a=o<2?1:3+(o>>1),c=Ie(e);for("H"!=c&&"k"!=c||(a=0);a-- >0;)r+="a";for(;s-- >0;)r=c+r}else r+="J"===i?"H":i}return r}(h,this.locale));var f={type:ie.dateTime,pattern:p,location:c.styleLocation,parsedOptions:this.shouldParseSkeletons?Ee(p):{}};return{val:{type:"date"===s?ne.date:ne.time,value:r,location:u,style:f},err:null}}
468
+ // Regular style or no style.
469
+ return{val:{type:"number"===s?ne.number:"date"===s?ne.date:ne.time,value:r,location:u,style:null!==(i=null==c?void 0:c.style)&&void 0!==i?i:null},err:null};case"plural":case"selectordinal":case"select":
470
+ // Parse this range:
471
+ // {name, plural, options}
472
+ // ^---------^
473
+ var d=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(re.EXPECT_SELECT_ARGUMENT_OPTIONS,Me(d,oe({},d)));this.bumpSpace();
474
+ // Parse offset:
475
+ // {name, plural, offset:1, options}
476
+ // ^-----^
477
+ // or the first option:
478
+ // {name, plural, one {...} other {...}}
479
+ // ^--^
480
+ var m=this.parseIdentifierIfPossible(),y=0;if("select"!==s&&"offset"===m.value){if(!this.bumpIf(":"))return this.error(re.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,Me(this.clonePosition(),this.clonePosition()));var b;if(this.bumpSpace(),(b=this.tryParseDecimalInteger(re.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,re.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE)).err)return b;
481
+ // Parse another identifier for option parsing
482
+ this.bumpSpace(),m=this.parseIdentifierIfPossible(),y=b.val}var g,v=this.tryParsePluralOrSelectOptions(t,s,e,m);if(v.err)return v;if((g=this.tryParseArgumentClose(n)).err)return g;var E=Me(n,this.clonePosition());return"select"===s?{val:{type:ne.select,value:r,options:Ke(v.val),location:E},err:null}:{val:{type:ne.plural,value:r,options:Ke(v.val),offset:y,pluralType:"plural"===s?"cardinal":"ordinal",location:E},err:null};default:return this.error(re.INVALID_ARGUMENT_TYPE,Me(o,a))}},t.prototype.tryParseArgumentClose=function(t){
483
+ // Parse: {value, number, ::currency/GBP }
484
+ return this.isEOF()||125/* `}` */!==this.char()?this.error(re.EXPECT_ARGUMENT_CLOSING_BRACE,Me(t,this.clonePosition())):(this.bump(),{val:!0,err:null})},
485
+ /**
486
+ * See: https://github.com/unicode-org/icu/blob/af7ed1f6d2298013dc303628438ec4abe1f16479/icu4c/source/common/messagepattern.cpp#L659
487
+ */
488
+ t.prototype.parseSimpleArgStyleIfPossible=function(){for(var t=0,e=this.clonePosition();!this.isEOF();){switch(this.char()){case 39/* `'` */:
489
+ // Treat apostrophe as quoting but include it in the style part.
490
+ // Find the end of the quoted literal text.
491
+ this.bump();var r=this.clonePosition();if(!this.bumpUntil("'"))return this.error(re.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE,Me(r,this.clonePosition()));this.bump();break;case 123/* `{` */:t+=1,this.bump();break;case 125/* `}` */:if(!(t>0))return{val:this.message.slice(e.offset,this.offset()),err:null};t-=1;break;default:this.bump()}}return{val:this.message.slice(e.offset,this.offset()),err:null}},t.prototype.parseNumberSkeletonFromString=function(t,e){var r=[];try{r=function(t){if(0===t.length)throw new Error("Number skeleton cannot be empty");
492
+ // Parse the skeleton
493
+ for(var e=[],r=0,n=t.split(_e).filter((function(t){return t.length>0}));r<n.length;r++){var i=n[r].split("/");if(0===i.length)throw new Error("Invalid number skeleton");for(var o=i[0],s=i.slice(1),a=0,c=s;a<c.length;a++)if(0===c[a].length)throw new Error("Invalid number skeleton");e.push({stem:o,options:s})}return e}(t)}catch(t){return this.error(re.INVALID_NUMBER_SKELETON,e)}return{val:{type:ie.number,tokens:r,location:e,parsedOptions:this.shouldParseSkeletons?Ce(r):{}},err:null}},
494
+ /**
495
+ * @param nesting_level The current nesting level of messages.
496
+ * This can be positive when parsing message fragment in select or plural argument options.
497
+ * @param parent_arg_type The parent argument's type.
498
+ * @param parsed_first_identifier If provided, this is the first identifier-like selector of
499
+ * the argument. It is a by-product of a previous parsing attempt.
500
+ * @param expecting_close_tag If true, this message is directly or indirectly nested inside
501
+ * between a pair of opening and closing tags. The nested message will not parse beyond
502
+ * the closing tag boundary.
503
+ */
504
+ t.prototype.tryParsePluralOrSelectOptions=function(t,e,r,n){
505
+ // Parse:
506
+ // one {one apple}
507
+ // ^--^
508
+ for(var i,o=!1,s=[],a=new Set,c=n.value,l=n.location;;){if(0===c.length){var u=this.clonePosition();if("select"===e||!this.bumpIf("="))break;
509
+ // Try parse `={number}` selector
510
+ var h=this.tryParseDecimalInteger(re.EXPECT_PLURAL_ARGUMENT_SELECTOR,re.INVALID_PLURAL_ARGUMENT_SELECTOR);if(h.err)return h;l=Me(u,this.clonePosition()),c=this.message.slice(u.offset,this.offset())}
511
+ // Duplicate selector clauses
512
+ if(a.has(c))return this.error("select"===e?re.DUPLICATE_SELECT_ARGUMENT_SELECTOR:re.DUPLICATE_PLURAL_ARGUMENT_SELECTOR,l);"other"===c&&(o=!0),
513
+ // Parse:
514
+ // one {one apple}
515
+ // ^----------^
516
+ this.bumpSpace();var p=this.clonePosition();if(!this.bumpIf("{"))return this.error("select"===e?re.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT:re.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT,Me(this.clonePosition(),this.clonePosition()));var f=this.parseMessage(t+1,e,r);if(f.err)return f;var d=this.tryParseArgumentClose(p);if(d.err)return d;s.push([c,{value:f.val,location:Me(p,this.clonePosition())}]),
517
+ // Keep track of the existing selectors
518
+ a.add(c),
519
+ // Prep next selector clause.
520
+ this.bumpSpace(),c=(i=this.parseIdentifierIfPossible()).value,l=i.location}return 0===s.length?this.error("select"===e?re.EXPECT_SELECT_ARGUMENT_SELECTOR:re.EXPECT_PLURAL_ARGUMENT_SELECTOR,Me(this.clonePosition(),this.clonePosition())):this.requiresOtherClause&&!o?this.error(re.MISSING_OTHER_CLAUSE,Me(this.clonePosition(),this.clonePosition())):{val:s,err:null}},t.prototype.tryParseDecimalInteger=function(t,e){var r=1,n=this.clonePosition();this.bumpIf("+")||this.bumpIf("-")&&(r=-1);for(var i=!1,o=0;!this.isEOF();){var s=this.char();if(!(s>=48/* `0` */&&s<=57/* `9` */))break;i=!0,o=10*o+(s-48),this.bump()}var a=Me(n,this.clonePosition());return i?Fe(o*=r)?{val:o,err:null}:this.error(e,a):this.error(t,a)},t.prototype.offset=function(){return this.position.offset},t.prototype.isEOF=function(){return this.offset()===this.message.length},t.prototype.clonePosition=function(){
521
+ // This is much faster than `Object.assign` or spread.
522
+ return{offset:this.position.offset,line:this.position.line,column:this.position.column}},
523
+ /**
524
+ * Return the code point at the current position of the parser.
525
+ * Throws if the index is out of bound.
526
+ */
527
+ t.prototype.char=function(){var t=this.position.offset;if(t>=this.message.length)throw Error("out of bound");var e=Ye(this.message,t);if(void 0===e)throw Error("Offset ".concat(t," is at invalid UTF-16 code unit boundary"));return e},t.prototype.error=function(t,e){return{val:null,err:{kind:t,message:this.message,location:e}}},
528
+ /** Bump the parser to the next UTF-16 code unit. */
529
+ t.prototype.bump=function(){if(!this.isEOF()){var t=this.char();10/* '\n' */===t?(this.position.line+=1,this.position.column=1,this.position.offset+=1):(this.position.column+=1,
530
+ // 0 ~ 0x10000 -> unicode BMP, otherwise skip the surrogate pair.
531
+ this.position.offset+=t<65536?1:2)}},
532
+ /**
533
+ * If the substring starting at the current position of the parser has
534
+ * the given prefix, then bump the parser to the character immediately
535
+ * following the prefix and return true. Otherwise, don't bump the parser
536
+ * and return false.
537
+ */
538
+ t.prototype.bumpIf=function(t){if(Xe(this.message,t,this.offset())){for(var e=0;e<t.length;e++)this.bump();return!0}return!1},
539
+ /**
540
+ * Bump the parser until the pattern character is found and return `true`.
541
+ * Otherwise bump to the end of the file and return `false`.
542
+ */
543
+ t.prototype.bumpUntil=function(t){var e=this.offset(),r=this.message.indexOf(t,e);return r>=0?(this.bumpTo(r),!0):(this.bumpTo(this.message.length),!1)},
544
+ /**
545
+ * Bump the parser to the target offset.
546
+ * If target offset is beyond the end of the input, bump the parser to the end of the input.
547
+ */
548
+ t.prototype.bumpTo=function(t){if(this.offset()>t)throw Error("targetOffset ".concat(t," must be greater than or equal to the current offset ").concat(this.offset()));for(t=Math.min(t,this.message.length);;){var e=this.offset();if(e===t)break;if(e>t)throw Error("targetOffset ".concat(t," is at invalid UTF-16 code unit boundary"));if(this.bump(),this.isEOF())break}},
549
+ /** advance the parser through all whitespace to the next non-whitespace code unit. */
550
+ t.prototype.bumpSpace=function(){for(;!this.isEOF()&&rr(this.char());)this.bump()},
551
+ /**
552
+ * Peek at the *next* Unicode codepoint in the input without advancing the parser.
553
+ * If the input has been exhausted, then this returns null.
554
+ */
555
+ t.prototype.peek=function(){if(this.isEOF())return null;var t=this.char(),e=this.offset(),r=this.message.charCodeAt(e+(t>=65536?2:1));return null!=r?r:null},t}();
556
+ /**
557
+ * This check if codepoint is alphabet (lower & uppercase)
558
+ * @param codepoint
559
+ * @returns
560
+ */function er(t){return t>=97&&t<=122||t>=65&&t<=90}
561
+ /**
562
+ * Code point equivalent of regex `\p{White_Space}`.
563
+ * From: https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt
564
+ */
565
+ function rr(t){return t>=9&&t<=13||32===t||133===t||t>=8206&&t<=8207||8232===t||8233===t}
566
+ /**
567
+ * Code point equivalent of regex `\p{Pattern_Syntax}`.
568
+ * See https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt
569
+ */function nr(t){return t>=33&&t<=35||36===t||t>=37&&t<=39||40===t||41===t||42===t||43===t||44===t||45===t||t>=46&&t<=47||t>=58&&t<=59||t>=60&&t<=62||t>=63&&t<=64||91===t||92===t||93===t||94===t||96===t||123===t||124===t||125===t||126===t||161===t||t>=162&&t<=165||166===t||167===t||169===t||171===t||172===t||174===t||176===t||177===t||182===t||187===t||191===t||215===t||247===t||t>=8208&&t<=8213||t>=8214&&t<=8215||8216===t||8217===t||8218===t||t>=8219&&t<=8220||8221===t||8222===t||8223===t||t>=8224&&t<=8231||t>=8240&&t<=8248||8249===t||8250===t||t>=8251&&t<=8254||t>=8257&&t<=8259||8260===t||8261===t||8262===t||t>=8263&&t<=8273||8274===t||8275===t||t>=8277&&t<=8286||t>=8592&&t<=8596||t>=8597&&t<=8601||t>=8602&&t<=8603||t>=8604&&t<=8607||8608===t||t>=8609&&t<=8610||8611===t||t>=8612&&t<=8613||8614===t||t>=8615&&t<=8621||8622===t||t>=8623&&t<=8653||t>=8654&&t<=8655||t>=8656&&t<=8657||8658===t||8659===t||8660===t||t>=8661&&t<=8691||t>=8692&&t<=8959||t>=8960&&t<=8967||8968===t||8969===t||8970===t||8971===t||t>=8972&&t<=8991||t>=8992&&t<=8993||t>=8994&&t<=9e3||9001===t||9002===t||t>=9003&&t<=9083||9084===t||t>=9085&&t<=9114||t>=9115&&t<=9139||t>=9140&&t<=9179||t>=9180&&t<=9185||t>=9186&&t<=9254||t>=9255&&t<=9279||t>=9280&&t<=9290||t>=9291&&t<=9311||t>=9472&&t<=9654||9655===t||t>=9656&&t<=9664||9665===t||t>=9666&&t<=9719||t>=9720&&t<=9727||t>=9728&&t<=9838||9839===t||t>=9840&&t<=10087||10088===t||10089===t||10090===t||10091===t||10092===t||10093===t||10094===t||10095===t||10096===t||10097===t||10098===t||10099===t||10100===t||10101===t||t>=10132&&t<=10175||t>=10176&&t<=10180||10181===t||10182===t||t>=10183&&t<=10213||10214===t||10215===t||10216===t||10217===t||10218===t||10219===t||10220===t||10221===t||10222===t||10223===t||t>=10224&&t<=10239||t>=10240&&t<=10495||t>=10496&&t<=10626||10627===t||10628===t||10629===t||10630===t||10631===t||10632===t||10633===t||10634===t||10635===t||10636===t||10637===t||10638===t||10639===t||10640===t||10641===t||10642===t||10643===t||10644===t||10645===t||10646===t||10647===t||10648===t||t>=10649&&t<=10711||10712===t||10713===t||10714===t||10715===t||t>=10716&&t<=10747||10748===t||10749===t||t>=10750&&t<=11007||t>=11008&&t<=11055||t>=11056&&t<=11076||t>=11077&&t<=11078||t>=11079&&t<=11084||t>=11085&&t<=11123||t>=11124&&t<=11125||t>=11126&&t<=11157||11158===t||t>=11159&&t<=11263||t>=11776&&t<=11777||11778===t||11779===t||11780===t||11781===t||t>=11782&&t<=11784||11785===t||11786===t||11787===t||11788===t||11789===t||t>=11790&&t<=11798||11799===t||t>=11800&&t<=11801||11802===t||11803===t||11804===t||11805===t||t>=11806&&t<=11807||11808===t||11809===t||11810===t||11811===t||11812===t||11813===t||11814===t||11815===t||11816===t||11817===t||t>=11818&&t<=11822||11823===t||t>=11824&&t<=11833||t>=11834&&t<=11835||t>=11836&&t<=11839||11840===t||11841===t||11842===t||t>=11843&&t<=11855||t>=11856&&t<=11857||11858===t||t>=11859&&t<=11903||t>=12289&&t<=12291||12296===t||12297===t||12298===t||12299===t||12300===t||12301===t||12302===t||12303===t||12304===t||12305===t||t>=12306&&t<=12307||12308===t||12309===t||12310===t||12311===t||12312===t||12313===t||12314===t||12315===t||12316===t||12317===t||t>=12318&&t<=12319||12320===t||12336===t||64830===t||64831===t||t>=65093&&t<=65094}function ir(t){t.forEach((function(t){if(delete t.location,pe(t)||fe(t))for(var e in t.options)delete t.options[e].location,ir(t.options[e].value);else le(t)&&ye(t.style)||(ue(t)||he(t))&&be(t.style)?delete t.style.location:me(t)&&ir(t.children)}))}function or(t,e){void 0===e&&(e={}),e=oe({shouldParseSkeletons:!0,requiresOtherClause:!0},e);var r=new tr(t,e).parse();if(r.err){var n=SyntaxError(re[r.err.kind]);
570
+ // @ts-expect-error Assign to error object
571
+ throw n.location=r.err.location,
572
+ // @ts-expect-error Assign to error object
573
+ n.originalMessage=r.err.message,n}return(null==e?void 0:e.captureLocation)||ir(r.val),r.val}
574
+
575
+ // Main
576
+
577
+ function sr(t,e){var r=e&&e.cache?e.cache:dr,n=e&&e.serializer?e.serializer:hr;return(e&&e.strategy?e.strategy:ur)(t,{cache:r,serializer:n})}
578
+
579
+ // Strategy
580
+
581
+ function ar(t,e,r,n){var i,o=null==(i=n)||"number"==typeof i||"boolean"==typeof i?n:r(n),s=e.get(o);return void 0===s&&(s=t.call(this,n),e.set(o,s)),s}function cr(t,e,r){var n=Array.prototype.slice.call(arguments,3),i=r(n),o=e.get(i);return void 0===o&&(o=t.apply(this,n),e.set(i,o)),o}function lr(t,e,r,n,i){return r.bind(e,t,n,i)}function ur(t,e){return lr(t,this,1===t.length?ar:cr,e.cache.create(),e.serializer)}
582
+ // Serializer
583
+ var hr=function(){return JSON.stringify(arguments)};
584
+
585
+ // Cache
586
+
587
+ function pr(){this.cache=Object.create(null)}pr.prototype.get=function(t){return this.cache[t]},pr.prototype.set=function(t,e){this.cache[t]=e};var fr,dr={create:function(){
588
+ // @ts-ignore
589
+ return new pr}},mr={variadic:function(t,e){return lr(t,this,cr,e.cache.create(),e.serializer)},monadic:function(t,e){return lr(t,this,ar,e.cache.create(),e.serializer)}};!function(t){
590
+ // When we have a placeholder but no value to format
591
+ t.MISSING_VALUE="MISSING_VALUE",
592
+ // When value supplied is invalid
593
+ t.INVALID_VALUE="INVALID_VALUE",
594
+ // When we need specific Intl API but it's not available
595
+ t.MISSING_INTL_API="MISSING_INTL_API"}(fr||(fr={}));var yr,br=/** @class */function(t){function e(e,r,n){var i=t.call(this,e)||this;return i.code=r,i.originalMessage=n,i}return ee(e,t),e.prototype.toString=function(){return"[formatjs Error: ".concat(this.code,"] ").concat(this.message)},e}(Error),gr=/** @class */function(t){function e(e,r,n,i){return t.call(this,'Invalid values for "'.concat(e,'": "').concat(r,'". Options are "').concat(Object.keys(n).join('", "'),'"'),fr.INVALID_VALUE,i)||this}return ee(e,t),e}(br),vr=/** @class */function(t){function e(e,r,n){return t.call(this,'Value for "'.concat(e,'" must be of type ').concat(r),fr.INVALID_VALUE,n)||this}return ee(e,t),e}(br),Er=/** @class */function(t){function e(e,r){return t.call(this,'The intl string context variable "'.concat(e,'" was not provided to the string "').concat(r,'"'),fr.MISSING_VALUE,r)||this}return ee(e,t),e}(br);function _r(t){return"function"==typeof t}
596
+ // TODO(skeleton): add skeleton support
597
+ function Tr(t,e,r,n,i,o,
598
+ // For debugging
599
+ s){
600
+ // Hot path for straight simple msg translations
601
+ if(1===t.length&&ae(t[0]))return[{type:yr.literal,value:t[0].value}];for(var a=[],c=0,l=t;c<l.length;c++){var u=l[c];
602
+ // Exit early for string parts.
603
+ if(ae(u))a.push({type:yr.literal,value:u.value});else
604
+ // TODO: should this part be literal type?
605
+ // Replace `#` in plural rules with the actual numeric value.
606
+ if(de(u))"number"==typeof o&&a.push({type:yr.literal,value:r.getNumberFormat(e).format(o)});else{var h=u.value;
607
+ // Enforce that all required values are provided by the caller.
608
+ if(!i||!(h in i))throw new Er(h,s);var p=i[h];if(ce(u))p&&"string"!=typeof p&&"number"!=typeof p||(p="string"==typeof p||"number"==typeof p?String(p):""),a.push({type:"string"==typeof p?yr.literal:yr.object,value:p});else
609
+ // Recursively format plural and select parts' option — which can be a
610
+ // nested pattern structure. The choosing of the option to use is
611
+ // abstracted-by and delegated-to the part helper object.
612
+ if(ue(u)){var f="string"==typeof u.style?n.date[u.style]:be(u.style)?u.style.parsedOptions:void 0;a.push({type:yr.literal,value:r.getDateTimeFormat(e,f).format(p)})}else if(he(u)){f="string"==typeof u.style?n.time[u.style]:be(u.style)?u.style.parsedOptions:n.time.medium;a.push({type:yr.literal,value:r.getDateTimeFormat(e,f).format(p)})}else if(le(u)){(f="string"==typeof u.style?n.number[u.style]:ye(u.style)?u.style.parsedOptions:void 0)&&f.scale&&(p*=f.scale||1),a.push({type:yr.literal,value:r.getNumberFormat(e,f).format(p)})}else{if(me(u)){var d=u.children,m=u.value,y=i[m];if(!_r(y))throw new vr(m,"function",s);var b=y(Tr(d,e,r,n,i,o).map((function(t){return t.value})));Array.isArray(b)||(b=[b]),a.push.apply(a,b.map((function(t){return{type:"string"==typeof t?yr.literal:yr.object,value:t}})))}if(pe(u)){if(!(g=u.options[p]||u.options.other))throw new gr(u.value,p,Object.keys(u.options),s);a.push.apply(a,Tr(g.value,e,r,n,i))}else if(fe(u)){var g;if(!(g=u.options["=".concat(p)])){if(!Intl.PluralRules)throw new br('Intl.PluralRules is not available in this environment.\nTry polyfilling it using "@formatjs/intl-pluralrules"\n',fr.MISSING_INTL_API,s);var v=r.getPluralRules(e,{type:u.pluralType}).select(p-(u.offset||0));g=u.options[v]||u.options.other}if(!g)throw new gr(u.value,p,Object.keys(u.options),s);a.push.apply(a,Tr(g.value,e,r,n,i,p-(u.offset||0)))}else;}}}return function(t){return t.length<2?t:t.reduce((function(t,e){var r=t[t.length-1];return r&&r.type===yr.literal&&e.type===yr.literal?r.value+=e.value:t.push(e),t}),[])}(a)}
613
+ /*
614
+ Copyright (c) 2014, Yahoo! Inc. All rights reserved.
615
+ Copyrights licensed under the New BSD License.
616
+ See the accompanying LICENSE file for terms.
617
+ */
618
+ // -- MessageFormat --------------------------------------------------------
619
+ function wr(t,e){return e?Object.keys(t).reduce((function(r,n){var i,o;return r[n]=(i=t[n],(o=e[n])?oe(oe(oe({},i||{}),o||{}),Object.keys(i).reduce((function(t,e){return t[e]=oe(oe({},i[e]),o[e]||{}),t}),{})):i),r}),oe({},t)):t}function Ar(t){return{create:function(){return{get:function(e){return t[e]},set:function(e,r){t[e]=r}}}}}!function(t){t[t.literal=0]="literal",t[t.object=1]="object"}(yr||(yr={}));var Br=/** @class */function(){function t(e,r,n,i){var o,s=this;if(void 0===r&&(r=t.defaultLocale),this.formatterCache={number:{},dateTime:{},pluralRules:{}},this.format=function(t){var e=s.formatToParts(t);
620
+ // Hot path for straight simple msg translations
621
+ if(1===e.length)return e[0].value;var r=e.reduce((function(t,e){return t.length&&e.type===yr.literal&&"string"==typeof t[t.length-1]?t[t.length-1]+=e.value:t.push(e.value),t}),[]);return r.length<=1?r[0]||"":r},this.formatToParts=function(t){return Tr(s.ast,s.locales,s.formatters,s.formats,t,void 0,s.message)},this.resolvedOptions=function(){return{locale:s.resolvedLocale.toString()}},this.getAst=function(){return s.ast},
622
+ // Defined first because it's used to build the format pattern.
623
+ this.locales=r,this.resolvedLocale=t.resolveLocale(r),"string"==typeof e){if(this.message=e,!t.__parse)throw new TypeError("IntlMessageFormat.__parse must be set to process `message` of type `string`");
624
+ // Parse string messages into an AST.
625
+ this.ast=t.__parse(e,{ignoreTag:null==i?void 0:i.ignoreTag,locale:this.resolvedLocale})}else this.ast=e;if(!Array.isArray(this.ast))throw new TypeError("A message must be provided as a String or AST.");
626
+ // Creates a new object with the specified `formats` merged with the default
627
+ // formats.
628
+ this.formats=wr(t.formats,n),this.formatters=i&&i.formatters||(void 0===(o=this.formatterCache)&&(o={number:{},dateTime:{},pluralRules:{}}),{getNumberFormat:sr((function(){for(var t,e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return new((t=Intl.NumberFormat).bind.apply(t,se([void 0],e,!1)))}),{cache:Ar(o.number),strategy:mr.variadic}),getDateTimeFormat:sr((function(){for(var t,e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return new((t=Intl.DateTimeFormat).bind.apply(t,se([void 0],e,!1)))}),{cache:Ar(o.dateTime),strategy:mr.variadic}),getPluralRules:sr((function(){for(var t,e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return new((t=Intl.PluralRules).bind.apply(t,se([void 0],e,!1)))}),{cache:Ar(o.pluralRules),strategy:mr.variadic})})}return Object.defineProperty(t,"defaultLocale",{get:function(){return t.memoizedDefaultLocale||(t.memoizedDefaultLocale=(new Intl.NumberFormat).resolvedOptions().locale),t.memoizedDefaultLocale},enumerable:!1,configurable:!0}),t.memoizedDefaultLocale=null,t.resolveLocale=function(t){var e=Intl.NumberFormat.supportedLocalesOf(t);return e.length>0?new Intl.Locale(e[0]):new Intl.Locale("string"==typeof t?t:t[0])},t.__parse=or,
629
+ // Default format options used as the prototype of the `formats` provided to the
630
+ // constructor. These are used when constructing the internal Intl.NumberFormat
631
+ // and Intl.DateTimeFormat instances.
632
+ t.formats={number:{integer:{maximumFractionDigits:0},currency:{style:"currency"},percent:{style:"percent"}},date:{short:{month:"numeric",day:"numeric",year:"2-digit"},medium:{month:"short",day:"numeric",year:"numeric"},long:{month:"long",day:"numeric",year:"numeric"},full:{weekday:"long",month:"long",day:"numeric",year:"numeric"}},time:{short:{hour:"numeric",minute:"numeric"},medium:{hour:"numeric",minute:"numeric",second:"numeric"},long:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"},full:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"}}},t}();const Hr={},Sr=(t,e,r)=>r?(e in Hr||(Hr[e]={}),t in Hr[e]||(Hr[e][t]=r),r):r,Pr=(t,e)=>{if(null==e)return;if(e in Hr&&t in Hr[e])return Hr[e][t];const r=Qr(e);for(let n=0;n<r.length;n++){const i=xr(r[n],t);if(i)return Sr(t,e,i)}};let Lr;const Cr=Ft({});function Or(t){return t in Lr}function xr(t,e){if(!Or(t))return null;const r=function(t){return Lr[t]||null}(t);return function(t,e){if(null==e)return;if(e in t)return t[e];const r=e.split(".");let n=t;for(let t=0;t<r.length;t++)if("object"==typeof n){if(t>0){const e=r.slice(t,r.length).join(".");if(e in n){n=n[e];break}}n=n[r[t]]}else n=void 0;return n}(r,e)}function Ir(t,...e){delete Hr[t],Cr.update((r=>(r[t]=Qt.all([r[t]||{},...e]),r)))}Vt([Cr],(([t])=>Object.keys(t))),Cr.subscribe((t=>Lr=t));const Nr={};function Rr(t){return Nr[t]}function Mr(t){return null!=t&&Qr(t).some((t=>{var e;return null==(e=Rr(t))?void 0:e.size}))}function Ur(t,e){const r=Promise.all(e.map((e=>(function(t,e){Nr[t].delete(e),0===Nr[t].size&&delete Nr[t]}(t,e),e().then((t=>t.default||t))))));return r.then((e=>Ir(t,...e)))}const $r={};function Dr(t){if(!Mr(t))return t in $r?$r[t]:Promise.resolve();const e=function(t){return Qr(t).map((t=>{const e=Rr(t);return[t,e?[...e]:[]]})).filter((([,t])=>t.length>0))}(t);return $r[t]=Promise.all(e.map((([t,e])=>Ur(t,e)))).then((()=>{if(Mr(t))return Dr(t);delete $r[t]})),$r[t]}const kr={fallbackLocale:null,loadingDelay:200,formats:{number:{scientific:{notation:"scientific"},engineering:{notation:"engineering"},compactLong:{notation:"compact",compactDisplay:"long"},compactShort:{notation:"compact",compactDisplay:"short"}},date:{short:{month:"numeric",day:"numeric",year:"2-digit"},medium:{month:"short",day:"numeric",year:"numeric"},long:{month:"long",day:"numeric",year:"numeric"},full:{weekday:"long",month:"long",day:"numeric",year:"numeric"}},time:{short:{hour:"numeric",minute:"numeric"},medium:{hour:"numeric",minute:"numeric",second:"numeric"},long:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"},full:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"}}},warnOnMissingMessages:!0,handleMissingMessage:void 0,ignoreTag:!0};function Gr(){return kr}const jr=Ft(!1);var Fr=Object.defineProperty,Vr=Object.defineProperties,Wr=Object.getOwnPropertyDescriptors,Xr=Object.getOwnPropertySymbols,zr=Object.prototype.hasOwnProperty,Kr=Object.prototype.propertyIsEnumerable,Yr=(t,e,r)=>e in t?Fr(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r;let Zr;const qr=Ft(null);function Jr(t){return t.split("-").map(((t,e,r)=>r.slice(0,e+1).join("-"))).reverse()}function Qr(t,e=Gr().fallbackLocale){const r=Jr(t);return e?[...new Set([...r,...Jr(e)])]:r}function tn(){return null!=Zr?Zr:void 0}qr.subscribe((t=>{Zr=null!=t?t:void 0,"undefined"!=typeof window&&null!=t&&document.documentElement.setAttribute("lang",t)}));const en=(rn=((t,e)=>{for(var r in e||(e={}))zr.call(e,r)&&Yr(t,r,e[r]);if(Xr)for(var r of Xr(e))Kr.call(e,r)&&Yr(t,r,e[r]);return t})({},qr),Vr(rn,Wr({set:t=>{if(t&&function(t){if(null==t)return;const e=Qr(t);for(let t=0;t<e.length;t++){const r=e[t];if(Or(r))return r}}(t)&&Mr(t)){const{loadingDelay:e}=Gr();let r;return"undefined"!=typeof window&&null!=tn()&&e?r=window.setTimeout((()=>jr.set(!0)),e):jr.set(!0),Dr(t).then((()=>{qr.set(t)})).finally((()=>{clearTimeout(r),jr.set(!1)}))}return qr.set(t)}})));var rn;const nn=t=>{const e=Object.create(null);return r=>{const n=JSON.stringify(r);return n in e?e[n]:e[n]=t(r)}};var on=Object.defineProperty,sn=Object.getOwnPropertySymbols,an=Object.prototype.hasOwnProperty,cn=Object.prototype.propertyIsEnumerable,ln=(t,e,r)=>e in t?on(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r,un=(t,e)=>{for(var r in e||(e={}))an.call(e,r)&&ln(t,r,e[r]);if(sn)for(var r of sn(e))cn.call(e,r)&&ln(t,r,e[r]);return t},hn=(t,e)=>{var r={};for(var n in t)an.call(t,n)&&e.indexOf(n)<0&&(r[n]=t[n]);if(null!=t&&sn)for(var n of sn(t))e.indexOf(n)<0&&cn.call(t,n)&&(r[n]=t[n]);return r};const pn=(t,e)=>{const{formats:r}=Gr();if(t in r&&e in r[t])return r[t][e];throw new Error(`[svelte-i18n] Unknown "${e}" ${t} format.`)},fn=nn((t=>{var e=t,{locale:r,format:n}=e,i=hn(e,["locale","format"]);if(null==r)throw new Error('[svelte-i18n] A "locale" must be set to format numbers');return n&&(i=pn("number",n)),new Intl.NumberFormat(r,i)})),dn=nn((t=>{var e=t,{locale:r,format:n}=e,i=hn(e,["locale","format"]);if(null==r)throw new Error('[svelte-i18n] A "locale" must be set to format dates');return n?i=pn("date",n):0===Object.keys(i).length&&(i=pn("date","short")),new Intl.DateTimeFormat(r,i)})),mn=nn((t=>{var e=t,{locale:r,format:n}=e,i=hn(e,["locale","format"]);if(null==r)throw new Error('[svelte-i18n] A "locale" must be set to format time values');return n?i=pn("time",n):0===Object.keys(i).length&&(i=pn("time","short")),new Intl.DateTimeFormat(r,i)})),yn=nn((
633
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
634
+ (t,e=tn())=>new Br(t,e,Gr().formats,{ignoreTag:Gr().ignoreTag}))),bn=(t,e={})=>{var r,n,i,o;let s=e;"object"==typeof t&&(s=t,t=s.id);const{values:a,locale:c=tn(),default:l}=s;if(null==c)throw new Error("[svelte-i18n] Cannot format a message without first setting the initial locale.");let u=Pr(t,c);if(u){if("string"!=typeof u)return console.warn(`[svelte-i18n] Message with id "${t}" must be of type "string", found: "${typeof u}". Gettin its value through the "$format" method is deprecated; use the "json" method instead.`),u}else u=null!=(o=null!=(i=null==(n=(r=Gr()).handleMissingMessage)?void 0:n.call(r,{locale:c,id:t,defaultValue:l}))?i:l)?o:t;if(!a)return u;let h=u;try{h=yn(u,c).format(a)}catch(e){e instanceof Error&&console.warn(`[svelte-i18n] Message "${t}" has syntax error:`,e.message)}return h},gn=(t,e)=>((t={})=>{var e=t,{locale:r=tn()}=e,n=hn(e,["locale"]);return mn(un({locale:r},n))})(e).format(t),vn=(t,e)=>((t={})=>{var e=t,{locale:r=tn()}=e,n=hn(e,["locale"]);return dn(un({locale:r},n))})(e).format(t),En=(t,e)=>((t={})=>{var e=t,{locale:r=tn()}=e,n=hn(e,["locale"]);return fn(un({locale:r},n))})(e).format(t),_n=(t,e=tn())=>Pr(t,e);Vt([en,Cr],(()=>bn)),Vt([en],(()=>gn)),Vt([en],(()=>vn)),Vt([en],(()=>En)),Vt([en,Cr],(()=>_n)),window.emWidgets={topic:(t,e=0)=>{if(-1==kt.indexOf(t)){let r=new Dt(e);Gt[t]=r,kt.push(t)}return Gt[t]}};function Tn(t,e){Ir(t,e)}const wn={en:{loadingText:"Loading, please wait..."},"zh-hk":{loadingText:"加载请稍候 ..."},fr:{loadingText:"Chargement, veuillez patienter..."},ro:{loadingText:"Se incarca, va rugam asteptati..."},es:{loadingText:"Cargando"},pt:{loadingText:"Carregando, por favor espere..."},de:{loadingText:"Laden, bitte warten..."}};
635
+ /* src/JackpotBanner.svelte generated by Svelte v3.59.2 */function An(t,e,r){const n=t.slice();return n[48]=e[r],n[50]=r,n}
636
+ // (168:2) {:else}
637
+ function Bn(t){let e,r,n,i,o,s,a,f,y,g,v,E,_,T,w,A,B;function H(t,e){/*tabletView*/
638
+ return t[5]?Pn:Ln}let S=H(t),P=S(t);return{c(){e=p("div"),r=p("div"),n=p("div"),i=p("div"),o=p("img"),a=d(),f=p("div"),P.c(),y=d(),g=p("div"),v=p("img"),c(o.src,s=/*vendorIcon*/t[6])||m(o,"src",s),m(o,"alt",""),m(i,"class","vendorLogo"),m(f,"class","displayContainer"),c(v.src,E=/*titleLogoImg*/t[11])||m(v,"src",E),m(v,"alt",""),m(g,"class","title"),m(n,"class",_="mainWrapper "+/*visualstructure*/t[0]+" "+(/*mobileView*/t[4]&&!/*tabletView*/t[5]?"mobile":/*tabletView*/t[5]?"tablet":"")),b(n,"background","url("+/*backgroundImg*/t[10]+")"),m(r,"class","jackpotBanner"),m(e,"class",T=/*displayNone*/t[12]?"DisplayNone":""),m(e,"part",w=/*displayNone*/t[12]?"DisplayNone":"")},m(s,c){u(s,e,c),l(e,r),l(r,n),l(n,i),l(i,o),l(n,a),l(n,f),P.m(f,null),l(n,y),l(n,g),l(g,v),A||(B=function(t,e,r,n){return t.addEventListener(e,r,n),()=>t.removeEventListener(e,r,n)}(r,"click",/*click_handler*/t[31]),A=!0)},p(t,r){/*vendorIcon*/64&r[0]&&!c(o.src,s=/*vendorIcon*/t[6])&&m(o,"src",s),S===(S=H(t))&&P?P.p(t,r):(P.d(1),P=S(t),P&&(P.c(),P.m(f,null))),/*titleLogoImg*/2048&r[0]&&!c(v.src,E=/*titleLogoImg*/t[11])&&m(v,"src",E),/*visualstructure, mobileView, tabletView*/49&r[0]&&_!==(_="mainWrapper "+/*visualstructure*/t[0]+" "+(/*mobileView*/t[4]&&!/*tabletView*/t[5]?"mobile":/*tabletView*/t[5]?"tablet":""))&&m(n,"class",_),/*backgroundImg*/1024&r[0]&&b(n,"background","url("+/*backgroundImg*/t[10]+")"),/*displayNone*/4096&r[0]&&T!==(T=/*displayNone*/t[12]?"DisplayNone":"")&&m(e,"class",T),/*displayNone*/4096&r[0]&&w!==(w=/*displayNone*/t[12]?"DisplayNone":"")&&m(e,"part",w)},d(t){t&&h(e),P.d(),A=!1,B()}}}
639
+ // (166:22)
640
+ function Hn(e){let r;return{c(){r=p("div"),m(r,"class","LoadingSpinner"),m(r,"part","LoadingSpinner")},m(t,e){u(t,r,e)},p:t,d(t){t&&h(r)}}}
641
+ // (164:2) {#if hasErrors}
642
+ function Sn(e){let r;return{c(){r=p("p"),r.textContent="500 Server error"},m(t,e){u(t,r,e)},p:t,d(t){t&&h(r)}}}
643
+ // (178:12) {:else}
644
+ function Pn(t){let e,r,n,i,o,s,a,b,g,v,E,_,T,w,A,B,H,S,P,L,C,O,x,I,N,R,M,U,$,D,k,G,j,F,V,W,X,z,K,Y,Z,q,J,Q,tt,et,rt,nt,it,ot,st,at,ct,lt=/*formattedLabels*/t[8][0]+"",ut=/*formattedJackpotValues*/t[7][0]+"",ht=/*formattedLabels*/t[8][1]+"",pt=/*formattedJackpotValues*/t[7][1]+"",ft=/*formattedLabels*/t[8][2]+"",dt=/*formattedJackpotValues*/t[7][2]+"",mt=/*formattedLabels*/t[8][3]+"",yt=/*formattedJackpotValues*/t[7][3]+"";return{c(){e=p("div"),r=p("div"),n=p("div"),i=p("img"),s=p("span"),a=f(lt),b=p("span"),g=p("span"),v=f(ut),E=d(),_=p("span"),T=f(/*currency*/t[1]),w=d(),A=p("div"),B=p("div"),H=p("img"),P=p("span"),L=f(ht),C=p("span"),O=p("span"),x=f(pt),I=d(),N=p("span"),R=f(/*currency*/t[1]),M=d(),U=p("div"),$=p("div"),D=p("div"),k=p("img"),j=p("span"),F=f(ft),V=p("span"),W=p("span"),X=f(dt),z=d(),K=p("span"),Y=f(/*currency*/t[1]),Z=d(),q=p("div"),J=p("div"),Q=p("img"),et=p("span"),rt=f(mt),nt=p("span"),it=p("span"),ot=f(yt),st=d(),at=p("span"),ct=f(/*currency*/t[1]),m(i,"class","displayCardIcon"),c(i.src,o=/*caticons*/t[9][0])||m(i,"src",o),m(i,"alt",""),m(s,"class","cardLabel"),m(n,"class","iconWrapper"),m(g,"class","jackpotValue"),m(_,"class","jackpot-currency"),m(b,"class","cardTextWrapper"),m(r,"class","displayCard"),m(H,"class","displayCardIcon"),c(H.src,S=/*caticons*/t[9][1])||m(H,"src",S),m(H,"alt",""),m(P,"class","cardLabel"),m(B,"class","iconWrapper"),m(O,"class","jackpotValue"),m(N,"class","jackpot-currency"),m(C,"class","cardTextWrapper"),m(A,"class","displayCard"),m(e,"class","pairWrapper"),m(k,"class","displayCardIcon"),c(k.src,G=/*caticons*/t[9][2])||m(k,"src",G),m(k,"alt",""),m(j,"class","cardLabel"),m(D,"class","iconWrapper"),m(W,"class","jackpotValue"),m(K,"class","jackpot-currency"),m(V,"class","cardTextWrapper"),m($,"class","displayCard"),m(Q,"class","displayCardIcon"),c(Q.src,tt=/*caticons*/t[9][3])||m(Q,"src",tt),m(Q,"alt",""),m(et,"class","cardLabel"),m(J,"class","iconWrapper"),m(it,"class","jackpotValue"),m(at,"class","jackpot-currency"),m(nt,"class","cardTextWrapper"),m(q,"class","displayCard"),m(U,"class","pairWrapper")},m(t,o){u(t,e,o),l(e,r),l(r,n),l(n,i),l(n,s),l(s,a),l(r,b),l(b,g),l(g,v),l(b,E),l(b,_),l(_,T),l(e,w),l(e,A),l(A,B),l(B,H),l(B,P),l(P,L),l(A,C),l(C,O),l(O,x),l(C,I),l(C,N),l(N,R),u(t,M,o),u(t,U,o),l(U,$),l($,D),l(D,k),l(D,j),l(j,F),l($,V),l(V,W),l(W,X),l(V,z),l(V,K),l(K,Y),l(U,Z),l(U,q),l(q,J),l(J,Q),l(J,et),l(et,rt),l(q,nt),l(nt,it),l(it,ot),l(nt,st),l(nt,at),l(at,ct)},p(t,e){/*caticons*/512&e[0]&&!c(i.src,o=/*caticons*/t[9][0])&&m(i,"src",o),/*formattedLabels*/256&e[0]&&lt!==(lt=/*formattedLabels*/t[8][0]+"")&&y(a,lt),/*formattedJackpotValues*/128&e[0]&&ut!==(ut=/*formattedJackpotValues*/t[7][0]+"")&&y(v,ut),/*currency*/2&e[0]&&y(T,/*currency*/t[1]),/*caticons*/512&e[0]&&!c(H.src,S=/*caticons*/t[9][1])&&m(H,"src",S),/*formattedLabels*/256&e[0]&&ht!==(ht=/*formattedLabels*/t[8][1]+"")&&y(L,ht),/*formattedJackpotValues*/128&e[0]&&pt!==(pt=/*formattedJackpotValues*/t[7][1]+"")&&y(x,pt),/*currency*/2&e[0]&&y(R,/*currency*/t[1]),/*caticons*/512&e[0]&&!c(k.src,G=/*caticons*/t[9][2])&&m(k,"src",G),/*formattedLabels*/256&e[0]&&ft!==(ft=/*formattedLabels*/t[8][2]+"")&&y(F,ft),/*formattedJackpotValues*/128&e[0]&&dt!==(dt=/*formattedJackpotValues*/t[7][2]+"")&&y(X,dt),/*currency*/2&e[0]&&y(Y,/*currency*/t[1]),/*caticons*/512&e[0]&&!c(Q.src,tt=/*caticons*/t[9][3])&&m(Q,"src",tt),/*formattedLabels*/256&e[0]&&mt!==(mt=/*formattedLabels*/t[8][3]+"")&&y(rt,mt),/*formattedJackpotValues*/128&e[0]&&yt!==(yt=/*formattedJackpotValues*/t[7][3]+"")&&y(ot,yt),/*currency*/2&e[0]&&y(ct,/*currency*/t[1])},d(t){t&&h(e),t&&h(M),t&&h(U)}}}
645
+ // (174:12) {#if !tabletView}
646
+ function Ln(t){let e,r=Array(4),n=[];for(let e=0;e<r.length;e+=1)n[e]=Cn(An(t,r,e));return{c(){for(let t=0;t<n.length;t+=1)n[t].c();e=f("")},m(t,r){for(let e=0;e<n.length;e+=1)n[e]&&n[e].m(t,r);u(t,e,r)},p(t,i){if(/*currency, formattedJackpotValues, formattedLabels, caticons*/898&i[0]){let o;for(r=Array(4),o=0;o<r.length;o+=1){const s=An(t,r,o);n[o]?n[o].p(s,i):(n[o]=Cn(s),n[o].c(),n[o].m(e.parentNode,e))}for(;o<n.length;o+=1)n[o].d(1);n.length=r.length}},d(t){!function(t,e){for(let r=0;r<t.length;r+=1)t[r]&&t[r].d(e)}(n,t),t&&h(e)}}}
647
+ // (175:14) {#each Array(4) as _, i}
648
+ function Cn(t){let e,r,n,i,o,s,a,b,g,v,E,_,T=/*formattedLabels*/t[8][/*i*/t[50]]+"",w=/*formattedJackpotValues*/(t[7][/*i*/t[50]]??"")+"";return{c(){e=p("div"),r=p("div"),n=p("img"),o=p("span"),s=f(T),a=p("span"),b=p("span"),g=f(w),v=d(),E=p("span"),_=f(/*currency*/t[1]),m(n,"class","displayCardIcon"),c(n.src,i=/*caticons*/t[9][/*i*/t[50]])||m(n,"src",i),m(n,"alt",""),m(o,"class","cardLabel"),m(r,"class","iconWrapper"),m(b,"class","jackpotValue"),m(E,"class","jackpot-currency"),m(a,"class","cardTextWrapper"),m(e,"class","displayCard")},m(t,i){u(t,e,i),l(e,r),l(r,n),l(r,o),l(o,s),l(e,a),l(a,b),l(b,g),l(a,v),l(a,E),l(E,_)},p(t,e){/*caticons*/512&e[0]&&!c(n.src,i=/*caticons*/t[9][/*i*/t[50]])&&m(n,"src",i),/*formattedLabels*/256&e[0]&&T!==(T=/*formattedLabels*/t[8][/*i*/t[50]]+"")&&y(s,T),/*formattedJackpotValues*/128&e[0]&&w!==(w=/*formattedJackpotValues*/(t[7][/*i*/t[50]]??"")+"")&&y(g,w),/*currency*/2&e[0]&&y(_,/*currency*/t[1])},d(t){t&&h(e)}}}function On(e){let r;function n(t,e){/*hasErrors*/
649
+ return t[13]?Sn:/*isLoading*/t[3]?Hn:Bn}let i=n(e),o=i(e);return{c(){r=p("div"),o.c(),this.c=t},m(t,n){u(t,r,n),o.m(r,null),
650
+ /*div_binding*/e[32](r)},p(t,e){i===(i=n(t))&&o?o.p(t,e):(o.d(1),o=i(t),o&&(o.c(),o.m(r,null)))},i:t,o:t,d(t){t&&h(r),o.d(),
651
+ /*div_binding*/e[32](null)}}}function xn(t,e,r){let n,i,{visualstructure:o=""}=e,{title:s=""}=e,{caticon0:a=""}=e,{caticon1:c=""}=e,{caticon2:l=""}=e,{caticon3:u=""}=e,{iconlabels:h=""}=e,{backgroundsrc:p=""}=e,{currency:f=""}=e,{backgroundsrcmobile:d=""}=e,{titlelogopath:m=""}=e,{lang:y="en"}=e,{clientstyling:b=""}=e,{clientstylingurl:g=""}=e,{translationurl:v=""}=e,{endpoint:E=""}=e,{gameid:T=""}=e,w=window.navigator.userAgent,A=!1,B=!1,H="",S=[],P=[],L=[],C=[],O=[],x="",I="",N=!1,R=!0,M=!1;Object.keys(wn).forEach((t=>{Tn(t,wn[t])}));const U=["typeSpread","typeLeft"],$=()=>{if(E&&y&&f){let t=new URL(`${E}/casino/jackpots`);t.searchParams.append("filter",`id=${T}`),t.searchParams.append("language",y),t.searchParams.append("additionalDataCurrency",f),fetch(t.href).then((t=>t.json().then((t=>{r(3,R=!1),i=t,P.includes(T)&&((t=>{var e;const r=null===(e=null==t?void 0:t.items[0])||void 0===e?void 0:e.additionalData;r&&Object.values(r).forEach((t=>S.push(+t)))})(i),(t=>{var e;r(6,H=(null===(e=null==t?void 0:t.items[0])||void 0===e?void 0:e.vendorLogo)||"")})(i))})).catch((t=>{r(13,M=!0),r(3,R=!1),console.error(t)}))))}},D=t=>t.map((t=>Intl.NumberFormat("en-US",{maximumFractionDigits:2}).format(t))),k=()=>{const t=window.innerHeight/window.innerWidth;return.75<t&&t<1.6},G=()=>{window.postMessage({type:"JackpotBannerClicked",gameid:T},window.location.href),
652
+ //Analytics event
653
+ "function"==typeof gtag&&gtag("event","JackpotBannerClicked",{context:"JackpotBanner",gameId:`${T}`})},j=()=>{var t;t=y,en.set(t)};return t.$$set=t=>{"visualstructure"in t&&r(0,o=t.visualstructure),"title"in t&&r(15,s=t.title),"caticon0"in t&&r(16,a=t.caticon0),"caticon1"in t&&r(17,c=t.caticon1),"caticon2"in t&&r(18,l=t.caticon2),"caticon3"in t&&r(19,u=t.caticon3),"iconlabels"in t&&r(20,h=t.iconlabels),"backgroundsrc"in t&&r(21,p=t.backgroundsrc),"currency"in t&&r(1,f=t.currency),"backgroundsrcmobile"in t&&r(22,d=t.backgroundsrcmobile),"titlelogopath"in t&&r(23,m=t.titlelogopath),"lang"in t&&r(24,y=t.lang),"clientstyling"in t&&r(25,b=t.clientstyling),"clientstylingurl"in t&&r(26,g=t.clientstylingurl),"translationurl"in t&&r(27,v=t.translationurl),"endpoint"in t&&r(28,E=t.endpoint),"gameid"in t&&r(29,T=t.gameid)},t.$$.update=()=>{/*endpoint*/268435456&t.$$.dirty[0]&&E&&(()=>{let t=new URL(`${E}/casino/jackpots/config`);fetch(t.href).then((t=>t.json())).then((t=>{r(30,P=t.egtJackpotIds.map((t=>t)))}))})(),/*customStylingContainer, clientstyling*/33554436&t.$$.dirty[0]&&n&&b&&(()=>{let t=document.createElement("style");t.innerHTML=b,n.appendChild(t)})(),/*customStylingContainer, clientstylingurl*/67108868&t.$$.dirty[0]&&n&&g&&(()=>{r(12,N=!0);let t=new URL(g),e=document.createElement("style");fetch(t.href).then((t=>t.text())).then((t=>{e.innerHTML=t,setTimeout((()=>{n.appendChild(e)}),1),setTimeout((()=>{r(12,N=!1)}),500)}))})(),/*endpoint, lang, currency, validGameIds*/1358954498&t.$$.dirty[0]&&E&&y&&f&&P.length>0&&$(),/*currency, lang, isLoading*/16777226&t.$$.dirty[0]&&f&&y&&!R&&(
654
+ // Also checking that ratio is above 1 to work with edge cases where the ratio is landscape but the userAgent comes back as mobile
655
+ r(4,A=(t=>!!(t.toLowerCase().match(/android/i)||t.toLowerCase().match(/blackberry|bb/i)||t.toLowerCase().match(/iphone|ipad|ipod/i)||t.toLowerCase().match(/windows phone|windows mobile|iemobile|wpdesktop/i)))(w)&&window.innerHeight/window.innerWidth>1),r(5,B=k()),
656
+ // Format jackpot values & labels
657
+ 0!==S.length&&r(7,L=D(S)),r(8,C=h?h.split(",").map((t=>t.trim().toUpperCase())):new Array(4).fill("")),
658
+ // check if visualtype passed is correct (longer string prone to errors. maybe shorten the strings to be less descriptive, but also less error prone?)
659
+ U.includes(o.trim())?r(0,o=o.trim()):(console.warn(`Invalid Attribute Value: "${o}" is not a valid value for the "visualstructure" attribute. Defaulting to "${U[0]}"`),r(0,o=U[0])),r(10,x=d&&A&&!B?d:p),r(11,I=m),r(9,O=[a,c,l,u])),/*lang*/16777216&t.$$.dirty[0]&&y&&j(),/*translationurl*/134217728&t.$$.dirty[0]&&v&&fetch(v).then((t=>t.json())).then((t=>{Object.keys(t).forEach((e=>{Tn(e,t[e])}))})).catch((t=>{console.log(t)}))},[o,f,n,R,A,B,H,L,C,O,x,I,N,M,G,s,a,c,l,u,h,p,d,m,y,b,g,v,E,T,P,()=>G(),function(t){_[t?"unshift":"push"]((()=>{n=t,r(2,n)}))}]}class In extends R{constructor(t){super();const e=document.createElement("style");e.textContent=':host{font-family:"Roboto", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";color:#fff}*,*::before,*::after{margin:0;padding:0;list-style:none;text-decoration:none;outline:none;box-sizing:border-box}.mainWrapper{padding:33px 3vw;background-repeat:no-repeat !important;background-size:cover !important;border-radius:7px;display:grid;grid-gap:0.5rem;z-index:0}.vendorLogo{grid-area:vendorLogo;height:24px;width:auto;display:flex;align-items:center}.vendorLogo img{height:100%;width:auto}.displayCard{position:relative;background:#1c2136;height:max(0.5vw, 1rem);padding:10px 20px 10px 24px;margin:0 8px;box-sizing:content-box;border-radius:7px;display:flex;justify-content:center;align-items:center;border:1px solid #ffc052}.displayCard .iconWrapper{width:44px;height:44px;position:absolute;left:-24px;display:flex;flex-direction:column;justify-content:flex-start;align-items:center}.displayCard .displayCardIcon{height:100%;width:auto}.displayCard .cardLabel{font-size:0.8rem;font-style:italic}.displayCard .cardTextWrapper{display:flex;justify-content:center;flex-wrap:nowrap;align-items:flex-end}.title{grid-area:title;display:flex;align-items:center}.title img{height:50px}.displayContainer{grid-area:displayArea;padding:0 0 0 20px;display:flex;gap:40px;justify-content:space-between;align-items:center}.displayContainer .jackpotValue{font-size:1.2rem;font-weight:400;display:flex;align-items:flex-end}.displayContainer .jackpot-currency{font-weight:400;font-style:italic;font-size:8px;padding-left:2px;display:flex;align-items:flex-end}.pairWrapper{width:100%;padding-left:4%;display:flex;justify-content:flex-start;gap:30px}.typeSpread{grid-template-columns:1fr 2.5fr 1fr;grid-template-areas:"title displayArea vendorLogo";align-items:center}.typeSpread.mobile{grid-template-areas:"title" "vendorLogo" "displayArea";margin-top:25px}.typeSpread .pairWrapper{justify-content:center}.typeSpread .vendorLogo{justify-content:flex-end}.typeSpread .title{justify-content:flex-start}.typeSpread .displayContainer{justify-content:space-evenly}.typeLeft{grid-template-columns:1fr 4fr;grid-template-areas:"title displayArea" "vendorLogo displayArea";padding:44px 33px}.typeLeft.mobile{grid-template-areas:"title" "vendorLogo" "displayArea";padding:33px}.typeLeft.mobile .displayContainer{margin-top:50px;gap:2.6rem}.typeLeft .displayContainer{padding-left:2rem;width:auto;gap:2rem}.typeLeft .pairWrapper{justify-content:space-evenly}.typeLeft .title{align-items:flex-end}.typeLeft .vendorLogo{height:24px;width:auto}.mobile{grid-template-columns:1fr;grid-gap:1rem}.mobile .title{justify-content:center;align-items:center}.mobile .title img{height:80px}.mobile .displayContainer{padding-left:26px;flex-direction:column;flex-wrap:nowrap;justify-content:center;align-items:center}.mobile .vendorLogo{justify-content:center;align-items:center}.mobile .displayCard{width:40vw}.tablet .displayContainer{flex-wrap:wrap}.DisplayNone{display:none}.loadingPrompt{color:#333}.LoadingSpinner{display:block;width:80px;height:80px;margin:0 auto}.LoadingSpinner:after{content:" ";display:block;width:64px;height:64px;margin:8px;border-radius:50%;border:6px solid var(--emfe-w-color-primary, #D0046C);border-color:var(--emfe-w-color-primary, #D0046C) transparent var(--emfe-w-color-primary, #D0046C) transparent;animation:LoadingSpinner 1.2s linear infinite}@keyframes LoadingSpinner{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}',this.shadowRoot.appendChild(e),N(this,{target:this.shadowRoot,props:g(this.attributes),customElement:!0},xn,On,o,{visualstructure:0,title:15,caticon0:16,caticon1:17,caticon2:18,caticon3:19,iconlabels:20,backgroundsrc:21,currency:1,backgroundsrcmobile:22,titlelogopath:23,lang:24,clientstyling:25,clientstylingurl:26,translationurl:27,endpoint:28,gameid:29},null,[-1,-1]),t&&(t.target&&u(t.target,this,t.anchor),t.props&&(this.$set(t.props),L()))}static get observedAttributes(){return["visualstructure","title","caticon0","caticon1","caticon2","caticon3","iconlabels","backgroundsrc","currency","backgroundsrcmobile","titlelogopath","lang","clientstyling","clientstylingurl","translationurl","endpoint","gameid"]}get visualstructure(){return this.$$.ctx[0]}set visualstructure(t){this.$$set({visualstructure:t}),L()}get title(){return this.$$.ctx[15]}set title(t){this.$$set({title:t}),L()}get caticon0(){return this.$$.ctx[16]}set caticon0(t){this.$$set({caticon0:t}),L()}get caticon1(){return this.$$.ctx[17]}set caticon1(t){this.$$set({caticon1:t}),L()}get caticon2(){return this.$$.ctx[18]}set caticon2(t){this.$$set({caticon2:t}),L()}get caticon3(){return this.$$.ctx[19]}set caticon3(t){this.$$set({caticon3:t}),L()}get iconlabels(){return this.$$.ctx[20]}set iconlabels(t){this.$$set({iconlabels:t}),L()}get backgroundsrc(){return this.$$.ctx[21]}set backgroundsrc(t){this.$$set({backgroundsrc:t}),L()}get currency(){return this.$$.ctx[1]}set currency(t){this.$$set({currency:t}),L()}get backgroundsrcmobile(){return this.$$.ctx[22]}set backgroundsrcmobile(t){this.$$set({backgroundsrcmobile:t}),L()}get titlelogopath(){return this.$$.ctx[23]}set titlelogopath(t){this.$$set({titlelogopath:t}),L()}get lang(){return this.$$.ctx[24]}set lang(t){this.$$set({lang:t}),L()}get clientstyling(){return this.$$.ctx[25]}set clientstyling(t){this.$$set({clientstyling:t}),L()}get clientstylingurl(){return this.$$.ctx[26]}set clientstylingurl(t){this.$$set({clientstylingurl:t}),L()}get translationurl(){return this.$$.ctx[27]}set translationurl(t){this.$$set({translationurl:t}),L()}get endpoint(){return this.$$.ctx[28]}set endpoint(t){this.$$set({endpoint:t}),L()}get gameid(){return this.$$.ctx[29]}set gameid(t){this.$$set({gameid:t}),L()}}return!customElements.get("jackpot-banner")&&customElements.define("jackpot-banner",In),In}));
660
+ //# sourceMappingURL=jackpot-banner.js.map