@everymatrix/casino-calendar 1.5.2

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,714 @@
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(){}const e=t=>t;function n(t){return t()}function r(){return Object.create(null)}function i(t){t.forEach(n)}function o(t){return"function"==typeof t}function s(t,e){return t!=t?e==e:t!==e||t&&"object"==typeof t||"function"==typeof t}let a;function l(t,e){return a||(a=document.createElement("a")),a.href=e,t===a.href}const c="undefined"!=typeof window;let u=c?()=>window.performance.now():()=>Date.now(),h=c?t=>requestAnimationFrame(t):t;const d=new Set;function p(t){d.forEach((e=>{e.c(t)||(d.delete(e),e.f())})),0!==d.size&&h(p)}
2
+ /**
3
+ * Creates a new task that runs on each raf frame
4
+ * until it returns a falsy value or is aborted
5
+ */function f(t,e){t.appendChild(e)}function y(t){if(!t)return document;const e=t.getRootNode?t.getRootNode():t.ownerDocument;return e&&e.host?e:t.ownerDocument}function m(t){const e=E("style");return function(t,e){f(t.head||t,e)}(y(t),e),e.sheet}function g(t,e,n){t.insertBefore(e,n||null)}function b(t){t.parentNode.removeChild(t)}function v(t,e){for(let n=0;n<t.length;n+=1)t[n]&&t[n].d(e)}function E(t){return document.createElement(t)}function w(t){return document.createElementNS("http://www.w3.org/2000/svg",t)}function T(t){return document.createTextNode(t)}function _(){return T(" ")}function x(){return T("")}function B(t,e,n,r){return t.addEventListener(e,n,r),()=>t.removeEventListener(e,n,r)}function C(t,e,n){null==n?t.removeAttribute(e):t.getAttribute(e)!==n&&t.setAttribute(e,n)}function A(t,e,n){e in t?t[e]="boolean"==typeof t[e]&&""===n||n:C(t,e,n)}function H(t,e){e=""+e,t.wholeText!==e&&(t.data=e)}function S(t,e,n,r){null===n?t.style.removeProperty(e):t.style.setProperty(e,n,r?"important":"")}
6
+ // unfortunately this can't be a constant as that wouldn't be tree-shakeable
7
+ // so we cache the result instead
8
+ let P;function L(){if(void 0===P){P=!1;try{"undefined"!=typeof window&&window.parent&&window.parent.document}catch(t){P=!0}}return P}function I(t){const e={};for(const n of t)e[n.name]=n.value;return e}
9
+ // we need to store the information for multiple documents because a Svelte application could also contain iframes
10
+ // https://github.com/sveltejs/svelte/issues/3624
11
+ const M=new Map;let O,$=0;
12
+ // https://github.com/darkskyapp/string-hash/blob/master/index.js
13
+ function R(t,e,n,r,i,o,s,a=0){const l=16.666/r;let c="{\n";for(let t=0;t<=1;t+=l){const r=e+(n-e)*o(t);c+=100*t+`%{${s(r,1-r)}}\n`}const u=c+`100% {${s(n,1-n)}}\n}`,h=`__svelte_${function(t){let e=5381,n=t.length;for(;n--;)e=(e<<5)-e^t.charCodeAt(n);return e>>>0}(u)}_${a}`,d=y(t),{stylesheet:p,rules:f}=M.get(d)||function(t,e){const n={stylesheet:m(e),rules:{}};return M.set(t,n),n}(d,t);f[h]||(f[h]=!0,p.insertRule(`@keyframes ${h} ${u}`,p.cssRules.length));const g=t.style.animation||"";return t.style.animation=`${g?`${g}, `:""}${h} ${r}ms linear ${i}ms 1 both`,$+=1,h}function N(t,e){const n=(t.style.animation||"").split(", "),r=n.filter(e?t=>t.indexOf(e)<0:t=>-1===t.indexOf("__svelte")),i=n.length-r.length;i&&(t.style.animation=r.join(", "),$-=i,$||h((()=>{$||(M.forEach((t=>{const{stylesheet:e}=t;let n=e.cssRules.length;for(;n--;)e.deleteRule(n);t.rules={}})),M.clear())})))}function D(t){O=t}function k(t){(function(){if(!O)throw new Error("Function called outside component initialization");return O})().$$.on_mount.push(t)}const U=[],F=[],G=[],j=[],z=Promise.resolve();let V=!1;function X(t){G.push(t)}
14
+ // flush() calls callbacks in this order:
15
+ // 1. All beforeUpdate callbacks, in order: parents before children
16
+ // 2. All bind:this callbacks, in reverse order: children before parents.
17
+ // 3. All afterUpdate callbacks, in order: parents before children. EXCEPT
18
+ // for afterUpdates called during the initial onMount, which are called in
19
+ // reverse order: children before parents.
20
+ // Since callbacks might update component values, which could trigger another
21
+ // call to flush(), the following steps guard against this:
22
+ // 1. During beforeUpdate, any updated components will be added to the
23
+ // dirty_components array and will cause a reentrant call to flush(). Because
24
+ // the flush index is kept outside the function, the reentrant call will pick
25
+ // up where the earlier call left off and go through all dirty components. The
26
+ // current_component value is saved and restored so that the reentrant call will
27
+ // not interfere with the "parent" flush() call.
28
+ // 2. bind:this callbacks cannot trigger new flush() calls.
29
+ // 3. During afterUpdate, any updated components will NOT have their afterUpdate
30
+ // callback called a second time; the seen_callbacks set, outside the flush()
31
+ // function, guarantees this behavior.
32
+ const W=new Set;let K,Y=0;// Do *not* move this inside the flush() function
33
+ function Z(){const t=O;do{
34
+ // first, call beforeUpdate functions
35
+ // and update components
36
+ for(;Y<U.length;){const t=U[Y];Y++,D(t),q(t.$$)}for(D(null),U.length=0,Y=0;F.length;)F.pop()();
37
+ // then, once components are updated, call
38
+ // afterUpdate functions. This may cause
39
+ // subsequent updates...
40
+ for(let t=0;t<G.length;t+=1){const e=G[t];W.has(e)||(
41
+ // ...so guard against infinite loops
42
+ W.add(e),e())}G.length=0}while(U.length);for(;j.length;)j.pop()();V=!1,W.clear(),D(t)}function q(t){if(null!==t.fragment){t.update(),i(t.before_update);const e=t.dirty;t.dirty=[-1],t.fragment&&t.fragment.p(t.ctx,e),t.after_update.forEach(X)}}function J(t,e,n){t.dispatchEvent(function(t,e,{bubbles:n=!1,cancelable:r=!1}={}){const i=document.createEvent("CustomEvent");return i.initCustomEvent(t,n,r,e),i}(`${e?"intro":"outro"}${n}`))}const Q=new Set;let tt;function et(t,e){t&&t.i&&(Q.delete(t),t.i(e))}function nt(t,e,n,r){if(t&&t.o){if(Q.has(t))return;Q.add(t),tt.c.push((()=>{Q.delete(t),r&&(n&&t.d(1),r())})),t.o(e)}}const rt={duration:0};function it(n,r,s,a){let l=r(n,s),c=a?0:1,f=null,y=null,m=null;function g(){m&&N(n,m)}function b(t,e){const n=t.b-c;return e*=Math.abs(n),{a:c,b:t.b,d:n,duration:e,start:t.start,end:t.start+e,group:t.group}}function v(r){const{delay:o=0,duration:s=300,easing:a=e,tick:v=t,css:E}=l||rt,w={start:u()+o,b:r};r||(
43
+ // @ts-ignore todo: improve typings
44
+ w.group=tt,tt.r+=1),f||y?y=w:(
45
+ // if this is an intro, and there's a delay, we need to do
46
+ // an initial tick and/or apply CSS animation immediately
47
+ E&&(g(),m=R(n,c,r,s,o,a,E)),r&&v(0,1),f=b(w,s),X((()=>J(n,r,"start"))),function(t){let e;0===d.size&&h(p),new Promise((n=>{d.add(e={c:t,f:n})}))}((t=>{if(y&&t>y.start&&(f=b(y,s),y=null,J(n,f.b,"start"),E&&(g(),m=R(n,c,f.b,f.duration,0,a,l.css))),f)if(t>=f.end)v(c=f.b,1-c),J(n,f.b,"end"),y||(
48
+ // we're done
49
+ f.b?
50
+ // intro — we can tidy up immediately
51
+ g():
52
+ // outro — needs to be coordinated
53
+ --f.group.r||i(f.group.c)),f=null;else if(t>=f.start){const e=t-f.start;c=f.a+f.d*a(e/f.duration),v(c,1-c)}return!(!f&&!y)})))}return{run(t){o(l)?(K||(K=Promise.resolve(),K.then((()=>{K=null}))),K).then((()=>{
54
+ // @ts-ignore
55
+ l=l(),v(t)})):v(t)},end(){g(),f=y=null}}}function ot(t,e){-1===t.$$.dirty[0]&&(U.push(t),V||(V=!0,z.then(Z)),t.$$.dirty.fill(0)),t.$$.dirty[e/31|0]|=1<<e%31}function st(e,s,a,l,c,u,h,d=[-1]){const p=O;D(e);const f=e.$$={fragment:null,ctx:null,
56
+ // state
57
+ props:u,update:t,not_equal:c,bound:r(),
58
+ // lifecycle
59
+ on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(s.context||(p?p.$$.context:[])),
60
+ // everything else
61
+ callbacks:r(),dirty:d,skip_bound:!1,root:s.target||p.$$.root};h&&h(f.root);let y=!1;if(f.ctx=a?a(e,s.props||{},((t,n,...r)=>{const i=r.length?r[0]:n;return f.ctx&&c(f.ctx[t],f.ctx[t]=i)&&(!f.skip_bound&&f.bound[t]&&f.bound[t](i),y&&ot(e,t)),n})):[],f.update(),y=!0,i(f.before_update),
62
+ // `false` as a special case of no DOM component
63
+ f.fragment=!!l&&l(f.ctx),s.target){if(s.hydrate){const t=function(t){return Array.from(t.childNodes)}(s.target);
64
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
65
+ f.fragment&&f.fragment.l(t),t.forEach(b)}else
66
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
67
+ f.fragment&&f.fragment.c();s.intro&&et(e.$$.fragment),function(t,e,r,s){const{fragment:a,on_mount:l,on_destroy:c,after_update:u}=t.$$;a&&a.m(e,r),s||
68
+ // onMount happens before the initial afterUpdate
69
+ X((()=>{const e=l.map(n).filter(o);c?c.push(...e):
70
+ // Edge case - component was destroyed immediately,
71
+ // most likely as a result of a binding initialising
72
+ i(e),t.$$.on_mount=[]})),u.forEach(X)}(e,s.target,s.anchor,s.customElement),Z()}D(p)}let at;"function"==typeof HTMLElement&&(at=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:t}=this.$$;this.$$.on_disconnect=t.map(n).filter(o);
73
+ // @ts-ignore todo: improve typings
74
+ for(const t in this.$$.slotted)
75
+ // @ts-ignore todo: improve typings
76
+ this.appendChild(this.$$.slotted[t])}attributeChangedCallback(t,e,n){this[t]=n}disconnectedCallback(){i(this.$$.on_disconnect)}$destroy(){!function(t,e){const n=t.$$;null!==n.fragment&&(i(n.on_destroy),n.fragment&&n.fragment.d(e),
77
+ // TODO null out other refs, including component.$$ (but need to
78
+ // preserve final state?)
79
+ n.on_destroy=n.fragment=null,n.ctx=[])}(this,1),this.$destroy=t}$on(t,e){
80
+ // TODO should this delegate to addEventListener?
81
+ const n=this.$$.callbacks[t]||(this.$$.callbacks[t]=[]);return n.push(e),()=>{const t=n.indexOf(e);-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)}});var lt="undefined"!=typeof globalThis&&globalThis||"undefined"!=typeof self&&self||void 0!==lt&&lt,ct="URLSearchParams"in lt,ut="Symbol"in lt&&"iterator"in Symbol,ht="FileReader"in lt&&"Blob"in lt&&function(){try{return new Blob,!0}catch(t){return!1}}(),dt="FormData"in lt,pt="ArrayBuffer"in lt;if(pt)var ft=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],yt=ArrayBuffer.isView||function(t){return t&&ft.indexOf(Object.prototype.toString.call(t))>-1};function mt(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 gt(t){return"string"!=typeof t&&(t=String(t)),t}
82
+ // Build a destructive iterator for the value list
83
+ function bt(t){var e={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return ut&&(e[Symbol.iterator]=function(){return e}),e}function vt(t){this.map={},t instanceof vt?t.forEach((function(t,e){this.append(e,t)}),this):Array.isArray(t)?t.forEach((function(t){this.append(t[0],t[1])}),this):t&&Object.getOwnPropertyNames(t).forEach((function(e){this.append(e,t[e])}),this)}function Et(t){if(t.bodyUsed)return Promise.reject(new TypeError("Already read"));t.bodyUsed=!0}function wt(t){return new Promise((function(e,n){t.onload=function(){e(t.result)},t.onerror=function(){n(t.error)}}))}function Tt(t){var e=new FileReader,n=wt(e);return e.readAsArrayBuffer(t),n}function _t(t){if(t.slice)return t.slice(0);var e=new Uint8Array(t.byteLength);return e.set(new Uint8Array(t)),e.buffer}function xt(){return this.bodyUsed=!1,this._initBody=function(t){var e;
84
+ /*
85
+ fetch-mock wraps the Response object in an ES6 Proxy to
86
+ provide useful test harness features such as flush. However, on
87
+ ES5 browsers without fetch or Proxy support pollyfills must be used;
88
+ the proxy-pollyfill is unable to proxy an attribute unless it exists
89
+ on the object before the Proxy is created. This change ensures
90
+ Response.bodyUsed exists on the instance, while maintaining the
91
+ semantic of setting Request.bodyUsed in the constructor before
92
+ _initBody is called.
93
+ */
94
+ this.bodyUsed=this.bodyUsed,this._bodyInit=t,t?"string"==typeof t?this._bodyText=t:ht&&Blob.prototype.isPrototypeOf(t)?this._bodyBlob=t:dt&&FormData.prototype.isPrototypeOf(t)?this._bodyFormData=t:ct&&URLSearchParams.prototype.isPrototypeOf(t)?this._bodyText=t.toString():pt&&ht&&((e=t)&&DataView.prototype.isPrototypeOf(e))?(this._bodyArrayBuffer=_t(t.buffer),
95
+ // IE 10-11 can't handle a DataView body.
96
+ this._bodyInit=new Blob([this._bodyArrayBuffer])):pt&&(ArrayBuffer.prototype.isPrototypeOf(t)||yt(t))?this._bodyArrayBuffer=_t(t):this._bodyText=t=Object.prototype.toString.call(t):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):ct&&URLSearchParams.prototype.isPrototypeOf(t)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},ht&&(this.blob=function(){var t=Et(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=Et(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))}return this.blob().then(Tt)}),this.text=function(){var t=Et(this);if(t)return t;if(this._bodyBlob)return function(t){var e=new FileReader,n=wt(e);return e.readAsText(t),n}(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(function(t){for(var e=new Uint8Array(t),n=new Array(e.length),r=0;r<e.length;r++)n[r]=String.fromCharCode(e[r]);return n.join("")}(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},dt&&(this.formData=function(){return this.text().then(At)}),this.json=function(){return this.text().then(JSON.parse)},this}
97
+ // HTTP methods whose capitalization should be normalized
98
+ vt.prototype.append=function(t,e){t=mt(t),e=gt(e);var n=this.map[t];this.map[t]=n?n+", "+e:e},vt.prototype.delete=function(t){delete this.map[mt(t)]},vt.prototype.get=function(t){return t=mt(t),this.has(t)?this.map[t]:null},vt.prototype.has=function(t){return this.map.hasOwnProperty(mt(t))},vt.prototype.set=function(t,e){this.map[mt(t)]=gt(e)},vt.prototype.forEach=function(t,e){for(var n in this.map)this.map.hasOwnProperty(n)&&t.call(e,this.map[n],n,this)},vt.prototype.keys=function(){var t=[];return this.forEach((function(e,n){t.push(n)})),bt(t)},vt.prototype.values=function(){var t=[];return this.forEach((function(e){t.push(e)})),bt(t)},vt.prototype.entries=function(){var t=[];return this.forEach((function(e,n){t.push([n,e])})),bt(t)},ut&&(vt.prototype[Symbol.iterator]=vt.prototype.entries);var Bt=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function Ct(t,e){if(!(this instanceof Ct))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');var n,r,i=(e=e||{}).body;if(t instanceof Ct){if(t.bodyUsed)throw new TypeError("Already read");this.url=t.url,this.credentials=t.credentials,e.headers||(this.headers=new vt(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 vt(e.headers)),this.method=(n=e.method||this.method||"GET",r=n.toUpperCase(),Bt.indexOf(r)>-1?r:n),this.mode=e.mode||this.mode||null,this.signal=e.signal||this.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)){
99
+ // Search for a '_' parameter in the query string
100
+ var o=/([?&])_=[^&]*/;if(o.test(this.url))
101
+ // If it already exists then set the value with the current time
102
+ this.url=this.url.replace(o,"$1_="+(new Date).getTime());else{this.url+=(/\?/.test(this.url)?"&":"?")+"_="+(new Date).getTime()}}}function At(t){var e=new FormData;return t.trim().split("&").forEach((function(t){if(t){var n=t.split("="),r=n.shift().replace(/\+/g," "),i=n.join("=").replace(/\+/g," ");e.append(decodeURIComponent(r),decodeURIComponent(i))}})),e}function Ht(t,e){if(!(this instanceof Ht))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');e||(e={}),this.type="default",this.status=void 0===e.status?200:e.status,this.ok=this.status>=200&&this.status<300,this.statusText=void 0===e.statusText?"":""+e.statusText,this.headers=new vt(e.headers),this.url=e.url||"",this._initBody(t)}Ct.prototype.clone=function(){return new Ct(this,{body:this._bodyInit})},xt.call(Ct.prototype),xt.call(Ht.prototype),Ht.prototype.clone=function(){return new Ht(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new vt(this.headers),url:this.url})},Ht.error=function(){var t=new Ht(null,{status:0,statusText:""});return t.type="error",t};var St=[301,302,303,307,308];Ht.redirect=function(t,e){if(-1===St.indexOf(e))throw new RangeError("Invalid status code");return new Ht(null,{status:e,headers:{location:t}})};var Pt=lt.DOMException;try{new Pt}catch(t){(Pt=function(t,e){this.message=t,this.name=e;var n=Error(t);this.stack=n.stack}).prototype=Object.create(Error.prototype),Pt.prototype.constructor=Pt}function Lt(t,e){return new Promise((function(n,r){var i=new Ct(t,e);if(i.signal&&i.signal.aborted)return r(new Pt("Aborted","AbortError"));var o=new XMLHttpRequest;function s(){o.abort()}o.onload=function(){var t,e,r={status:o.status,statusText:o.statusText,headers:(t=o.getAllResponseHeaders()||"",e=new vt,
103
+ // Avoiding split via regex to work around a common IE11 bug with the core-js 3.6.0 regex polyfill
104
+ // https://github.com/github/fetch/issues/748
105
+ // https://github.com/zloirock/core-js/issues/751
106
+ 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 n=t.split(":"),r=n.shift().trim();if(r){var i=n.join(":").trim();e.append(r,i)}})),e)};r.url="responseURL"in o?o.responseURL:r.headers.get("X-Request-URL");var i="response"in o?o.response:o.responseText;setTimeout((function(){n(new Ht(i,r))}),0)},o.onerror=function(){setTimeout((function(){r(new TypeError("Network request failed"))}),0)},o.ontimeout=function(){setTimeout((function(){r(new TypeError("Network request failed"))}),0)},o.onabort=function(){setTimeout((function(){r(new Pt("Aborted","AbortError"))}),0)},o.open(i.method,function(t){try{return""===t&&lt.location.href?lt.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&&(ht?o.responseType="blob":pt&&i.headers.get("Content-Type")&&-1!==i.headers.get("Content-Type").indexOf("application/octet-stream")&&(o.responseType="arraybuffer")),!e||"object"!=typeof e.headers||e.headers instanceof vt?i.headers.forEach((function(t,e){o.setRequestHeader(e,t)})):Object.getOwnPropertyNames(e.headers).forEach((function(t){o.setRequestHeader(t,gt(e.headers[t]))})),i.signal&&(i.signal.addEventListener("abort",s),o.onreadystatechange=function(){
107
+ // DONE (success or failure)
108
+ 4===o.readyState&&i.signal.removeEventListener("abort",s)}),o.send(void 0===i._bodyInit?null:i._bodyInit)}))}Lt.polyfill=!0,lt.fetch||(lt.fetch=Lt,lt.Headers=vt,lt.Request=Ct,lt.Response=Ht);
109
+ // the whatwg-fetch polyfill installs the fetch() function
110
+ // on the global object (window or self)
111
+ // Return that as the export for use in Webpack, Browserify etc.
112
+ var It=self.fetch.bind(self),Mt=function(t,e){return Mt=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},Mt(t,e)};
113
+ /******************************************************************************
114
+ Copyright (c) Microsoft Corporation.
115
+
116
+ Permission to use, copy, modify, and/or distribute this software for any
117
+ purpose with or without fee is hereby granted.
118
+
119
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
120
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
121
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
122
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
123
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
124
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
125
+ PERFORMANCE OF THIS SOFTWARE.
126
+ ***************************************************************************** */
127
+ /* global Reflect, Promise */function Ot(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}Mt(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}function $t(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function Rt(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,i,o=n.call(t),s=[];try{for(;(void 0===e||e-- >0)&&!(r=o.next()).done;)s.push(r.value)}catch(t){i={error:t}}finally{try{r&&!r.done&&(n=o.return)&&n.call(o)}finally{if(i)throw i.error}}return s}function Nt(t,e,n){if(n||2===arguments.length)for(var r,i=0,o=e.length;i<o;i++)!r&&i in e||(r||(r=Array.prototype.slice.call(e,0,i)),r[i]=e[i]);return t.concat(r||Array.prototype.slice.call(e))}function Dt(t){return"function"==typeof t}function kt(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}var Ut=kt((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 Ft(t,e){if(t){var n=t.indexOf(e);0<=n&&t.splice(n,1)}}var Gt=function(){function t(t){this.initialTeardown=t,this.closed=!1,this._parentage=null,this._finalizers=null}return t.prototype.unsubscribe=function(){var t,e,n,r,i;if(!this.closed){this.closed=!0;var o=this._parentage;if(o)if(this._parentage=null,Array.isArray(o))try{for(var s=$t(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 l=this.initialTeardown;if(Dt(l))try{l()}catch(t){i=t instanceof Ut?t.errors:[t]}var c=this._finalizers;if(c){this._finalizers=null;try{for(var u=$t(c),h=u.next();!h.done;h=u.next()){var d=h.value;try{Vt(d)}catch(t){i=null!=i?i:[],t instanceof Ut?i=Nt(Nt([],Rt(i)),Rt(t.errors)):i.push(t)}}}catch(t){n={error:t}}finally{try{h&&!h.done&&(r=u.return)&&r.call(u)}finally{if(n)throw n.error}}}if(i)throw new Ut(i)}},t.prototype.add=function(e){var n;if(e&&e!==this)if(this.closed)Vt(e);else{if(e instanceof t){if(e.closed||e._hasParent(this))return;e._addParent(this)}(this._finalizers=null!==(n=this._finalizers)&&void 0!==n?n:[]).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)&&Ft(e,t)},t.prototype.remove=function(e){var n=this._finalizers;n&&Ft(n,e),e instanceof t&&e._removeParent(this)},t.EMPTY=function(){var e=new t;return e.closed=!0,e}(),t}(),jt=Gt.EMPTY;function zt(t){return t instanceof Gt||t&&"closed"in t&&Dt(t.remove)&&Dt(t.add)&&Dt(t.unsubscribe)}function Vt(t){Dt(t)?t():t.unsubscribe()}var Xt={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},Wt={setTimeout:function(t,e){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var i=Wt.delegate;return(null==i?void 0:i.setTimeout)?i.setTimeout.apply(i,Nt([t,e],Rt(n))):setTimeout.apply(void 0,Nt([t,e],Rt(n)))},clearTimeout:function(t){var e=Wt.delegate;return((null==e?void 0:e.clearTimeout)||clearTimeout)(t)},delegate:void 0};function Kt(){}var Yt=null;function Zt(t){if(Xt.useDeprecatedSynchronousErrorHandling){var e=!Yt;if(e&&(Yt={errorThrown:!1,error:null}),t(),e){var n=Yt,r=n.errorThrown,i=n.error;if(Yt=null,r)throw i}}else t()}var qt=function(t){function e(e){var n=t.call(this)||this;return n.isStopped=!1,e?(n.destination=e,zt(e)&&e.add(n)):n.destination=re,n}return Ot(e,t),e.create=function(t,e,n){return new ee(t,e,n)},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}(Gt),Jt=Function.prototype.bind;function Qt(t,e){return Jt.call(t,e)}var te=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){ne(t)}},t.prototype.error=function(t){var e=this.partialObserver;if(e.error)try{e.error(t)}catch(t){ne(t)}else ne(t)},t.prototype.complete=function(){var t=this.partialObserver;if(t.complete)try{t.complete()}catch(t){ne(t)}},t}(),ee=function(t){function e(e,n,r){var i,o,s=t.call(this)||this;Dt(e)||!e?i={next:null!=e?e:void 0,error:null!=n?n:void 0,complete:null!=r?r:void 0}:s&&Xt.useDeprecatedNextContext?((o=Object.create(e)).unsubscribe=function(){return s.unsubscribe()},i={next:e.next&&Qt(e.next,o),error:e.error&&Qt(e.error,o),complete:e.complete&&Qt(e.complete,o)}):i=e;return s.destination=new te(i),s}return Ot(e,t),e}(qt);function ne(t){var e;e=t,Wt.setTimeout((function(){throw e}))}var re={closed:!0,next:Kt,error:function(t){throw t},complete:Kt},ie="function"==typeof Symbol&&Symbol.observable||"@@observable";function oe(t){return t}function se(t){return 0===t.length?oe:1===t.length?t[0]:function(e){return t.reduce((function(t,e){return e(t)}),e)}}var ae=function(){function t(t){t&&(this._subscribe=t)}return t.prototype.lift=function(e){var n=new t;return n.source=this,n.operator=e,n},t.prototype.subscribe=function(t,e,n){var r,i=this,o=(r=t)&&r instanceof qt||function(t){return t&&Dt(t.next)&&Dt(t.error)&&Dt(t.complete)}(r)&&zt(r)?t:new ee(t,e,n);return Zt((function(){var t=i,e=t.operator,n=t.source;o.add(e?e.call(o,n):n?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 n=this;return new(e=le(e))((function(e,r){var i=new ee({next:function(e){try{t(e)}catch(t){r(t),i.unsubscribe()}},error:r,complete:e});n.subscribe(i)}))},t.prototype._subscribe=function(t){var e;return null===(e=this.source)||void 0===e?void 0:e.subscribe(t)},t.prototype[ie]=function(){return this},t.prototype.pipe=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return se(t)(this)},t.prototype.toPromise=function(t){var e=this;return new(t=le(t))((function(t,n){var r;e.subscribe((function(t){return r=t}),(function(t){return n(t)}),(function(){return t(r)}))}))},t.create=function(e){return new t(e)},t}();function le(t){var e;return null!==(e=null!=t?t:Xt.Promise)&&void 0!==e?e:Promise}var ce=kt((function(t){return function(){t(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}})),ue=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 Ot(e,t),e.prototype.lift=function(t){var e=new he(this,this);return e.operator=t,e},e.prototype._throwIfClosed=function(){if(this.closed)throw new ce},e.prototype.next=function(t){var e=this;Zt((function(){var n,r;if(e._throwIfClosed(),!e.isStopped){e.currentObservers||(e.currentObservers=Array.from(e.observers));try{for(var i=$t(e.currentObservers),o=i.next();!o.done;o=i.next()){o.value.next(t)}}catch(t){n={error:t}}finally{try{o&&!o.done&&(r=i.return)&&r.call(i)}finally{if(n)throw n.error}}}}))},e.prototype.error=function(t){var e=this;Zt((function(){if(e._throwIfClosed(),!e.isStopped){e.hasError=e.isStopped=!0,e.thrownError=t;for(var n=e.observers;n.length;)n.shift().error(t)}}))},e.prototype.complete=function(){var t=this;Zt((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,n=this,r=n.hasError,i=n.isStopped,o=n.observers;return r||i?jt:(this.currentObservers=null,o.push(t),new Gt((function(){e.currentObservers=null,Ft(o,t)})))},e.prototype._checkFinalizedStatuses=function(t){var e=this,n=e.hasError,r=e.thrownError,i=e.isStopped;n?t.error(r):i&&t.complete()},e.prototype.asObservable=function(){var t=new ae;return t.source=this,t},e.create=function(t,e){return new he(t,e)},e}(ae),he=function(t){function e(e,n){var r=t.call(this)||this;return r.destination=e,r.source=n,r}return Ot(e,t),e.prototype.next=function(t){var e,n;null===(n=null===(e=this.destination)||void 0===e?void 0:e.next)||void 0===n||n.call(e,t)},e.prototype.error=function(t){var e,n;null===(n=null===(e=this.destination)||void 0===e?void 0:e.error)||void 0===n||n.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,n;return null!==(n=null===(e=this.source)||void 0===e?void 0:e.subscribe(t))&&void 0!==n?n:jt},e}(ue),de={now:function(){return(de.delegate||Date).now()},delegate:void 0},pe=function(t){function e(e,n,r){void 0===e&&(e=1/0),void 0===n&&(n=1/0),void 0===r&&(r=de);var i=t.call(this)||this;return i._bufferSize=e,i._windowTime=n,i._timestampProvider=r,i._buffer=[],i._infiniteTimeWindow=!0,i._infiniteTimeWindow=n===1/0,i._bufferSize=Math.max(1,e),i._windowTime=Math.max(1,n),i}return Ot(e,t),e.prototype.next=function(e){var n=this,r=n.isStopped,i=n._buffer,o=n._infiniteTimeWindow,s=n._timestampProvider,a=n._windowTime;r||(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),n=this._infiniteTimeWindow,r=this._buffer.slice(),i=0;i<r.length&&!t.closed;i+=n?1:2)t.next(r[i]);return this._checkFinalizedStatuses(t),e},e.prototype._trimBuffer=function(){var t=this,e=t._bufferSize,n=t._timestampProvider,r=t._buffer,i=t._infiniteTimeWindow,o=(i?1:2)*e;if(e<1/0&&o<r.length&&r.splice(0,r.length-o),!i){for(var s=n.now(),a=0,l=1;l<r.length&&r[l]<=s;l+=2)a=l;a&&r.splice(0,a+1)}},e}(ue);let fe=[],ye={};
128
+ /**
129
+ * @name topic
130
+ * @description A small wrapper over the rxjs to offer the topic method on top of it
131
+ * @param event [String] Event name
132
+ * @param step [String] How many values to be buffed for new subscribers - default 0
133
+ * @returns ReplaySubject
134
+ */
135
+ const me=[];
136
+ /**
137
+ * Create a `Writable` store that allows both updating and reading by subscription.
138
+ * @param {*=}value initial value
139
+ * @param {StartStopNotifier=}start start and stop notifications for subscriptions
140
+ */
141
+ function ge(e,n=t){let r;const i=new Set;function o(t){if(s(e,t)&&(e=t,r)){// store is ready
142
+ const t=!me.length;for(const t of i)t[1](),me.push(t,e);if(t){for(let t=0;t<me.length;t+=2)me[t][0](me[t+1]);me.length=0}}}return{set:o,update:function(t){o(t(e))},subscribe:function(s,a=t){const l=[s,a];return i.add(l),1===i.size&&(r=n(o)||t),s(e),()=>{i.delete(l),0===i.size&&(r(),r=null)}}}}function be(e,n,r){const s=!Array.isArray(e),a=s?[e]:e,l=n.length<2;return c=e=>{let r=!1;const c=[];let u=0,h=t;const d=()=>{if(u)return;h();const r=n(s?c[0]:c,e);l?e(r):h=o(r)?r:t},p=a.map(((e,n)=>function(e,...n){if(null==e)return t;const r=e.subscribe(...n);return r.unsubscribe?()=>r.unsubscribe():r}(e,(t=>{c[n]=t,u&=~(1<<n),r&&d()}),(()=>{u|=1<<n}))));return r=!0,d(),function(){i(p),h()}},{subscribe:ge(r,c).subscribe};
143
+ /**
144
+ * Creates a `Readable` store that allows reading by subscription.
145
+ * @param value initial value
146
+ * @param {StartStopNotifier}start start and stop notifications for subscriptions
147
+ */
148
+ var c}var ve=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===Ee}(t)}
149
+ // see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25
150
+ (t)};var Ee="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function we(t,e){return!1!==e.clone&&e.isMergeableObject(t)?Ce((n=t,Array.isArray(n)?[]:{}),t,e):t;var n}function Te(t,e,n){return t.concat(e).map((function(t){return we(t,n)}))}function _e(t){return Object.keys(t).concat(function(t){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(t).filter((function(e){return t.propertyIsEnumerable(e)})):[]}(t))}function xe(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 Be(t,e,n){var r={};return n.isMergeableObject(t)&&_e(t).forEach((function(e){r[e]=we(t[e],n)})),_e(e).forEach((function(i){(function(t,e){return xe(t,e)&&!(Object.hasOwnProperty.call(t,e)&&Object.propertyIsEnumerable.call(t,e));// and also unsafe if they're nonenumerable.
153
+ })(t,i)||(xe(t,i)&&n.isMergeableObject(e[i])?r[i]=function(t,e){if(!e.customMerge)return Ce;var n=e.customMerge(t);return"function"==typeof n?n:Ce}(i,n)(t[i],e[i],n):r[i]=we(e[i],n))})),r}function Ce(t,e,n){(n=n||{}).arrayMerge=n.arrayMerge||Te,n.isMergeableObject=n.isMergeableObject||ve,
154
+ // cloneUnlessOtherwiseSpecified is added to `options` so that custom arrayMerge()
155
+ // implementations can use it. The caller may not replace it.
156
+ n.cloneUnlessOtherwiseSpecified=we;var r=Array.isArray(e);return r===Array.isArray(t)?r?n.arrayMerge(t,e,n):Be(t,e,n):we(e,n)}Ce.all=function(t,e){if(!Array.isArray(t))throw new Error("first argument should be an array");return t.reduce((function(t,n){return Ce(t,n,e)}),{})};var Ae=Ce,He=function(t,e){return He=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},He(t,e)};function Se(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}He(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}var Pe,Le,Ie,Me=function(){return Me=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var i in e=arguments[n])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t},Me.apply(this,arguments)};function Oe(t,e,n){if(n||2===arguments.length)for(var r,i=0,o=e.length;i<o;i++)!r&&i in e||(r||(r=Array.prototype.slice.call(e,0,i)),r[i]=e[i]);return t.concat(r||Array.prototype.slice.call(e))}
157
+ /**
158
+ * Type Guards
159
+ */
160
+ function $e(t){return t.type===Le.literal}function Re(t){return t.type===Le.argument}function Ne(t){return t.type===Le.number}function De(t){return t.type===Le.date}function ke(t){return t.type===Le.time}function Ue(t){return t.type===Le.select}function Fe(t){return t.type===Le.plural}function Ge(t){return t.type===Le.pound}function je(t){return t.type===Le.tag}function ze(t){return!(!t||"object"!=typeof t||t.type!==Ie.number)}function Ve(t){return!(!t||"object"!=typeof t||t.type!==Ie.dateTime)}
161
+ // @generated from regex-gen.ts
162
+ !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"}(Pe||(Pe={})),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"}(Le||(Le={})),function(t){t[t.number=0]="number",t[t.dateTime=1]="dateTime"}(Ie||(Ie={}));var Xe=/[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/,We=/(?:[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 Ke(t){var e={};return t.replace(We,(function(t){var n=t.length;switch(t[0]){
272
+ // Era
273
+ case"G":e.era=4===n?"long":5===n?"narrow":"short";break;
274
+ // Year
275
+ case"y":e.year=2===n?"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"][n-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"][n-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===n?"short":5===n?"narrow":"short";break;case"e":if(n<4)throw new RangeError("`e..eee` (weekday) patterns are not supported");e.weekday=["short","long","narrow","short"][n-4];break;case"c":if(n<4)throw new RangeError("`c..ccc` (weekday) patterns are not supported");e.weekday=["short","long","narrow","short"][n-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"][n-1];break;case"H":e.hourCycle="h23",e.hour=["numeric","2-digit"][n-1];break;case"K":e.hourCycle="h11",e.hour=["numeric","2-digit"][n-1];break;case"k":e.hourCycle="h24",e.hour=["numeric","2-digit"][n-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"][n-1];break;
293
+ // Second
294
+ case"s":e.second=["numeric","2-digit"][n-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=n<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 Ye=/[\t-\r \x85\u200E\u200F\u2028\u2029]/i;var Ze=/^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g,qe=/^(@+)?(\+|#+)?[rs]?$/g,Je=/(\*)(0+)|(#+)(0+)|(0+)/g,Qe=/^(0+)$/;function tn(t){var e={};return"r"===t[t.length-1]?e.roundingPriority="morePrecision":"s"===t[t.length-1]&&(e.roundingPriority="lessPrecision"),t.replace(qe,(function(t,n,r){
306
+ // @@@ case
307
+ return"string"!=typeof r?(e.minimumSignificantDigits=n.length,e.maximumSignificantDigits=n.length):"+"===r?e.minimumSignificantDigits=n.length:"#"===n[0]?e.maximumSignificantDigits=n.length:(e.minimumSignificantDigits=n.length,e.maximumSignificantDigits=n.length+("string"==typeof r?r.length:0)),""})),e}function en(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 nn(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 n=t.slice(0,2);if("+!"===n?(e.signDisplay="always",t=t.slice(2)):"+?"===n&&(e.signDisplay="exceptZero",t=t.slice(2)),!Qe.test(t))throw new Error("Malformed concise eng/scientific notation");e.minimumIntegerDigits=t.length}return e}function rn(t){var e=en(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 on(t){for(var e={},n=0,r=t;n<r.length;n++){var i=r[n];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=Me(Me(Me({},e),{notation:"scientific"}),i.options.reduce((function(t,e){return Me(Me({},t),rn(e))}),{}));continue;case"engineering":e=Me(Me(Me({},e),{notation:"engineering"}),i.options.reduce((function(t,e){return Me(Me({},t),rn(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(Je,(function(t,n,r,i,o,s){if(n)e.minimumIntegerDigits=r.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(Qe.test(i.stem))e.minimumIntegerDigits=i.stem.length;else if(Ze.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(Ze,(function(t,n,r,i,o,s){
323
+ // .000* case (before ICU67 it was .000+)
324
+ return"*"===r?e.minimumFractionDigits=n.length:i&&"#"===i[0]?e.maximumFractionDigits=i.length:o&&s?(e.minimumFractionDigits=o.length,e.maximumFractionDigits=o.length+s.length):(e.minimumFractionDigits=n.length,e.maximumFractionDigits=n.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=Me(Me({},e),{trailingZeroDisplay:"stripIfInteger"}):o&&(e=Me(Me({},e),tn(o)))}
327
+ // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#significant-digits-precision
328
+ else if(qe.test(i.stem))e=Me(Me({},e),tn(i.stem));else{var s=en(i.stem);s&&(e=Me(Me({},e),s));var a=nn(i.stem);a&&(e=Me(Me({},e),a))}}return e}
329
+ // @generated from time-data-gen.ts
330
+ // prettier-ignore
331
+ var sn,an={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 ln(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 n,r=t.language;return"root"!==r&&(n=t.maximize().region),(an[n||""]||an[r||""]||an["".concat(r,"-001")]||an["001"])[0]}var cn=new RegExp("^".concat(Xe.source,"*")),un=new RegExp("".concat(Xe.source,"*$"));function hn(t,e){return{start:t,end:e}}
353
+ // #region Ponyfills
354
+ // Consolidate these variables up top for easier toggling during debugging
355
+ var dn=!!String.prototype.startsWith,pn=!!String.fromCodePoint,fn=!!Object.fromEntries,yn=!!String.prototype.codePointAt,mn=!!String.prototype.trimStart,gn=!!String.prototype.trimEnd,bn=!!Number.isSafeInteger?Number.isSafeInteger:function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t&&Math.abs(t)<=9007199254740991},vn=!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
+ vn="a"===(null===(sn=An("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu").exec("a"))||void 0===sn?void 0:sn[0])}catch(t){vn=!1}var En,wn=dn?// Native
363
+ function(t,e,n){return t.startsWith(e,n)}:// For IE11
364
+ function(t,e,n){return t.slice(n,n+e.length)===e},Tn=pn?String.fromCodePoint:// IE11
365
+ function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];for(var n,r="",i=t.length,o=0;i>o;){if((n=t[o++])>1114111)throw RangeError(n+" is not a valid code point");r+=n<65536?String.fromCharCode(n):String.fromCharCode(55296+((n-=65536)>>10),n%1024+56320)}return r},_n=
366
+ // native
367
+ fn?Object.fromEntries:// Ponyfill
368
+ function(t){for(var e={},n=0,r=t;n<r.length;n++){var i=r[n],o=i[0],s=i[1];e[o]=s}return e},xn=yn?// Native
369
+ function(t,e){return t.codePointAt(e)}:// IE 11
370
+ function(t,e){var n=t.length;if(!(e<0||e>=n)){var r,i=t.charCodeAt(e);return i<55296||i>56319||e+1===n||(r=t.charCodeAt(e+1))<56320||r>57343?i:r-56320+(i-55296<<10)+65536}},Bn=mn?// Native
371
+ function(t){return t.trimStart()}:// Ponyfill
372
+ function(t){return t.replace(cn,"")},Cn=gn?// Native
373
+ function(t){return t.trimEnd()}:// Ponyfill
374
+ function(t){return t.replace(un,"")};
375
+ // Prevent minifier to translate new RegExp to literal form that might cause syntax error on IE11.
376
+ function An(t,e){return new RegExp(t,e)}
377
+ // #endregion
378
+ if(vn){
379
+ // Native
380
+ var Hn=An("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");En=function(t,e){var n;return Hn.lastIndex=e,null!==(n=Hn.exec(t)[1])&&void 0!==n?n:""}}else
381
+ // IE11
382
+ En=function(t,e){for(var n=[];;){var r=xn(t,e);if(void 0===r||In(r)||Mn(r))break;n.push(r),e+=r>=65536?2:1}return Tn.apply(void 0,n)};var Sn=/** @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,n){for(var r=[];!this.isEOF();){var i=this.char();if(123/* `{` */===i){if((o=this.parseArgument(t,n)).err)return o;r.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(n)break;return this.error(Pe.UNMATCHED_CLOSING_TAG,hn(this.clonePosition(),this.clonePosition()))}if(60/* `<` */===i&&!this.ignoreTag&&Pn(this.peek()||0)){if((o=this.parseTag(t,e)).err)return o;r.push(o.val)}else{var o;if((o=this.parseLiteral(t,e)).err)return o;r.push(o.val)}}else{var s=this.clonePosition();this.bump(),r.push({type:Le.pound,location:hn(s,this.clonePosition())})}}}return{val:r,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 n=this.clonePosition();this.bump();// `<`
402
+ var r=this.parseTagName();if(this.bumpSpace(),this.bumpIf("/>"))
403
+ // Self closing tag
404
+ return{val:{type:Le.literal,value:"<".concat(r,"/>"),location:hn(n,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()||!Pn(this.char()))return this.error(Pe.INVALID_TAG,hn(s,this.clonePosition()));var a=this.clonePosition();return r!==this.parseTagName()?this.error(Pe.UNMATCHED_CLOSING_TAG,hn(a,this.clonePosition())):(this.bumpSpace(),this.bumpIf(">")?{val:{type:Le.tag,value:r,children:o,location:hn(n,this.clonePosition())},err:null}:this.error(Pe.INVALID_TAG,hn(s,this.clonePosition())))}return this.error(Pe.UNCLOSED_TAG,hn(n,this.clonePosition()))}return this.error(Pe.INVALID_TAG,hn(n,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=this.offset();// the first tag name character
411
+ for(this.bump();!this.isEOF()&&Ln(this.char());)this.bump();return this.message.slice(t,this.offset())},t.prototype.parseLiteral=function(t,e){for(var n=this.clonePosition(),r="";;){var i=this.tryParseQuote(e);if(i)r+=i;else{var o=this.tryParseUnquoted(t,e);if(o)r+=o;else{var s=this.tryParseLeftAngleBracket();if(!s)break;r+=s}}}var a=hn(n,this.clonePosition());return{val:{type:Le.literal,value:r,location:a},err:null}},t.prototype.tryParseLeftAngleBracket=function(){return this.isEOF()||60/* `<` */!==this.char()||!this.ignoreTag&&(Pn(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 n=this.char();if(39/* `'` */===n){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(n);this.bump()}return Tn.apply(void 0,e)},t.prototype.tryParseUnquoted=function(t,e){if(this.isEOF())return null;var n=this.char();return 60/* `<` */===n||123/* `{` */===n||35/* `#` */===n&&("plural"===e||"selectordinal"===e)||125/* `}` */===n&&t>0?null:(this.bump(),Tn(n))},t.prototype.parseArgument=function(t,e){var n=this.clonePosition();if(this.bump(),// `{`
434
+ this.bumpSpace(),this.isEOF())return this.error(Pe.EXPECT_ARGUMENT_CLOSING_BRACE,hn(n,this.clonePosition()));if(125/* `}` */===this.char())return this.bump(),this.error(Pe.EMPTY_ARGUMENT,hn(n,this.clonePosition()));
435
+ // argument name
436
+ var r=this.parseIdentifierIfPossible().value;if(!r)return this.error(Pe.MALFORMED_ARGUMENT,hn(n,this.clonePosition()));if(this.bumpSpace(),this.isEOF())return this.error(Pe.EXPECT_ARGUMENT_CLOSING_BRACE,hn(n,this.clonePosition()));switch(this.char()){
437
+ // Simple argument: `{name}`
438
+ case 125/* `}` */:// `}`
439
+ return this.bump(),{val:{type:Le.argument,
440
+ // value does not include the opening and closing braces.
441
+ value:r,location:hn(n,this.clonePosition())},err:null};
442
+ // Argument with options: `{name, format, ...}`
443
+ case 44/* `,` */:return this.bump(),// `,`
444
+ this.bumpSpace(),this.isEOF()?this.error(Pe.EXPECT_ARGUMENT_CLOSING_BRACE,hn(n,this.clonePosition())):this.parseArgumentOptions(t,e,r,n);default:return this.error(Pe.MALFORMED_ARGUMENT,hn(n,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(),n=En(this.message,e),r=e+n.length;return this.bumpTo(r),{value:n,location:hn(t,this.clonePosition())}},t.prototype.parseArgumentOptions=function(t,e,n,r){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(Pe.EXPECT_ARGUMENT_TYPE,hn(o,a));case"number":case"date":case"time":
456
+ // Parse this range:
457
+ // {name, number, style}
458
+ // ^-------^
459
+ this.bumpSpace();var l=null;if(this.bumpIf(",")){this.bumpSpace();var c=this.clonePosition();if((g=this.parseSimpleArgStyleIfPossible()).err)return g;if(0===(p=Cn(g.val)).length)return this.error(Pe.EXPECT_ARGUMENT_STYLE,hn(this.clonePosition(),this.clonePosition()));l={style:p,styleLocation:hn(c,this.clonePosition())}}if((b=this.tryParseArgumentClose(r)).err)return b;var u=hn(r,this.clonePosition());
460
+ // Extract style or skeleton
461
+ if(l&&wn(null==l?void 0:l.style,"::",0)){
462
+ // Skeleton starts with `::`.
463
+ var h=Bn(l.style.slice(2));if("number"===s)return(g=this.parseNumberSkeletonFromString(h,l.styleLocation)).err?g:{val:{type:Le.number,value:n,location:u,style:g.val},err:null};if(0===h.length)return this.error(Pe.EXPECT_DATE_TIME_SKELETON,u);var d=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&&(d=function(t,e){for(var n="",r=0;r<t.length;r++){var i=t.charAt(r);if("j"===i){for(var o=0;r+1<t.length&&t.charAt(r+1)===i;)o++,r++;var s=1+(1&o),a=o<2?1:3+(o>>1),l=ln(e);for("H"!=l&&"k"!=l||(a=0);a-- >0;)n+="a";for(;s-- >0;)n=l+n}else n+="J"===i?"H":i}return n}(h,this.locale));var p={type:Ie.dateTime,pattern:d,location:l.styleLocation,parsedOptions:this.shouldParseSkeletons?Ke(d):{}};return{val:{type:"date"===s?Le.date:Le.time,value:n,location:u,style:p},err:null}}
468
+ // Regular style or no style.
469
+ return{val:{type:"number"===s?Le.number:"date"===s?Le.date:Le.time,value:n,location:u,style:null!==(i=null==l?void 0:l.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 f=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(Pe.EXPECT_SELECT_ARGUMENT_OPTIONS,hn(f,Me({},f)));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 y=this.parseIdentifierIfPossible(),m=0;if("select"!==s&&"offset"===y.value){if(!this.bumpIf(":"))return this.error(Pe.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,hn(this.clonePosition(),this.clonePosition()));var g;if(this.bumpSpace(),(g=this.tryParseDecimalInteger(Pe.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,Pe.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE)).err)return g;
481
+ // Parse another identifier for option parsing
482
+ this.bumpSpace(),y=this.parseIdentifierIfPossible(),m=g.val}var b,v=this.tryParsePluralOrSelectOptions(t,s,e,y);if(v.err)return v;if((b=this.tryParseArgumentClose(r)).err)return b;var E=hn(r,this.clonePosition());return"select"===s?{val:{type:Le.select,value:n,options:_n(v.val),location:E},err:null}:{val:{type:Le.plural,value:n,options:_n(v.val),offset:m,pluralType:"plural"===s?"cardinal":"ordinal",location:E},err:null};default:return this.error(Pe.INVALID_ARGUMENT_TYPE,hn(o,a))}},t.prototype.tryParseArgumentClose=function(t){
483
+ // Parse: {value, number, ::currency/GBP }
484
+ return this.isEOF()||125/* `}` */!==this.char()?this.error(Pe.EXPECT_ARGUMENT_CLOSING_BRACE,hn(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 n=this.clonePosition();if(!this.bumpUntil("'"))return this.error(Pe.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE,hn(n,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 n=[];try{n=function(t){if(0===t.length)throw new Error("Number skeleton cannot be empty");
492
+ // Parse the skeleton
493
+ for(var e=t.split(Ye).filter((function(t){return t.length>0})),n=[],r=0,i=e;r<i.length;r++){var o=i[r].split("/");if(0===o.length)throw new Error("Invalid number skeleton");for(var s=o[0],a=o.slice(1),l=0,c=a;l<c.length;l++)if(0===c[l].length)throw new Error("Invalid number skeleton");n.push({stem:s,options:a})}return n}(t)}catch(t){return this.error(Pe.INVALID_NUMBER_SKELETON,e)}return{val:{type:Ie.number,tokens:n,location:e,parsedOptions:this.shouldParseSkeletons?on(n):{}},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,n,r){
505
+ // Parse:
506
+ // one {one apple}
507
+ // ^--^
508
+ for(var i,o=!1,s=[],a=new Set,l=r.value,c=r.location;;){if(0===l.length){var u=this.clonePosition();if("select"===e||!this.bumpIf("="))break;
509
+ // Try parse `={number}` selector
510
+ var h=this.tryParseDecimalInteger(Pe.EXPECT_PLURAL_ARGUMENT_SELECTOR,Pe.INVALID_PLURAL_ARGUMENT_SELECTOR);if(h.err)return h;c=hn(u,this.clonePosition()),l=this.message.slice(u.offset,this.offset())}
511
+ // Duplicate selector clauses
512
+ if(a.has(l))return this.error("select"===e?Pe.DUPLICATE_SELECT_ARGUMENT_SELECTOR:Pe.DUPLICATE_PLURAL_ARGUMENT_SELECTOR,c);"other"===l&&(o=!0),
513
+ // Parse:
514
+ // one {one apple}
515
+ // ^----------^
516
+ this.bumpSpace();var d=this.clonePosition();if(!this.bumpIf("{"))return this.error("select"===e?Pe.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT:Pe.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT,hn(this.clonePosition(),this.clonePosition()));var p=this.parseMessage(t+1,e,n);if(p.err)return p;var f=this.tryParseArgumentClose(d);if(f.err)return f;s.push([l,{value:p.val,location:hn(d,this.clonePosition())}]),
517
+ // Keep track of the existing selectors
518
+ a.add(l),
519
+ // Prep next selector clause.
520
+ this.bumpSpace(),l=(i=this.parseIdentifierIfPossible()).value,c=i.location}return 0===s.length?this.error("select"===e?Pe.EXPECT_SELECT_ARGUMENT_SELECTOR:Pe.EXPECT_PLURAL_ARGUMENT_SELECTOR,hn(this.clonePosition(),this.clonePosition())):this.requiresOtherClause&&!o?this.error(Pe.MISSING_OTHER_CLAUSE,hn(this.clonePosition(),this.clonePosition())):{val:s,err:null}},t.prototype.tryParseDecimalInteger=function(t,e){var n=1,r=this.clonePosition();this.bumpIf("+")||this.bumpIf("-")&&(n=-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=hn(r,this.clonePosition());return i?bn(o*=n)?{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=xn(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(wn(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(),n=this.message.indexOf(t,e);return n>=0?(this.bumpTo(n),!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()&&In(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(),n=this.message.charCodeAt(e+(t>=65536?2:1));return null!=n?n:null},t}();
556
+ /**
557
+ * This check if codepoint is alphabet (lower & uppercase)
558
+ * @param codepoint
559
+ * @returns
560
+ */function Pn(t){return t>=97&&t<=122||t>=65&&t<=90}function Ln(t){return 45/* '-' */===t||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}
561
+ /**
562
+ * Code point equivalent of regex `\p{White_Space}`.
563
+ * From: https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt
564
+ */function In(t){return t>=9&&t<=13||32===t||133===t||t>=8206&&t<=8207||8232===t||8233===t}
565
+ /**
566
+ * Code point equivalent of regex `\p{Pattern_Syntax}`.
567
+ * See https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt
568
+ */function Mn(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 On(t){t.forEach((function(t){if(delete t.location,Ue(t)||Fe(t))for(var e in t.options)delete t.options[e].location,On(t.options[e].value);else Ne(t)&&ze(t.style)||(De(t)||ke(t))&&Ve(t.style)?delete t.style.location:je(t)&&On(t.children)}))}function $n(t,e){void 0===e&&(e={}),e=Me({shouldParseSkeletons:!0,requiresOtherClause:!0},e);var n=new Sn(t,e).parse();if(n.err){var r=SyntaxError(Pe[n.err.kind]);
569
+ // @ts-expect-error Assign to error object
570
+ throw r.location=n.err.location,
571
+ // @ts-expect-error Assign to error object
572
+ r.originalMessage=n.err.message,r}return(null==e?void 0:e.captureLocation)||On(n.val),n.val}
573
+
574
+ // Main
575
+
576
+ function Rn(t,e){var n=e&&e.cache?e.cache:zn,r=e&&e.serializer?e.serializer:Fn;return(e&&e.strategy?e.strategy:Un)(t,{cache:n,serializer:r})}
577
+
578
+ // Strategy
579
+
580
+ function Nn(t,e,n,r){var i,o=null==(i=r)||"number"==typeof i||"boolean"==typeof i?r:n(r),s=e.get(o);return void 0===s&&(s=t.call(this,r),e.set(o,s)),s}function Dn(t,e,n){var r=Array.prototype.slice.call(arguments,3),i=n(r),o=e.get(i);return void 0===o&&(o=t.apply(this,r),e.set(i,o)),o}function kn(t,e,n,r,i){return n.bind(e,t,r,i)}function Un(t,e){return kn(t,this,1===t.length?Nn:Dn,e.cache.create(),e.serializer)}
581
+ // Serializer
582
+ var Fn=function(){return JSON.stringify(arguments)};
583
+
584
+ // Cache
585
+
586
+ function Gn(){this.cache=Object.create(null)}Gn.prototype.get=function(t){return this.cache[t]},Gn.prototype.set=function(t,e){this.cache[t]=e};var jn,zn={create:function(){
587
+ // @ts-ignore
588
+ return new Gn}},Vn={variadic:function(t,e){return kn(t,this,Dn,e.cache.create(),e.serializer)},monadic:function(t,e){return kn(t,this,Nn,e.cache.create(),e.serializer)}};!function(t){
589
+ // When we have a placeholder but no value to format
590
+ t.MISSING_VALUE="MISSING_VALUE",
591
+ // When value supplied is invalid
592
+ t.INVALID_VALUE="INVALID_VALUE",
593
+ // When we need specific Intl API but it's not available
594
+ t.MISSING_INTL_API="MISSING_INTL_API"}(jn||(jn={}));var Xn,Wn=/** @class */function(t){function e(e,n,r){var i=t.call(this,e)||this;return i.code=n,i.originalMessage=r,i}return Se(e,t),e.prototype.toString=function(){return"[formatjs Error: ".concat(this.code,"] ").concat(this.message)},e}(Error),Kn=/** @class */function(t){function e(e,n,r,i){return t.call(this,'Invalid values for "'.concat(e,'": "').concat(n,'". Options are "').concat(Object.keys(r).join('", "'),'"'),jn.INVALID_VALUE,i)||this}return Se(e,t),e}(Wn),Yn=/** @class */function(t){function e(e,n,r){return t.call(this,'Value for "'.concat(e,'" must be of type ').concat(n),jn.INVALID_VALUE,r)||this}return Se(e,t),e}(Wn),Zn=/** @class */function(t){function e(e,n){return t.call(this,'The intl string context variable "'.concat(e,'" was not provided to the string "').concat(n,'"'),jn.MISSING_VALUE,n)||this}return Se(e,t),e}(Wn);function qn(t){return"function"==typeof t}
595
+ // TODO(skeleton): add skeleton support
596
+ function Jn(t,e,n,r,i,o,
597
+ // For debugging
598
+ s){
599
+ // Hot path for straight simple msg translations
600
+ if(1===t.length&&$e(t[0]))return[{type:Xn.literal,value:t[0].value}];for(var a=[],l=0,c=t;l<c.length;l++){var u=c[l];
601
+ // Exit early for string parts.
602
+ if($e(u))a.push({type:Xn.literal,value:u.value});else
603
+ // TODO: should this part be literal type?
604
+ // Replace `#` in plural rules with the actual numeric value.
605
+ if(Ge(u))"number"==typeof o&&a.push({type:Xn.literal,value:n.getNumberFormat(e).format(o)});else{var h=u.value;
606
+ // Enforce that all required values are provided by the caller.
607
+ if(!i||!(h in i))throw new Zn(h,s);var d=i[h];if(Re(u))d&&"string"!=typeof d&&"number"!=typeof d||(d="string"==typeof d||"number"==typeof d?String(d):""),a.push({type:"string"==typeof d?Xn.literal:Xn.object,value:d});else
608
+ // Recursively format plural and select parts' option — which can be a
609
+ // nested pattern structure. The choosing of the option to use is
610
+ // abstracted-by and delegated-to the part helper object.
611
+ if(De(u)){var p="string"==typeof u.style?r.date[u.style]:Ve(u.style)?u.style.parsedOptions:void 0;a.push({type:Xn.literal,value:n.getDateTimeFormat(e,p).format(d)})}else if(ke(u)){p="string"==typeof u.style?r.time[u.style]:Ve(u.style)?u.style.parsedOptions:r.time.medium;a.push({type:Xn.literal,value:n.getDateTimeFormat(e,p).format(d)})}else if(Ne(u)){(p="string"==typeof u.style?r.number[u.style]:ze(u.style)?u.style.parsedOptions:void 0)&&p.scale&&(d*=p.scale||1),a.push({type:Xn.literal,value:n.getNumberFormat(e,p).format(d)})}else{if(je(u)){var f=u.children,y=u.value,m=i[y];if(!qn(m))throw new Yn(y,"function",s);var g=m(Jn(f,e,n,r,i,o).map((function(t){return t.value})));Array.isArray(g)||(g=[g]),a.push.apply(a,g.map((function(t){return{type:"string"==typeof t?Xn.literal:Xn.object,value:t}})))}if(Ue(u)){if(!(b=u.options[d]||u.options.other))throw new Kn(u.value,d,Object.keys(u.options),s);a.push.apply(a,Jn(b.value,e,n,r,i))}else if(Fe(u)){var b;if(!(b=u.options["=".concat(d)])){if(!Intl.PluralRules)throw new Wn('Intl.PluralRules is not available in this environment.\nTry polyfilling it using "@formatjs/intl-pluralrules"\n',jn.MISSING_INTL_API,s);var v=n.getPluralRules(e,{type:u.pluralType}).select(d-(u.offset||0));b=u.options[v]||u.options.other}if(!b)throw new Kn(u.value,d,Object.keys(u.options),s);a.push.apply(a,Jn(b.value,e,n,r,i,d-(u.offset||0)))}else;}}}return function(t){return t.length<2?t:t.reduce((function(t,e){var n=t[t.length-1];return n&&n.type===Xn.literal&&e.type===Xn.literal?n.value+=e.value:t.push(e),t}),[])}(a)}
612
+ /*
613
+ Copyright (c) 2014, Yahoo! Inc. All rights reserved.
614
+ Copyrights licensed under the New BSD License.
615
+ See the accompanying LICENSE file for terms.
616
+ */
617
+ // -- MessageFormat --------------------------------------------------------
618
+ function Qn(t,e){return e?Object.keys(t).reduce((function(n,r){var i,o;return n[r]=(i=t[r],(o=e[r])?Me(Me(Me({},i||{}),o||{}),Object.keys(i).reduce((function(t,e){return t[e]=Me(Me({},i[e]),o[e]||{}),t}),{})):i),n}),Me({},t)):t}function tr(t){return{create:function(){return{get:function(e){return t[e]},set:function(e,n){t[e]=n}}}}}!function(t){t[t.literal=0]="literal",t[t.object=1]="object"}(Xn||(Xn={}));var er=/** @class */function(){function t(e,n,r,i){var o,s=this;if(void 0===n&&(n=t.defaultLocale),this.formatterCache={number:{},dateTime:{},pluralRules:{}},this.format=function(t){var e=s.formatToParts(t);
619
+ // Hot path for straight simple msg translations
620
+ if(1===e.length)return e[0].value;var n=e.reduce((function(t,e){return t.length&&e.type===Xn.literal&&"string"==typeof t[t.length-1]?t[t.length-1]+=e.value:t.push(e.value),t}),[]);return n.length<=1?n[0]||"":n},this.formatToParts=function(t){return Jn(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},
621
+ // Defined first because it's used to build the format pattern.
622
+ this.locales=n,this.resolvedLocale=t.resolveLocale(n),"string"==typeof e){if(this.message=e,!t.__parse)throw new TypeError("IntlMessageFormat.__parse must be set to process `message` of type `string`");
623
+ // Parse string messages into an AST.
624
+ 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.");
625
+ // Creates a new object with the specified `formats` merged with the default
626
+ // formats.
627
+ this.formats=Qn(t.formats,r),this.formatters=i&&i.formatters||(void 0===(o=this.formatterCache)&&(o={number:{},dateTime:{},pluralRules:{}}),{getNumberFormat:Rn((function(){for(var t,e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return new((t=Intl.NumberFormat).bind.apply(t,Oe([void 0],e,!1)))}),{cache:tr(o.number),strategy:Vn.variadic}),getDateTimeFormat:Rn((function(){for(var t,e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return new((t=Intl.DateTimeFormat).bind.apply(t,Oe([void 0],e,!1)))}),{cache:tr(o.dateTime),strategy:Vn.variadic}),getPluralRules:Rn((function(){for(var t,e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return new((t=Intl.PluralRules).bind.apply(t,Oe([void 0],e,!1)))}),{cache:tr(o.pluralRules),strategy:Vn.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=$n,
628
+ // Default format options used as the prototype of the `formats` provided to the
629
+ // constructor. These are used when constructing the internal Intl.NumberFormat
630
+ // and Intl.DateTimeFormat instances.
631
+ 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}(),nr=er;
632
+ /*
633
+ Copyright (c) 2014, Yahoo! Inc. All rights reserved.
634
+ Copyrights licensed under the New BSD License.
635
+ See the accompanying LICENSE file for terms.
636
+ */const rr={},ir=(t,e,n)=>n?(e in rr||(rr[e]={}),t in rr[e]||(rr[e][t]=n),n):n,or=(t,e)=>{if(null==e)return;if(e in rr&&t in rr[e])return rr[e][t];const n=_r(e);for(let r=0;r<n.length;r++){const i=cr(n[r],t);if(i)return ir(t,e,i)}};let sr;const ar=ge({});function lr(t){return t in sr}function cr(t,e){if(!lr(t))return null;const n=function(t){return sr[t]||null}(t);return function(t,e){if(null==e)return;if(e in t)return t[e];const n=e.split(".");let r=t;for(let t=0;t<n.length;t++)if("object"==typeof r){if(t>0){const e=n.slice(t,n.length).join(".");if(e in r){r=r[e];break}}r=r[n[t]]}else r=void 0;return r}(n,e)}be([ar],(([t])=>Object.keys(t))),ar.subscribe((t=>sr=t));const ur={};function hr(t){return ur[t]}function dr(t){return null!=t&&_r(t).some((t=>{var e;return null===(e=hr(t))||void 0===e?void 0:e.size}))}function pr(t,e){const n=Promise.all(e.map((e=>(function(t,e){ur[t].delete(e),0===ur[t].size&&delete ur[t]}(t,e),e().then((t=>t.default||t))))));return n.then((e=>function(t,...e){delete rr[t],ar.update((n=>(n[t]=Ae.all([n[t]||{},...e]),n)))}(t,...e)))}const fr={};function yr(t){if(!dr(t))return t in fr?fr[t]:Promise.resolve();const e=function(t){return _r(t).map((t=>{const e=hr(t);return[t,e?[...e]:[]]})).filter((([,t])=>t.length>0))}(t);return fr[t]=Promise.all(e.map((([t,e])=>pr(t,e)))).then((()=>{if(dr(t))return yr(t);delete fr[t]})),fr[t]}
637
+ /*! *****************************************************************************
638
+ Copyright (c) Microsoft Corporation.
639
+
640
+ Permission to use, copy, modify, and/or distribute this software for any
641
+ purpose with or without fee is hereby granted.
642
+
643
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
644
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
645
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
646
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
647
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
648
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
649
+ PERFORMANCE OF THIS SOFTWARE.
650
+ ***************************************************************************** */function mr(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(t);i<r.length;i++)e.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]])}return n}const gr={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 br(){return gr}const vr=ge(!1);let Er;const wr=ge(null);function Tr(t){return t.split("-").map(((t,e,n)=>n.slice(0,e+1).join("-"))).reverse()}function _r(t,e=br().fallbackLocale){const n=Tr(t);return e?[...new Set([...n,...Tr(e)])]:n}function xr(){return null!=Er?Er:void 0}wr.subscribe((t=>{Er=null!=t?t:void 0,"undefined"!=typeof window&&null!=t&&document.documentElement.setAttribute("lang",t)}));const Br=Object.assign(Object.assign({},wr),{set:t=>{if(t&&function(t){if(null==t)return;const e=_r(t);for(let t=0;t<e.length;t++){const n=e[t];if(lr(n))return n}}(t)&&dr(t)){const{loadingDelay:e}=br();let n;return"undefined"!=typeof window&&null!=xr()&&e?n=window.setTimeout((()=>vr.set(!0)),e):vr.set(!0),yr(t).then((()=>{wr.set(t)})).finally((()=>{clearTimeout(n),vr.set(!1)}))}return wr.set(t)}}),Cr=t=>{const e=Object.create(null);return n=>{const r=JSON.stringify(n);return r in e?e[r]:e[r]=t(n)}},Ar=(t,e)=>{const{formats:n}=br();if(t in n&&e in n[t])return n[t][e];throw new Error(`[svelte-i18n] Unknown "${e}" ${t} format.`)},Hr=Cr((t=>{var{locale:e,format:n}=t,r=mr(t,["locale","format"]);if(null==e)throw new Error('[svelte-i18n] A "locale" must be set to format numbers');return n&&(r=Ar("number",n)),new Intl.NumberFormat(e,r)})),Sr=Cr((t=>{var{locale:e,format:n}=t,r=mr(t,["locale","format"]);if(null==e)throw new Error('[svelte-i18n] A "locale" must be set to format dates');return n?r=Ar("date",n):0===Object.keys(r).length&&(r=Ar("date","short")),new Intl.DateTimeFormat(e,r)})),Pr=Cr((t=>{var{locale:e,format:n}=t,r=mr(t,["locale","format"]);if(null==e)throw new Error('[svelte-i18n] A "locale" must be set to format time values');return n?r=Ar("time",n):0===Object.keys(r).length&&(r=Ar("time","short")),new Intl.DateTimeFormat(e,r)})),Lr=Cr(((t,e=xr())=>new nr(t,e,br().formats,{ignoreTag:br().ignoreTag}))),Ir=(t,e={})=>{var n,r,i,o;let s=e;"object"==typeof t&&(s=t,t=s.id);const{values:a,locale:l=xr(),default:c}=s;if(null==l)throw new Error("[svelte-i18n] Cannot format a message without first setting the initial locale.");let u=or(t,l);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===(r=(n=br()).handleMissingMessage)||void 0===r?void 0:r.call(n,{locale:l,id:t,defaultValue:c}))&&void 0!==i?i:c)&&void 0!==o?o:t;if(!a)return u;let h=u;try{h=Lr(u,l).format(a)}catch(e){console.warn(`[svelte-i18n] Message "${t}" has syntax error:`,e.message)}return h},Mr=(t,e)=>((t={})=>{var{locale:e=xr()}=t,n=mr(t,["locale"]);return Pr(Object.assign({locale:e},n))})(e).format(t),Or=(t,e)=>((t={})=>{var{locale:e=xr()}=t,n=mr(t,["locale"]);return Sr(Object.assign({locale:e},n))})(e).format(t),$r=(t,e)=>((t={})=>{var{locale:e=xr()}=t,n=mr(t,["locale"]);return Hr(Object.assign({locale:e},n))})(e).format(t),Rr=(t,e=xr())=>or(t,e);be([Br,ar],(()=>Ir)),be([Br],(()=>Mr)),be([Br],(()=>Or)),be([Br],(()=>$r)),be([Br,ar],(()=>Rr)),window.emWidgets={topic:(t,e=0)=>{if(-1==fe.indexOf(t)){let n=new pe(e);ye[t]=n,fe.push(t)}return ye[t]}};
651
+ /**
652
+ * @name isMobile
653
+ * @description A method that returns if the browser used to access the app is from a mobile device or not
654
+ * @param {String} userAgent window.navigator.userAgent
655
+ * @returns {Boolean} true or false
656
+ */
657
+ const Nr=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));function Dr(t,{delay:n=0,duration:r=400,easing:i=e}={}){const o=+getComputedStyle(t).opacity;return{delay:n,duration:r,easing:i,css:t=>"opacity: "+t*o}}
658
+ /* ../casino-modal/src/CasinoModal.svelte generated by Svelte v3.48.0 */function kr(t){let e,n,r,i,o,s,a,l,c,u,h,d;return{c(){e=E("div"),n=E("div"),r=E("div"),r.innerHTML="<slot></slot>",i=_(),o=E("span"),s=E("slot"),s.innerHTML='<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path></svg>',C(r,"class","ModalContainer"),C(r,"part","ModalContainer"),C(s,"name","close"),C(o,"class",a="ModalCloseBtn "+(/*haspanicbutton*/"true"==t[1]&&/*mobileView*/t[3]?"ModalPanicCloseButton":"")),C(o,"part","ModalCloseBtn"),C(o,"role","button"),C(n,"class","ModalWindow"),C(n,"part","ModalWindow"),C(n,"id","Modal"),X((()=>/*div1_elementresize_handler*/t[17].call(n))),C(e,"part","CustomStylingContainer")},m(a,c){g(a,e,c),f(e,n),f(n,r),f(n,i),f(n,o),f(o,s),
659
+ /*div1_binding*/t[16](n),l=function(t,e){"static"===getComputedStyle(t).position&&(t.style.position="relative");const n=E("iframe");n.setAttribute("style","display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; border: 0; opacity: 0; pointer-events: none; z-index: -1;"),n.setAttribute("aria-hidden","true"),n.tabIndex=-1;const r=L();let i;return r?(n.src="data:text/html,<script>onresize=function(){parent.postMessage(0,'*')}<\/script>",i=B(window,"message",(t=>{t.source===n.contentWindow&&e()}))):(n.src="about:blank",n.onload=()=>{i=B(n.contentWindow,"resize",e)}),f(t,n),()=>{(r||i&&n.contentWindow)&&i(),b(n)}}(n,/*div1_elementresize_handler*/t[17].bind(n)),
660
+ /*div2_binding*/t[18](e),u=!0,h||(d=B(o,"click",/*close*/t[8]),h=!0)},p(e,n){t=e,(!u||/*haspanicbutton, mobileView*/10&n&&a!==(a="ModalCloseBtn "+(/*haspanicbutton*/"true"==t[1]&&/*mobileView*/t[3]?"ModalPanicCloseButton":"")))&&C(o,"class",a)},i(e){u||(X((()=>{c||(c=it(n,Dr,{transitionDuration:/*duration*/t[0]},!0)),c.run(1)})),u=!0)},o(e){c||(c=it(n,Dr,{transitionDuration:/*duration*/t[0]},!1)),c.run(0),u=!1},d(n){n&&b(e)
661
+ /*div1_binding*/,t[16](null),l(),n&&c&&c.end()
662
+ /*div2_binding*/,t[18](null),h=!1,d()}}}function Ur(e){let n,r,o=/*show*/e[7]&&kr(e);return{c(){o&&o.c(),n=x(),this.c=t},m(t,e){o&&o.m(t,e),g(t,n,e),r=!0},p(t,[e]){/*show*/t[7]?o?(o.p(t,e),/*show*/128&e&&et(o,1)):(o=kr(t),o.c(),et(o,1),o.m(n.parentNode,n)):o&&(tt={r:0,c:[],p:tt},nt(o,1,1,(()=>{o=null})),tt.r||i(tt.c),tt=tt.p)},i(t){r||(et(o),r=!0)},o(t){nt(o),r=!1},d(t){o&&o.d(t),t&&b(n)}}}function Fr(t,e,n){let r,i,o,s,{duration:a=350}=e,{session:l=""}=e,{userid:c=""}=e,{clientstyling:u=""}=e,{clientstylingurl:h=""}=e,{endpoint:d=""}=e,{haspanicbutton:p="false"}=e,{gamepagemodalurl:f="false"}=e,{sessioncheck:y="true"}=e,m=window.navigator.userAgent,g=!1,b=!1,v=!1;const E=t=>{if("ModalClosed"==t.data.type&&n(7,v=!1),"ShowGameModal"===t.data.type&&(n(7,v=!0),window.postMessage({type:"GameLaunchID",gameId:t.data.gameId},window.location.href),window.postMessage({type:"DisableScroll"},window.location.href)),"OpenGameFrame"===t.data.type&&(n(7,v=!0),window.postMessage({type:"LaunchGameFrame",gameId:t.data.gameId,gameFunMode:t.data.gamefunmode},window.location.href),window.postMessage({type:"DisableScroll"},window.location.href)),"RequestModalSize"===t.data.type){let t={modalWidth:r?getComputedStyle(r).width:null,modalHeight:r?getComputedStyle(r).height:null};window.postMessage({type:"ModalSize",modalContainerSize:t},window.location.href)}"GameStateOnResize"===t.data.type&&(b=t.data.detailsObtained),"OpenCalendarModal"===t.data.type&&(n(7,v=!0),window.postMessage({type:"DisableScroll"},window.location.href))},w=t=>{if(b){let t={modalWidth:getComputedStyle(r).width,modalHeight:getComputedStyle(r).height};window.postMessage({type:"ModalSize",modalContainerSize:t},window.location.href)}},T=()=>{"true"==y&&function(t,e){return new Promise(((n,r)=>{let i=new Headers;i.append("X-SessionID",e),It(`${t}/player/session/player`,{method:"GET",headers:i}).then((t=>t.json())).then((t=>n(t))).catch((t=>r(t)))}))}(d,l).then((t=>{t.Guid,t.UserID}),(t=>{console.error("err on session",t)}))};return k((()=>(n(3,g=Nr(m)),window.addEventListener("message",E,!1),window.addEventListener("resize",w,!1),()=>{window.removeEventListener("message",E),window.removeEventListener("resize",E)}))),t.$$set=t=>{"duration"in t&&n(0,a=t.duration),"session"in t&&n(9,l=t.session),"userid"in t&&n(10,c=t.userid),"clientstyling"in t&&n(11,u=t.clientstyling),"clientstylingurl"in t&&n(12,h=t.clientstylingurl),"endpoint"in t&&n(13,d=t.endpoint),"haspanicbutton"in t&&n(1,p=t.haspanicbutton),"gamepagemodalurl"in t&&n(14,f=t.gamepagemodalurl),"sessioncheck"in t&&n(15,y=t.sessioncheck)},t.$$.update=()=>{/*session, userid, endpoint*/9728&t.$$.dirty&&l&&c&&d&&T(),/*clientstyling, customStylingContainer*/2052&t.$$.dirty&&u&&i&&(()=>{let t=document.createElement("style");t.innerHTML=u,i.appendChild(t)})(),/*clientstylingurl, customStylingContainer*/4100&t.$$.dirty&&h&&i&&(()=>{let t=new URL(h),e=document.createElement("style");fetch(t.href).then((t=>t.text())).then((t=>{e.innerHTML=t,setTimeout((()=>{i.appendChild(e)}),1)}))})()},[a,p,i,g,r,o,s,v,()=>{n(7,v=!1),n(3,g=Nr(m)),window.postMessage({type:"ModalClosed",gamepagemodalurl:f,mobileView:g},window.location.href)},l,c,u,h,d,f,y,function(t){F[t?"unshift":"push"]((()=>{r=t,n(4,r)}))},function(){o=this.clientWidth,s=this.clientHeight,n(5,o),n(6,s)},function(t){F[t?"unshift":"push"]((()=>{i=t,n(2,i)}))}]}
663
+ /* ../casino-calendar-daily-details/src/CasinoCalendarDailyDetails.svelte generated by Svelte v3.48.0 */
664
+ function Gr(t,e,n){const r=t.slice();return r[26]=e[n],r[27]=e,r[28]=n,r}function jr(t,e,n){const r=t.slice();return r[29]=e[n],r[28]=n,r}
665
+ // (105:4) {:else}
666
+ function zr(t){let e,n,r,i,o,s=/*dailyeventsDetails*/t[3],a=[];for(let e=0;e<s.length;e+=1)a[e]=qr(Gr(t,s,e));return{c(){e=E("div"),n=E("div"),r=T(/*dailyday*/t[1]),i=_();for(let t=0;t<a.length;t+=1)a[t].c();C(n,"class","CasinoCalendarDailyDay"),C(e,"class",o="CasinoCalendarDailyDetailsBackground "+(/*mobileView*/t[6]?"Mobile":""))},m(t,o){g(t,e,o),f(e,n),f(n,r),f(e,i);for(let t=0;t<a.length;t+=1)a[t].m(e,null)},p(t,n){if(/*dailyday*/2&n&&H(r,/*dailyday*/t[1]),/*dailyeventsDetails, selectedTab, setActiveTab, handleDetailsArea, dailybuttontitle*/409&n){let r;for(s=/*dailyeventsDetails*/t[3],r=0;r<s.length;r+=1){const i=Gr(t,s,r);a[r]?a[r].p(i,n):(a[r]=qr(i),a[r].c(),a[r].m(e,null))}for(;r<a.length;r+=1)a[r].d(1);a.length=s.length}/*mobileView*/64&n&&o!==(o="CasinoCalendarDailyDetailsBackground "+(/*mobileView*/t[6]?"Mobile":""))&&C(e,"class",o)},d(t){t&&b(e),v(a,t)}}}
667
+ // (103:4) {#if isLoading}
668
+ function Vr(e){let n;return{c(){n=E("p"),n.textContent="Loading ...",C(n,"class","SearchLoading"),C(n,"part","SearchLoading")},m(t,e){g(t,n,e)},p:t,d(t){t&&b(n)}}}
669
+ // (130:16) {:else}
670
+ function Xr(t){let e,n;return{c(){e=w("svg"),n=w("path"),C(n,"stroke-linecap","round"),C(n,"stroke-linejoin","round"),C(n,"d","M19.5 8.25l-7.5 7.5-7.5-7.5"),C(e,"xmlns","http://www.w3.org/2000/svg"),C(e,"fill","none"),C(e,"viewBox","0 0 24 24"),C(e,"stroke-width","1.5"),C(e,"stroke","currentColor"),C(e,"class","IconUp")},m(t,r){g(t,e,r),f(e,n)},d(t){t&&b(e)}}}
671
+ // (116:16) {#if event.expandedInfo == true}
672
+ function Wr(t){let e,n;return{c(){e=w("svg"),n=w("path"),C(n,"stroke-linecap","round"),C(n,"stroke-linejoin","round"),C(n,"d","M19.5 8.25l-7.5 7.5-7.5-7.5"),C(e,"xmlns","http://www.w3.org/2000/svg"),C(e,"fill","none"),C(e,"viewBox","0 0 24 24"),C(e,"stroke-width","1.5"),C(e,"stroke","currentColor"),C(e,"class","IconDown")},m(t,r){g(t,e,r),f(e,n)},d(t){t&&b(e)}}}
673
+ // (147:14) {#if event.expandedInfo == true}
674
+ function Kr(t){let e,n,r=/*event*/t[26].details,i=[];for(let e=0;e<r.length;e+=1)i[e]=Yr(jr(t,r,e));let o=/*event*/t[26].detailsExpanded&&Zr(t);return{c(){for(let t=0;t<i.length;t+=1)i[t].c();e=_(),o&&o.c(),n=x()},m(t,r){for(let e=0;e<i.length;e+=1)i[e].m(t,r);g(t,e,r),o&&o.m(t,r),g(t,n,r)},p(t,s){if(/*selectedTab, dailyeventsDetails, setActiveTab*/280&s){let n;for(r=/*event*/t[26].details,n=0;n<r.length;n+=1){const o=jr(t,r,n);i[n]?i[n].p(o,s):(i[n]=Yr(o),i[n].c(),i[n].m(e.parentNode,e))}for(;n<i.length;n+=1)i[n].d(1);i.length=r.length}/*event*/t[26].detailsExpanded?o?o.p(t,s):(o=Zr(t),o.c(),o.m(n.parentNode,n)):o&&(o.d(1),o=null)},d(t){v(i,t),t&&b(e),o&&o.d(t),t&&b(n)}}}
675
+ // (148:16) {#each event.details as detail, index}
676
+ function Yr(t){let e,n,r,i,o,s,a,l,c=/*detail*/t[29].title+"";function u(){/*click_handler_1*/
677
+ return t[18](/*event*/t[26],/*index*/t[28])}return{c(){e=E("div"),n=E("div"),r=E("button"),i=T(c),C(r,"class",o="HeaderButton "+(/*detail*/t[29].expandedTab?"Active":"")),C(n,"class","Header"),C(e,"class",s=/*index*/t[28]==/*selectedTab*/t[4]?"SelectedTab":""),C(e,"id","CollapseMoreInfoButton"),S(e,"height",/*event*/t[26].expandedInfo?"100%":"")},m(t,o){g(t,e,o),f(e,n),f(n,r),f(r,i),a||(l=B(r,"click",u),a=!0)},p(n,a){t=n,/*dailyeventsDetails*/8&a&&c!==(c=/*detail*/t[29].title+"")&&H(i,c),/*dailyeventsDetails*/8&a&&o!==(o="HeaderButton "+(/*detail*/t[29].expandedTab?"Active":""))&&C(r,"class",o),/*selectedTab*/16&a&&s!==(s=/*index*/t[28]==/*selectedTab*/t[4]?"SelectedTab":"")&&C(e,"class",s),/*dailyeventsDetails*/8&a&&S(e,"height",/*event*/t[26].expandedInfo?"100%":"")},d(t){t&&b(e),a=!1,l()}}}
678
+ // (158:16) {#if event.detailsExpanded}
679
+ function Zr(t){let e,n,r,i=/*event*/t[26].details[/*selectedTab*/t[4]].description+"";return{c(){e=E("div"),n=T(i),C(e,"class",r="DetailTabsDescription "+(/*event*/t[26].details[/*selectedTab*/t[4]].expandedTab?"":"NotVisible"))},m(t,r){g(t,e,r),f(e,n)},p(t,o){/*dailyeventsDetails, selectedTab*/24&o&&i!==(i=/*event*/t[26].details[/*selectedTab*/t[4]].description+"")&&H(n,i),/*dailyeventsDetails, selectedTab*/24&o&&r!==(r="DetailTabsDescription "+(/*event*/t[26].details[/*selectedTab*/t[4]].expandedTab?"":"NotVisible"))&&C(e,"class",r)},d(t){t&&b(e)}}}
680
+ // (108:8) {#each dailyeventsDetails as event, index}
681
+ function qr(t){let e,n,r,i,o,s,a,c,u,h,d,p,y,m,v,w,x,A,S,P,L=/*event*/t[26].title+"",I=/*event*/t[26].description+"";function M(t,e){/*event*/
682
+ return 1==t[26].expandedInfo?Wr:Xr}let O=M(t),$=O(t);function R(){/*click_handler*/
683
+ return t[17](/*event*/t[26],/*each_value*/t[27],/*index*/t[28])}let N=/*event*/1==t[26].expandedInfo&&Kr(t);return{c(){e=E("div"),n=E("div"),r=T(L),i=_(),o=E("div"),s=E("img"),u=_(),h=E("div"),d=T(I),p=_(),y=E("div"),m=E("button"),v=T(/*dailybuttontitle*/t[0]),w=_(),$.c(),x=_(),N&&N.c(),A=_(),C(n,"class","CasinoCalendarDailyTitle"),C(s,"class","CasinoCalendarFitImage"),l(s.src,a=/*event*/t[26].image)||C(s,"src",a),C(s,"alt",c=/*event*/t[26].image),C(o,"class","CasinoCalendarImage"),C(h,"class","CasinoCalendarDailyDescription"),C(m,"class","MoreInfoButton"),C(y,"class","CasinoCalendarTabs"),C(e,"class","CasinoCalendarDailyDetailsParent")},m(t,a){g(t,e,a),f(e,n),f(n,r),f(e,i),f(e,o),f(o,s),f(e,u),f(e,h),f(h,d),f(e,p),f(e,y),f(y,m),f(m,v),f(m,w),$.m(m,null),f(y,x),N&&N.m(y,null),f(e,A),S||(P=B(m,"click",R),S=!0)},p(e,n){t=e,/*dailyeventsDetails*/8&n&&L!==(L=/*event*/t[26].title+"")&&H(r,L),/*dailyeventsDetails*/8&n&&!l(s.src,a=/*event*/t[26].image)&&C(s,"src",a),/*dailyeventsDetails*/8&n&&c!==(c=/*event*/t[26].image)&&C(s,"alt",c),/*dailyeventsDetails*/8&n&&I!==(I=/*event*/t[26].description+"")&&H(d,I),/*dailybuttontitle*/1&n&&H(v,/*dailybuttontitle*/t[0]),O!==(O=M(t))&&($.d(1),$=O(t),$&&($.c(),$.m(m,null))),/*event*/1==t[26].expandedInfo?N?N.p(t,n):(N=Kr(t),N.c(),N.m(y,null)):N&&(N.d(1),N=null)},d(t){t&&b(e),$.d(),N&&N.d(),S=!1,P()}}}function Jr(e){let n;function r(t,e){/*isLoading*/
684
+ return t[5]?Vr:zr}let i=r(e),o=i(e);return{c(){n=E("div"),o.c(),this.c=t},m(t,r){g(t,n,r),o.m(n,null),
685
+ /*div_binding*/e[19](n)},p(t,[e]){i===(i=r(t))&&o?o.p(t,e):(o.d(1),o=i(t),o&&(o.c(),o.m(n,null)))},i:t,o:t,d(t){t&&b(n),o.d(),
686
+ /*div_binding*/e[19](null)}}}function Qr(t,e,n){let r,{dailybackground:i=""}=e,{dailybuttontitle:o=""}=e,{dailyday:s=""}=e,{dailydescription:a="<p></p>"}=e,{dailyicon:l=""}=e,{dailytitle:c=""}=e,{lang:u="en"}=e,{clientstyling:h=""}=e,{clientstylingurl:d=""}=e,{translationUrl:p=""}=e,f=[],y=0,m=!0,g=!1,b=window.navigator.userAgent;!function({withLocale:t,translations:e}){Br.subscribe((n=>{null==n&&(ar.set(e),Br.set(t))}));// maybe we will need this to make sure that the i18n is set up only once
687
+ /*dictionary.set(translations);
688
+ locale.set(_locale);*/}({withLocale:"en",translations:{}});const v=t=>{"DailyEventsData"==t.data.type&&(n(5,m=!1),n(3,f=t.data.data),f.forEach((t=>{t.expandedInfo=!1,t.detailsExpanded=!1,t.details.forEach(((t,e)=>{t.expandedTab=0==e}))}))),"ModalClosed"==t.data.type&&(n(4,y=0),f.forEach(((t,e)=>{t.detailsExpanded=0==e,t.expandedInfo=0==e})))},E=()=>{var t;t=u,Br.set(t)},w=t=>{n(4,y=0),n(3,f[t].detailsExpanded=!f[t].detailsExpanded,f),
689
+ //Analytics event
690
+ "function"==typeof gtag&&gtag("event","MoreInfo",{context:"CalendarWidgetDetails"})},T=(t,e)=>{n(4,y=e),t.details.forEach(((t,e)=>{t.expandedTab=y==e}))};k((()=>(window.addEventListener("message",v,!1),Nr(b)&&n(6,g=!0),()=>{window.removeEventListener("message",v)})));return t.$$set=t=>{"dailybackground"in t&&n(9,i=t.dailybackground),"dailybuttontitle"in t&&n(0,o=t.dailybuttontitle),"dailyday"in t&&n(1,s=t.dailyday),"dailydescription"in t&&n(10,a=t.dailydescription),"dailyicon"in t&&n(11,l=t.dailyicon),"dailytitle"in t&&n(12,c=t.dailytitle),"lang"in t&&n(13,u=t.lang),"clientstyling"in t&&n(14,h=t.clientstyling),"clientstylingurl"in t&&n(15,d=t.clientstylingurl),"translationUrl"in t&&n(16,p=t.translationUrl)},t.$$.update=()=>{/*lang*/8192&t.$$.dirty&&u&&E(),/*clientstyling, customStylingContainer*/16388&t.$$.dirty&&h&&r&&(()=>{let t=document.createElement("style");t.innerHTML=h,r.appendChild(t)})(),/*clientstylingurl, customStylingContainer*/32772&t.$$.dirty&&d&&r&&(()=>{let t=new URL(d),e=document.createElement("style");fetch(t.href).then((t=>t.text())).then((t=>{e.innerHTML=t,setTimeout((()=>{r.appendChild(e)}),1),setTimeout((()=>{}),500)}))})()},[o,s,r,f,y,m,g,w,T,i,a,l,c,u,h,d,p,(t,e,r)=>{n(3,e[r].expandedInfo=!t.expandedInfo,f),w(r)},(t,e)=>{T(t,e)},function(t){F[t?"unshift":"push"]((()=>{r=t,n(2,r)}))}]}!customElements.get("casino-modal")&&customElements.define("casino-modal",class extends at{constructor(t){super(),this.shadowRoot.innerHTML='<style>:host{font-family:system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"}*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}.ModalWindow{display:flex;position:fixed;align-items:center;justify-content:center;width:100%;height:100%;z-index:100;top:0;left:0;background-color:rgba(0, 0, 0, 0.9)}.ModalWindow .ModalPanicCloseButton{margin-top:45px}.ModalWindow .ModalCloseBtn{position:absolute;display:flex;align-items:center;justify-content:center;top:10px;right:10px;padding:10px;border-radius:50%;color:var(--emfe-w-color-white, #FFFFFF);background:rgba(255, 255, 255, 0.1);cursor:pointer;transition:all 150ms ease-in-out}.ModalWindow .ModalCloseBtn svg{width:32px;height:32px}.ModalWindow .ModalCloseBtn:hover{background:rgba(255, 255, 255, 0.2)}</style>',st(this,{target:this.shadowRoot,props:I(this.attributes),customElement:!0},Fr,Ur,s,{duration:0,session:9,userid:10,clientstyling:11,clientstylingurl:12,endpoint:13,haspanicbutton:1,gamepagemodalurl:14,sessioncheck:15},null),t&&(t.target&&g(t.target,this,t.anchor),t.props&&(this.$set(t.props),Z()))}static get observedAttributes(){return["duration","session","userid","clientstyling","clientstylingurl","endpoint","haspanicbutton","gamepagemodalurl","sessioncheck"]}get duration(){return this.$$.ctx[0]}set duration(t){this.$$set({duration:t}),Z()}get session(){return this.$$.ctx[9]}set session(t){this.$$set({session:t}),Z()}get userid(){return this.$$.ctx[10]}set userid(t){this.$$set({userid:t}),Z()}get clientstyling(){return this.$$.ctx[11]}set clientstyling(t){this.$$set({clientstyling:t}),Z()}get clientstylingurl(){return this.$$.ctx[12]}set clientstylingurl(t){this.$$set({clientstylingurl:t}),Z()}get endpoint(){return this.$$.ctx[13]}set endpoint(t){this.$$set({endpoint:t}),Z()}get haspanicbutton(){return this.$$.ctx[1]}set haspanicbutton(t){this.$$set({haspanicbutton:t}),Z()}get gamepagemodalurl(){return this.$$.ctx[14]}set gamepagemodalurl(t){this.$$set({gamepagemodalurl:t}),Z()}get sessioncheck(){return this.$$.ctx[15]}set sessioncheck(t){this.$$set({sessioncheck:t}),Z()}});
691
+ /* ../casino-calendar-daily-item/src/CasinoCalendarDailyItem.svelte generated by Svelte v3.48.0 */
692
+ function ti(e){let n,r,i,o,s,a,c,u,h,d,p,y,m,v,w,x,A,P,L,I,M,O,$;return{c(){n=E("div"),r=E("div"),i=E("div"),o=E("div"),s=E("div"),s.innerHTML='<div class="RingLeft"></div> \n <div class="RingRight"></div>',a=_(),c=E("div"),u=E("div"),h=E("img"),p=_(),y=E("div"),m=T(/*dailyday*/e[2]),v=_(),w=E("div"),x=_(),A=E("div"),P=E("button"),L=T(/*dailybuttontitle*/e[3]),this.c=t,C(s,"class","CalendarBar"),l(h.src,d=/*dailyicon*/e[1])||C(h,"src",d),C(h,"alt",/*dailyicon*/e[1]),C(u,"class","CasinoCalendarDailyIcon"),C(y,"class","CasinoCalendarDailyTitle"),C(w,"class","CasinoCalendarDailyItemDescription"),C(P,"class","MoreInfoButton"),C(A,"class","CasinoCalendarDailyItemButton"),C(c,"class",I="CasinoCalendarItemBackground CalendarPage "+("OpenCalendarModal"==/*index*/e[4]?"Tear":"")),S(c,"background-image","url('"+/*dailybackground*/e[0]+"')"),S(c,"background-size","cover"),S(c,"background-position","center"),S(c,"-webkit-background-size","cover"),S(c,"-moz-background-size","cover"),S(c,"-o-background-size","cover"),C(o,"class","CalendarCard"),C(i,"class","CasinoCalendarItems"),C(r,"class",M="Container "+(/*mobileView*/e[7]?"Mobile":""))},m(t,l){g(t,n,l),f(n,r),f(r,i),f(i,o),f(o,s),f(o,a),f(o,c),f(c,u),f(u,h),f(c,p),f(c,y),f(y,m),f(c,v),f(c,w),
693
+ /*div5_binding*/e[14](w),f(c,x),f(c,A),f(A,P),f(P,L),
694
+ /*div11_binding*/e[16](n),O||($=B(P,"click",/*click_handler*/e[15]),O=!0)},p(t,[e]){/*dailyicon*/2&e&&!l(h.src,d=/*dailyicon*/t[1])&&C(h,"src",d),/*dailyicon*/2&e&&C(h,"alt",/*dailyicon*/t[1]),/*dailyday*/4&e&&H(m,/*dailyday*/t[2]),/*dailybuttontitle*/8&e&&H(L,/*dailybuttontitle*/t[3]),/*index*/16&e&&I!==(I="CasinoCalendarItemBackground CalendarPage "+("OpenCalendarModal"==/*index*/t[4]?"Tear":""))&&C(c,"class",I),/*dailybackground*/1&e&&S(c,"background-image","url('"+/*dailybackground*/t[0]+"')"),/*mobileView*/128&e&&M!==(M="Container "+(/*mobileView*/t[7]?"Mobile":""))&&C(r,"class",M)},i:t,o:t,d(t){t&&b(n)
695
+ /*div5_binding*/,e[14](null),
696
+ /*div11_binding*/e[16](null),O=!1,$()}}}function ei(t,e,n){let r,i,{cmsendpoint:o=""}=e,{lang:s=""}=e,{dailybackground:a=""}=e,{dailyicon:l=""}=e,{dailyday:c=""}=e,{dailydescription:u="<p></p>"}=e,{dailybuttontitle:h=""}=e,{index:d="0"}=e,{clientstyling:p=""}=e,{clientstylingurl:f=""}=e;!function({withLocale:t,translations:e}){Br.subscribe((n=>{null==n&&(ar.set(e),Br.set(t))}));// maybe we will need this to make sure that the i18n is set up only once
697
+ /*dictionary.set(translations);
698
+ locale.set(_locale);*/}({withLocale:"en",translations:{}});let y=!1,m=window.navigator.userAgent;const g=()=>{window.postMessage({type:"OpenCalendarModal",index:d},window.location.href),
699
+ //Analytics event
700
+ "function"==typeof gtag&&gtag("event","MoreInfo",{context:"CalendarWidgetItem"})};k((()=>{Nr(m)&&n(7,y=!0)}));return t.$$set=t=>{"cmsendpoint"in t&&n(9,o=t.cmsendpoint),"lang"in t&&n(10,s=t.lang),"dailybackground"in t&&n(0,a=t.dailybackground),"dailyicon"in t&&n(1,l=t.dailyicon),"dailyday"in t&&n(2,c=t.dailyday),"dailydescription"in t&&n(11,u=t.dailydescription),"dailybuttontitle"in t&&n(3,h=t.dailybuttontitle),"index"in t&&n(4,d=t.index),"clientstyling"in t&&n(12,p=t.clientstyling),"clientstylingurl"in t&&n(13,f=t.clientstylingurl)},t.$$.update=()=>{/*dailyicon, dailyday, dailydescription, dailybuttontitle, dailybackground*/2063&t.$$.dirty&&l&&c&&u&&h&&a&&(()=>{
701
+ // remove HTML tags
702
+ let t=document.createElement("div");t.innerHTML=u,r.append(t)})(),/*clientstyling, customStylingContainer*/4128&t.$$.dirty&&p&&i&&(()=>{let t=document.createElement("style");t.innerHTML=p,i.appendChild(t)})(),/*clientstylingurl, customStylingContainer*/8224&t.$$.dirty&&f&&i&&(()=>{let t=new URL(f),e=document.createElement("style");fetch(t.href).then((t=>t.text())).then((t=>{e.innerHTML=t,setTimeout((()=>{i.appendChild(e)}),1),setTimeout((()=>{}),500)}))})()},[a,l,c,h,d,i,r,y,g,o,s,u,p,f,function(t){F[t?"unshift":"push"]((()=>{r=t,n(6,r)}))},()=>g(),function(t){F[t?"unshift":"push"]((()=>{i=t,n(5,i)}))}]}!customElements.get("casino-calendar-daily-details")&&customElements.define("casino-calendar-daily-details",class extends at{constructor(t){super(),this.shadowRoot.innerHTML='<style>:host{font-family:system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"}*,*::before,*::after{margin:0;padding:0;list-style:none;text-decoration:none;outline:none;box-sizing:border-box}#CollapseMoreInfoButton{-moz-transition:height 0.5s;-ms-transition:height 0.5s;-o-transition:height 0.5s;-webkit-transition:height 0.5s;transition:height 0.5s;height:0;overflow:hidden}.MoreInfoButton{display:flex;justify-content:center;width:100%;padding:15px 0;border-radius:0 0 5px 5px;border:none;color:var(--emfe-w-color-white, #FFFFFF);background:var(--emfe-w-color-primary, #D0046C)}.IconDown{width:18px;height:18px;margin-left:10px;transform:rotate(0deg)}.IconUp{width:18px;height:18px;margin-left:10px;transform:rotate(180deg)}.CasinoCalendarDailyDetailsBackground{display:flex;justify-content:flex-start;flex-direction:column;align-items:center;background:var(--emfe-w-color-white, #FFFFFF);width:500px;max-height:50vw;padding:20px;text-align:center;margin-bottom:50px;overflow:scroll}.CasinoCalendarDailyDetailsParent{display:flex;justify-content:flex-start;align-items:center;flex-direction:column;max-width:376px}.CasinoCalendarDailyDay{padding:10px 0 40px 0;font-size:22px;text-transform:uppercase;width:100%;color:var(--emfe-w-color-primary, #D0046C)}.CasinoCalendarDailyTitle{padding:15px 0 20px 0;font-size:18px;text-transform:capitalize;width:100%;color:var(--emfe-w-color-primary, #D0046C)}.CasinoCalendarImage{background:var(--emfe-w-color-gray-100, #E6E6E6);border-radius:5px 5px 0 0}.CasinoCalendarImage img{max-width:376px;max-height:250px;border-radius:5px 5px 0 0}.CasinoCalendarDailyDescription{width:100%;padding:25px 15px;font-size:14px;font-weight:600;color:var(--emfe-w-gray-300, #58586B);font-weight:400;border-radius:0;background:linear-gradient(180deg, var(--emfe-w-color-white, #FFFFFF) 55%, var(--emfe-w-color-gray-100, #E6E6E6))}.DetailTabsDescription{margin-top:15px}.CasinoCalendarTabs{width:100%;font-size:14px;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-items:flex-start;align-content:stretch;padding-bottom:40px}.CasinoCalendarFitImage{border-radius:5px}.NotVisible{display:none}.Header{display:flex;justify-content:center;justify-items:center;margin-bottom:4px;padding:0 10px}.HeaderButton{min-height:48px;margin:0;border:none;background:var(--emfe-w-color-white, #FFFFFF);color:var(--emfe-w-color-gray-150, #828282)}.SelectedTab{box-shadow:none;border-bottom:2px solid var(--emfe-w-color-primary, #D0046C)}.Mobile{max-height:70vh;margin-bottom:0}</style>',st(this,{target:this.shadowRoot,props:I(this.attributes),customElement:!0},Qr,Jr,s,{dailybackground:9,dailybuttontitle:0,dailyday:1,dailydescription:10,dailyicon:11,dailytitle:12,lang:13,clientstyling:14,clientstylingurl:15,translationUrl:16},null),t&&(t.target&&g(t.target,this,t.anchor),t.props&&(this.$set(t.props),Z()))}static get observedAttributes(){return["dailybackground","dailybuttontitle","dailyday","dailydescription","dailyicon","dailytitle","lang","clientstyling","clientstylingurl","translationUrl"]}get dailybackground(){return this.$$.ctx[9]}set dailybackground(t){this.$$set({dailybackground:t}),Z()}get dailybuttontitle(){return this.$$.ctx[0]}set dailybuttontitle(t){this.$$set({dailybuttontitle:t}),Z()}get dailyday(){return this.$$.ctx[1]}set dailyday(t){this.$$set({dailyday:t}),Z()}get dailydescription(){return this.$$.ctx[10]}set dailydescription(t){this.$$set({dailydescription:t}),Z()}get dailyicon(){return this.$$.ctx[11]}set dailyicon(t){this.$$set({dailyicon:t}),Z()}get dailytitle(){return this.$$.ctx[12]}set dailytitle(t){this.$$set({dailytitle:t}),Z()}get lang(){return this.$$.ctx[13]}set lang(t){this.$$set({lang:t}),Z()}get clientstyling(){return this.$$.ctx[14]}set clientstyling(t){this.$$set({clientstyling:t}),Z()}get clientstylingurl(){return this.$$.ctx[15]}set clientstylingurl(t){this.$$set({clientstylingurl:t}),Z()}get translationUrl(){return this.$$.ctx[16]}set translationUrl(t){this.$$set({translationUrl:t}),Z()}});
703
+ /* src/CasinoCalendar.svelte generated by Svelte v3.48.0 */
704
+ function ni(t,e,n){const r=t.slice();return r[11]=e[n],r[13]=n,r}
705
+ // (60:4) {#if calendarCollections?.length}
706
+ function ri(t){let e,n,r,i,o,s,a,l,c,u,h,d=/*calendarCollections*/t[1],p=[];for(let e=0;e<d.length;e+=1)p[e]=si(ni(t,d,e));return{c(){e=E("div");for(let t=0;t<p.length;t+=1)p[t].c();n=_(),r=E("casino-modal"),i=E("casino-calendar-daily-details"),A(i,"dailybackground",o=/*calendarCollections*/t[1][/*selectedIndex*/t[2]].dailyBackground),A(i,"dailybuttontitle",s=/*calendarCollections*/t[1][/*selectedIndex*/t[2]].dailyButtonTitle),A(i,"dailyday",a=/*calendarCollections*/t[1][/*selectedIndex*/t[2]].dailyDay),A(i,"dailydescription",l=/*calendarCollections*/t[1][/*selectedIndex*/t[2]].dailyDescription),A(i,"dailyicon",c=/*calendarCollections*/t[1][/*selectedIndex*/t[2]].dailyIcon),A(i,"dailytitle",u=/*calendarCollections*/t[1][/*selectedIndex*/t[2]].dailyTitle),A(i,"lang",/*lang*/t[0]),C(e,"class",h="CasinoCalendarItem "+(/*mobileView*/t[5]?"Mobile":""))},m(t,o){g(t,e,o);for(let t=0;t<p.length;t+=1)p[t].m(e,null);f(e,n),f(e,r),f(r,i)},p(t,r){if(/*calendarCollections, lang*/3&r){let i;for(d=/*calendarCollections*/t[1],i=0;i<d.length;i+=1){const o=ni(t,d,i);p[i]?p[i].p(o,r):(p[i]=si(o),p[i].c(),p[i].m(e,n))}for(;i<p.length;i+=1)p[i].d(1);p.length=d.length}/*calendarCollections, selectedIndex*/6&r&&o!==(o=/*calendarCollections*/t[1][/*selectedIndex*/t[2]].dailyBackground)&&A(i,"dailybackground",o),/*calendarCollections, selectedIndex*/6&r&&s!==(s=/*calendarCollections*/t[1][/*selectedIndex*/t[2]].dailyButtonTitle)&&A(i,"dailybuttontitle",s),/*calendarCollections, selectedIndex*/6&r&&a!==(a=/*calendarCollections*/t[1][/*selectedIndex*/t[2]].dailyDay)&&A(i,"dailyday",a),/*calendarCollections, selectedIndex*/6&r&&l!==(l=/*calendarCollections*/t[1][/*selectedIndex*/t[2]].dailyDescription)&&A(i,"dailydescription",l),/*calendarCollections, selectedIndex*/6&r&&c!==(c=/*calendarCollections*/t[1][/*selectedIndex*/t[2]].dailyIcon)&&A(i,"dailyicon",c),/*calendarCollections, selectedIndex*/6&r&&u!==(u=/*calendarCollections*/t[1][/*selectedIndex*/t[2]].dailyTitle)&&A(i,"dailytitle",u),/*lang*/1&r&&A(i,"lang",/*lang*/t[0]),/*mobileView*/32&r&&h!==(h="CasinoCalendarItem "+(/*mobileView*/t[5]?"Mobile":""))&&C(e,"class",h)},d(t){t&&b(e),v(p,t)}}}
707
+ // (57:2) {#if isLoading}
708
+ function ii(e){let n;return{c(){n=E("p"),n.textContent="Loading ...",C(n,"class","SearchLoading"),C(n,"part","SearchLoading")},m(t,e){g(t,n,e)},p:t,d(t){t&&b(n)}}}
709
+ // (54:0) {#if hasErrors}
710
+ function oi(e){let n;return{c(){n=E("p"),n.textContent="500 Error - Internal Server Error",C(n,"class","SearchLoading"),C(n,"part","SearchLoading")},m(t,e){g(t,n,e)},p:t,d(t){t&&b(n)}}}
711
+ // (62:8) {#each calendarCollections as dailyCalendarData, index }
712
+ function si(t){let e,n,r,i,o,s,a;return{c(){e=E("casino-calendar-daily-item"),A(e,"dailybackground",n=/*dailyCalendarData*/t[11].dailyBackground),A(e,"dailyicon",r=/*dailyCalendarData*/t[11].dailyIcon),A(e,"dailyday",i=/*dailyCalendarData*/t[11].dailyDay),A(e,"dailydescription",o=/*dailyCalendarData*/t[11].dailyDescription),A(e,"dailybuttontitle",s=/*dailyCalendarData*/t[11].dailyButtonTitle),A(e,"index",a=/*index*/t[13]),A(e,"lang",/*lang*/t[0])},m(t,n){g(t,e,n)},p(t,a){/*calendarCollections*/2&a&&n!==(n=/*dailyCalendarData*/t[11].dailyBackground)&&A(e,"dailybackground",n),/*calendarCollections*/2&a&&r!==(r=/*dailyCalendarData*/t[11].dailyIcon)&&A(e,"dailyicon",r),/*calendarCollections*/2&a&&i!==(i=/*dailyCalendarData*/t[11].dailyDay)&&A(e,"dailyday",i),/*calendarCollections*/2&a&&o!==(o=/*dailyCalendarData*/t[11].dailyDescription)&&A(e,"dailydescription",o),/*calendarCollections*/2&a&&s!==(s=/*dailyCalendarData*/t[11].dailyButtonTitle)&&A(e,"dailybuttontitle",s),/*lang*/1&a&&A(e,"lang",/*lang*/t[0])},d(t){t&&b(e)}}}function ai(e){let n;function r(t,e){/*hasErrors*/
713
+ return t[4]?oi:/*isLoading*/t[3]?ii:/*calendarCollections*/t[1]?.length?ri:void 0}let i=r(e),o=i&&i(e);return{c(){o&&o.c(),n=x(),this.c=t},m(t,e){o&&o.m(t,e),g(t,n,e)},p(t,[e]){i===(i=r(t))&&o?o.p(t,e):(o&&o.d(1),o=i&&i(t),o&&(o.c(),o.m(n.parentNode,n)))},i:t,o:t,d(t){o&&o.d(t),t&&b(n)}}}function li(t,e,n){let r,{cmsendpoint:i=""}=e,{lang:o="en"}=e,s=0,a=!0,l=!1,c=!1,u=window.navigator.userAgent;const h=()=>{fetch(`${i}/${o}/daily-calendar/`).then((t=>t.json())).then((t=>{n(1,r=t)})).catch((t=>{console.log(t),n(4,l=!0)})).finally((()=>{n(3,a=!1)}))},d=t=>{var e;t.data&&"OpenCalendarModal"==t.data.type&&(n(2,s=t.data.index),window.postMessage({type:"DailyEventsData",data:null===(e=r[s])||void 0===e?void 0:e.dailyEvents}))};return k((()=>(window.addEventListener("message",d,!1),Nr(u)&&n(5,c=!0),()=>{window.removeEventListener("message",d)}))),t.$$set=t=>{"cmsendpoint"in t&&n(6,i=t.cmsendpoint),"lang"in t&&n(0,o=t.lang)},t.$$.update=()=>{/*cmsendpoint, lang*/65&t.$$.dirty&&i&&o&&h()},[o,r,s,a,l,c,i]}!customElements.get("casino-calendar-daily-item")&&customElements.define("casino-calendar-daily-item",class extends at{constructor(t){super(),this.shadowRoot.innerHTML='<style>:host{font-family:system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"}*,*::before,*::after{margin:0;padding:0;list-style:none;text-decoration:none;outline:none;box-sizing:border-box}.Container{display:flex;overflow-x:scroll;justify-content:space-between;position:relative;width:100%;border-radius:0 0 5px 5px}.Container::-webkit-scrollbar{display:none}.CalendarBar{width:100%;height:28px;background:linear-gradient(#e2e2e2, #b5b5b5);border-radius:4px 4px 0 0;border-bottom:3px solid #888;display:block;z-index:2}.CalendarBar::before{content:"";position:absolute;z-index:-1}.RingLeft::before{content:"";width:8px;height:24px;border-radius:20px;background:linear-gradient(#fff, #ccc);box-shadow:inset 0 -4px 6px rgba(0, 0, 0, 0.5);top:-8px;left:22px;position:absolute;z-index:1}.RingLeft::after{content:"";float:left;top:15px;width:12px;height:12px;background:#111;border-radius:10px;box-shadow:0 1px 1px #fff;top:6px;right:20px;position:absolute;z-index:0}.RingRight::before{content:"";width:8px;height:24px;border-radius:20px;background:linear-gradient(#fff, #ccc);box-shadow:inset 0 -4px 6px rgba(0, 0, 0, 0.5);top:-8px;right:22px;position:absolute;z-index:1}.RingRight::after{content:"";float:left;top:15px;width:12px;height:12px;background:#111;border-radius:10px;box-shadow:0 1px 1px #fff;top:6px;left:20px;position:absolute;z-index:0}.CalendarPage{width:100%;min-width:170px;height:170px;padding:8px 16px;text-align:center;border-radius:0 0 2px 2px;color:#fff;position:relative;z-index:0}.CalendarPage.Tear{animation:tearoff 1.5s both;transform-origin:0 100%;box-shadow:-1px -1px 4px rgba(0, 0, 0, 0.4)}@keyframes tearoff{0%{top:0}40%{transform:rotate(4deg);top:10px;opacity:1}65%{opacity:1}90%{transform:rotate(4deg);top:20px;opacity:0}95%{transform:rotate(0deg);top:0px;opacity:0}100%{transform:rotate(0deg);top:0px;opacity:1}}.CalendarCard{margin:16px 0 12px;width:170px;height:240px;text-align:center;border-radius:5px;color:#fff;position:relative;display:block}.CasinoCalendarItems{width:100%}.CasinoCalendarItemBackground{display:flex;justify-content:flex-start;flex-direction:column;align-items:center;color:var(--emfe-w-color-white, #FFFFFF);background:var(--emfe-w-color-gray-300, #58586B);background-image:url("https://breakthrough.org/wp-content/uploads/2018/10/default-placeholder-image.png");background-position:center;background-size:cover;background-blend-mode:multiply;height:100%;width:100%;border-radius:0 0 5px 5px}.CasinoCalendarDailyIcon{height:20px;margin:15px}.CasinoCalendarDailyTitle{text-transform:capitalize;font-weight:600;font-size:16px}.CasinoCalendarDailyItemDescription{padding:15px;margin-bottom:20px;font-size:14px;height:72px;white-space:unset;overflow:hidden;text-overflow:ellipsis}.CasinoCalendarDailyItemButton{width:80%;text-align:center}.MoreInfoButton{display:flex;justify-content:center;width:100%;font-size:12px;padding:10px 6px;border-radius:5px;border:none;color:var(--emfe-w-color-white, #FFFFFF);background:var(--emfe-w-color-primary, #D0046C)}</style>',st(this,{target:this.shadowRoot,props:I(this.attributes),customElement:!0},ei,ti,s,{cmsendpoint:9,lang:10,dailybackground:0,dailyicon:1,dailyday:2,dailydescription:11,dailybuttontitle:3,index:4,clientstyling:12,clientstylingurl:13},null),t&&(t.target&&g(t.target,this,t.anchor),t.props&&(this.$set(t.props),Z()))}static get observedAttributes(){return["cmsendpoint","lang","dailybackground","dailyicon","dailyday","dailydescription","dailybuttontitle","index","clientstyling","clientstylingurl"]}get cmsendpoint(){return this.$$.ctx[9]}set cmsendpoint(t){this.$$set({cmsendpoint:t}),Z()}get lang(){return this.$$.ctx[10]}set lang(t){this.$$set({lang:t}),Z()}get dailybackground(){return this.$$.ctx[0]}set dailybackground(t){this.$$set({dailybackground:t}),Z()}get dailyicon(){return this.$$.ctx[1]}set dailyicon(t){this.$$set({dailyicon:t}),Z()}get dailyday(){return this.$$.ctx[2]}set dailyday(t){this.$$set({dailyday:t}),Z()}get dailydescription(){return this.$$.ctx[11]}set dailydescription(t){this.$$set({dailydescription:t}),Z()}get dailybuttontitle(){return this.$$.ctx[3]}set dailybuttontitle(t){this.$$set({dailybuttontitle:t}),Z()}get index(){return this.$$.ctx[4]}set index(t){this.$$set({index:t}),Z()}get clientstyling(){return this.$$.ctx[12]}set clientstyling(t){this.$$set({clientstyling:t}),Z()}get clientstylingurl(){return this.$$.ctx[13]}set clientstylingurl(t){this.$$set({clientstylingurl:t}),Z()}});class ci extends at{constructor(t){super(),this.shadowRoot.innerHTML="<style>.CasinoCalendarItem{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center;align-content:flex-start;text-align:left;gap:10px}.Mobile{overflow:auto;scroll-snap-type:x mandatory;-ms-overflow-style:none;scrollbar-width:none}</style>",st(this,{target:this.shadowRoot,props:I(this.attributes),customElement:!0},li,ai,s,{cmsendpoint:6,lang:0},null),t&&(t.target&&g(t.target,this,t.anchor),t.props&&(this.$set(t.props),Z()))}static get observedAttributes(){return["cmsendpoint","lang"]}get cmsendpoint(){return this.$$.ctx[6]}set cmsendpoint(t){this.$$set({cmsendpoint:t}),Z()}get lang(){return this.$$.ctx[0]}set lang(t){this.$$set({lang:t}),Z()}}return!customElements.get("casino-calendar")&&customElements.define("casino-calendar",ci),ci}));
714
+ //# sourceMappingURL=casino-calendar.js.map