@everymatrix/casino-winners 1.9.0 → 1.9.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.
- package/dist/casino-winners.js +148 -135
- package/dist/casino-winners.js.map +1 -1
- package/package.json +3 -4
package/dist/casino-winners.js
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).app=t()}(this,(function(){"use strict";function e(){}function t(e){return e()}function r(){return Object.create(null)}function n(e){e.forEach(t)}function i(e){return"function"==typeof e}function o(e,t){return e!=e?t==t:e!==t||e&&"object"==typeof e||"function"==typeof e}let s,a;function u(e,t){return s||(s=document.createElement("a")),s.href=t,e===s.href}function l(t,...r){if(null==t)return e;const n=t.subscribe(...r);return n.unsubscribe?()=>n.unsubscribe():n}function c(e,t){e.appendChild(t)}function h(e,t,r){e.insertBefore(t,r||null)}function f(e){e.parentNode.removeChild(e)}function p(e,t){for(let r=0;r<e.length;r+=1)e[r]&&e[r].d(t)}function d(e){return document.createElement(e)}function m(e){return document.createElementNS("http://www.w3.org/2000/svg",e)}function b(e){return document.createTextNode(e)}function y(){return b(" ")}function g(e,t,r,n){return e.addEventListener(t,r,n),()=>e.removeEventListener(t,r,n)}function v(e,t,r){null==r?e.removeAttribute(t):e.getAttribute(t)!==r&&e.setAttribute(t,r)}function E(e,t){t=""+t,e.
|
|
1
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).app=t()}(this,(function(){"use strict";function e(){}function t(e){return e()}function r(){return Object.create(null)}function n(e){e.forEach(t)}function i(e){return"function"==typeof e}function o(e,t){return e!=e?t==t:e!==t||e&&"object"==typeof e||"function"==typeof e}let s,a;function u(e,t){return s||(s=document.createElement("a")),s.href=t,e===s.href}function l(t,...r){if(null==t)return e;const n=t.subscribe(...r);return n.unsubscribe?()=>n.unsubscribe():n}function c(e,t){e.appendChild(t)}function h(e,t,r){e.insertBefore(t,r||null)}function f(e){e.parentNode&&e.parentNode.removeChild(e)}function p(e,t){for(let r=0;r<e.length;r+=1)e[r]&&e[r].d(t)}function d(e){return document.createElement(e)}function m(e){return document.createElementNS("http://www.w3.org/2000/svg",e)}function b(e){return document.createTextNode(e)}function y(){return b(" ")}function g(e,t,r,n){return e.addEventListener(t,r,n),()=>e.removeEventListener(t,r,n)}function v(e,t,r){null==r?e.removeAttribute(t):e.getAttribute(t)!==r&&e.setAttribute(t,r)}function E(e,t){t=""+t,e.data!==t&&(e.data=t)}function w(e){const t={};for(const r of e)t[r.name]=r.value;return t}function _(e){a=e}
|
|
2
|
+
/**
|
|
3
|
+
* The `onMount` function schedules a callback to run as soon as the component has been mounted to the DOM.
|
|
4
|
+
* It must be called during the component's initialisation (but doesn't need to live *inside* the component;
|
|
5
|
+
* it can be called from an external module).
|
|
6
|
+
*
|
|
7
|
+
* `onMount` does not run inside a [server-side component](/docs#run-time-server-side-component-api).
|
|
8
|
+
*
|
|
9
|
+
* https://svelte.dev/docs#run-time-svelte-onmount
|
|
10
|
+
*/
|
|
11
|
+
function T(e){(function(){if(!a)throw new Error("Function called outside component initialization");return a})().$$.on_mount.push(e)}const B=[],A=[];let H=[];const S=[],P=Promise.resolve();let C=!1;function L(e){H.push(e)}
|
|
2
12
|
// flush() calls callbacks in this order:
|
|
3
13
|
// 1. All beforeUpdate callbacks, in order: parents before children
|
|
4
14
|
// 2. All bind:this callbacks, in reverse order: children before parents.
|
|
@@ -17,43 +27,56 @@
|
|
|
17
27
|
// 3. During afterUpdate, any updated components will NOT have their afterUpdate
|
|
18
28
|
// callback called a second time; the seen_callbacks set, outside the flush()
|
|
19
29
|
// function, guarantees this behavior.
|
|
20
|
-
const
|
|
21
|
-
function x(){
|
|
30
|
+
const O=new Set;let I=0;// Do *not* move this inside the flush() function
|
|
31
|
+
function x(){
|
|
32
|
+
// Do not reenter flush while dirty components are updated, as this can
|
|
33
|
+
// result in an infinite loop. Instead, let the inner flush handle it.
|
|
34
|
+
// Reentrancy is ok afterwards for bindings etc.
|
|
35
|
+
if(0!==I)return;const e=a;do{
|
|
22
36
|
// first, call beforeUpdate functions
|
|
23
37
|
// and update components
|
|
24
|
-
for(;I<B.length;){const e=B[I];I++,_(e),N(e.$$)}
|
|
38
|
+
try{for(;I<B.length;){const e=B[I];I++,_(e),N(e.$$)}}catch(e){
|
|
39
|
+
// reset dirty state to not end up in a deadlocked state and then rethrow
|
|
40
|
+
throw B.length=0,I=0,e}for(_(null),B.length=0,I=0;A.length;)A.pop()();
|
|
25
41
|
// then, once components are updated, call
|
|
26
42
|
// afterUpdate functions. This may cause
|
|
27
43
|
// subsequent updates...
|
|
28
|
-
for(let e=0;e<H.length;e+=1){const t=H[e];
|
|
44
|
+
for(let e=0;e<H.length;e+=1){const t=H[e];O.has(t)||(
|
|
29
45
|
// ...so guard against infinite loops
|
|
30
|
-
|
|
46
|
+
O.add(t),t())}H.length=0}while(B.length);for(;S.length;)S.pop()();C=!1,O.clear(),_(e)}function N(e){if(null!==e.fragment){e.update(),n(e.before_update);const t=e.dirty;e.dirty=[-1],e.fragment&&e.fragment.p(e.ctx,t),e.after_update.forEach(L)}}
|
|
47
|
+
/**
|
|
48
|
+
* Useful for example to execute remaining `afterUpdate` callbacks before executing `destroy`.
|
|
49
|
+
*/const M=new Set;function R(e,t){const r=e.$$;null!==r.fragment&&(!function(e){const t=[],r=[];H.forEach((n=>-1===e.indexOf(n)?t.push(n):r.push(n))),r.forEach((e=>e())),H=t}(r.after_update),n(r.on_destroy),r.fragment&&r.fragment.d(t),
|
|
50
|
+
// TODO null out other refs, including component.$$ (but need to
|
|
51
|
+
// preserve final state?)
|
|
52
|
+
r.on_destroy=r.fragment=null,r.ctx=[])}function $(e,t){-1===e.$$.dirty[0]&&(B.push(e),C||(C=!0,P.then(x)),e.$$.dirty.fill(0)),e.$$.dirty[t/31|0]|=1<<t%31}function U(o,s,u,l,c,h,p,d=[-1]){const m=a;_(o);const b=o.$$={fragment:null,ctx:[],
|
|
31
53
|
// state
|
|
32
54
|
props:h,update:e,not_equal:c,bound:r(),
|
|
33
55
|
// lifecycle
|
|
34
56
|
on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(s.context||(m?m.$$.context:[])),
|
|
35
57
|
// everything else
|
|
36
|
-
callbacks:r(),dirty:d,skip_bound:!1,root:s.target||m.$$.root};p&&p(b.root);let y=!1;if(b.ctx=u?u(o,s.props||{},((e,t,...r)=>{const n=r.length?r[0]:t;return b.ctx&&c(b.ctx[e],b.ctx[e]=n)&&(!b.skip_bound&&b.bound[e]&&b.bound[e](n),y
|
|
58
|
+
callbacks:r(),dirty:d,skip_bound:!1,root:s.target||m.$$.root};p&&p(b.root);let y=!1;if(b.ctx=u?u(o,s.props||{},((e,t,...r)=>{const n=r.length?r[0]:t;return b.ctx&&c(b.ctx[e],b.ctx[e]=n)&&(!b.skip_bound&&b.bound[e]&&b.bound[e](n),y&&$(o,e)),t})):[],b.update(),y=!0,n(b.before_update),
|
|
37
59
|
// `false` as a special case of no DOM component
|
|
38
60
|
b.fragment=!!l&&l(b.ctx),s.target){if(s.hydrate){const e=function(e){return Array.from(e.childNodes)}(s.target);
|
|
39
61
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
40
62
|
b.fragment&&b.fragment.l(e),e.forEach(f)}else
|
|
41
63
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
42
|
-
b.fragment&&b.fragment.c();s.intro&&((g=o.$$.fragment)&&g.i&&(M.delete(g),g.i(v))),function(e,r,o,s){const{fragment:a,
|
|
64
|
+
b.fragment&&b.fragment.c();s.intro&&((g=o.$$.fragment)&&g.i&&(M.delete(g),g.i(v))),function(e,r,o,s){const{fragment:a,after_update:u}=e.$$;a&&a.m(r,o),s||
|
|
43
65
|
// onMount happens before the initial afterUpdate
|
|
44
|
-
|
|
66
|
+
L((()=>{const r=e.$$.on_mount.map(t).filter(i);
|
|
67
|
+
// if the component was destroyed immediately
|
|
68
|
+
// it will update the `$$.on_destroy` reference to `null`.
|
|
69
|
+
// the destructured on_destroy may still reference to the old array
|
|
70
|
+
e.$$.on_destroy?e.$$.on_destroy.push(...r):
|
|
45
71
|
// Edge case - component was destroyed immediately,
|
|
46
72
|
// most likely as a result of a binding initialising
|
|
47
|
-
n(r),e.$$.on_mount=[]})),
|
|
73
|
+
n(r),e.$$.on_mount=[]})),u.forEach(L)}(o,s.target,s.anchor,s.customElement),x()}var g,v;_(m)}let D;"function"==typeof HTMLElement&&(D=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:e}=this.$$;this.$$.on_disconnect=e.map(t).filter(i);
|
|
48
74
|
// @ts-ignore todo: improve typings
|
|
49
75
|
for(const e in this.$$.slotted)
|
|
50
76
|
// @ts-ignore todo: improve typings
|
|
51
|
-
this.appendChild(this.$$.slotted[e])}attributeChangedCallback(e,t,r){this[e]=r}disconnectedCallback(){n(this.$$.on_disconnect)}$destroy(){
|
|
52
|
-
// TODO null out other refs, including component.$$ (but need to
|
|
53
|
-
// preserve final state?)
|
|
54
|
-
r.on_destroy=r.fragment=null,r.ctx=[])}(this,1),this.$destroy=e}$on(e,t){
|
|
77
|
+
this.appendChild(this.$$.slotted[e])}attributeChangedCallback(e,t,r){this[e]=r}disconnectedCallback(){n(this.$$.on_disconnect)}$destroy(){R(this,1),this.$destroy=e}$on(t,r){
|
|
55
78
|
// TODO should this delegate to addEventListener?
|
|
56
|
-
const
|
|
79
|
+
if(!i(r))return e;const n=this.$$.callbacks[t]||(this.$$.callbacks[t]=[]);return n.push(r),()=>{const e=n.indexOf(r);-1!==e&&n.splice(e,1)}}$set(e){var t;this.$$set&&(t=e,0!==Object.keys(t).length)&&(this.$$.skip_bound=!0,this.$$set(e),this.$$.skip_bound=!1)}});const G=[];
|
|
57
80
|
/**
|
|
58
81
|
* Creates a `Readable` store that allows reading by subscription.
|
|
59
82
|
* @param value initial value
|
|
@@ -64,20 +87,24 @@ const r=this.$$.callbacks[e]||(this.$$.callbacks[e]=[]);return r.push(t),()=>{co
|
|
|
64
87
|
* @param {*=}value initial value
|
|
65
88
|
* @param {StartStopNotifier=}start start and stop notifications for subscriptions
|
|
66
89
|
*/
|
|
67
|
-
function
|
|
68
|
-
const e=!
|
|
90
|
+
function F(t,r=e){let n;const i=new Set;function s(e){if(o(t,e)&&(t=e,n)){// store is ready
|
|
91
|
+
const e=!G.length;for(const e of i)e[1](),G.push(e,t);if(e){for(let e=0;e<G.length;e+=2)G[e][0](G[e+1]);G.length=0}}}return{set:s,update:function(e){s(e(t))},subscribe:function(o,a=e){const u=[o,a];return i.add(u),1===i.size&&(n=r(s)||e),o(t),()=>{i.delete(u),0===i.size&&n&&(n(),n=null)}}}}function W(t,r,o){const s=!Array.isArray(t),a=s?[t]:t,u=r.length<2;return c=t=>{let o=!1;const c=[];let h=0,f=e;const p=()=>{if(h)return;f();const n=r(s?c[0]:c,t);u?t(n):f=i(n)?n:e},d=a.map(((e,t)=>l(e,(e=>{c[t]=e,h&=~(1<<t),o&&p()}),(()=>{h|=1<<t}))));return o=!0,p(),function(){n(d),f(),
|
|
92
|
+
// We need to set this to false because callbacks can still happen despite having unsubscribed:
|
|
93
|
+
// Callbacks might already be placed in the queue which doesn't know it should no longer
|
|
94
|
+
// invoke this derived store.
|
|
95
|
+
o=!1}},{subscribe:F(o,c).subscribe};var c}var k=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===j}(e)}
|
|
69
96
|
// see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25
|
|
70
|
-
(e)};var
|
|
97
|
+
(e)};var j="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function V(e,t){return!1!==t.clone&&t.isMergeableObject(e)?Z((r=e,Array.isArray(r)?[]:{}),e,t):e;var r}function z(e,t,r){return e.concat(t).map((function(e){return V(e,r)}))}function X(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return Object.propertyIsEnumerable.call(e,t)})):[]}(e))}function K(e,t){try{return t in e}catch(e){return!1}}
|
|
71
98
|
// Protects from prototype poisoning and unexpected merging up the prototype chain.
|
|
72
|
-
function
|
|
73
|
-
})(e,i)||(
|
|
99
|
+
function Y(e,t,r){var n={};return r.isMergeableObject(e)&&X(e).forEach((function(t){n[t]=V(e[t],r)})),X(t).forEach((function(i){(function(e,t){return K(e,t)&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t));// and also unsafe if they're nonenumerable.
|
|
100
|
+
})(e,i)||(K(e,i)&&r.isMergeableObject(t[i])?n[i]=function(e,t){if(!t.customMerge)return Z;var r=t.customMerge(e);return"function"==typeof r?r:Z}(i,r)(e[i],t[i],r):n[i]=V(t[i],r))})),n}function Z(e,t,r){(r=r||{}).arrayMerge=r.arrayMerge||z,r.isMergeableObject=r.isMergeableObject||k,
|
|
74
101
|
// cloneUnlessOtherwiseSpecified is added to `options` so that custom arrayMerge()
|
|
75
102
|
// implementations can use it. The caller may not replace it.
|
|
76
|
-
r.cloneUnlessOtherwiseSpecified=
|
|
103
|
+
r.cloneUnlessOtherwiseSpecified=V;var n=Array.isArray(t);return n===Array.isArray(e)?n?r.arrayMerge(e,t,r):Y(e,t,r):V(t,r)}Z.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,r){return Z(e,r,t)}),{})};var q=Z,J=function(e,t){return J=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},J(e,t)};function Q(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}J(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}var ee,te,re,ne=function(){return ne=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var i in t=arguments[r])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},ne.apply(this,arguments)};function ie(e,t,r){if(r||2===arguments.length)for(var n,i=0,o=t.length;i<o;i++)!n&&i in t||(n||(n=Array.prototype.slice.call(t,0,i)),n[i]=t[i]);return e.concat(n||Array.prototype.slice.call(t))}
|
|
77
104
|
/**
|
|
78
105
|
* Type Guards
|
|
79
106
|
*/
|
|
80
|
-
function
|
|
107
|
+
function oe(e){return e.type===te.literal}function se(e){return e.type===te.argument}function ae(e){return e.type===te.number}function ue(e){return e.type===te.date}function le(e){return e.type===te.time}function ce(e){return e.type===te.select}function he(e){return e.type===te.plural}function fe(e){return e.type===te.pound}function pe(e){return e.type===te.tag}function de(e){return!(!e||"object"!=typeof e||e.type!==re.number)}function me(e){return!(!e||"object"!=typeof e||e.type!==re.dateTime)}
|
|
81
108
|
// @generated from regex-gen.ts
|
|
82
109
|
!function(e){
|
|
83
110
|
/** Argument is unclosed (e.g. `{0`) */
|
|
@@ -139,7 +166,7 @@ e[e.INVALID_TAG_NAME=25]="INVALID_TAG_NAME",
|
|
|
139
166
|
/** The closing tag does not match the opening tag. (e.g. `<bold>foo</italic>`) */
|
|
140
167
|
e[e.UNMATCHED_CLOSING_TAG=26]="UNMATCHED_CLOSING_TAG",
|
|
141
168
|
/** The opening tag has unmatched closing tag. (e.g. `<bold>foo`) */
|
|
142
|
-
e[e.UNCLOSED_TAG=27]="UNCLOSED_TAG"}(
|
|
169
|
+
e[e.UNCLOSED_TAG=27]="UNCLOSED_TAG"}(ee||(ee={})),function(e){
|
|
143
170
|
/**
|
|
144
171
|
* Raw text
|
|
145
172
|
*/
|
|
@@ -176,7 +203,7 @@ e[e.pound=7]="pound",
|
|
|
176
203
|
/**
|
|
177
204
|
* XML-like tag
|
|
178
205
|
*/
|
|
179
|
-
e[e.tag=8]="tag"}(
|
|
206
|
+
e[e.tag=8]="tag"}(te||(te={})),function(e){e[e.number=0]="number",e[e.dateTime=1]="dateTime"}(re||(re={}));var be=/[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/,ye=/(?:[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;
|
|
180
207
|
/**
|
|
181
208
|
* https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table
|
|
182
209
|
* Credit: https://github.com/caridy/intl-datetimeformat-pattern/blob/master/index.js
|
|
@@ -188,7 +215,7 @@ e[e.tag=8]="tag"}(ee||(ee={})),function(e){e[e.number=0]="number",e[e.dateTime=1
|
|
|
188
215
|
* @public
|
|
189
216
|
* @param skeleton skeleton string
|
|
190
217
|
*/
|
|
191
|
-
function
|
|
218
|
+
function ge(e){var t={};return e.replace(ye,(function(e){var r=e.length;switch(e[0]){
|
|
192
219
|
// Era
|
|
193
220
|
case"G":t.era=4===r?"long":5===r?"narrow":"short";break;
|
|
194
221
|
// Year
|
|
@@ -222,33 +249,33 @@ case"X":// 1, 2, 3, 4: The ISO8601 varios formats
|
|
|
222
249
|
case"x":// 1, 2, 3, 4: The ISO8601 varios formats
|
|
223
250
|
throw new RangeError("`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead")}return""})),t}
|
|
224
251
|
// @generated from regex-gen.ts
|
|
225
|
-
var
|
|
252
|
+
var ve=/[\t-\r \x85\u200E\u200F\u2028\u2029]/i;var Ee=/^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g,we=/^(@+)?(\+|#+)?[rs]?$/g,_e=/(\*)(0+)|(#+)(0+)|(0+)/g,Te=/^(0+)$/;function Be(e){var t={};return"r"===e[e.length-1]?t.roundingPriority="morePrecision":"s"===e[e.length-1]&&(t.roundingPriority="lessPrecision"),e.replace(we,(function(e,r,n){
|
|
226
253
|
// @@@ case
|
|
227
|
-
return"string"!=typeof n?(t.minimumSignificantDigits=r.length,t.maximumSignificantDigits=r.length):"+"===n?t.minimumSignificantDigits=r.length:"#"===r[0]?t.maximumSignificantDigits=r.length:(t.minimumSignificantDigits=r.length,t.maximumSignificantDigits=r.length+("string"==typeof n?n.length:0)),""})),t}function
|
|
254
|
+
return"string"!=typeof n?(t.minimumSignificantDigits=r.length,t.maximumSignificantDigits=r.length):"+"===n?t.minimumSignificantDigits=r.length:"#"===r[0]?t.maximumSignificantDigits=r.length:(t.minimumSignificantDigits=r.length,t.maximumSignificantDigits=r.length+("string"==typeof n?n.length:0)),""})),t}function Ae(e){switch(e){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 He(e){
|
|
228
255
|
// Engineering
|
|
229
|
-
var t;if("E"===e[0]&&"E"===e[1]?(t={notation:"engineering"},e=e.slice(2)):"E"===e[0]&&(t={notation:"scientific"},e=e.slice(1)),t){var r=e.slice(0,2);if("+!"===r?(t.signDisplay="always",e=e.slice(2)):"+?"===r&&(t.signDisplay="exceptZero",e=e.slice(2)),!
|
|
256
|
+
var t;if("E"===e[0]&&"E"===e[1]?(t={notation:"engineering"},e=e.slice(2)):"E"===e[0]&&(t={notation:"scientific"},e=e.slice(1)),t){var r=e.slice(0,2);if("+!"===r?(t.signDisplay="always",e=e.slice(2)):"+?"===r&&(t.signDisplay="exceptZero",e=e.slice(2)),!Te.test(e))throw new Error("Malformed concise eng/scientific notation");t.minimumIntegerDigits=e.length}return t}function Se(e){var t=Ae(e);return t||{}}
|
|
230
257
|
/**
|
|
231
258
|
* https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md#skeleton-stems-and-options
|
|
232
|
-
*/function
|
|
259
|
+
*/function Pe(e){for(var t={},r=0,n=e;r<n.length;r++){var i=n[r];switch(i.stem){case"percent":case"%":t.style="percent";continue;case"%x100":t.style="percent",t.scale=100;continue;case"currency":t.style="currency",t.currency=i.options[0];continue;case"group-off":case",_":t.useGrouping=!1;continue;case"precision-integer":case".":t.maximumFractionDigits=0;continue;case"measure-unit":case"unit":t.style="unit",t.unit=i.options[0].replace(/^(.*?)-/,"");continue;case"compact-short":case"K":t.notation="compact",t.compactDisplay="short";continue;case"compact-long":case"KK":t.notation="compact",t.compactDisplay="long";continue;case"scientific":t=ne(ne(ne({},t),{notation:"scientific"}),i.options.reduce((function(e,t){return ne(ne({},e),Se(t))}),{}));continue;case"engineering":t=ne(ne(ne({},t),{notation:"engineering"}),i.options.reduce((function(e,t){return ne(ne({},e),Se(t))}),{}));continue;case"notation-simple":t.notation="standard";continue;
|
|
233
260
|
// https://github.com/unicode-org/icu/blob/master/icu4c/source/i18n/unicode/unumberformatter.h
|
|
234
261
|
case"unit-width-narrow":t.currencyDisplay="narrowSymbol",t.unitDisplay="narrow";continue;case"unit-width-short":t.currencyDisplay="code",t.unitDisplay="short";continue;case"unit-width-full-name":t.currencyDisplay="name",t.unitDisplay="long";continue;case"unit-width-iso-code":t.currencyDisplay="symbol";continue;case"scale":t.scale=parseFloat(i.options[0]);continue;
|
|
235
262
|
// https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#integer-width
|
|
236
|
-
case"integer-width":if(i.options.length>1)throw new RangeError("integer-width stems only accept a single optional option");i.options[0].replace(
|
|
263
|
+
case"integer-width":if(i.options.length>1)throw new RangeError("integer-width stems only accept a single optional option");i.options[0].replace(_e,(function(e,r,n,i,o,s){if(r)t.minimumIntegerDigits=n.length;else{if(i&&o)throw new Error("We currently do not support maximum integer digits");if(s)throw new Error("We currently do not support exact integer digits")}return""}));continue}
|
|
237
264
|
// https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#integer-width
|
|
238
|
-
if(
|
|
265
|
+
if(Te.test(i.stem))t.minimumIntegerDigits=i.stem.length;else if(Ee.test(i.stem)){
|
|
239
266
|
// Precision
|
|
240
267
|
// https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#fraction-precision
|
|
241
268
|
// precision-integer case
|
|
242
|
-
if(i.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");i.stem.replace(
|
|
269
|
+
if(i.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");i.stem.replace(Ee,(function(e,r,n,i,o,s){
|
|
243
270
|
// .000* case (before ICU67 it was .000+)
|
|
244
271
|
return"*"===n?t.minimumFractionDigits=r.length:i&&"#"===i[0]?t.maximumFractionDigits=i.length:o&&s?(t.minimumFractionDigits=o.length,t.maximumFractionDigits=o.length+s.length):(t.minimumFractionDigits=r.length,t.maximumFractionDigits=r.length),""}));var o=i.options[0];
|
|
245
272
|
// https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#trailing-zero-display
|
|
246
|
-
"w"===o?t=
|
|
273
|
+
"w"===o?t=ne(ne({},t),{trailingZeroDisplay:"stripIfInteger"}):o&&(t=ne(ne({},t),Be(o)))}
|
|
247
274
|
// https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#significant-digits-precision
|
|
248
|
-
else if(
|
|
275
|
+
else if(we.test(i.stem))t=ne(ne({},t),Be(i.stem));else{var s=Ae(i.stem);s&&(t=ne(ne({},t),s));var a=He(i.stem);a&&(t=ne(ne({},t),a))}}return t}
|
|
249
276
|
// @generated from time-data-gen.ts
|
|
250
277
|
// prettier-ignore
|
|
251
|
-
var
|
|
278
|
+
var Ce,Le={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"]};
|
|
252
279
|
/**
|
|
253
280
|
* Returns the best matching date time pattern if a date time skeleton
|
|
254
281
|
* pattern is provided with a locale. Follows the Unicode specification:
|
|
@@ -269,37 +296,37 @@ e.hourCycles.length&&(
|
|
|
269
296
|
// @ts-ignore
|
|
270
297
|
t=e.hourCycles[0]),t)switch(t){case"h24":return"k";case"h23":return"H";case"h12":return"h";case"h11":return"K";default:throw new Error("Invalid hourCycle")}
|
|
271
298
|
// TODO: Once hourCycle is fully supported remove the following with data generation
|
|
272
|
-
var r,n=e.language;return"root"!==n&&(r=e.maximize().region),(
|
|
299
|
+
var r,n=e.language;return"root"!==n&&(r=e.maximize().region),(Le[r||""]||Le[n||""]||Le["".concat(n,"-001")]||Le["001"])[0]}var Ie=new RegExp("^".concat(be.source,"*")),xe=new RegExp("".concat(be.source,"*$"));function Ne(e,t){return{start:e,end:t}}
|
|
273
300
|
// #region Ponyfills
|
|
274
301
|
// Consolidate these variables up top for easier toggling during debugging
|
|
275
|
-
var
|
|
302
|
+
var Me=!!String.prototype.startsWith,Re=!!String.fromCodePoint,$e=!!Object.fromEntries,Ue=!!String.prototype.codePointAt,De=!!String.prototype.trimStart,Ge=!!String.prototype.trimEnd,Fe=!!Number.isSafeInteger?Number.isSafeInteger:function(e){return"number"==typeof e&&isFinite(e)&&Math.floor(e)===e&&Math.abs(e)<=9007199254740991},We=!0;try{
|
|
276
303
|
/**
|
|
277
304
|
* legacy Edge or Xbox One browser
|
|
278
305
|
* Unicode flag support: supported
|
|
279
306
|
* Pattern_Syntax support: not supported
|
|
280
307
|
* See https://github.com/formatjs/formatjs/issues/2822
|
|
281
308
|
*/
|
|
282
|
-
|
|
309
|
+
We="a"===(null===(Ce=Ze("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu").exec("a"))||void 0===Ce?void 0:Ce[0])}catch(e){We=!1}var ke,je=Me?// Native
|
|
283
310
|
function(e,t,r){return e.startsWith(t,r)}:// For IE11
|
|
284
|
-
function(e,t,r){return e.slice(r,r+t.length)===t},
|
|
285
|
-
function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r,n="",i=e.length,o=0;i>o;){if((r=e[o++])>1114111)throw RangeError(r+" is not a valid code point");n+=r<65536?String.fromCharCode(r):String.fromCharCode(55296+((r-=65536)>>10),r%1024+56320)}return n},
|
|
311
|
+
function(e,t,r){return e.slice(r,r+t.length)===t},Ve=Re?String.fromCodePoint:// IE11
|
|
312
|
+
function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var r,n="",i=e.length,o=0;i>o;){if((r=e[o++])>1114111)throw RangeError(r+" is not a valid code point");n+=r<65536?String.fromCharCode(r):String.fromCharCode(55296+((r-=65536)>>10),r%1024+56320)}return n},ze=
|
|
286
313
|
// native
|
|
287
|
-
|
|
288
|
-
function(e){for(var t={},r=0,n=e;r<n.length;r++){var i=n[r],o=i[0],s=i[1];t[o]=s}return t},
|
|
314
|
+
$e?Object.fromEntries:// Ponyfill
|
|
315
|
+
function(e){for(var t={},r=0,n=e;r<n.length;r++){var i=n[r],o=i[0],s=i[1];t[o]=s}return t},Xe=Ue?// Native
|
|
289
316
|
function(e,t){return e.codePointAt(t)}:// IE 11
|
|
290
|
-
function(e,t){var r=e.length;if(!(t<0||t>=r)){var n,i=e.charCodeAt(t);return i<55296||i>56319||t+1===r||(n=e.charCodeAt(t+1))<56320||n>57343?i:n-56320+(i-55296<<10)+65536}},
|
|
317
|
+
function(e,t){var r=e.length;if(!(t<0||t>=r)){var n,i=e.charCodeAt(t);return i<55296||i>56319||t+1===r||(n=e.charCodeAt(t+1))<56320||n>57343?i:n-56320+(i-55296<<10)+65536}},Ke=De?// Native
|
|
291
318
|
function(e){return e.trimStart()}:// Ponyfill
|
|
292
|
-
function(e){return e.replace(
|
|
319
|
+
function(e){return e.replace(Ie,"")},Ye=Ge?// Native
|
|
293
320
|
function(e){return e.trimEnd()}:// Ponyfill
|
|
294
|
-
function(e){return e.replace(
|
|
321
|
+
function(e){return e.replace(xe,"")};
|
|
295
322
|
// Prevent minifier to translate new RegExp to literal form that might cause syntax error on IE11.
|
|
296
|
-
function
|
|
323
|
+
function Ze(e,t){return new RegExp(e,t)}
|
|
297
324
|
// #endregion
|
|
298
|
-
if(
|
|
325
|
+
if(We){
|
|
299
326
|
// Native
|
|
300
|
-
var Ze
|
|
327
|
+
var qe=Ze("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");ke=function(e,t){var r;return qe.lastIndex=t,null!==(r=qe.exec(e)[1])&&void 0!==r?r:""}}else
|
|
301
328
|
// IE11
|
|
302
|
-
|
|
329
|
+
ke=function(e,t){for(var r=[];;){var n=Xe(e,t);if(void 0===n||tt(n)||rt(n))break;r.push(n),t+=n>=65536?2:1}return Ve.apply(void 0,r)};var Je=/** @class */function(){function e(e,t){void 0===t&&(t={}),this.message=e,this.position={offset:0,line:1,column:1},this.ignoreTag=!!t.ignoreTag,this.locale=t.locale,this.requiresOtherClause=!!t.requiresOtherClause,this.shouldParseSkeletons=!!t.shouldParseSkeletons}return e.prototype.parse=function(){if(0!==this.offset())throw Error("parser can only be used once");return this.parseMessage(0,"",!1)},e.prototype.parseMessage=function(e,t,r){for(var n=[];!this.isEOF();){var i=this.char();if(123/* `{` */===i){if((o=this.parseArgument(e,r)).err)return o;n.push(o.val)}else{if(125/* `}` */===i&&e>0)break;if(35/* `#` */!==i||"plural"!==t&&"selectordinal"!==t){if(60/* `<` */===i&&!this.ignoreTag&&47===this.peek()){if(r)break;return this.error(ee.UNMATCHED_CLOSING_TAG,Ne(this.clonePosition(),this.clonePosition()))}if(60/* `<` */===i&&!this.ignoreTag&&Qe(this.peek()||0)){if((o=this.parseTag(e,t)).err)return o;n.push(o.val)}else{var o;if((o=this.parseLiteral(e,t)).err)return o;n.push(o.val)}}else{var s=this.clonePosition();this.bump(),n.push({type:te.pound,location:Ne(s,this.clonePosition())})}}}return{val:n,err:null}},
|
|
303
330
|
/**
|
|
304
331
|
* A tag name must start with an ASCII lower/upper case letter. The grammar is based on the
|
|
305
332
|
* [custom element name][] except that a dash is NOT always mandatory and uppercase letters
|
|
@@ -321,14 +348,14 @@ We=function(e,t){for(var r=[];;){var n=ze(e,t);if(void 0===n||et(n)||tt(n))break
|
|
|
321
348
|
e.prototype.parseTag=function(e,t){var r=this.clonePosition();this.bump();// `<`
|
|
322
349
|
var n=this.parseTagName();if(this.bumpSpace(),this.bumpIf("/>"))
|
|
323
350
|
// Self closing tag
|
|
324
|
-
return{val:{type:
|
|
351
|
+
return{val:{type:te.literal,value:"<".concat(n,"/>"),location:Ne(r,this.clonePosition())},err:null};if(this.bumpIf(">")){var i=this.parseMessage(e+1,t,!0);if(i.err)return i;var o=i.val,s=this.clonePosition();
|
|
325
352
|
// Expecting a close tag
|
|
326
|
-
if(this.bumpIf("</")){if(this.isEOF()||!
|
|
353
|
+
if(this.bumpIf("</")){if(this.isEOF()||!Qe(this.char()))return this.error(ee.INVALID_TAG,Ne(s,this.clonePosition()));var a=this.clonePosition();return n!==this.parseTagName()?this.error(ee.UNMATCHED_CLOSING_TAG,Ne(a,this.clonePosition())):(this.bumpSpace(),this.bumpIf(">")?{val:{type:te.tag,value:n,children:o,location:Ne(r,this.clonePosition())},err:null}:this.error(ee.INVALID_TAG,Ne(s,this.clonePosition())))}return this.error(ee.UNCLOSED_TAG,Ne(r,this.clonePosition()))}return this.error(ee.INVALID_TAG,Ne(r,this.clonePosition()))},
|
|
327
354
|
/**
|
|
328
355
|
* This method assumes that the caller has peeked ahead for the first tag character.
|
|
329
356
|
*/
|
|
330
357
|
e.prototype.parseTagName=function(){var e=this.offset();// the first tag name character
|
|
331
|
-
for(this.bump();!this.isEOF()&&
|
|
358
|
+
for(this.bump();!this.isEOF()&&et(this.char());)this.bump();return this.message.slice(e,this.offset())},e.prototype.parseLiteral=function(e,t){for(var r=this.clonePosition(),n="";;){var i=this.tryParseQuote(t);if(i)n+=i;else{var o=this.tryParseUnquoted(e,t);if(o)n+=o;else{var s=this.tryParseLeftAngleBracket();if(!s)break;n+=s}}}var a=Ne(r,this.clonePosition());return{val:{type:te.literal,value:n,location:a},err:null}},e.prototype.tryParseLeftAngleBracket=function(){return this.isEOF()||60/* `<` */!==this.char()||!this.ignoreTag&&(Qe(e=this.peek()||0)||47===e)?null:(this.bump(),"<");var e;
|
|
332
359
|
/** See `parseTag` function docs. */},
|
|
333
360
|
/**
|
|
334
361
|
* Starting with ICU 4.8, an ASCII apostrophe only starts quoted text if it immediately precedes
|
|
@@ -350,67 +377,67 @@ for(this.bump();!this.isEOF();){var r=this.char();if(39/* `'` */===r){if(39/* `'
|
|
|
350
377
|
// Optional closing apostrophe.
|
|
351
378
|
this.bump();break}t.push(39),
|
|
352
379
|
// Bump one more time because we need to skip 2 characters.
|
|
353
|
-
this.bump()}else t.push(r);this.bump()}return
|
|
354
|
-
this.bumpSpace(),this.isEOF())return this.error(
|
|
380
|
+
this.bump()}else t.push(r);this.bump()}return Ve.apply(void 0,t)},e.prototype.tryParseUnquoted=function(e,t){if(this.isEOF())return null;var r=this.char();return 60/* `<` */===r||123/* `{` */===r||35/* `#` */===r&&("plural"===t||"selectordinal"===t)||125/* `}` */===r&&e>0?null:(this.bump(),Ve(r))},e.prototype.parseArgument=function(e,t){var r=this.clonePosition();if(this.bump(),// `{`
|
|
381
|
+
this.bumpSpace(),this.isEOF())return this.error(ee.EXPECT_ARGUMENT_CLOSING_BRACE,Ne(r,this.clonePosition()));if(125/* `}` */===this.char())return this.bump(),this.error(ee.EMPTY_ARGUMENT,Ne(r,this.clonePosition()));
|
|
355
382
|
// argument name
|
|
356
|
-
var n=this.parseIdentifierIfPossible().value;if(!n)return this.error(
|
|
383
|
+
var n=this.parseIdentifierIfPossible().value;if(!n)return this.error(ee.MALFORMED_ARGUMENT,Ne(r,this.clonePosition()));if(this.bumpSpace(),this.isEOF())return this.error(ee.EXPECT_ARGUMENT_CLOSING_BRACE,Ne(r,this.clonePosition()));switch(this.char()){
|
|
357
384
|
// Simple argument: `{name}`
|
|
358
385
|
case 125/* `}` */:// `}`
|
|
359
|
-
return this.bump(),{val:{type:
|
|
386
|
+
return this.bump(),{val:{type:te.argument,
|
|
360
387
|
// value does not include the opening and closing braces.
|
|
361
|
-
value:n,location:
|
|
388
|
+
value:n,location:Ne(r,this.clonePosition())},err:null};
|
|
362
389
|
// Argument with options: `{name, format, ...}`
|
|
363
390
|
case 44/* `,` */:return this.bump(),// `,`
|
|
364
|
-
this.bumpSpace(),this.isEOF()?this.error(
|
|
391
|
+
this.bumpSpace(),this.isEOF()?this.error(ee.EXPECT_ARGUMENT_CLOSING_BRACE,Ne(r,this.clonePosition())):this.parseArgumentOptions(e,t,n,r);default:return this.error(ee.MALFORMED_ARGUMENT,Ne(r,this.clonePosition()))}},
|
|
365
392
|
/**
|
|
366
393
|
* Advance the parser until the end of the identifier, if it is currently on
|
|
367
394
|
* an identifier character. Return an empty string otherwise.
|
|
368
395
|
*/
|
|
369
|
-
e.prototype.parseIdentifierIfPossible=function(){var e=this.clonePosition(),t=this.offset(),r=
|
|
396
|
+
e.prototype.parseIdentifierIfPossible=function(){var e=this.clonePosition(),t=this.offset(),r=ke(this.message,t),n=t+r.length;return this.bumpTo(n),{value:r,location:Ne(e,this.clonePosition())}},e.prototype.parseArgumentOptions=function(e,t,r,n){var i,o=this.clonePosition(),s=this.parseIdentifierIfPossible().value,a=this.clonePosition();
|
|
370
397
|
// Parse this range:
|
|
371
398
|
// {name, type, style}
|
|
372
399
|
// ^---^
|
|
373
400
|
switch(s){case"":
|
|
374
401
|
// Expecting a style string number, date, time, plural, selectordinal, or select.
|
|
375
|
-
return this.error(
|
|
402
|
+
return this.error(ee.EXPECT_ARGUMENT_TYPE,Ne(o,a));case"number":case"date":case"time":
|
|
376
403
|
// Parse this range:
|
|
377
404
|
// {name, number, style}
|
|
378
405
|
// ^-------^
|
|
379
|
-
this.bumpSpace();var u=null;if(this.bumpIf(",")){this.bumpSpace();var l=this.clonePosition();if((y=this.parseSimpleArgStyleIfPossible()).err)return y;if(0===(p=
|
|
406
|
+
this.bumpSpace();var u=null;if(this.bumpIf(",")){this.bumpSpace();var l=this.clonePosition();if((y=this.parseSimpleArgStyleIfPossible()).err)return y;if(0===(p=Ye(y.val)).length)return this.error(ee.EXPECT_ARGUMENT_STYLE,Ne(this.clonePosition(),this.clonePosition()));u={style:p,styleLocation:Ne(l,this.clonePosition())}}if((g=this.tryParseArgumentClose(n)).err)return g;var c=Ne(n,this.clonePosition());
|
|
380
407
|
// Extract style or skeleton
|
|
381
|
-
if(u&&
|
|
408
|
+
if(u&&je(null==u?void 0:u.style,"::",0)){
|
|
382
409
|
// Skeleton starts with `::`.
|
|
383
|
-
var h=
|
|
410
|
+
var h=Ke(u.style.slice(2));if("number"===s)return(y=this.parseNumberSkeletonFromString(h,u.styleLocation)).err?y:{val:{type:te.number,value:r,location:c,style:y.val},err:null};if(0===h.length)return this.error(ee.EXPECT_DATE_TIME_SKELETON,c);var f=h;
|
|
384
411
|
// Get "best match" pattern only if locale is passed, if not, let it
|
|
385
412
|
// pass as-is where `parseDateTimeSkeleton()` will throw an error
|
|
386
413
|
// for unsupported patterns.
|
|
387
|
-
this.locale&&(f=function(e,t){for(var r="",n=0;n<e.length;n++){var i=e.charAt(n);if("j"===i){for(var o=0;n+1<e.length&&e.charAt(n+1)===i;)o++,n++;var s=1+(1&o),a=o<2?1:3+(o>>1),u=Oe(t);for("H"!=u&&"k"!=u||(a=0);a-- >0;)r+="a";for(;s-- >0;)r=u+r}else r+="J"===i?"H":i}return r}(h,this.locale));var p={type:
|
|
414
|
+
this.locale&&(f=function(e,t){for(var r="",n=0;n<e.length;n++){var i=e.charAt(n);if("j"===i){for(var o=0;n+1<e.length&&e.charAt(n+1)===i;)o++,n++;var s=1+(1&o),a=o<2?1:3+(o>>1),u=Oe(t);for("H"!=u&&"k"!=u||(a=0);a-- >0;)r+="a";for(;s-- >0;)r=u+r}else r+="J"===i?"H":i}return r}(h,this.locale));var p={type:re.dateTime,pattern:f,location:u.styleLocation,parsedOptions:this.shouldParseSkeletons?ge(f):{}};return{val:{type:"date"===s?te.date:te.time,value:r,location:c,style:p},err:null}}
|
|
388
415
|
// Regular style or no style.
|
|
389
|
-
return{val:{type:"number"===s?
|
|
416
|
+
return{val:{type:"number"===s?te.number:"date"===s?te.date:te.time,value:r,location:c,style:null!==(i=null==u?void 0:u.style)&&void 0!==i?i:null},err:null};case"plural":case"selectordinal":case"select":
|
|
390
417
|
// Parse this range:
|
|
391
418
|
// {name, plural, options}
|
|
392
419
|
// ^---------^
|
|
393
|
-
var d=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(
|
|
420
|
+
var d=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(ee.EXPECT_SELECT_ARGUMENT_OPTIONS,Ne(d,ne({},d)));this.bumpSpace();
|
|
394
421
|
// Parse offset:
|
|
395
422
|
// {name, plural, offset:1, options}
|
|
396
423
|
// ^-----^
|
|
397
424
|
// or the first option:
|
|
398
425
|
// {name, plural, one {...} other {...}}
|
|
399
426
|
// ^--^
|
|
400
|
-
var m=this.parseIdentifierIfPossible(),b=0;if("select"!==s&&"offset"===m.value){if(!this.bumpIf(":"))return this.error(
|
|
427
|
+
var m=this.parseIdentifierIfPossible(),b=0;if("select"!==s&&"offset"===m.value){if(!this.bumpIf(":"))return this.error(ee.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,Ne(this.clonePosition(),this.clonePosition()));var y;if(this.bumpSpace(),(y=this.tryParseDecimalInteger(ee.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,ee.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE)).err)return y;
|
|
401
428
|
// Parse another identifier for option parsing
|
|
402
|
-
this.bumpSpace(),m=this.parseIdentifierIfPossible(),b=y.val}var g,v=this.tryParsePluralOrSelectOptions(e,s,t,m);if(v.err)return v;if((g=this.tryParseArgumentClose(n)).err)return g;var E=
|
|
429
|
+
this.bumpSpace(),m=this.parseIdentifierIfPossible(),b=y.val}var g,v=this.tryParsePluralOrSelectOptions(e,s,t,m);if(v.err)return v;if((g=this.tryParseArgumentClose(n)).err)return g;var E=Ne(n,this.clonePosition());return"select"===s?{val:{type:te.select,value:r,options:ze(v.val),location:E},err:null}:{val:{type:te.plural,value:r,options:ze(v.val),offset:b,pluralType:"plural"===s?"cardinal":"ordinal",location:E},err:null};default:return this.error(ee.INVALID_ARGUMENT_TYPE,Ne(o,a))}},e.prototype.tryParseArgumentClose=function(e){
|
|
403
430
|
// Parse: {value, number, ::currency/GBP }
|
|
404
|
-
return this.isEOF()||125/* `}` */!==this.char()?this.error(
|
|
431
|
+
return this.isEOF()||125/* `}` */!==this.char()?this.error(ee.EXPECT_ARGUMENT_CLOSING_BRACE,Ne(e,this.clonePosition())):(this.bump(),{val:!0,err:null})},
|
|
405
432
|
/**
|
|
406
433
|
* See: https://github.com/unicode-org/icu/blob/af7ed1f6d2298013dc303628438ec4abe1f16479/icu4c/source/common/messagepattern.cpp#L659
|
|
407
434
|
*/
|
|
408
435
|
e.prototype.parseSimpleArgStyleIfPossible=function(){for(var e=0,t=this.clonePosition();!this.isEOF();){switch(this.char()){case 39/* `'` */:
|
|
409
436
|
// Treat apostrophe as quoting but include it in the style part.
|
|
410
437
|
// Find the end of the quoted literal text.
|
|
411
|
-
this.bump();var r=this.clonePosition();if(!this.bumpUntil("'"))return this.error(
|
|
438
|
+
this.bump();var r=this.clonePosition();if(!this.bumpUntil("'"))return this.error(ee.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE,Ne(r,this.clonePosition()));this.bump();break;case 123/* `{` */:e+=1,this.bump();break;case 125/* `}` */:if(!(e>0))return{val:this.message.slice(t.offset,this.offset()),err:null};e-=1;break;default:this.bump()}}return{val:this.message.slice(t.offset,this.offset()),err:null}},e.prototype.parseNumberSkeletonFromString=function(e,t){var r=[];try{r=function(e){if(0===e.length)throw new Error("Number skeleton cannot be empty");
|
|
412
439
|
// Parse the skeleton
|
|
413
|
-
for(var t=e.split(
|
|
440
|
+
for(var t=e.split(ve).filter((function(e){return e.length>0})),r=[],n=0,i=t;n<i.length;n++){var o=i[n].split("/");if(0===o.length)throw new Error("Invalid number skeleton");for(var s=o[0],a=o.slice(1),u=0,l=a;u<l.length;u++)if(0===l[u].length)throw new Error("Invalid number skeleton");r.push({stem:s,options:a})}return r}(e)}catch(e){return this.error(ee.INVALID_NUMBER_SKELETON,t)}return{val:{type:re.number,tokens:r,location:t,parsedOptions:this.shouldParseSkeletons?Pe(r):{}},err:null}},
|
|
414
441
|
/**
|
|
415
442
|
* @param nesting_level The current nesting level of messages.
|
|
416
443
|
* This can be positive when parsing message fragment in select or plural argument options.
|
|
@@ -427,24 +454,24 @@ e.prototype.tryParsePluralOrSelectOptions=function(e,t,r,n){
|
|
|
427
454
|
// ^--^
|
|
428
455
|
for(var i,o=!1,s=[],a=new Set,u=n.value,l=n.location;;){if(0===u.length){var c=this.clonePosition();if("select"===t||!this.bumpIf("="))break;
|
|
429
456
|
// Try parse `={number}` selector
|
|
430
|
-
var h=this.tryParseDecimalInteger(
|
|
457
|
+
var h=this.tryParseDecimalInteger(ee.EXPECT_PLURAL_ARGUMENT_SELECTOR,ee.INVALID_PLURAL_ARGUMENT_SELECTOR);if(h.err)return h;l=Ne(c,this.clonePosition()),u=this.message.slice(c.offset,this.offset())}
|
|
431
458
|
// Duplicate selector clauses
|
|
432
|
-
if(a.has(u))return this.error("select"===t?
|
|
459
|
+
if(a.has(u))return this.error("select"===t?ee.DUPLICATE_SELECT_ARGUMENT_SELECTOR:ee.DUPLICATE_PLURAL_ARGUMENT_SELECTOR,l);"other"===u&&(o=!0),
|
|
433
460
|
// Parse:
|
|
434
461
|
// one {one apple}
|
|
435
462
|
// ^----------^
|
|
436
|
-
this.bumpSpace();var f=this.clonePosition();if(!this.bumpIf("{"))return this.error("select"===t?
|
|
463
|
+
this.bumpSpace();var f=this.clonePosition();if(!this.bumpIf("{"))return this.error("select"===t?ee.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT:ee.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT,Ne(this.clonePosition(),this.clonePosition()));var p=this.parseMessage(e+1,t,r);if(p.err)return p;var d=this.tryParseArgumentClose(f);if(d.err)return d;s.push([u,{value:p.val,location:Ne(f,this.clonePosition())}]),
|
|
437
464
|
// Keep track of the existing selectors
|
|
438
465
|
a.add(u),
|
|
439
466
|
// Prep next selector clause.
|
|
440
|
-
this.bumpSpace(),u=(i=this.parseIdentifierIfPossible()).value,l=i.location}return 0===s.length?this.error("select"===t?
|
|
467
|
+
this.bumpSpace(),u=(i=this.parseIdentifierIfPossible()).value,l=i.location}return 0===s.length?this.error("select"===t?ee.EXPECT_SELECT_ARGUMENT_SELECTOR:ee.EXPECT_PLURAL_ARGUMENT_SELECTOR,Ne(this.clonePosition(),this.clonePosition())):this.requiresOtherClause&&!o?this.error(ee.MISSING_OTHER_CLAUSE,Ne(this.clonePosition(),this.clonePosition())):{val:s,err:null}},e.prototype.tryParseDecimalInteger=function(e,t){var r=1,n=this.clonePosition();this.bumpIf("+")||this.bumpIf("-")&&(r=-1);for(var i=!1,o=0;!this.isEOF();){var s=this.char();if(!(s>=48/* `0` */&&s<=57/* `9` */))break;i=!0,o=10*o+(s-48),this.bump()}var a=Ne(n,this.clonePosition());return i?Fe(o*=r)?{val:o,err:null}:this.error(t,a):this.error(e,a)},e.prototype.offset=function(){return this.position.offset},e.prototype.isEOF=function(){return this.offset()===this.message.length},e.prototype.clonePosition=function(){
|
|
441
468
|
// This is much faster than `Object.assign` or spread.
|
|
442
469
|
return{offset:this.position.offset,line:this.position.line,column:this.position.column}},
|
|
443
470
|
/**
|
|
444
471
|
* Return the code point at the current position of the parser.
|
|
445
472
|
* Throws if the index is out of bound.
|
|
446
473
|
*/
|
|
447
|
-
e.prototype.char=function(){var e=this.position.offset;if(e>=this.message.length)throw Error("out of bound");var t=
|
|
474
|
+
e.prototype.char=function(){var e=this.position.offset;if(e>=this.message.length)throw Error("out of bound");var t=Xe(this.message,e);if(void 0===t)throw Error("Offset ".concat(e," is at invalid UTF-16 code unit boundary"));return t},e.prototype.error=function(e,t){return{val:null,err:{kind:e,message:this.message,location:t}}},
|
|
448
475
|
/** Bump the parser to the next UTF-16 code unit. */
|
|
449
476
|
e.prototype.bump=function(){if(!this.isEOF()){var e=this.char();10/* '\n' */===e?(this.position.line+=1,this.position.column=1,this.position.offset+=1):(this.position.column+=1,
|
|
450
477
|
// 0 ~ 0x10000 -> unicode BMP, otherwise skip the surrogate pair.
|
|
@@ -455,7 +482,7 @@ this.position.offset+=e<65536?1:2)}},
|
|
|
455
482
|
* following the prefix and return true. Otherwise, don't bump the parser
|
|
456
483
|
* and return false.
|
|
457
484
|
*/
|
|
458
|
-
e.prototype.bumpIf=function(e){if(
|
|
485
|
+
e.prototype.bumpIf=function(e){if(je(this.message,e,this.offset())){for(var t=0;t<e.length;t++)this.bump();return!0}return!1},
|
|
459
486
|
/**
|
|
460
487
|
* Bump the parser until the pattern character is found and return `true`.
|
|
461
488
|
* Otherwise bump to the end of the file and return `false`.
|
|
@@ -467,7 +494,7 @@ e.prototype.bumpUntil=function(e){var t=this.offset(),r=this.message.indexOf(e,t
|
|
|
467
494
|
*/
|
|
468
495
|
e.prototype.bumpTo=function(e){if(this.offset()>e)throw Error("targetOffset ".concat(e," must be greater than or equal to the current offset ").concat(this.offset()));for(e=Math.min(e,this.message.length);;){var t=this.offset();if(t===e)break;if(t>e)throw Error("targetOffset ".concat(e," is at invalid UTF-16 code unit boundary"));if(this.bump(),this.isEOF())break}},
|
|
469
496
|
/** advance the parser through all whitespace to the next non-whitespace code unit. */
|
|
470
|
-
e.prototype.bumpSpace=function(){for(;!this.isEOF()&&
|
|
497
|
+
e.prototype.bumpSpace=function(){for(;!this.isEOF()&&tt(this.char());)this.bump()},
|
|
471
498
|
/**
|
|
472
499
|
* Peek at the *next* Unicode codepoint in the input without advancing the parser.
|
|
473
500
|
* If the input has been exhausted, then this returns null.
|
|
@@ -477,99 +504,85 @@ e.prototype.peek=function(){if(this.isEOF())return null;var e=this.char(),t=this
|
|
|
477
504
|
* This check if codepoint is alphabet (lower & uppercase)
|
|
478
505
|
* @param codepoint
|
|
479
506
|
* @returns
|
|
480
|
-
*/function
|
|
507
|
+
*/function Qe(e){return e>=97&&e<=122||e>=65&&e<=90}function et(e){return 45/* '-' */===e||46/* '.' */===e||e>=48&&e<=57/* 0..9 */||95/* '_' */===e||e>=97&&e<=122/** a..z */||e>=65&&e<=90/* A..Z */||183==e||e>=192&&e<=214||e>=216&&e<=246||e>=248&&e<=893||e>=895&&e<=8191||e>=8204&&e<=8205||e>=8255&&e<=8256||e>=8304&&e<=8591||e>=11264&&e<=12271||e>=12289&&e<=55295||e>=63744&&e<=64975||e>=65008&&e<=65533||e>=65536&&e<=983039}
|
|
481
508
|
/**
|
|
482
509
|
* Code point equivalent of regex `\p{White_Space}`.
|
|
483
510
|
* From: https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt
|
|
484
|
-
*/function
|
|
511
|
+
*/function tt(e){return e>=9&&e<=13||32===e||133===e||e>=8206&&e<=8207||8232===e||8233===e}
|
|
485
512
|
/**
|
|
486
513
|
* Code point equivalent of regex `\p{Pattern_Syntax}`.
|
|
487
514
|
* See https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt
|
|
488
|
-
*/function
|
|
515
|
+
*/function rt(e){return e>=33&&e<=35||36===e||e>=37&&e<=39||40===e||41===e||42===e||43===e||44===e||45===e||e>=46&&e<=47||e>=58&&e<=59||e>=60&&e<=62||e>=63&&e<=64||91===e||92===e||93===e||94===e||96===e||123===e||124===e||125===e||126===e||161===e||e>=162&&e<=165||166===e||167===e||169===e||171===e||172===e||174===e||176===e||177===e||182===e||187===e||191===e||215===e||247===e||e>=8208&&e<=8213||e>=8214&&e<=8215||8216===e||8217===e||8218===e||e>=8219&&e<=8220||8221===e||8222===e||8223===e||e>=8224&&e<=8231||e>=8240&&e<=8248||8249===e||8250===e||e>=8251&&e<=8254||e>=8257&&e<=8259||8260===e||8261===e||8262===e||e>=8263&&e<=8273||8274===e||8275===e||e>=8277&&e<=8286||e>=8592&&e<=8596||e>=8597&&e<=8601||e>=8602&&e<=8603||e>=8604&&e<=8607||8608===e||e>=8609&&e<=8610||8611===e||e>=8612&&e<=8613||8614===e||e>=8615&&e<=8621||8622===e||e>=8623&&e<=8653||e>=8654&&e<=8655||e>=8656&&e<=8657||8658===e||8659===e||8660===e||e>=8661&&e<=8691||e>=8692&&e<=8959||e>=8960&&e<=8967||8968===e||8969===e||8970===e||8971===e||e>=8972&&e<=8991||e>=8992&&e<=8993||e>=8994&&e<=9e3||9001===e||9002===e||e>=9003&&e<=9083||9084===e||e>=9085&&e<=9114||e>=9115&&e<=9139||e>=9140&&e<=9179||e>=9180&&e<=9185||e>=9186&&e<=9254||e>=9255&&e<=9279||e>=9280&&e<=9290||e>=9291&&e<=9311||e>=9472&&e<=9654||9655===e||e>=9656&&e<=9664||9665===e||e>=9666&&e<=9719||e>=9720&&e<=9727||e>=9728&&e<=9838||9839===e||e>=9840&&e<=10087||10088===e||10089===e||10090===e||10091===e||10092===e||10093===e||10094===e||10095===e||10096===e||10097===e||10098===e||10099===e||10100===e||10101===e||e>=10132&&e<=10175||e>=10176&&e<=10180||10181===e||10182===e||e>=10183&&e<=10213||10214===e||10215===e||10216===e||10217===e||10218===e||10219===e||10220===e||10221===e||10222===e||10223===e||e>=10224&&e<=10239||e>=10240&&e<=10495||e>=10496&&e<=10626||10627===e||10628===e||10629===e||10630===e||10631===e||10632===e||10633===e||10634===e||10635===e||10636===e||10637===e||10638===e||10639===e||10640===e||10641===e||10642===e||10643===e||10644===e||10645===e||10646===e||10647===e||10648===e||e>=10649&&e<=10711||10712===e||10713===e||10714===e||10715===e||e>=10716&&e<=10747||10748===e||10749===e||e>=10750&&e<=11007||e>=11008&&e<=11055||e>=11056&&e<=11076||e>=11077&&e<=11078||e>=11079&&e<=11084||e>=11085&&e<=11123||e>=11124&&e<=11125||e>=11126&&e<=11157||11158===e||e>=11159&&e<=11263||e>=11776&&e<=11777||11778===e||11779===e||11780===e||11781===e||e>=11782&&e<=11784||11785===e||11786===e||11787===e||11788===e||11789===e||e>=11790&&e<=11798||11799===e||e>=11800&&e<=11801||11802===e||11803===e||11804===e||11805===e||e>=11806&&e<=11807||11808===e||11809===e||11810===e||11811===e||11812===e||11813===e||11814===e||11815===e||11816===e||11817===e||e>=11818&&e<=11822||11823===e||e>=11824&&e<=11833||e>=11834&&e<=11835||e>=11836&&e<=11839||11840===e||11841===e||11842===e||e>=11843&&e<=11855||e>=11856&&e<=11857||11858===e||e>=11859&&e<=11903||e>=12289&&e<=12291||12296===e||12297===e||12298===e||12299===e||12300===e||12301===e||12302===e||12303===e||12304===e||12305===e||e>=12306&&e<=12307||12308===e||12309===e||12310===e||12311===e||12312===e||12313===e||12314===e||12315===e||12316===e||12317===e||e>=12318&&e<=12319||12320===e||12336===e||64830===e||64831===e||e>=65093&&e<=65094}function nt(e){e.forEach((function(e){if(delete e.location,ce(e)||he(e))for(var t in e.options)delete e.options[t].location,nt(e.options[t].value);else ae(e)&&de(e.style)||(ue(e)||le(e))&&me(e.style)?delete e.style.location:pe(e)&&nt(e.children)}))}function it(e,t){void 0===t&&(t={}),t=ne({shouldParseSkeletons:!0,requiresOtherClause:!0},t);var r=new Je(e,t).parse();if(r.err){var n=SyntaxError(ee[r.err.kind]);
|
|
489
516
|
// @ts-expect-error Assign to error object
|
|
490
517
|
throw n.location=r.err.location,
|
|
491
518
|
// @ts-expect-error Assign to error object
|
|
492
|
-
n.originalMessage=r.err.message,n}return(null==t?void 0:t.captureLocation)||
|
|
519
|
+
n.originalMessage=r.err.message,n}return(null==t?void 0:t.captureLocation)||nt(r.val),r.val}
|
|
493
520
|
|
|
494
521
|
// Main
|
|
495
522
|
|
|
496
|
-
function
|
|
523
|
+
function ot(e,t){var r=t&&t.cache?t.cache:pt,n=t&&t.serializer?t.serializer:ct;return(t&&t.strategy?t.strategy:lt)(e,{cache:r,serializer:n})}
|
|
497
524
|
|
|
498
525
|
// Strategy
|
|
499
526
|
|
|
500
|
-
function
|
|
527
|
+
function st(e,t,r,n){var i,o=null==(i=n)||"number"==typeof i||"boolean"==typeof i?n:r(n),s=t.get(o);return void 0===s&&(s=e.call(this,n),t.set(o,s)),s}function at(e,t,r){var n=Array.prototype.slice.call(arguments,3),i=r(n),o=t.get(i);return void 0===o&&(o=e.apply(this,n),t.set(i,o)),o}function ut(e,t,r,n,i){return r.bind(t,e,n,i)}function lt(e,t){return ut(e,this,1===e.length?st:at,t.cache.create(),t.serializer)}
|
|
501
528
|
// Serializer
|
|
502
|
-
var
|
|
529
|
+
var ct=function(){return JSON.stringify(arguments)};
|
|
503
530
|
|
|
504
531
|
// Cache
|
|
505
532
|
|
|
506
|
-
function
|
|
533
|
+
function ht(){this.cache=Object.create(null)}ht.prototype.get=function(e){return this.cache[e]},ht.prototype.set=function(e,t){this.cache[e]=t};var ft,pt={create:function(){
|
|
507
534
|
// @ts-ignore
|
|
508
|
-
return new
|
|
535
|
+
return new ht}},dt={variadic:function(e,t){return ut(e,this,at,t.cache.create(),t.serializer)},monadic:function(e,t){return ut(e,this,st,t.cache.create(),t.serializer)}};!function(e){
|
|
509
536
|
// When we have a placeholder but no value to format
|
|
510
537
|
e.MISSING_VALUE="MISSING_VALUE",
|
|
511
538
|
// When value supplied is invalid
|
|
512
539
|
e.INVALID_VALUE="INVALID_VALUE",
|
|
513
540
|
// When we need specific Intl API but it's not available
|
|
514
|
-
e.MISSING_INTL_API="MISSING_INTL_API"}(
|
|
541
|
+
e.MISSING_INTL_API="MISSING_INTL_API"}(ft||(ft={}));var mt,bt=/** @class */function(e){function t(t,r,n){var i=e.call(this,t)||this;return i.code=r,i.originalMessage=n,i}return Q(t,e),t.prototype.toString=function(){return"[formatjs Error: ".concat(this.code,"] ").concat(this.message)},t}(Error),yt=/** @class */function(e){function t(t,r,n,i){return e.call(this,'Invalid values for "'.concat(t,'": "').concat(r,'". Options are "').concat(Object.keys(n).join('", "'),'"'),ft.INVALID_VALUE,i)||this}return Q(t,e),t}(bt),gt=/** @class */function(e){function t(t,r,n){return e.call(this,'Value for "'.concat(t,'" must be of type ').concat(r),ft.INVALID_VALUE,n)||this}return Q(t,e),t}(bt),vt=/** @class */function(e){function t(t,r){return e.call(this,'The intl string context variable "'.concat(t,'" was not provided to the string "').concat(r,'"'),ft.MISSING_VALUE,r)||this}return Q(t,e),t}(bt);function Et(e){return"function"==typeof e}
|
|
515
542
|
// TODO(skeleton): add skeleton support
|
|
516
|
-
function
|
|
543
|
+
function wt(e,t,r,n,i,o,
|
|
517
544
|
// For debugging
|
|
518
545
|
s){
|
|
519
546
|
// Hot path for straight simple msg translations
|
|
520
|
-
if(1===e.length&&
|
|
547
|
+
if(1===e.length&&oe(e[0]))return[{type:mt.literal,value:e[0].value}];for(var a=[],u=0,l=e;u<l.length;u++){var c=l[u];
|
|
521
548
|
// Exit early for string parts.
|
|
522
|
-
if(
|
|
549
|
+
if(oe(c))a.push({type:mt.literal,value:c.value});else
|
|
523
550
|
// TODO: should this part be literal type?
|
|
524
551
|
// Replace `#` in plural rules with the actual numeric value.
|
|
525
|
-
if(
|
|
552
|
+
if(fe(c))"number"==typeof o&&a.push({type:mt.literal,value:r.getNumberFormat(t).format(o)});else{var h=c.value;
|
|
526
553
|
// Enforce that all required values are provided by the caller.
|
|
527
|
-
if(!i||!(h in i))throw new
|
|
554
|
+
if(!i||!(h in i))throw new vt(h,s);var f=i[h];if(se(c))f&&"string"!=typeof f&&"number"!=typeof f||(f="string"==typeof f||"number"==typeof f?String(f):""),a.push({type:"string"==typeof f?mt.literal:mt.object,value:f});else
|
|
528
555
|
// Recursively format plural and select parts' option — which can be a
|
|
529
556
|
// nested pattern structure. The choosing of the option to use is
|
|
530
557
|
// abstracted-by and delegated-to the part helper object.
|
|
531
|
-
if(
|
|
558
|
+
if(ue(c)){var p="string"==typeof c.style?n.date[c.style]:me(c.style)?c.style.parsedOptions:void 0;a.push({type:mt.literal,value:r.getDateTimeFormat(t,p).format(f)})}else if(le(c)){p="string"==typeof c.style?n.time[c.style]:me(c.style)?c.style.parsedOptions:n.time.medium;a.push({type:mt.literal,value:r.getDateTimeFormat(t,p).format(f)})}else if(ae(c)){(p="string"==typeof c.style?n.number[c.style]:de(c.style)?c.style.parsedOptions:void 0)&&p.scale&&(f*=p.scale||1),a.push({type:mt.literal,value:r.getNumberFormat(t,p).format(f)})}else{if(pe(c)){var d=c.children,m=c.value,b=i[m];if(!Et(b))throw new gt(m,"function",s);var y=b(wt(d,t,r,n,i,o).map((function(e){return e.value})));Array.isArray(y)||(y=[y]),a.push.apply(a,y.map((function(e){return{type:"string"==typeof e?mt.literal:mt.object,value:e}})))}if(ce(c)){if(!(g=c.options[f]||c.options.other))throw new yt(c.value,f,Object.keys(c.options),s);a.push.apply(a,wt(g.value,t,r,n,i))}else if(he(c)){var g;if(!(g=c.options["=".concat(f)])){if(!Intl.PluralRules)throw new bt('Intl.PluralRules is not available in this environment.\nTry polyfilling it using "@formatjs/intl-pluralrules"\n',ft.MISSING_INTL_API,s);var v=r.getPluralRules(t,{type:c.pluralType}).select(f-(c.offset||0));g=c.options[v]||c.options.other}if(!g)throw new yt(c.value,f,Object.keys(c.options),s);a.push.apply(a,wt(g.value,t,r,n,i,f-(c.offset||0)))}else;}}}return function(e){return e.length<2?e:e.reduce((function(e,t){var r=e[e.length-1];return r&&r.type===mt.literal&&t.type===mt.literal?r.value+=t.value:e.push(t),e}),[])}(a)}
|
|
532
559
|
/*
|
|
533
560
|
Copyright (c) 2014, Yahoo! Inc. All rights reserved.
|
|
534
561
|
Copyrights licensed under the New BSD License.
|
|
535
562
|
See the accompanying LICENSE file for terms.
|
|
536
563
|
*/
|
|
537
564
|
// -- MessageFormat --------------------------------------------------------
|
|
538
|
-
function
|
|
565
|
+
function _t(e,t){return t?Object.keys(e).reduce((function(r,n){var i,o;return r[n]=(i=e[n],(o=t[n])?ne(ne(ne({},i||{}),o||{}),Object.keys(i).reduce((function(e,t){return e[t]=ne(ne({},i[t]),o[t]||{}),e}),{})):i),r}),ne({},e)):e}function Tt(e){return{create:function(){return{get:function(t){return e[t]},set:function(t,r){e[t]=r}}}}}!function(e){e[e.literal=0]="literal",e[e.object=1]="object"}(mt||(mt={}));var Bt=/** @class */function(){function e(t,r,n,i){var o,s=this;if(void 0===r&&(r=e.defaultLocale),this.formatterCache={number:{},dateTime:{},pluralRules:{}},this.format=function(e){var t=s.formatToParts(e);
|
|
539
566
|
// Hot path for straight simple msg translations
|
|
540
|
-
if(1===t.length)return t[0].value;var r=t.reduce((function(e,t){return e.length&&t.type===
|
|
567
|
+
if(1===t.length)return t[0].value;var r=t.reduce((function(e,t){return e.length&&t.type===mt.literal&&"string"==typeof e[e.length-1]?e[e.length-1]+=t.value:e.push(t.value),e}),[]);return r.length<=1?r[0]||"":r},this.formatToParts=function(e){return wt(s.ast,s.locales,s.formatters,s.formats,e,void 0,s.message)},this.resolvedOptions=function(){return{locale:s.resolvedLocale.toString()}},this.getAst=function(){return s.ast},
|
|
541
568
|
// Defined first because it's used to build the format pattern.
|
|
542
569
|
this.locales=r,this.resolvedLocale=e.resolveLocale(r),"string"==typeof t){if(this.message=t,!e.__parse)throw new TypeError("IntlMessageFormat.__parse must be set to process `message` of type `string`");
|
|
543
570
|
// Parse string messages into an AST.
|
|
544
571
|
this.ast=e.__parse(t,{ignoreTag:null==i?void 0:i.ignoreTag,locale:this.resolvedLocale})}else this.ast=t;if(!Array.isArray(this.ast))throw new TypeError("A message must be provided as a String or AST.");
|
|
545
572
|
// Creates a new object with the specified `formats` merged with the default
|
|
546
573
|
// formats.
|
|
547
|
-
this.formats=
|
|
574
|
+
this.formats=_t(e.formats,n),this.formatters=i&&i.formatters||(void 0===(o=this.formatterCache)&&(o={number:{},dateTime:{},pluralRules:{}}),{getNumberFormat:ot((function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.NumberFormat).bind.apply(e,ie([void 0],t,!1)))}),{cache:Tt(o.number),strategy:dt.variadic}),getDateTimeFormat:ot((function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.DateTimeFormat).bind.apply(e,ie([void 0],t,!1)))}),{cache:Tt(o.dateTime),strategy:dt.variadic}),getPluralRules:ot((function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return new((e=Intl.PluralRules).bind.apply(e,ie([void 0],t,!1)))}),{cache:Tt(o.pluralRules),strategy:dt.variadic})})}return Object.defineProperty(e,"defaultLocale",{get:function(){return e.memoizedDefaultLocale||(e.memoizedDefaultLocale=(new Intl.NumberFormat).resolvedOptions().locale),e.memoizedDefaultLocale},enumerable:!1,configurable:!0}),e.memoizedDefaultLocale=null,e.resolveLocale=function(e){var t=Intl.NumberFormat.supportedLocalesOf(e);return t.length>0?new Intl.Locale(t[0]):new Intl.Locale("string"==typeof e?e:e[0])},e.__parse=it,
|
|
548
575
|
// Default format options used as the prototype of the `formats` provided to the
|
|
549
576
|
// constructor. These are used when constructing the internal Intl.NumberFormat
|
|
550
577
|
// and Intl.DateTimeFormat instances.
|
|
551
|
-
e.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"}}},e}(),Bt
|
|
578
|
+
e.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"}}},e}(),At=Bt;
|
|
552
579
|
/*
|
|
553
580
|
Copyright (c) 2014, Yahoo! Inc. All rights reserved.
|
|
554
581
|
Copyrights licensed under the New BSD License.
|
|
555
582
|
See the accompanying LICENSE file for terms.
|
|
556
|
-
*/const
|
|
557
|
-
/*! *****************************************************************************
|
|
558
|
-
Copyright (c) Microsoft Corporation.
|
|
559
|
-
|
|
560
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
561
|
-
purpose with or without fee is hereby granted.
|
|
562
|
-
|
|
563
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
564
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
565
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
566
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
567
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
568
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
569
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
570
|
-
***************************************************************************** */function Ut(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(n=Object.getOwnPropertySymbols(e);i<n.length;i++)t.indexOf(n[i])<0&&Object.prototype.propertyIsEnumerable.call(e,n[i])&&(r[n[i]]=e[n[i]])}return r}const Dt={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 Gt(){return Dt}const Ft=G(!1);let Wt;const kt=G(null);function jt(e){return e.split("-").map(((e,t,r)=>r.slice(0,t+1).join("-"))).reverse()}function Vt(e,t=Gt().fallbackLocale){const r=jt(e);return t?[...new Set([...r,...jt(t)])]:r}function zt(){return null!=Wt?Wt:void 0}kt.subscribe((e=>{Wt=null!=e?e:void 0,"undefined"!=typeof window&&null!=e&&document.documentElement.setAttribute("lang",e)}));const Xt=Object.assign(Object.assign({},kt),{set:e=>{if(e&&function(e){if(null==e)return;const t=Vt(e);for(let e=0;e<t.length;e++){const r=t[e];if(Ot(r))return r}}(e)&&Mt(e)){const{loadingDelay:t}=Gt();let r;return"undefined"!=typeof window&&null!=zt()&&t?r=window.setTimeout((()=>Ft.set(!0)),t):Ft.set(!0),$t(e).then((()=>{kt.set(e)})).finally((()=>{clearTimeout(r),Ft.set(!1)}))}return kt.set(e)}}),Kt=e=>{const t=Object.create(null);return r=>{const n=JSON.stringify(r);return n in t?t[n]:t[n]=e(r)}},Yt=(e,t)=>{const{formats:r}=Gt();if(e in r&&t in r[e])return r[e][t];throw new Error(`[svelte-i18n] Unknown "${t}" ${e} format.`)},Zt=Kt((e=>{var{locale:t,format:r}=e,n=Ut(e,["locale","format"]);if(null==t)throw new Error('[svelte-i18n] A "locale" must be set to format numbers');return r&&(n=Yt("number",r)),new Intl.NumberFormat(t,n)})),qt=Kt((e=>{var{locale:t,format:r}=e,n=Ut(e,["locale","format"]);if(null==t)throw new Error('[svelte-i18n] A "locale" must be set to format dates');return r?n=Yt("date",r):0===Object.keys(n).length&&(n=Yt("date","short")),new Intl.DateTimeFormat(t,n)})),Jt=Kt((e=>{var{locale:t,format:r}=e,n=Ut(e,["locale","format"]);if(null==t)throw new Error('[svelte-i18n] A "locale" must be set to format time values');return r?n=Yt("time",r):0===Object.keys(n).length&&(n=Yt("time","short")),new Intl.DateTimeFormat(t,n)})),Qt=Kt(((e,t=zt())=>new Bt(e,t,Gt().formats,{ignoreTag:Gt().ignoreTag}))),er=(e,t={})=>{var r,n,i,o;let s=t;"object"==typeof e&&(s=e,e=s.id);const{values:a,locale:u=zt(),default:l}=s;if(null==u)throw new Error("[svelte-i18n] Cannot format a message without first setting the initial locale.");let c=St(e,u);if(c){if("string"!=typeof c)return console.warn(`[svelte-i18n] Message with id "${e}" must be of type "string", found: "${typeof c}". Gettin its value through the "$format" method is deprecated; use the "json" method instead.`),c}else c=null!==(o=null!==(i=null===(n=(r=Gt()).handleMissingMessage)||void 0===n?void 0:n.call(r,{locale:u,id:e,defaultValue:l}))&&void 0!==i?i:l)&&void 0!==o?o:e;if(!a)return c;let h=c;try{h=Qt(c,u).format(a)}catch(t){console.warn(`[svelte-i18n] Message "${e}" has syntax error:`,t.message)}return h},tr=(e,t)=>((e={})=>{var{locale:t=zt()}=e,r=Ut(e,["locale"]);return Jt(Object.assign({locale:t},r))})(t).format(e),rr=(e,t)=>((e={})=>{var{locale:t=zt()}=e,r=Ut(e,["locale"]);return qt(Object.assign({locale:t},r))})(t).format(e),nr=(e,t)=>((e={})=>{var{locale:t=zt()}=e,r=Ut(e,["locale"]);return Zt(Object.assign({locale:t},r))})(t).format(e),ir=(e,t=zt())=>St(e,t),or=F([Xt,Ct],(()=>er));function sr(e,t){It(e,t)}F([Xt],(()=>tr)),F([Xt],(()=>rr)),F([Xt],(()=>nr)),F([Xt,Ct],(()=>ir));const ar={en:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},"zh-hk":{Translations:{recentWinners:"最近的获奖者",topWinners:"最佳获奖者",won:"刚赢"}},de:{Translations:{recentWinners:"Kürzliche Gewinner",topWinners:"Top Gewinner",won:"Eben gewonnen"}},it:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},fr:{Translations:{recentWinners:"Gagnants récents",topWinners:"Meilleurs gagnants",won:"vient de gagner"}},es:{Translations:{recentWinners:"Ganadores Recientes",topWinners:"Ganadores Top",won:"Últimos Ganadores"}},el:{Translations:{recentWinners:"Πρόσφατοι νικητές",topWinners:"Κορυφαίοι νικητές",won:"μόλις κέρδισε"}},tr:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},ru:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},ro:{Translations:{recentWinners:"Ultimii câștigători",topWinners:"Câștigători de top",won:"tocmai a câștigat"}},hr:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},hu:{Translations:{recentWinners:"Legutóbbi nyertesek",topWinners:"Top nyertesek",won:"Nyert"}},pl:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},pt:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},sl:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},sr:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}}};var ur="undefined"!=typeof globalThis&&globalThis||"undefined"!=typeof self&&self||void 0!==ur&&ur,lr="URLSearchParams"in ur,cr="Symbol"in ur&&"iterator"in Symbol,hr="FileReader"in ur&&"Blob"in ur&&function(){try{return new Blob,!0}catch(e){return!1}}(),fr="FormData"in ur,pr="ArrayBuffer"in ur;if(pr)var dr=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],mr=ArrayBuffer.isView||function(e){return e&&dr.indexOf(Object.prototype.toString.call(e))>-1};function br(e){if("string"!=typeof e&&(e=String(e)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(e)||""===e)throw new TypeError('Invalid character in header field name: "'+e+'"');return e.toLowerCase()}function yr(e){return"string"!=typeof e&&(e=String(e)),e}
|
|
583
|
+
*/const Ht={},St=(e,t,r)=>r?(t in Ht||(Ht[t]={}),e in Ht[t]||(Ht[t][e]=r),r):r,Pt=(e,t)=>{if(null==t)return;if(t in Ht&&e in Ht[t])return Ht[t][e];const r=Vt(t);for(let n=0;n<r.length;n++){const i=It(r[n],e);if(i)return St(e,t,i)}};let Ct;const Lt=F({});function Ot(e){return e in Ct}function It(e,t){if(!Ot(e))return null;const r=function(e){return Ct[e]||null}(e);return function(e,t){if(null==t)return;if(t in e)return e[t];const r=t.split(".");let n=e;for(let e=0;e<r.length;e++)if("object"==typeof n){if(e>0){const t=r.slice(e,r.length).join(".");if(t in n){n=n[t];break}}n=n[r[e]]}else n=void 0;return n}(r,t)}function xt(e,...t){delete Ht[e],Lt.update((r=>(r[e]=q.all([r[e]||{},...t]),r)))}W([Lt],(([e])=>Object.keys(e))),Lt.subscribe((e=>Ct=e));const Nt={};function Mt(e){return Nt[e]}function Rt(e){return null!=e&&Vt(e).some((e=>{var t;return null===(t=Mt(e))||void 0===t?void 0:t.size}))}const $t={};function Ut(e){if(!Rt(e))return e in $t?$t[e]:Promise.resolve();const t=function(e){return Vt(e).map((e=>{const t=Mt(e);return[e,t?[...t]:[]]})).filter((([,e])=>e.length>0))}(e);return $t[e]=Promise.all(t.map((([e,t])=>function(e,t){const r=Promise.all(t.map((t=>(function(e,t){Nt[e].delete(t),0===Nt[e].size&&delete Nt[e]}(e,t),t().then((e=>e.default||e))))));return r.then((t=>xt(e,...t)))}(e,t)))).then((()=>{if(Rt(e))return Ut(e);delete $t[e]})),$t[e]}const Dt={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 Gt(){return Dt}const Ft=F(!1);let Wt;const kt=F(null);function jt(e){return e.split("-").map(((e,t,r)=>r.slice(0,t+1).join("-"))).reverse()}function Vt(e,t=Gt().fallbackLocale){const r=jt(e);return t?[...new Set([...r,...jt(t)])]:r}function zt(){return null!=Wt?Wt:void 0}kt.subscribe((e=>{Wt=null!=e?e:void 0,"undefined"!=typeof window&&null!=e&&document.documentElement.setAttribute("lang",e)}));const Xt={...kt,set:e=>{if(e&&function(e){if(null==e)return;const t=Vt(e);for(let e=0;e<t.length;e++){const r=t[e];if(Ot(r))return r}}(e)&&Rt(e)){const{loadingDelay:t}=Gt();let r;return"undefined"!=typeof window&&null!=zt()&&t?r=window.setTimeout((()=>Ft.set(!0)),t):Ft.set(!0),Ut(e).then((()=>{kt.set(e)})).finally((()=>{clearTimeout(r),Ft.set(!1)}))}return kt.set(e)}},Kt=e=>{const t=Object.create(null);return r=>{const n=JSON.stringify(r);return n in t?t[n]:t[n]=e(r)}},Yt=(e,t)=>{const{formats:r}=Gt();if(e in r&&t in r[e])return r[e][t];throw new Error(`[svelte-i18n] Unknown "${t}" ${e} format.`)},Zt=Kt((({locale:e,format:t,...r})=>{if(null==e)throw new Error('[svelte-i18n] A "locale" must be set to format numbers');return t&&(r=Yt("number",t)),new Intl.NumberFormat(e,r)})),qt=Kt((({locale:e,format:t,...r})=>{if(null==e)throw new Error('[svelte-i18n] A "locale" must be set to format dates');return t?r=Yt("date",t):0===Object.keys(r).length&&(r=Yt("date","short")),new Intl.DateTimeFormat(e,r)})),Jt=Kt((({locale:e,format:t,...r})=>{if(null==e)throw new Error('[svelte-i18n] A "locale" must be set to format time values');return t?r=Yt("time",t):0===Object.keys(r).length&&(r=Yt("time","short")),new Intl.DateTimeFormat(e,r)})),Qt=Kt(((e,t=zt())=>new At(e,t,Gt().formats,{ignoreTag:Gt().ignoreTag}))),er=(e,t={})=>{var r,n,i,o;let s=t;"object"==typeof e&&(s=e,e=s.id);const{values:a,locale:u=zt(),default:l}=s;if(null==u)throw new Error("[svelte-i18n] Cannot format a message without first setting the initial locale.");let c=Pt(e,u);if(c){if("string"!=typeof c)return console.warn(`[svelte-i18n] Message with id "${e}" must be of type "string", found: "${typeof c}". Gettin its value through the "$format" method is deprecated; use the "json" method instead.`),c}else c=null!==(o=null!==(i=null===(n=(r=Gt()).handleMissingMessage)||void 0===n?void 0:n.call(r,{locale:u,id:e,defaultValue:l}))&&void 0!==i?i:l)&&void 0!==o?o:e;if(!a)return c;let h=c;try{h=Qt(c,u).format(a)}catch(t){t instanceof Error&&console.warn(`[svelte-i18n] Message "${e}" has syntax error:`,t.message)}return h},tr=(e,t)=>(({locale:e=zt(),...t}={})=>Jt({locale:e,...t}))(t).format(e),rr=(e,t)=>(({locale:e=zt(),...t}={})=>qt({locale:e,...t}))(t).format(e),nr=(e,t)=>(({locale:e=zt(),...t}={})=>Zt({locale:e,...t}))(t).format(e),ir=(e,t=zt())=>Pt(e,t),or=W([Xt,Lt],(()=>er));function sr(e,t){xt(e,t)}W([Xt],(()=>tr)),W([Xt],(()=>rr)),W([Xt],(()=>nr)),W([Xt,Lt],(()=>ir));const ar={en:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},"zh-hk":{Translations:{recentWinners:"最近的获奖者",topWinners:"最佳获奖者",won:"刚赢"}},de:{Translations:{recentWinners:"Kürzliche Gewinner",topWinners:"Top Gewinner",won:"Eben gewonnen"}},it:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},fr:{Translations:{recentWinners:"Gagnants récents",topWinners:"Meilleurs gagnants",won:"vient de gagner"}},es:{Translations:{recentWinners:"Ganadores Recientes",topWinners:"Ganadores Top",won:"Últimos Ganadores"}},el:{Translations:{recentWinners:"Πρόσφατοι νικητές",topWinners:"Κορυφαίοι νικητές",won:"μόλις κέρδισε"}},tr:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},ru:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},ro:{Translations:{recentWinners:"Ultimii câștigători",topWinners:"Câștigători de top",won:"tocmai a câștigat"}},hr:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},hu:{Translations:{recentWinners:"Legutóbbi nyertesek",topWinners:"Top nyertesek",won:"Nyert"}},pl:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},pt:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},sl:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}},sr:{Translations:{recentWinners:"Recent Winners",topWinners:"Top Winners",won:"just won"}}};var ur="undefined"!=typeof globalThis&&globalThis||"undefined"!=typeof self&&self||void 0!==ur&&ur,lr={searchParams:"URLSearchParams"in ur,iterable:"Symbol"in ur&&"iterator"in Symbol,blob:"FileReader"in ur&&"Blob"in ur&&function(){try{return new Blob,!0}catch(e){return!1}}(),formData:"FormData"in ur,arrayBuffer:"ArrayBuffer"in ur};if(lr.arrayBuffer)var cr=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],hr=ArrayBuffer.isView||function(e){return e&&cr.indexOf(Object.prototype.toString.call(e))>-1};function fr(e){if("string"!=typeof e&&(e=String(e)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(e)||""===e)throw new TypeError('Invalid character in header field name: "'+e+'"');return e.toLowerCase()}function pr(e){return"string"!=typeof e&&(e=String(e)),e}
|
|
571
584
|
// Build a destructive iterator for the value list
|
|
572
|
-
function
|
|
585
|
+
function dr(e){var t={next:function(){var t=e.shift();return{done:void 0===t,value:t}}};return lr.iterable&&(t[Symbol.iterator]=function(){return t}),t}function mr(e){this.map={},e instanceof mr?e.forEach((function(e,t){this.append(t,e)}),this):Array.isArray(e)?e.forEach((function(e){this.append(e[0],e[1])}),this):e&&Object.getOwnPropertyNames(e).forEach((function(t){this.append(t,e[t])}),this)}function br(e){if(e.bodyUsed)return Promise.reject(new TypeError("Already read"));e.bodyUsed=!0}function yr(e){return new Promise((function(t,r){e.onload=function(){t(e.result)},e.onerror=function(){r(e.error)}}))}function gr(e){var t=new FileReader,r=yr(t);return t.readAsArrayBuffer(e),r}function vr(e){if(e.slice)return e.slice(0);var t=new Uint8Array(e.byteLength);return t.set(new Uint8Array(e)),t.buffer}function Er(){return this.bodyUsed=!1,this._initBody=function(e){var t;
|
|
573
586
|
/*
|
|
574
587
|
fetch-mock wraps the Response object in an ES6 Proxy to
|
|
575
588
|
provide useful test harness features such as flush. However, on
|
|
@@ -580,21 +593,21 @@ function gr(e){var t={next:function(){var t=e.shift();return{done:void 0===t,val
|
|
|
580
593
|
semantic of setting Request.bodyUsed in the constructor before
|
|
581
594
|
_initBody is called.
|
|
582
595
|
*/
|
|
583
|
-
this.bodyUsed=this.bodyUsed,this._bodyInit=e,e?"string"==typeof e?this._bodyText=e:
|
|
596
|
+
this.bodyUsed=this.bodyUsed,this._bodyInit=e,e?"string"==typeof e?this._bodyText=e:lr.blob&&Blob.prototype.isPrototypeOf(e)?this._bodyBlob=e:lr.formData&&FormData.prototype.isPrototypeOf(e)?this._bodyFormData=e:lr.searchParams&&URLSearchParams.prototype.isPrototypeOf(e)?this._bodyText=e.toString():lr.arrayBuffer&&lr.blob&&((t=e)&&DataView.prototype.isPrototypeOf(t))?(this._bodyArrayBuffer=vr(e.buffer),
|
|
584
597
|
// IE 10-11 can't handle a DataView body.
|
|
585
|
-
this._bodyInit=new Blob([this._bodyArrayBuffer])):
|
|
598
|
+
this._bodyInit=new Blob([this._bodyArrayBuffer])):lr.arrayBuffer&&(ArrayBuffer.prototype.isPrototypeOf(e)||hr(e))?this._bodyArrayBuffer=vr(e):this._bodyText=e=Object.prototype.toString.call(e):this._bodyText="",this.headers.get("content-type")||("string"==typeof e?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):lr.searchParams&&URLSearchParams.prototype.isPrototypeOf(e)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},lr.blob&&(this.blob=function(){var e=br(this);if(e)return e;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 e=br(this);return e||(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(gr)}),this.text=function(){var e,t,r,n=br(this);if(n)return n;if(this._bodyBlob)return e=this._bodyBlob,t=new FileReader,r=yr(t),t.readAsText(e),r;if(this._bodyArrayBuffer)return Promise.resolve(function(e){for(var t=new Uint8Array(e),r=new Array(t.length),n=0;n<t.length;n++)r[n]=String.fromCharCode(t[n]);return r.join("")}(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},lr.formData&&(this.formData=function(){return this.text().then(Tr)}),this.json=function(){return this.text().then(JSON.parse)},this}
|
|
586
599
|
// HTTP methods whose capitalization should be normalized
|
|
587
|
-
|
|
600
|
+
mr.prototype.append=function(e,t){e=fr(e),t=pr(t);var r=this.map[e];this.map[e]=r?r+", "+t:t},mr.prototype.delete=function(e){delete this.map[fr(e)]},mr.prototype.get=function(e){return e=fr(e),this.has(e)?this.map[e]:null},mr.prototype.has=function(e){return this.map.hasOwnProperty(fr(e))},mr.prototype.set=function(e,t){this.map[fr(e)]=pr(t)},mr.prototype.forEach=function(e,t){for(var r in this.map)this.map.hasOwnProperty(r)&&e.call(t,this.map[r],r,this)},mr.prototype.keys=function(){var e=[];return this.forEach((function(t,r){e.push(r)})),dr(e)},mr.prototype.values=function(){var e=[];return this.forEach((function(t){e.push(t)})),dr(e)},mr.prototype.entries=function(){var e=[];return this.forEach((function(t,r){e.push([r,t])})),dr(e)},lr.iterable&&(mr.prototype[Symbol.iterator]=mr.prototype.entries);var wr=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function _r(e,t){if(!(this instanceof _r))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');var r,n,i=(t=t||{}).body;if(e instanceof _r){if(e.bodyUsed)throw new TypeError("Already read");this.url=e.url,this.credentials=e.credentials,t.headers||(this.headers=new mr(e.headers)),this.method=e.method,this.mode=e.mode,this.signal=e.signal,i||null==e._bodyInit||(i=e._bodyInit,e.bodyUsed=!0)}else this.url=String(e);if(this.credentials=t.credentials||this.credentials||"same-origin",!t.headers&&this.headers||(this.headers=new mr(t.headers)),this.method=(r=t.method||this.method||"GET",n=r.toUpperCase(),wr.indexOf(n)>-1?n:r),this.mode=t.mode||this.mode||null,this.signal=t.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"!==t.cache&&"no-cache"!==t.cache)){
|
|
588
601
|
// Search for a '_' parameter in the query string
|
|
589
602
|
var o=/([?&])_=[^&]*/;if(o.test(this.url))
|
|
590
603
|
// If it already exists then set the value with the current time
|
|
591
|
-
this.url=this.url.replace(o,"$1_="+(new Date).getTime());else{this.url+=(/\?/.test(this.url)?"&":"?")+"_="+(new Date).getTime()}}}function
|
|
604
|
+
this.url=this.url.replace(o,"$1_="+(new Date).getTime());else{this.url+=(/\?/.test(this.url)?"&":"?")+"_="+(new Date).getTime()}}}function Tr(e){var t=new FormData;return e.trim().split("&").forEach((function(e){if(e){var r=e.split("="),n=r.shift().replace(/\+/g," "),i=r.join("=").replace(/\+/g," ");t.append(decodeURIComponent(n),decodeURIComponent(i))}})),t}function Br(e,t){if(!(this instanceof Br))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');t||(t={}),this.type="default",this.status=void 0===t.status?200:t.status,this.ok=this.status>=200&&this.status<300,this.statusText=void 0===t.statusText?"":""+t.statusText,this.headers=new mr(t.headers),this.url=t.url||"",this._initBody(e)}_r.prototype.clone=function(){return new _r(this,{body:this._bodyInit})},Er.call(_r.prototype),Er.call(Br.prototype),Br.prototype.clone=function(){return new Br(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new mr(this.headers),url:this.url})},Br.error=function(){var e=new Br(null,{status:0,statusText:""});return e.type="error",e};var Ar=[301,302,303,307,308];Br.redirect=function(e,t){if(-1===Ar.indexOf(t))throw new RangeError("Invalid status code");return new Br(null,{status:t,headers:{location:e}})};var Hr=ur.DOMException;try{new Hr}catch(e){(Hr=function(e,t){this.message=e,this.name=t;var r=Error(e);this.stack=r.stack}).prototype=Object.create(Error.prototype),Hr.prototype.constructor=Hr}function Sr(e,t){return new Promise((function(r,n){var i=new _r(e,t);if(i.signal&&i.signal.aborted)return n(new Hr("Aborted","AbortError"));var o=new XMLHttpRequest;function s(){o.abort()}o.onload=function(){var e,t,n={status:o.status,statusText:o.statusText,headers:(e=o.getAllResponseHeaders()||"",t=new mr,
|
|
592
605
|
// Avoiding split via regex to work around a common IE11 bug with the core-js 3.6.0 regex polyfill
|
|
593
606
|
// https://github.com/github/fetch/issues/748
|
|
594
607
|
// https://github.com/zloirock/core-js/issues/751
|
|
595
|
-
e.replace(/\r?\n[\t ]+/g," ").split("\r").map((function(e){return 0===e.indexOf("\n")?e.substr(1,e.length):e})).forEach((function(e){var r=e.split(":"),n=r.shift().trim();if(n){var i=r.join(":").trim();t.append(n,i)}})),t)};n.url="responseURL"in o?o.responseURL:n.headers.get("X-Request-URL");var i="response"in o?o.response:o.responseText;setTimeout((function(){r(new
|
|
608
|
+
e.replace(/\r?\n[\t ]+/g," ").split("\r").map((function(e){return 0===e.indexOf("\n")?e.substr(1,e.length):e})).forEach((function(e){var r=e.split(":"),n=r.shift().trim();if(n){var i=r.join(":").trim();t.append(n,i)}})),t)};n.url="responseURL"in o?o.responseURL:n.headers.get("X-Request-URL");var i="response"in o?o.response:o.responseText;setTimeout((function(){r(new Br(i,n))}),0)},o.onerror=function(){setTimeout((function(){n(new TypeError("Network request failed"))}),0)},o.ontimeout=function(){setTimeout((function(){n(new TypeError("Network request failed"))}),0)},o.onabort=function(){setTimeout((function(){n(new Hr("Aborted","AbortError"))}),0)},o.open(i.method,function(e){try{return""===e&&ur.location.href?ur.location.href:e}catch(t){return e}}(i.url),!0),"include"===i.credentials?o.withCredentials=!0:"omit"===i.credentials&&(o.withCredentials=!1),"responseType"in o&&(lr.blob?o.responseType="blob":lr.arrayBuffer&&i.headers.get("Content-Type")&&-1!==i.headers.get("Content-Type").indexOf("application/octet-stream")&&(o.responseType="arraybuffer")),!t||"object"!=typeof t.headers||t.headers instanceof mr?i.headers.forEach((function(e,t){o.setRequestHeader(t,e)})):Object.getOwnPropertyNames(t.headers).forEach((function(e){o.setRequestHeader(e,pr(t.headers[e]))})),i.signal&&(i.signal.addEventListener("abort",s),o.onreadystatechange=function(){
|
|
596
609
|
// DONE (success or failure)
|
|
597
|
-
4===o.readyState&&i.signal.removeEventListener("abort",s)}),o.send(void 0===i._bodyInit?null:i._bodyInit)}))}
|
|
610
|
+
4===o.readyState&&i.signal.removeEventListener("abort",s)}),o.send(void 0===i._bodyInit?null:i._bodyInit)}))}Sr.polyfill=!0,ur.fetch||(ur.fetch=Sr,ur.Headers=mr,ur.Request=_r,ur.Response=Br),
|
|
598
611
|
// the whatwg-fetch polyfill installs the fetch() function
|
|
599
612
|
// on the global object (window or self)
|
|
600
613
|
// Return that as the export for use in Webpack, Browserify etc.
|
|
@@ -614,27 +627,27 @@ self.fetch.bind(self);
|
|
|
614
627
|
PERFORMANCE OF THIS SOFTWARE.
|
|
615
628
|
***************************************************************************** */
|
|
616
629
|
/* global Reflect, Promise */
|
|
617
|
-
var Ir=function(e,t){return Ir=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},Ir(e,t)};function xr(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}Ir(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}function Nr(e){var t="function"==typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function Mr(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,i,o=r.call(e),s=[];try{for(;(void 0===t||t-- >0)&&!(n=o.next()).done;)s.push(n.value)}catch(e){i={error:e}}finally{try{n&&!n.done&&(r=o.return)&&r.call(o)}finally{if(i)throw i.error}}return s}function Rr(e,t,r){if(r||2===arguments.length)for(var n,i=0,o=t.length;i<o;i++)!n&&i in t||(n||(n=Array.prototype.slice.call(t,0,i)),n[i]=t[i]);return e.concat(n||Array.prototype.slice.call(t))}function $r(e){return"function"==typeof e}function Ur(e){var t=e((function(e){Error.call(e),e.stack=(new Error).stack}));return t.prototype=Object.create(Error.prototype),t.prototype.constructor=t,t}var Dr=Ur((function(e){return function(t){e(this),this.message=t?t.length+" errors occurred during unsubscription:\n"+t.map((function(e,t){return t+1+") "+e.toString()})).join("\n "):"",this.name="UnsubscriptionError",this.errors=t}}));function Gr(e,t){if(e){var r=e.indexOf(t);0<=r&&e.splice(r,1)}}var Fr=function(){function e(e){this.initialTeardown=e,this.closed=!1,this._parentage=null,this._finalizers=null}return e.prototype.unsubscribe=function(){var e,t,r,n,i;if(!this.closed){this.closed=!0;var o=this._parentage;if(o)if(this._parentage=null,Array.isArray(o))try{for(var s=Nr(o),a=s.next();!a.done;a=s.next()){a.value.remove(this)}}catch(t){e={error:t}}finally{try{a&&!a.done&&(t=s.return)&&t.call(s)}finally{if(e)throw e.error}}else o.remove(this);var u=this.initialTeardown;if($r(u))try{u()}catch(e){i=e instanceof Dr?e.errors:[e]}var l=this._finalizers;if(l){this._finalizers=null;try{for(var c=Nr(l),h=c.next();!h.done;h=c.next()){var f=h.value;try{jr(f)}catch(e){i=null!=i?i:[],e instanceof Dr?i=Rr(Rr([],Mr(i)),Mr(e.errors)):i.push(e)}}}catch(e){r={error:e}}finally{try{h&&!h.done&&(n=c.return)&&n.call(c)}finally{if(r)throw r.error}}}if(i)throw new Dr(i)}},e.prototype.add=function(t){var r;if(t&&t!==this)if(this.closed)jr(t);else{if(t instanceof e){if(t.closed||t._hasParent(this))return;t._addParent(this)}(this._finalizers=null!==(r=this._finalizers)&&void 0!==r?r:[]).push(t)}},e.prototype._hasParent=function(e){var t=this._parentage;return t===e||Array.isArray(t)&&t.includes(e)},e.prototype._addParent=function(e){var t=this._parentage;this._parentage=Array.isArray(t)?(t.push(e),t):t?[t,e]:e},e.prototype._removeParent=function(e){var t=this._parentage;t===e?this._parentage=null:Array.isArray(t)&&Gr(t,e)},e.prototype.remove=function(t){var r=this._finalizers;r&&Gr(r,t),t instanceof e&&t._removeParent(this)},e.EMPTY=function(){var t=new e;return t.closed=!0,t}(),e}(),Wr=Fr.EMPTY;function kr(e){return e instanceof Fr||e&&"closed"in e&&$r(e.remove)&&$r(e.add)&&$r(e.unsubscribe)}function jr(e){$r(e)?e():e.unsubscribe()}var Vr={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},zr={setTimeout:function(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var i=zr.delegate;return(null==i?void 0:i.setTimeout)?i.setTimeout.apply(i,Rr([e,t],Mr(r))):setTimeout.apply(void 0,Rr([e,t],Mr(r)))},clearTimeout:function(e){var t=zr.delegate;return((null==t?void 0:t.clearTimeout)||clearTimeout)(e)},delegate:void 0};function Xr(){}var Kr=null;function Yr(e){if(Vr.useDeprecatedSynchronousErrorHandling){var t=!Kr;if(t&&(Kr={errorThrown:!1,error:null}),e(),t){var r=Kr,n=r.errorThrown,i=r.error;if(Kr=null,n)throw i}}else e()}var Zr=function(e){function t(t){var r=e.call(this)||this;return r.isStopped=!1,t?(r.destination=t,kr(t)&&t.add(r)):r.destination=rn,r}return xr(t,e),t.create=function(e,t,r){return new en(e,t,r)},t.prototype.next=function(e){this.isStopped||this._next(e)},t.prototype.error=function(e){this.isStopped||(this.isStopped=!0,this._error(e))},t.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},t.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,e.prototype.unsubscribe.call(this),this.destination=null)},t.prototype._next=function(e){this.destination.next(e)},t.prototype._error=function(e){try{this.destination.error(e)}finally{this.unsubscribe()}},t.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},t}(Fr),qr=Function.prototype.bind;function Jr(e,t){return qr.call(e,t)}var Qr=function(){function e(e){this.partialObserver=e}return e.prototype.next=function(e){var t=this.partialObserver;if(t.next)try{t.next(e)}catch(e){tn(e)}},e.prototype.error=function(e){var t=this.partialObserver;if(t.error)try{t.error(e)}catch(e){tn(e)}else tn(e)},e.prototype.complete=function(){var e=this.partialObserver;if(e.complete)try{e.complete()}catch(e){tn(e)}},e}(),en=function(e){function t(t,r,n){var i,o,s=e.call(this)||this;$r(t)||!t?i={next:null!=t?t:void 0,error:null!=r?r:void 0,complete:null!=n?n:void 0}:s&&Vr.useDeprecatedNextContext?((o=Object.create(t)).unsubscribe=function(){return s.unsubscribe()},i={next:t.next&&Jr(t.next,o),error:t.error&&Jr(t.error,o),complete:t.complete&&Jr(t.complete,o)}):i=t;return s.destination=new Qr(i),s}return xr(t,e),t}(Zr);function tn(e){var t;t=e,zr.setTimeout((function(){throw t}))}var rn={closed:!0,next:Xr,error:function(e){throw e},complete:Xr},nn="function"==typeof Symbol&&Symbol.observable||"@@observable";function on(e){return e}function sn(e){return 0===e.length?on:1===e.length?e[0]:function(t){return e.reduce((function(e,t){return t(e)}),t)}}var an=function(){function e(e){e&&(this._subscribe=e)}return e.prototype.lift=function(t){var r=new e;return r.source=this,r.operator=t,r},e.prototype.subscribe=function(e,t,r){var n,i=this,o=(n=e)&&n instanceof Zr||function(e){return e&&$r(e.next)&&$r(e.error)&&$r(e.complete)}(n)&&kr(n)?e:new en(e,t,r);return Yr((function(){var e=i,t=e.operator,r=e.source;o.add(t?t.call(o,r):r?i._subscribe(o):i._trySubscribe(o))})),o},e.prototype._trySubscribe=function(e){try{return this._subscribe(e)}catch(t){e.error(t)}},e.prototype.forEach=function(e,t){var r=this;return new(t=un(t))((function(t,n){var i=new en({next:function(t){try{e(t)}catch(e){n(e),i.unsubscribe()}},error:n,complete:t});r.subscribe(i)}))},e.prototype._subscribe=function(e){var t;return null===(t=this.source)||void 0===t?void 0:t.subscribe(e)},e.prototype[nn]=function(){return this},e.prototype.pipe=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return sn(e)(this)},e.prototype.toPromise=function(e){var t=this;return new(e=un(e))((function(e,r){var n;t.subscribe((function(e){return n=e}),(function(e){return r(e)}),(function(){return e(n)}))}))},e.create=function(t){return new e(t)},e}();function un(e){var t;return null!==(t=null!=e?e:Vr.Promise)&&void 0!==t?t:Promise}var ln=Ur((function(e){return function(){e(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}})),cn=function(e){function t(){var t=e.call(this)||this;return t.closed=!1,t.currentObservers=null,t.observers=[],t.isStopped=!1,t.hasError=!1,t.thrownError=null,t}return xr(t,e),t.prototype.lift=function(e){var t=new hn(this,this);return t.operator=e,t},t.prototype._throwIfClosed=function(){if(this.closed)throw new ln},t.prototype.next=function(e){var t=this;Yr((function(){var r,n;if(t._throwIfClosed(),!t.isStopped){t.currentObservers||(t.currentObservers=Array.from(t.observers));try{for(var i=Nr(t.currentObservers),o=i.next();!o.done;o=i.next()){o.value.next(e)}}catch(e){r={error:e}}finally{try{o&&!o.done&&(n=i.return)&&n.call(i)}finally{if(r)throw r.error}}}}))},t.prototype.error=function(e){var t=this;Yr((function(){if(t._throwIfClosed(),!t.isStopped){t.hasError=t.isStopped=!0,t.thrownError=e;for(var r=t.observers;r.length;)r.shift().error(e)}}))},t.prototype.complete=function(){var e=this;Yr((function(){if(e._throwIfClosed(),!e.isStopped){e.isStopped=!0;for(var t=e.observers;t.length;)t.shift().complete()}}))},t.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(t.prototype,"observed",{get:function(){var e;return(null===(e=this.observers)||void 0===e?void 0:e.length)>0},enumerable:!1,configurable:!0}),t.prototype._trySubscribe=function(t){return this._throwIfClosed(),e.prototype._trySubscribe.call(this,t)},t.prototype._subscribe=function(e){return this._throwIfClosed(),this._checkFinalizedStatuses(e),this._innerSubscribe(e)},t.prototype._innerSubscribe=function(e){var t=this,r=this,n=r.hasError,i=r.isStopped,o=r.observers;return n||i?Wr:(this.currentObservers=null,o.push(e),new Fr((function(){t.currentObservers=null,Gr(o,e)})))},t.prototype._checkFinalizedStatuses=function(e){var t=this,r=t.hasError,n=t.thrownError,i=t.isStopped;r?e.error(n):i&&e.complete()},t.prototype.asObservable=function(){var e=new an;return e.source=this,e},t.create=function(e,t){return new hn(e,t)},t}(an),hn=function(e){function t(t,r){var n=e.call(this)||this;return n.destination=t,n.source=r,n}return xr(t,e),t.prototype.next=function(e){var t,r;null===(r=null===(t=this.destination)||void 0===t?void 0:t.next)||void 0===r||r.call(t,e)},t.prototype.error=function(e){var t,r;null===(r=null===(t=this.destination)||void 0===t?void 0:t.error)||void 0===r||r.call(t,e)},t.prototype.complete=function(){var e,t;null===(t=null===(e=this.destination)||void 0===e?void 0:e.complete)||void 0===t||t.call(e)},t.prototype._subscribe=function(e){var t,r;return null!==(r=null===(t=this.source)||void 0===t?void 0:t.subscribe(e))&&void 0!==r?r:Wr},t}(cn),fn={now:function(){return(fn.delegate||Date).now()},delegate:void 0},pn=function(e){function t(t,r,n){void 0===t&&(t=1/0),void 0===r&&(r=1/0),void 0===n&&(n=fn);var i=e.call(this)||this;return i._bufferSize=t,i._windowTime=r,i._timestampProvider=n,i._buffer=[],i._infiniteTimeWindow=!0,i._infiniteTimeWindow=r===1/0,i._bufferSize=Math.max(1,t),i._windowTime=Math.max(1,r),i}return xr(t,e),t.prototype.next=function(t){var r=this,n=r.isStopped,i=r._buffer,o=r._infiniteTimeWindow,s=r._timestampProvider,a=r._windowTime;n||(i.push(t),!o&&i.push(s.now()+a)),this._trimBuffer(),e.prototype.next.call(this,t)},t.prototype._subscribe=function(e){this._throwIfClosed(),this._trimBuffer();for(var t=this._innerSubscribe(e),r=this._infiniteTimeWindow,n=this._buffer.slice(),i=0;i<n.length&&!e.closed;i+=r?1:2)e.next(n[i]);return this._checkFinalizedStatuses(e),t},t.prototype._trimBuffer=function(){var e=this,t=e._bufferSize,r=e._timestampProvider,n=e._buffer,i=e._infiniteTimeWindow,o=(i?1:2)*t;if(t<1/0&&o<n.length&&n.splice(0,n.length-o),!i){for(var s=r.now(),a=0,u=1;u<n.length&&n[u]<=s;u+=2)a=u;a&&n.splice(0,a+1)}},t}(cn);let dn=[],mn={};window.emWidgets={topic:(e,t=0)=>{if(-1==dn.indexOf(e)){let r=new pn(t);mn[e]=r,dn.push(e)}return mn[e]}};
|
|
618
|
-
/* src/CasinoWinners.svelte generated by Svelte v3.
|
|
619
|
-
function
|
|
630
|
+
var Pr=function(e,t){return Pr=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},Pr(e,t)};function Cr(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}Pr(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}function Lr(e){var t="function"==typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function Or(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,i,o=r.call(e),s=[];try{for(;(void 0===t||t-- >0)&&!(n=o.next()).done;)s.push(n.value)}catch(e){i={error:e}}finally{try{n&&!n.done&&(r=o.return)&&r.call(o)}finally{if(i)throw i.error}}return s}function Ir(e,t,r){if(r||2===arguments.length)for(var n,i=0,o=t.length;i<o;i++)!n&&i in t||(n||(n=Array.prototype.slice.call(t,0,i)),n[i]=t[i]);return e.concat(n||Array.prototype.slice.call(t))}function xr(e){return"function"==typeof e}function Nr(e){var t=e((function(e){Error.call(e),e.stack=(new Error).stack}));return t.prototype=Object.create(Error.prototype),t.prototype.constructor=t,t}var Mr=Nr((function(e){return function(t){e(this),this.message=t?t.length+" errors occurred during unsubscription:\n"+t.map((function(e,t){return t+1+") "+e.toString()})).join("\n "):"",this.name="UnsubscriptionError",this.errors=t}}));function Rr(e,t){if(e){var r=e.indexOf(t);0<=r&&e.splice(r,1)}}var $r=function(){function e(e){this.initialTeardown=e,this.closed=!1,this._parentage=null,this._finalizers=null}return e.prototype.unsubscribe=function(){var e,t,r,n,i;if(!this.closed){this.closed=!0;var o=this._parentage;if(o)if(this._parentage=null,Array.isArray(o))try{for(var s=Lr(o),a=s.next();!a.done;a=s.next()){a.value.remove(this)}}catch(t){e={error:t}}finally{try{a&&!a.done&&(t=s.return)&&t.call(s)}finally{if(e)throw e.error}}else o.remove(this);var u=this.initialTeardown;if(xr(u))try{u()}catch(e){i=e instanceof Mr?e.errors:[e]}var l=this._finalizers;if(l){this._finalizers=null;try{for(var c=Lr(l),h=c.next();!h.done;h=c.next()){var f=h.value;try{Gr(f)}catch(e){i=null!=i?i:[],e instanceof Mr?i=Ir(Ir([],Or(i)),Or(e.errors)):i.push(e)}}}catch(e){r={error:e}}finally{try{h&&!h.done&&(n=c.return)&&n.call(c)}finally{if(r)throw r.error}}}if(i)throw new Mr(i)}},e.prototype.add=function(t){var r;if(t&&t!==this)if(this.closed)Gr(t);else{if(t instanceof e){if(t.closed||t._hasParent(this))return;t._addParent(this)}(this._finalizers=null!==(r=this._finalizers)&&void 0!==r?r:[]).push(t)}},e.prototype._hasParent=function(e){var t=this._parentage;return t===e||Array.isArray(t)&&t.includes(e)},e.prototype._addParent=function(e){var t=this._parentage;this._parentage=Array.isArray(t)?(t.push(e),t):t?[t,e]:e},e.prototype._removeParent=function(e){var t=this._parentage;t===e?this._parentage=null:Array.isArray(t)&&Rr(t,e)},e.prototype.remove=function(t){var r=this._finalizers;r&&Rr(r,t),t instanceof e&&t._removeParent(this)},e.EMPTY=function(){var t=new e;return t.closed=!0,t}(),e}(),Ur=$r.EMPTY;function Dr(e){return e instanceof $r||e&&"closed"in e&&xr(e.remove)&&xr(e.add)&&xr(e.unsubscribe)}function Gr(e){xr(e)?e():e.unsubscribe()}var Fr={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},Wr={setTimeout:function(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var i=Wr.delegate;return(null==i?void 0:i.setTimeout)?i.setTimeout.apply(i,Ir([e,t],Or(r))):setTimeout.apply(void 0,Ir([e,t],Or(r)))},clearTimeout:function(e){var t=Wr.delegate;return((null==t?void 0:t.clearTimeout)||clearTimeout)(e)},delegate:void 0};function kr(){}var jr=null;function Vr(e){if(Fr.useDeprecatedSynchronousErrorHandling){var t=!jr;if(t&&(jr={errorThrown:!1,error:null}),e(),t){var r=jr,n=r.errorThrown,i=r.error;if(jr=null,n)throw i}}else e()}var zr=function(e){function t(t){var r=e.call(this)||this;return r.isStopped=!1,t?(r.destination=t,Dr(t)&&t.add(r)):r.destination=Jr,r}return Cr(t,e),t.create=function(e,t,r){return new Zr(e,t,r)},t.prototype.next=function(e){this.isStopped||this._next(e)},t.prototype.error=function(e){this.isStopped||(this.isStopped=!0,this._error(e))},t.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},t.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,e.prototype.unsubscribe.call(this),this.destination=null)},t.prototype._next=function(e){this.destination.next(e)},t.prototype._error=function(e){try{this.destination.error(e)}finally{this.unsubscribe()}},t.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},t}($r),Xr=Function.prototype.bind;function Kr(e,t){return Xr.call(e,t)}var Yr=function(){function e(e){this.partialObserver=e}return e.prototype.next=function(e){var t=this.partialObserver;if(t.next)try{t.next(e)}catch(e){qr(e)}},e.prototype.error=function(e){var t=this.partialObserver;if(t.error)try{t.error(e)}catch(e){qr(e)}else qr(e)},e.prototype.complete=function(){var e=this.partialObserver;if(e.complete)try{e.complete()}catch(e){qr(e)}},e}(),Zr=function(e){function t(t,r,n){var i,o,s=e.call(this)||this;xr(t)||!t?i={next:null!=t?t:void 0,error:null!=r?r:void 0,complete:null!=n?n:void 0}:s&&Fr.useDeprecatedNextContext?((o=Object.create(t)).unsubscribe=function(){return s.unsubscribe()},i={next:t.next&&Kr(t.next,o),error:t.error&&Kr(t.error,o),complete:t.complete&&Kr(t.complete,o)}):i=t;return s.destination=new Yr(i),s}return Cr(t,e),t}(zr);function qr(e){var t;t=e,Wr.setTimeout((function(){throw t}))}var Jr={closed:!0,next:kr,error:function(e){throw e},complete:kr},Qr="function"==typeof Symbol&&Symbol.observable||"@@observable";function en(e){return e}var tn=function(){function e(e){e&&(this._subscribe=e)}return e.prototype.lift=function(t){var r=new e;return r.source=this,r.operator=t,r},e.prototype.subscribe=function(e,t,r){var n,i=this,o=(n=e)&&n instanceof zr||function(e){return e&&xr(e.next)&&xr(e.error)&&xr(e.complete)}(n)&&Dr(n)?e:new Zr(e,t,r);return Vr((function(){var e=i,t=e.operator,r=e.source;o.add(t?t.call(o,r):r?i._subscribe(o):i._trySubscribe(o))})),o},e.prototype._trySubscribe=function(e){try{return this._subscribe(e)}catch(t){e.error(t)}},e.prototype.forEach=function(e,t){var r=this;return new(t=rn(t))((function(t,n){var i=new Zr({next:function(t){try{e(t)}catch(e){n(e),i.unsubscribe()}},error:n,complete:t});r.subscribe(i)}))},e.prototype._subscribe=function(e){var t;return null===(t=this.source)||void 0===t?void 0:t.subscribe(e)},e.prototype[Qr]=function(){return this},e.prototype.pipe=function(){for(var e,t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return(0===(e=t).length?en:1===e.length?e[0]:function(t){return e.reduce((function(e,t){return t(e)}),t)})(this)},e.prototype.toPromise=function(e){var t=this;return new(e=rn(e))((function(e,r){var n;t.subscribe((function(e){return n=e}),(function(e){return r(e)}),(function(){return e(n)}))}))},e.create=function(t){return new e(t)},e}();function rn(e){var t;return null!==(t=null!=e?e:Fr.Promise)&&void 0!==t?t:Promise}var nn=Nr((function(e){return function(){e(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}})),on=function(e){function t(){var t=e.call(this)||this;return t.closed=!1,t.currentObservers=null,t.observers=[],t.isStopped=!1,t.hasError=!1,t.thrownError=null,t}return Cr(t,e),t.prototype.lift=function(e){var t=new sn(this,this);return t.operator=e,t},t.prototype._throwIfClosed=function(){if(this.closed)throw new nn},t.prototype.next=function(e){var t=this;Vr((function(){var r,n;if(t._throwIfClosed(),!t.isStopped){t.currentObservers||(t.currentObservers=Array.from(t.observers));try{for(var i=Lr(t.currentObservers),o=i.next();!o.done;o=i.next()){o.value.next(e)}}catch(e){r={error:e}}finally{try{o&&!o.done&&(n=i.return)&&n.call(i)}finally{if(r)throw r.error}}}}))},t.prototype.error=function(e){var t=this;Vr((function(){if(t._throwIfClosed(),!t.isStopped){t.hasError=t.isStopped=!0,t.thrownError=e;for(var r=t.observers;r.length;)r.shift().error(e)}}))},t.prototype.complete=function(){var e=this;Vr((function(){if(e._throwIfClosed(),!e.isStopped){e.isStopped=!0;for(var t=e.observers;t.length;)t.shift().complete()}}))},t.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(t.prototype,"observed",{get:function(){var e;return(null===(e=this.observers)||void 0===e?void 0:e.length)>0},enumerable:!1,configurable:!0}),t.prototype._trySubscribe=function(t){return this._throwIfClosed(),e.prototype._trySubscribe.call(this,t)},t.prototype._subscribe=function(e){return this._throwIfClosed(),this._checkFinalizedStatuses(e),this._innerSubscribe(e)},t.prototype._innerSubscribe=function(e){var t=this,r=this,n=r.hasError,i=r.isStopped,o=r.observers;return n||i?Ur:(this.currentObservers=null,o.push(e),new $r((function(){t.currentObservers=null,Rr(o,e)})))},t.prototype._checkFinalizedStatuses=function(e){var t=this,r=t.hasError,n=t.thrownError,i=t.isStopped;r?e.error(n):i&&e.complete()},t.prototype.asObservable=function(){var e=new tn;return e.source=this,e},t.create=function(e,t){return new sn(e,t)},t}(tn),sn=function(e){function t(t,r){var n=e.call(this)||this;return n.destination=t,n.source=r,n}return Cr(t,e),t.prototype.next=function(e){var t,r;null===(r=null===(t=this.destination)||void 0===t?void 0:t.next)||void 0===r||r.call(t,e)},t.prototype.error=function(e){var t,r;null===(r=null===(t=this.destination)||void 0===t?void 0:t.error)||void 0===r||r.call(t,e)},t.prototype.complete=function(){var e,t;null===(t=null===(e=this.destination)||void 0===e?void 0:e.complete)||void 0===t||t.call(e)},t.prototype._subscribe=function(e){var t,r;return null!==(r=null===(t=this.source)||void 0===t?void 0:t.subscribe(e))&&void 0!==r?r:Ur},t}(on),an={now:function(){return(an.delegate||Date).now()},delegate:void 0},un=function(e){function t(t,r,n){void 0===t&&(t=1/0),void 0===r&&(r=1/0),void 0===n&&(n=an);var i=e.call(this)||this;return i._bufferSize=t,i._windowTime=r,i._timestampProvider=n,i._buffer=[],i._infiniteTimeWindow=!0,i._infiniteTimeWindow=r===1/0,i._bufferSize=Math.max(1,t),i._windowTime=Math.max(1,r),i}return Cr(t,e),t.prototype.next=function(t){var r=this,n=r.isStopped,i=r._buffer,o=r._infiniteTimeWindow,s=r._timestampProvider,a=r._windowTime;n||(i.push(t),!o&&i.push(s.now()+a)),this._trimBuffer(),e.prototype.next.call(this,t)},t.prototype._subscribe=function(e){this._throwIfClosed(),this._trimBuffer();for(var t=this._innerSubscribe(e),r=this._infiniteTimeWindow,n=this._buffer.slice(),i=0;i<n.length&&!e.closed;i+=r?1:2)e.next(n[i]);return this._checkFinalizedStatuses(e),t},t.prototype._trimBuffer=function(){var e=this,t=e._bufferSize,r=e._timestampProvider,n=e._buffer,i=e._infiniteTimeWindow,o=(i?1:2)*t;if(t<1/0&&o<n.length&&n.splice(0,n.length-o),!i){for(var s=r.now(),a=0,u=1;u<n.length&&n[u]<=s;u+=2)a=u;a&&n.splice(0,a+1)}},t}(on);let ln=[],cn={};window.emWidgets={topic:(e,t=0)=>{if(-1==ln.indexOf(e)){let r=new un(t);cn[e]=r,ln.push(e)}return cn[e]}};
|
|
631
|
+
/* src/CasinoWinners.svelte generated by Svelte v3.58.0 */
|
|
632
|
+
function hn(e,t,r){const n=e.slice();return n[63]=t[r],n}function fn(e,t,r){const n=e.slice();return n[66]=t[r],n}
|
|
620
633
|
// (247:2) {:else}
|
|
621
|
-
function
|
|
622
|
-
/*div3_binding*/e[42](S),C||(
|
|
623
|
-
/*div3_binding*/e[42](null),C=!1,n(
|
|
634
|
+
function pn(e){let t,r,i,o,s,a,u,l,b,E,w,_,T,B,A,H,S,P,C,L,O=/*tabs*/e[14],I=[];for(let t=0;t<O.length;t+=1)I[t]=yn(fn(e,O,t));let x=/*winners*/e[9],N=[];for(let t=0;t<x.length;t+=1)N[t]=gn(hn(e,x,t));return{c(){t=d("div"),r=d("div"),i=d("div");for(let e=0;e<I.length;e+=1)I[e].c();o=y(),s=d("div"),a=d("button"),u=m("svg"),l=m("path"),E=y(),w=d("button"),_=m("svg"),T=m("path"),H=y(),S=d("div");for(let e=0;e<N.length;e+=1)N[e].c();v(i,"class","WinnerButtonsContainer"),v(l,"style",b=/*numberOfVisibleSlides*/e[10]>=/*winners*/e[9].length?"fill:#F6F6F62E":""),v(l,"id","Path_36"),v(l,"data-name","Path 36"),v(l,"d","M12.328,16,0,3.672,3.672,0l8.656,8.656L20.984,0l3.672,3.672Z"),v(l,"transform","translate(14.656 0) rotate(90)"),v(l,"fill","#fff"),v(u,"id","Component_46_2"),v(u,"data-name","Component 46 – 2"),v(u,"xmlns","http://www.w3.org/2000/svg"),v(u,"width","15"),v(u,"height","15"),v(u,"viewBox","0 0 16 24.656"),v(a,"class","SliderButton"),v(T,"style",B=/*numberOfVisibleSlides*/e[10]>=/*winners*/e[9].length?"fill:#F6F6F62E":""),v(T,"id","Path_36"),v(T,"data-name","Path 36"),v(T,"d","M12.328,16,0,3.672,3.672,0l8.656,8.656L20.984,0l3.672,3.672Z"),v(T,"transform","translate(0 24.656) rotate(-90)"),v(T,"fill","#fff"),v(_,"id","Component_46_2"),v(_,"data-name","Component 46 – 2"),v(_,"xmlns","http://www.w3.org/2000/svg"),v(_,"width","15"),v(_,"height","15"),v(_,"viewBox","0 0 16 24.656"),v(w,"class","SliderButton"),v(s,"class",A="ButtonsContainer "+(/*enableautoscroll*/"true"==e[4]?"ButtonsContainerNone":"")),v(r,"class","WinnersHeader"),v(S,"class","WinnersSlider"),v(t,"class",P="CasinoWinners "+(/*mobile*/e[11]?"Mobile":""))},m(n,f){h(n,t,f),c(t,r),c(r,i);for(let e=0;e<I.length;e+=1)I[e]&&I[e].m(i,null);c(r,o),c(r,s),c(s,a),c(a,u),c(u,l),c(s,E),c(s,w),c(w,_),c(_,T),c(t,H),c(t,S);for(let e=0;e<N.length;e+=1)N[e]&&N[e].m(S,null);
|
|
635
|
+
/*div3_binding*/e[42](S),C||(L=[g(a,"click",/*click_handler_2*/e[39]),g(w,"click",/*click_handler_3*/e[40])],C=!0)},p(e,r){if(/*winnersType, istopavailable, toggleTab, $_, tabs, isrecentavailable*/114947&r[0]){let t;for(O=/*tabs*/e[14],t=0;t<O.length;t+=1){const n=fn(e,O,t);I[t]?I[t].p(n,r):(I[t]=yn(n),I[t].c(),I[t].m(i,null))}for(;t<I.length;t+=1)I[t].d(1);I.length=O.length}if(/*numberOfVisibleSlides, winners*/1536&r[0]&&b!==(b=/*numberOfVisibleSlides*/e[10]>=/*winners*/e[9].length?"fill:#F6F6F62E":"")&&v(l,"style",b),/*numberOfVisibleSlides, winners*/1536&r[0]&&B!==(B=/*numberOfVisibleSlides*/e[10]>=/*winners*/e[9].length?"fill:#F6F6F62E":"")&&v(T,"style",B),/*enableautoscroll*/16&r[0]&&A!==(A="ButtonsContainer "+(/*enableautoscroll*/"true"==e[4]?"ButtonsContainerNone":""))&&v(s,"class",A),/*addAnimation, isLoggedIn, usercurrency, defaultcurrency, winners, $_, maskUsername, openWinnersGame*/434732&r[0]){let t;for(x=/*winners*/e[9],t=0;t<x.length;t+=1){const n=hn(e,x,t);N[t]?N[t].p(n,r):(N[t]=gn(n),N[t].c(),N[t].m(S,null))}for(;t<N.length;t+=1)N[t].d(1);N.length=x.length}/*mobile*/2048&r[0]&&P!==(P="CasinoWinners "+(/*mobile*/e[11]?"Mobile":""))&&v(t,"class",P)},d(r){r&&f(t),p(I,r),p(N,r),
|
|
636
|
+
/*div3_binding*/e[42](null),C=!1,n(L)}}}
|
|
624
637
|
// (245:2) {#if isLoading}
|
|
625
|
-
function
|
|
638
|
+
function dn(t){let r;return{c(){r=d("p"),r.textContent="Loading, please wait ..."},m(e,t){h(e,r,t)},p:e,d(e){e&&f(r)}}}
|
|
626
639
|
// (252:12) {#if tab == 'recent'}
|
|
627
|
-
function
|
|
640
|
+
function mn(e){let t,r,n,i,o,s=/*$_*/e[15]("Translations.recentWinners")+"";return{c(){t=d("button"),r=b(s),v(t,"class",n="WinnersButton "+(/*winnersType*/"recent"==e[8]?"Active":"")+" "+(/*isrecentavailable*/"false"==e[0]?"Off":""))},m(n,s){h(n,t,s),c(t,r),i||(o=g(t,"click",/*click_handler*/e[37]),i=!0)},p(e,i){/*$_*/32768&i[0]&&s!==(s=/*$_*/e[15]("Translations.recentWinners")+"")&&E(r,s),/*winnersType, isrecentavailable*/257&i[0]&&n!==(n="WinnersButton "+(/*winnersType*/"recent"==e[8]?"Active":"")+" "+(/*isrecentavailable*/"false"==e[0]?"Off":""))&&v(t,"class",n)},d(e){e&&f(t),i=!1,o()}}}
|
|
628
641
|
// (257:12) {#if tab == 'top'}
|
|
629
|
-
function
|
|
642
|
+
function bn(e){let t,r,n,i,o,s,a=/*$_*/e[15]("Translations.topWinners")+"";return{c(){t=d("button"),r=b(a),n=y(),v(t,"class",i="WinnersButton "+(/*winnersType*/"top"==e[8]?"Active":"")+" "+(/*istopavailable*/"false"==e[1]?"Off":""))},m(i,a){h(i,t,a),c(t,r),c(t,n),o||(s=g(t,"click",/*click_handler_1*/e[38]),o=!0)},p(e,n){/*$_*/32768&n[0]&&a!==(a=/*$_*/e[15]("Translations.topWinners")+"")&&E(r,a),/*winnersType, istopavailable*/258&n[0]&&i!==(i="WinnersButton "+(/*winnersType*/"top"==e[8]?"Active":"")+" "+(/*istopavailable*/"false"==e[1]?"Off":""))&&v(t,"class",i)},d(e){e&&f(t),o=!1,s()}}}
|
|
630
643
|
// (251:10) {#each tabs as tab}
|
|
631
|
-
function
|
|
644
|
+
function yn(e){let t,r,n=/*tab*/"recent"==e[66]&&mn(e),i=/*tab*/"top"==e[66]&&bn(e);return{c(){n&&n.c(),t=y(),i&&i.c(),r=b("")},m(e,o){n&&n.m(e,o),h(e,t,o),i&&i.m(e,o),h(e,r,o)},p(e,o){/*tab*/"recent"==e[66]?n?n.p(e,o):(n=mn(e),n.c(),n.m(t.parentNode,t)):n&&(n.d(1),n=null),/*tab*/"top"==e[66]?i?i.p(e,o):(i=bn(e),i.c(),i.m(r.parentNode,r)):i&&(i.d(1),i=null)},d(e){n&&n.d(e),e&&f(t),i&&i.d(e),e&&f(r)}}}
|
|
632
645
|
// (279:8) {#each winners as winner}
|
|
633
|
-
function
|
|
634
|
-
return e[41](/*winner*/e[63])}return{c(){t=d("div"),r=d("div"),n=d("img"),s=y(),a=d("p"),l=b(M),p=y(),m=d("p"),w=b(R),_=y(),T=d("p"),B=b($),A=y(),H=d("p"),S=b(U),P=y(),C=d("span"),
|
|
635
|
-
return e[12]?
|
|
646
|
+
function gn(e){let t,r,n,i,o,s,a,l,p,m,w,_,T,B,A,H,S,P,C,L,O,I,x,N,M=/*winner*/e[63].gameName+"",R=/*maskUsername*/e[17](/*winner*/e[63].username)+"",$=/*$_*/e[15]("Translations.won")+"",U=/*winner*/e[63].specifiedCurrencyAmount.toFixed(2)+"",D=/*isLoggedIn*/(e[5]?/*usercurrency*/e[3]:/*defaultcurrency*/e[2])+"";function G(){/*click_handler_4*/
|
|
647
|
+
return e[41](/*winner*/e[63])}return{c(){t=d("div"),r=d("div"),n=d("img"),s=y(),a=d("p"),l=b(M),p=y(),m=d("p"),w=b(R),_=y(),T=d("p"),B=b($),A=y(),H=d("p"),S=b(U),P=y(),C=d("span"),L=b(D),O=y(),u(n.src,i=/*winner*/e[63]?.gameModel?.thumbnail)||v(n,"src",i),v(n,"alt",o=/*winner*/e[63]?.gameModel?.thumbnail),v(n,"class","WinnersImage"),v(T,"class","WinnerUsername"),v(r,"class","WinnerCard"),v(t,"class",I="CardWrapper "+(/*addAnimation*/e[13]?"CardWrapperAnimation":""))},m(e,i){h(e,t,i),c(t,r),c(r,n),c(r,s),c(r,a),c(a,l),c(r,p),c(r,m),c(m,w),c(r,_),c(r,T),c(T,B),c(r,A),c(r,H),c(H,S),c(H,P),c(H,C),c(C,L),c(t,O),x||(N=g(n,"click",G),x=!0)},p(r,s){e=r,/*winners*/512&s[0]&&!u(n.src,i=/*winner*/e[63]?.gameModel?.thumbnail)&&v(n,"src",i),/*winners*/512&s[0]&&o!==(o=/*winner*/e[63]?.gameModel?.thumbnail)&&v(n,"alt",o),/*winners*/512&s[0]&&M!==(M=/*winner*/e[63].gameName+"")&&E(l,M),/*winners*/512&s[0]&&R!==(R=/*maskUsername*/e[17](/*winner*/e[63].username)+"")&&E(w,R),/*$_*/32768&s[0]&&$!==($=/*$_*/e[15]("Translations.won")+"")&&E(B,$),/*winners*/512&s[0]&&U!==(U=/*winner*/e[63].specifiedCurrencyAmount.toFixed(2)+"")&&E(S,U),/*isLoggedIn, usercurrency, defaultcurrency*/44&s[0]&&D!==(D=/*isLoggedIn*/(e[5]?/*usercurrency*/e[3]:/*defaultcurrency*/e[2])+"")&&E(L,D),/*addAnimation*/8192&s[0]&&I!==(I="CardWrapper "+(/*addAnimation*/e[13]?"CardWrapperAnimation":""))&&v(t,"class",I)},d(e){e&&f(t),x=!1,N()}}}function vn(t){let r;function n(e,t){/*isLoading*/
|
|
648
|
+
return e[12]?dn:pn}let i=n(t),o=i(t);return{c(){r=d("div"),o.c(),this.c=e},m(e,n){h(e,r,n),o.m(r,null),
|
|
636
649
|
/*div_binding*/t[43](r)},p(e,t){i===(i=n(e))&&o?o.p(e,t):(o.d(1),o=i(e),o&&(o.c(),o.m(r,null)))},i:e,o:e,d(e){e&&f(r),o.d(),
|
|
637
|
-
/*div_binding*/t[43](null)}}}function
|
|
650
|
+
/*div_binding*/t[43](null)}}}function En(e,t,r){let n;var i,o;i=or,o=e=>r(15,n=e),e.$$.on_destroy.push(l(i,o));let s,a,u,c,h,f,p,d,m,b,{endpoint:y=""}=t,{session:g=""}=t,{userid:v=""}=t,{periodrecent:E="Today"}=t,{periodtop:w="Last7Days"}=t,{numberusersrecent:_="20"}=t,{numberuserstop:B="20"}=t,{amountlimit:H="1"}=t,{vendorCategory:S="All"}=t,{lang:P="en"}=t,{isrecentavailable:C="true"}=t,{istopavailable:L="true"}=t,{defaultcurrency:O=""}=t,{usercurrency:I=""}=t,{clientstyling:x=""}=t,{clientstylingurl:N=""}=t,{enableautoscroll:M=""}=t,{tabsorder:R=""}=t,{translationurl:$=""}=t,{winnersdatasources:U=""}=t,D=[],G=0,F=0,W=window.navigator.userAgent,k=!0,j=!1,V=[];Object.keys(ar).forEach((e=>{sr(e,ar[e])}));const z=()=>{V=U.split(",").map((function(e){return e.trim()}));const e=new URL(`${y}/casino/${a}-winners`);e.searchParams.append("limit","recent"==a?_:B),e.searchParams.append("specifiedCurrency",b),e.searchParams.append("period","recent"==a?E:w),e.searchParams.append("language",P),e.searchParams.append("amountLimit",H),e.searchParams.append("vendorCategory",S),V.forEach((t=>{e.searchParams.append("dataSources",t)})),fetch(e.href).then((e=>e.json())).then((e=>{r(9,D=[]),r(9,D=e.items.map((e=>e))),
|
|
638
651
|
// Stupid hacks 'cuz svelte is a pain in the ass sometimes
|
|
639
652
|
setTimeout((()=>{J(),Y(),"true"==M&&(clearInterval(d),Z()),r(12,k=!1)}),5)}))},X=e=>{a!==e&&(r(9,D=[]),r(8,a=e),z())},K=(e,t,r)=>{window.postMessage({type:"OpenCasinoWinnersGame",gameId:e,launchUrl:t,gameName:r},window.location.href),
|
|
640
653
|
//Analytics event
|
|
@@ -642,5 +655,5 @@ setTimeout((()=>{J(),Y(),"true"==M&&(clearInterval(d),Z()),r(12,k=!1)}),5)}))},X
|
|
|
642
655
|
//Automatic scroll animation rules
|
|
643
656
|
"true"==M&&(G===e-F?G=0:G++),
|
|
644
657
|
//Standard scroll animation rules
|
|
645
|
-
"false"==M&&(G===e-F?G=0:e-F<G+F?G=e-F:G+=F),q()},te=()=>{var e;e=P,Xt.set(e)},re=()=>{r(36,b=c?I:
|
|
658
|
+
"false"==M&&(G===e-F?G=0:e-F<G+F?G=e-F:G+=F),q()},te=()=>{var e;e=P,Xt.set(e)},re=()=>{r(36,b=c?I:O)};T((()=>(r(11,u=(e=>!!(e.toLowerCase().match(/android/i)||e.toLowerCase().match(/blackberry|bb/i)||e.toLowerCase().match(/iphone|ipad|ipod/i)||e.toLowerCase().match(/windows phone|windows mobile|iemobile|wpdesktop/i)))(W)),()=>{clearInterval(d)})));return e.$$set=e=>{"endpoint"in e&&r(22,y=e.endpoint),"session"in e&&r(23,g=e.session),"userid"in e&&r(24,v=e.userid),"periodrecent"in e&&r(25,E=e.periodrecent),"periodtop"in e&&r(26,w=e.periodtop),"numberusersrecent"in e&&r(27,_=e.numberusersrecent),"numberuserstop"in e&&r(28,B=e.numberuserstop),"amountlimit"in e&&r(21,H=e.amountlimit),"vendorCategory"in e&&r(29,S=e.vendorCategory),"lang"in e&&r(30,P=e.lang),"isrecentavailable"in e&&r(0,C=e.isrecentavailable),"istopavailable"in e&&r(1,L=e.istopavailable),"defaultcurrency"in e&&r(2,O=e.defaultcurrency),"usercurrency"in e&&r(3,I=e.usercurrency),"clientstyling"in e&&r(31,x=e.clientstyling),"clientstylingurl"in e&&r(32,N=e.clientstylingurl),"enableautoscroll"in e&&r(4,M=e.enableautoscroll),"tabsorder"in e&&r(33,R=e.tabsorder),"translationurl"in e&&r(34,$=e.translationurl),"winnersdatasources"in e&&r(35,U=e.winnersdatasources)},e.$$.update=()=>{/*isrecentavailable, istopavailable, periodrecent, periodtop, numberusersrecent, numberuserstop, amountlimit, vendorCategory, lang*/2116026371&e.$$.dirty[0]|/*tabsorder*/4&e.$$.dirty[1]&&C&&L&&E&&w&&_&&B&&H&&S&&P&&R&&(r(14,m=R.split(",")),r(8,a=m[0]),"false"==C&&r(21,H=""),re(),r(12,k=!1)),/*session, endpoint*/12582912&e.$$.dirty[0]&&g&&y&&(r(5,c=!0),h=v),/*isLoggedIn*/32&e.$$.dirty[0]&&c&&re(),/*endpoint*/4194304&e.$$.dirty[0]|/*currency*/32&e.$$.dirty[1]&&y&&b&&z(),/*lang*/1073741824&e.$$.dirty[0]&&P&&te(),/*translationurl*/8&e.$$.dirty[1]&&$&&(()=>{let e=new URL($);fetch(e.href).then((e=>e.json())).then((e=>{Object.keys(e).forEach((t=>{sr(t,e[t])}))})).catch((e=>{console.log(e)}))})(),/*customStylingContainer*/64&e.$$.dirty[0]|/*clientstyling*/1&e.$$.dirty[1]&&x&&f&&(()=>{let e=document.createElement("style");e.innerHTML=x,f.appendChild(e)})(),/*customStylingContainer*/64&e.$$.dirty[0]|/*clientstylingurl*/2&e.$$.dirty[1]&&N&&f&&(()=>{let e=new URL(N),t=document.createElement("style");fetch(e.href).then((e=>e.text())).then((e=>{t.innerHTML=e,setTimeout((()=>{f.appendChild(t)}),1),setTimeout((()=>{}),500)}))})(),/*winnersdatasources*/16&e.$$.dirty[1]&&U&&z()},[C,L,O,I,M,c,f,s,a,D,F,u,k,j,m,n,X,e=>e.slice(0,2)+e.slice(2,-2).replace(/./g,"*")+e.slice(-2),K,Q,ee,H,y,g,v,E,w,_,B,S,P,x,N,R,$,U,b,()=>X("recent"),()=>X("top"),()=>Q(),()=>ee(),e=>K(e.gameId,e.gameModel.launchUrl,e.gameModel.name),function(e){A[e?"unshift":"push"]((()=>{s=e,r(7,s)}))},function(e){A[e?"unshift":"push"]((()=>{f=e,r(6,f)}))}]}class wn extends D{constructor(e){super();const t=document.createElement("style");t.textContent=':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}.Off{display:none}.CasinoWinners{background-color:var(--emfe-w-color-contrast, #07072A);width:100%;height:320px;margin:0 auto}.CasinoWinners.Mobile{padding:25px 10px;height:250px}.WinnersHeader{display:flex;justify-content:space-between}.SliderButton{border:1px solid rgba(255, 255, 255, 0.2);border-radius:5px;background-color:rgba(0, 0, 25, 0.2);height:40px;width:40px}.SliderButton.SliderButton:active{transform:translateY(1px)}.WinnerButtonsContainer{display:flex;margin-bottom:42px}.WinnersButton{border:none;background:none;color:var(--emfe-w-color-white, #FFFFFF);font-size:22px;font-weight:500;margin-right:60px;cursor:pointer}.WinnersButton:hover{border-bottom:1px solid var(--emfe-w-color-primary, #D0046C);line-height:40px}.WinnersButton:focus{color:var(--emfe-w-color-primary, #D0046C);line-height:40px}.WinnersButton.Active{border-bottom:2px solid #D0046C;padding-bottom:10px;color:var(--emfe-w-color-primary, #D0046C)}.WinnersButton.Active{border-bottom:1px solid var(--emfe-w-color-primary, #D0046C);color:var(--emfe-w-color-primary, #D0046C);line-height:40px}.ButtonsContainerNone{display:none}.WinnersSlider{display:flex;justify-content:flex-start;position:relative;height:180px;overflow:hidden}.CardWrapper{position:absolute;top:0;left:0}.CardWrapperAnimation{transition:transform 2s}.WinnerCard{border:1px solid rgba(255, 255, 255, 0.2);border-radius:5px;background-color:rgba(0, 0, 25, 0.2);display:flex;align-items:center;flex-direction:column;justify-content:center;gap:4px;height:180px;min-width:191px;margin-bottom:30px;margin-right:30px}.WinnerCard p:first-of-type{color:var(--emfe-w-color-gray-150, #828282);font-size:14px;inline-size:189px;overflow-wrap:break-word;text-align:center}.WinnerCard p:nth-child(3){text-align:center;color:var(--emfe-w-color-gray-100, #E6E6E6);font-size:14px;width:100px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.WinnerCard p:nth-child(4){color:var(--emfe-w-color-gray-100, #E6E6E6);font-size:14px;text-align:center}.WinnerCard p:last-of-type{color:var(--emfe-w-color-primary, #D0046C);font-size:16px}.WinnerCard:hover{border:1px solid rgba(255, 255, 255, 0.4)}.WinnersImage{border-radius:5px;height:54px;margin-bottom:10px;width:80px;cursor:pointer}.Mobile .WinnersHeader{justify-content:flex-start}.Mobile .WinnersButton{font-size:18px;white-space:nowrap;margin-right:40px}.Mobile .WinnersButton.Active{padding-bottom:4px}.Mobile .WinnersSlider{overflow:scroll;overflow-y:hidden;-ms-overflow-style:none;scrollbar-width:none}.Mobile .WinnersSlider::-webkit-scrollbar{display:none}.Mobile .SliderButton{display:none}.Mobile .WinnerCard{width:140px;height:150px;min-width:140px;margin-right:12px}.Mobile .WinnerCard p:first-of-type{font-size:10px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;text-align:center;width:100px}.Mobile .WinnerCard p:nth-child(3){font-size:10px}.Mobile .WinnerCard p:nth-child(4){font-size:8px;font-weight:300;text-align:center}.Mobile .WinnerCard p:last-of-type{font-size:11px}.Mobile .WinnerButtonsContainer{margin-bottom:20px}',this.shadowRoot.appendChild(t),U(this,{target:this.shadowRoot,props:w(this.attributes),customElement:!0},En,vn,o,{endpoint:22,session:23,userid:24,periodrecent:25,periodtop:26,numberusersrecent:27,numberuserstop:28,amountlimit:21,vendorCategory:29,lang:30,isrecentavailable:0,istopavailable:1,defaultcurrency:2,usercurrency:3,clientstyling:31,clientstylingurl:32,enableautoscroll:4,tabsorder:33,translationurl:34,winnersdatasources:35},null,[-1,-1,-1]),e&&(e.target&&h(e.target,this,e.anchor),e.props&&(this.$set(e.props),x()))}static get observedAttributes(){return["endpoint","session","userid","periodrecent","periodtop","numberusersrecent","numberuserstop","amountlimit","vendorCategory","lang","isrecentavailable","istopavailable","defaultcurrency","usercurrency","clientstyling","clientstylingurl","enableautoscroll","tabsorder","translationurl","winnersdatasources"]}get endpoint(){return this.$$.ctx[22]}set endpoint(e){this.$$set({endpoint:e}),x()}get session(){return this.$$.ctx[23]}set session(e){this.$$set({session:e}),x()}get userid(){return this.$$.ctx[24]}set userid(e){this.$$set({userid:e}),x()}get periodrecent(){return this.$$.ctx[25]}set periodrecent(e){this.$$set({periodrecent:e}),x()}get periodtop(){return this.$$.ctx[26]}set periodtop(e){this.$$set({periodtop:e}),x()}get numberusersrecent(){return this.$$.ctx[27]}set numberusersrecent(e){this.$$set({numberusersrecent:e}),x()}get numberuserstop(){return this.$$.ctx[28]}set numberuserstop(e){this.$$set({numberuserstop:e}),x()}get amountlimit(){return this.$$.ctx[21]}set amountlimit(e){this.$$set({amountlimit:e}),x()}get vendorCategory(){return this.$$.ctx[29]}set vendorCategory(e){this.$$set({vendorCategory:e}),x()}get lang(){return this.$$.ctx[30]}set lang(e){this.$$set({lang:e}),x()}get isrecentavailable(){return this.$$.ctx[0]}set isrecentavailable(e){this.$$set({isrecentavailable:e}),x()}get istopavailable(){return this.$$.ctx[1]}set istopavailable(e){this.$$set({istopavailable:e}),x()}get defaultcurrency(){return this.$$.ctx[2]}set defaultcurrency(e){this.$$set({defaultcurrency:e}),x()}get usercurrency(){return this.$$.ctx[3]}set usercurrency(e){this.$$set({usercurrency:e}),x()}get clientstyling(){return this.$$.ctx[31]}set clientstyling(e){this.$$set({clientstyling:e}),x()}get clientstylingurl(){return this.$$.ctx[32]}set clientstylingurl(e){this.$$set({clientstylingurl:e}),x()}get enableautoscroll(){return this.$$.ctx[4]}set enableautoscroll(e){this.$$set({enableautoscroll:e}),x()}get tabsorder(){return this.$$.ctx[33]}set tabsorder(e){this.$$set({tabsorder:e}),x()}get translationurl(){return this.$$.ctx[34]}set translationurl(e){this.$$set({translationurl:e}),x()}get winnersdatasources(){return this.$$.ctx[35]}set winnersdatasources(e){this.$$set({winnersdatasources:e}),x()}}return!customElements.get("casino-winners")&&customElements.define("casino-winners",wn),wn}));
|
|
646
659
|
//# sourceMappingURL=casino-winners.js.map
|