60p82u21t54k 0.3.14 → 0.3.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/60p82u21t54k.es.js +95 -85
- package/dist/60p82u21t54k.umd.js +1 -1
- package/dist/model/casinoGameList/getCasinoGameListResponse.d.ts.map +1 -1
- package/dist/model/cmsList/getCmsListResponse.d.ts +27 -10
- package/dist/model/cmsList/getCmsListResponse.d.ts.map +1 -1
- package/dist/model/cmsList/type.d.ts +10 -1
- package/dist/model/cmsList/type.d.ts.map +1 -1
- package/dist/model/fishGameList/getFishGameListResponse.d.ts.map +1 -1
- package/dist/model/gameList/getGameListResponse.d.ts.map +1 -1
- package/dist/model/getFavouriteGame/getGetFavouriteGameResponse.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/60p82u21t54k.es.js
CHANGED
|
@@ -317,7 +317,7 @@ const Wa = {
|
|
|
317
317
|
"November",
|
|
318
318
|
"December"
|
|
319
319
|
]
|
|
320
|
-
},
|
|
320
|
+
}, Ba = {
|
|
321
321
|
narrow: ["S", "M", "T", "W", "T", "F", "S"],
|
|
322
322
|
short: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"],
|
|
323
323
|
abbreviated: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
|
|
@@ -330,7 +330,7 @@ const Wa = {
|
|
|
330
330
|
"Friday",
|
|
331
331
|
"Saturday"
|
|
332
332
|
]
|
|
333
|
-
},
|
|
333
|
+
}, Ha = {
|
|
334
334
|
narrow: {
|
|
335
335
|
am: "a",
|
|
336
336
|
pm: "p",
|
|
@@ -420,11 +420,11 @@ const Wa = {
|
|
|
420
420
|
defaultWidth: "wide"
|
|
421
421
|
}),
|
|
422
422
|
day: oe({
|
|
423
|
-
values:
|
|
423
|
+
values: Ba,
|
|
424
424
|
defaultWidth: "wide"
|
|
425
425
|
}),
|
|
426
426
|
dayPeriod: oe({
|
|
427
|
-
values:
|
|
427
|
+
values: Ha,
|
|
428
428
|
defaultWidth: "wide",
|
|
429
429
|
formattingValues: Ua,
|
|
430
430
|
defaultFormattingWidth: "wide"
|
|
@@ -616,7 +616,7 @@ function R(e, a) {
|
|
|
616
616
|
const t = e < 0 ? "-" : "", n = Math.abs(e).toString().padStart(a, "0");
|
|
617
617
|
return t + n;
|
|
618
618
|
}
|
|
619
|
-
const
|
|
619
|
+
const H = {
|
|
620
620
|
// Year
|
|
621
621
|
y(e, a) {
|
|
622
622
|
const t = e.getFullYear(), n = t > 0 ? t : 1 - t;
|
|
@@ -702,7 +702,7 @@ const B = {
|
|
|
702
702
|
const n = e.getFullYear(), r = n > 0 ? n : 1 - n;
|
|
703
703
|
return t.ordinalNumber(r, { unit: "year" });
|
|
704
704
|
}
|
|
705
|
-
return
|
|
705
|
+
return H.y(e, a);
|
|
706
706
|
},
|
|
707
707
|
// Local week-numbering year
|
|
708
708
|
Y: function(e, a, t, n) {
|
|
@@ -805,7 +805,7 @@ const B = {
|
|
|
805
805
|
switch (a) {
|
|
806
806
|
case "M":
|
|
807
807
|
case "MM":
|
|
808
|
-
return
|
|
808
|
+
return H.M(e, a);
|
|
809
809
|
// 1st, 2nd, ..., 12th
|
|
810
810
|
case "Mo":
|
|
811
811
|
return t.ordinalNumber(n + 1, { unit: "month" });
|
|
@@ -870,7 +870,7 @@ const B = {
|
|
|
870
870
|
},
|
|
871
871
|
// Day of the month
|
|
872
872
|
d: function(e, a, t) {
|
|
873
|
-
return a === "do" ? t.ordinalNumber(e.getDate(), { unit: "date" }) :
|
|
873
|
+
return a === "do" ? t.ordinalNumber(e.getDate(), { unit: "date" }) : H.d(e, a);
|
|
874
874
|
},
|
|
875
875
|
// Day of year
|
|
876
876
|
D: function(e, a, t) {
|
|
@@ -1116,11 +1116,11 @@ const B = {
|
|
|
1116
1116
|
let n = e.getHours() % 12;
|
|
1117
1117
|
return n === 0 && (n = 12), t.ordinalNumber(n, { unit: "hour" });
|
|
1118
1118
|
}
|
|
1119
|
-
return
|
|
1119
|
+
return H.h(e, a);
|
|
1120
1120
|
},
|
|
1121
1121
|
// Hour [0-23]
|
|
1122
1122
|
H: function(e, a, t) {
|
|
1123
|
-
return a === "Ho" ? t.ordinalNumber(e.getHours(), { unit: "hour" }) :
|
|
1123
|
+
return a === "Ho" ? t.ordinalNumber(e.getHours(), { unit: "hour" }) : H.H(e, a);
|
|
1124
1124
|
},
|
|
1125
1125
|
// Hour [0-11]
|
|
1126
1126
|
K: function(e, a, t) {
|
|
@@ -1134,15 +1134,15 @@ const B = {
|
|
|
1134
1134
|
},
|
|
1135
1135
|
// Minute
|
|
1136
1136
|
m: function(e, a, t) {
|
|
1137
|
-
return a === "mo" ? t.ordinalNumber(e.getMinutes(), { unit: "minute" }) :
|
|
1137
|
+
return a === "mo" ? t.ordinalNumber(e.getMinutes(), { unit: "minute" }) : H.m(e, a);
|
|
1138
1138
|
},
|
|
1139
1139
|
// Second
|
|
1140
1140
|
s: function(e, a, t) {
|
|
1141
|
-
return a === "so" ? t.ordinalNumber(e.getSeconds(), { unit: "second" }) :
|
|
1141
|
+
return a === "so" ? t.ordinalNumber(e.getSeconds(), { unit: "second" }) : H.s(e, a);
|
|
1142
1142
|
},
|
|
1143
1143
|
// Fraction of second
|
|
1144
1144
|
S: function(e, a) {
|
|
1145
|
-
return
|
|
1145
|
+
return H.S(e, a);
|
|
1146
1146
|
},
|
|
1147
1147
|
// Timezone (ISO-8601. If offset is 0, output is always `'Z'`)
|
|
1148
1148
|
X: function(e, a, t) {
|
|
@@ -2039,7 +2039,7 @@ function Yn(e, a, t) {
|
|
|
2039
2039
|
const n = I(e, t == null ? void 0 : t.in), r = ra(n, t) - a;
|
|
2040
2040
|
return n.setDate(n.getDate() - r * 7), n;
|
|
2041
2041
|
}
|
|
2042
|
-
class
|
|
2042
|
+
class Bn extends w {
|
|
2043
2043
|
constructor() {
|
|
2044
2044
|
super(...arguments);
|
|
2045
2045
|
f(this, "priority", 100);
|
|
@@ -2077,7 +2077,7 @@ class Hn extends w {
|
|
|
2077
2077
|
return K(Yn(t, r));
|
|
2078
2078
|
}
|
|
2079
2079
|
}
|
|
2080
|
-
const
|
|
2080
|
+
const Hn = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], Un = [
|
|
2081
2081
|
31,
|
|
2082
2082
|
29,
|
|
2083
2083
|
31,
|
|
@@ -2123,7 +2123,7 @@ class qn extends w {
|
|
|
2123
2123
|
}
|
|
2124
2124
|
validate(t, n) {
|
|
2125
2125
|
const r = t.getFullYear(), s = ga(r), o = t.getMonth();
|
|
2126
|
-
return s ? n >= 1 && n <= Un[o] : n >= 1 && n <=
|
|
2126
|
+
return s ? n >= 1 && n <= Un[o] : n >= 1 && n <= Hn[o];
|
|
2127
2127
|
}
|
|
2128
2128
|
set(t, n, r) {
|
|
2129
2129
|
return t.setDate(r), t.setHours(0, 0, 0, 0), t;
|
|
@@ -2847,7 +2847,7 @@ const gr = {
|
|
|
2847
2847
|
M: new Fn(),
|
|
2848
2848
|
L: new zn(),
|
|
2849
2849
|
w: new En(),
|
|
2850
|
-
I: new
|
|
2850
|
+
I: new Bn(),
|
|
2851
2851
|
d: new qn(),
|
|
2852
2852
|
D: new Vn(),
|
|
2853
2853
|
E: new An(),
|
|
@@ -3313,11 +3313,11 @@ function Er(e, a) {
|
|
|
3313
3313
|
return Yt(a, n, o) ? (t.setUTCFullYear(a, n, o), t) : /* @__PURE__ */ new Date(NaN);
|
|
3314
3314
|
}
|
|
3315
3315
|
if (s = N.Www.exec(e), s)
|
|
3316
|
-
return r = parseInt(s[1], 10) - 1,
|
|
3316
|
+
return r = parseInt(s[1], 10) - 1, Bt(r) ? Et(a, r) : /* @__PURE__ */ new Date(NaN);
|
|
3317
3317
|
if (s = N.WwwD.exec(e), s) {
|
|
3318
3318
|
r = parseInt(s[1], 10) - 1;
|
|
3319
3319
|
const o = parseInt(s[2], 10) - 1;
|
|
3320
|
-
return
|
|
3320
|
+
return Bt(r, o) ? Et(a, r, o) : /* @__PURE__ */ new Date(NaN);
|
|
3321
3321
|
}
|
|
3322
3322
|
return null;
|
|
3323
3323
|
}
|
|
@@ -3341,7 +3341,7 @@ function Et(e, a, t) {
|
|
|
3341
3341
|
const r = n.getUTCDay() || 7, s = a * 7 + t + 1 - r;
|
|
3342
3342
|
return n.setUTCDate(n.getUTCDate() + s), n;
|
|
3343
3343
|
}
|
|
3344
|
-
const
|
|
3344
|
+
const Br = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], Hr = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
|
|
3345
3345
|
function pa(e) {
|
|
3346
3346
|
return e % 400 === 0 || e % 4 === 0 && e % 100 !== 0;
|
|
3347
3347
|
}
|
|
@@ -3352,7 +3352,7 @@ function Yt(e, a, t) {
|
|
|
3352
3352
|
if (t < 1)
|
|
3353
3353
|
return !1;
|
|
3354
3354
|
const n = pa(e);
|
|
3355
|
-
if (n && t >
|
|
3355
|
+
if (n && t > Hr[a] || !n && t > Br[a])
|
|
3356
3356
|
return !1;
|
|
3357
3357
|
}
|
|
3358
3358
|
return !0;
|
|
@@ -3363,7 +3363,7 @@ function Ur(e, a) {
|
|
|
3363
3363
|
const t = pa(e);
|
|
3364
3364
|
return !(t && a > 366 || !t && a > 365);
|
|
3365
3365
|
}
|
|
3366
|
-
function
|
|
3366
|
+
function Bt(e, a) {
|
|
3367
3367
|
return !(e < 0 || e > 52 || a != null && (a < 0 || a > 6));
|
|
3368
3368
|
}
|
|
3369
3369
|
function Se(e, a, t) {
|
|
@@ -3402,40 +3402,40 @@ const Xr = (e) => new TextEncoder().encode(e), Zr = (e) => {
|
|
|
3402
3402
|
} catch (a) {
|
|
3403
3403
|
return console.error("Failed to decode Base64:", a), "";
|
|
3404
3404
|
}
|
|
3405
|
-
},
|
|
3405
|
+
}, B = (e) => {
|
|
3406
3406
|
const { timezone: a } = he(), t = 24 - a, n = (/* @__PURE__ */ new Date()).getTimezoneOffset() / 60, r = t - n;
|
|
3407
3407
|
return e.setDate(a < 0 ? e.getDate() - 1 : e.getDate()), e.setHours(r), e;
|
|
3408
3408
|
}, Te = (e) => {
|
|
3409
3409
|
const a = /* @__PURE__ */ new Date(), t = a.getFullYear(), n = a.getMonth();
|
|
3410
|
-
return
|
|
3410
|
+
return B(
|
|
3411
3411
|
new Date(n - 1 < 0 ? t - 1 : t, n - 1 < 0 ? 12 : n - 1, e)
|
|
3412
3412
|
);
|
|
3413
3413
|
}, ve = (e) => {
|
|
3414
3414
|
const a = /* @__PURE__ */ new Date(), t = a.getFullYear(), n = a.getMonth();
|
|
3415
|
-
return
|
|
3415
|
+
return B(new Date(t, n, e));
|
|
3416
3416
|
}, we = (e) => {
|
|
3417
3417
|
const a = /* @__PURE__ */ new Date(), t = a.getFullYear(), n = a.getMonth();
|
|
3418
|
-
return
|
|
3418
|
+
return B(
|
|
3419
3419
|
new Date(n + 1 > 12 ? t + 1 : t, n + 1 > 12 ? 1 : n + 1, e)
|
|
3420
3420
|
);
|
|
3421
3421
|
}, Jr = () => {
|
|
3422
3422
|
const e = /* @__PURE__ */ new Date(), a = e.getDay(), t = a === 0 ? 13 : a - 1 + 7;
|
|
3423
|
-
return e.setDate(e.getDate() - t),
|
|
3423
|
+
return e.setDate(e.getDate() - t), B(e);
|
|
3424
3424
|
}, Kr = () => {
|
|
3425
3425
|
const e = /* @__PURE__ */ new Date(), a = e.getDay(), t = a === 0 ? 6 : a - 1;
|
|
3426
|
-
return e.setDate(e.getDate() - t),
|
|
3426
|
+
return e.setDate(e.getDate() - t), B(e);
|
|
3427
3427
|
}, es = () => {
|
|
3428
3428
|
const e = /* @__PURE__ */ new Date(), a = e.getDay(), t = a === 0 ? 1 : 8 - a;
|
|
3429
|
-
return e.setDate(e.getDate() + t), e.setHours(12, 0, 0, 0),
|
|
3429
|
+
return e.setDate(e.getDate() + t), e.setHours(12, 0, 0, 0), B(e);
|
|
3430
3430
|
}, ts = () => {
|
|
3431
3431
|
const e = /* @__PURE__ */ new Date();
|
|
3432
|
-
return e.setDate(e.getDate() - 1), e.setHours(12, 0, 0, 0),
|
|
3432
|
+
return e.setDate(e.getDate() - 1), e.setHours(12, 0, 0, 0), B(e);
|
|
3433
3433
|
}, as = () => {
|
|
3434
3434
|
const e = /* @__PURE__ */ new Date();
|
|
3435
|
-
return e.setHours(12, 0, 0, 0),
|
|
3435
|
+
return e.setHours(12, 0, 0, 0), B(e);
|
|
3436
3436
|
}, ns = () => {
|
|
3437
3437
|
const e = /* @__PURE__ */ new Date();
|
|
3438
|
-
return e.setDate(e.getDate() + 1), e.setHours(12, 0, 0, 0),
|
|
3438
|
+
return e.setDate(e.getDate() + 1), e.setHours(12, 0, 0, 0), B(e);
|
|
3439
3439
|
}, ae = (e, a, t) => {
|
|
3440
3440
|
const n = /* @__PURE__ */ new Date(), r = e.getTime() - a.getTime(), s = t.getTime() - e.getTime();
|
|
3441
3441
|
let o = 0, l = 0, m = 0;
|
|
@@ -3522,7 +3522,7 @@ const Xr = (e) => new TextEncoder().encode(e), Zr = (e) => {
|
|
|
3522
3522
|
}, ya = (e) => {
|
|
3523
3523
|
const t = e.replace(" at ", " ").replace(/GMT([+-]\d+)/, (y, p) => `${p.padStart(3, "0")}:00`), n = new Date(t.replace(/0([+-]\d{1,2}:\d{2})/, "$1")), r = n.getFullYear(), s = String(n.getMonth() + 1).padStart(2, "0"), o = String(n.getDate()).padStart(2, "0"), l = String(n.getHours()).padStart(2, "0"), m = String(n.getMinutes()).padStart(2, "0"), i = String(n.getSeconds()).padStart(2, "0");
|
|
3524
3524
|
return `${r}-${s}-${o} ${l}:${m}:${i}`;
|
|
3525
|
-
}, ds = () => Date.now(), ms = (e) => new Date(e).getTime(),
|
|
3525
|
+
}, ds = () => Date.now(), ms = (e) => new Date(e).getTime(), Ht = (e, a = 0) => {
|
|
3526
3526
|
const t = ds(), n = ms(
|
|
3527
3527
|
ya(pe(e))
|
|
3528
3528
|
);
|
|
@@ -3865,7 +3865,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3865
3865
|
new: (c.flag & 8) > 0
|
|
3866
3866
|
},
|
|
3867
3867
|
imageUrl: `${e.mdDomains[c.mdDomains_id]}${ee(c.img, c.id_GameMaster, `?ts=${c.filemtime}`)}`,
|
|
3868
|
-
logoUrl: `/
|
|
3868
|
+
logoUrl: l.code ? `/image/platform_logo/platform_logo_${l.code.toLowerCase()}.png?v=1` : "",
|
|
3869
3869
|
rate: "0.00",
|
|
3870
3870
|
jackpotAmount: ""
|
|
3871
3871
|
}))) ?? [] : []
|
|
@@ -3886,7 +3886,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3886
3886
|
new: (l.flag ?? 0) > 0
|
|
3887
3887
|
},
|
|
3888
3888
|
imageUrl: e.mdDomains && e.mdDomains.length > 0 ? `${e.mdDomains[l.mdDomains_id ?? 0]}${ee(l.img ?? "", l.id ?? 0, `?ts=${l.filemtime}`)}` : "",
|
|
3889
|
-
logoUrl: l.
|
|
3889
|
+
logoUrl: l.com ? `/image/platform_logo/platform_logo_${l.com}.png?v=1` : "",
|
|
3890
3890
|
rate: "0.00",
|
|
3891
3891
|
jackpotAmount: l.jackpotAmount ?? ""
|
|
3892
3892
|
}))) == null ? void 0 : o.sort((l, m) => (m.jackpotAmount ? 1 : 0) - (l.jackpotAmount ? 1 : 0))) ?? []
|
|
@@ -3895,7 +3895,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3895
3895
|
};
|
|
3896
3896
|
}, Ts = (e) => ({
|
|
3897
3897
|
list: e.mdGrade.map((a) => {
|
|
3898
|
-
var t, n, r, s, o, l, m, i, c, y, p, g, T, _, k, C, D, h, b, d, $, ne, Q, re, se, Ye,
|
|
3898
|
+
var t, n, r, s, o, l, m, i, c, y, p, g, T, _, k, C, D, h, b, d, $, ne, Q, re, se, Ye, Be, He, Ue, qe, Ve, Ae, Qe, Xe, Ze, Je, Ke, et, tt, at, nt, rt, st, ot, it, ut, ct, lt, dt, mt, gt, ft, pt, yt, bt, ht, _t, Tt, vt, wt, Rt, Pt, Dt, kt;
|
|
3899
3899
|
return {
|
|
3900
3900
|
id: a.gradeindex,
|
|
3901
3901
|
is_current_level: !1,
|
|
@@ -3944,7 +3944,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3944
3944
|
upgrade: {
|
|
3945
3945
|
isShow: !0,
|
|
3946
3946
|
bonus: v(((Ye = (se = a.benefit) == null ? void 0 : se.upgrade) == null ? void 0 : Ye.bonus) ?? "0"),
|
|
3947
|
-
bonus_name: ((
|
|
3947
|
+
bonus_name: ((He = (Be = a.benefit) == null ? void 0 : Be.upgrade) == null ? void 0 : He.bonus_name) ?? "",
|
|
3948
3948
|
turnover: v(((qe = (Ue = a.benefit) == null ? void 0 : Ue.upgrade) == null ? void 0 : qe.turnover) ?? "0"),
|
|
3949
3949
|
turnover_name: ((Ae = (Ve = a.benefit) == null ? void 0 : Ve.upgrade) == null ? void 0 : Ae.turnover_name) ?? ""
|
|
3950
3950
|
},
|
|
@@ -4180,28 +4180,38 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4180
4180
|
googleAnalyticArr: e.google_analytic_arr ?? []
|
|
4181
4181
|
};
|
|
4182
4182
|
}, ks = (e) => {
|
|
4183
|
-
var a, t, n, r, s, o;
|
|
4183
|
+
var a, t, n, r, s, o, l, m;
|
|
4184
4184
|
return {
|
|
4185
|
-
banner: ((a = e.mobileBanner) == null ? void 0 : a.map((
|
|
4186
|
-
ad: ((t = e.mobileAd) == null ? void 0 : t.map((
|
|
4187
|
-
about: ((n = e.about) == null ? void 0 : n.map((
|
|
4188
|
-
name:
|
|
4189
|
-
content:
|
|
4190
|
-
link:
|
|
4185
|
+
banner: ((a = e.mobileBanner) == null ? void 0 : a.map((i) => `${i.imagepath}?ts=${i.filemtime}`)) ?? [],
|
|
4186
|
+
ad: ((t = e.mobileAd) == null ? void 0 : t.map((i) => `${i.imagepath}?ts=${i.filemtime}`)) ?? [],
|
|
4187
|
+
about: ((n = e.about) == null ? void 0 : n.map((i) => ({
|
|
4188
|
+
name: i.name,
|
|
4189
|
+
content: i.content,
|
|
4190
|
+
link: i.link
|
|
4191
|
+
}))) ?? [],
|
|
4192
|
+
mobileAbout: ((r = e.mobileAbout) == null ? void 0 : r.map((i) => ({
|
|
4193
|
+
name: i.name,
|
|
4194
|
+
content: i.content,
|
|
4195
|
+
link: i.link
|
|
4191
4196
|
}))) ?? [],
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
link: l.link
|
|
4197
|
+
appAd: ((s = e.appAd) == null ? void 0 : s.map((i) => ({
|
|
4198
|
+
imgUrl: `${i.imagepath}?ts=${i.filemtime}`,
|
|
4199
|
+
link: i.link
|
|
4196
4200
|
}))) ?? [],
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
|
|
4201
|
+
depositHint: ((o = e.deposit) == null ? void 0 : o.map((i) => ({
|
|
4202
|
+
paymentName: i.name,
|
|
4203
|
+
path: i.link,
|
|
4204
|
+
content: i.content
|
|
4200
4205
|
}))) ?? [],
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4206
|
+
eventPopupBotLeft: ((l = e.eventPopupBotLeft) == null ? void 0 : l.map((i) => ({
|
|
4207
|
+
imgUrl: `${i.imagepath}?ts=${i.filemtime}`,
|
|
4208
|
+
link: i.link,
|
|
4209
|
+
redirect: i.link_target == 0
|
|
4210
|
+
}))) ?? [],
|
|
4211
|
+
eventPopupBotRight: ((m = e.eventPopupBotRight) == null ? void 0 : m.map((i) => ({
|
|
4212
|
+
imgUrl: `${i.imagepath}?ts=${i.filemtime}`,
|
|
4213
|
+
link: i.link,
|
|
4214
|
+
redirect: i.link_target == 0
|
|
4205
4215
|
}))) ?? []
|
|
4206
4216
|
};
|
|
4207
4217
|
}, xs = (e) => {
|
|
@@ -4300,10 +4310,10 @@ const Ls = (e) => {
|
|
|
4300
4310
|
}
|
|
4301
4311
|
};
|
|
4302
4312
|
})
|
|
4303
|
-
})), Gs = (e) => e.data ? e.data.filter((a) => !
|
|
4313
|
+
})), Gs = (e) => e.data ? e.data.filter((a) => !Ht(a.matchDate, 120)).map((a) => ({
|
|
4304
4314
|
id: a.id,
|
|
4305
4315
|
date: ya(pe(a.matchDate)),
|
|
4306
|
-
started:
|
|
4316
|
+
started: Ht(a.matchDate),
|
|
4307
4317
|
stage: a.Stage,
|
|
4308
4318
|
sportId: a.SportID,
|
|
4309
4319
|
matchId: a.MatchID,
|
|
@@ -4402,12 +4412,12 @@ const Ls = (e) => {
|
|
|
4402
4412
|
withdrawCount: e.withdrawCount,
|
|
4403
4413
|
withdrawMin135: Number(e.withdrawMin_135) && Number(e.withdrawMin_135) > 0 ? Number(e.withdrawMin_135) : Number(e.withdrawMin),
|
|
4404
4414
|
withdrawMax135: Number(e.withdrawMax_135) && Number(e.withdrawMax_135) > 0 ? Number(e.withdrawMax_135) : Number(e.withdrawMax)
|
|
4405
|
-
}),
|
|
4415
|
+
}), Bs = (e) => P(e);
|
|
4406
4416
|
var L = /* @__PURE__ */ ((e) => (e.deposit = "deposit", e.withdraw = "withdraw", e.promo = "promotion", e.manual = "adjustment", e.cashIn = "cashIn", e.cashOut = "cashOut", e.transfer = "transfer", e.incentive = "incentive", e.upgradeBonus = "upgradeBonus", e.extension = "extension", e.creditTransfer = "creditTransfer", e.shareHolder = "shareHolderDividend", e))(L || {});
|
|
4407
4417
|
const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
4408
4418
|
__proto__: null,
|
|
4409
4419
|
TransactionMethod: L
|
|
4410
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
4420
|
+
}, Symbol.toStringTag, { value: "Module" })), Hs = (e) => {
|
|
4411
4421
|
var a, t, n, r, s, o;
|
|
4412
4422
|
return {
|
|
4413
4423
|
statusMode: ((a = e.subStatusModes) == null ? void 0 : a.map((l) => ({
|
|
@@ -4553,7 +4563,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4553
4563
|
new: !1
|
|
4554
4564
|
},
|
|
4555
4565
|
imageUrl: `${e.mdDomains[s.mdDomains_id]}${ee(s.img, s.id, `?ts=${s.filemtime}`)}`,
|
|
4556
|
-
logoUrl: `/image/platform_logo/platform_logo_${s.code_PlatformMaster}?v=1
|
|
4566
|
+
logoUrl: s.code_PlatformMaster ? `/image/platform_logo/platform_logo_${s.code_PlatformMaster}.png?v=1` : "",
|
|
4557
4567
|
rate: "0.00",
|
|
4558
4568
|
jackpotAmount: ""
|
|
4559
4569
|
}))) ?? []
|
|
@@ -4888,7 +4898,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4888
4898
|
}))) ?? []
|
|
4889
4899
|
};
|
|
4890
4900
|
})) ?? [];
|
|
4891
|
-
}, Go = (e) => P(e), Fo = (e) => P(e), zo = (e) => P(e), Wo = (e) => P(e), Eo = (e) => P(e), Yo = (e) => P(e),
|
|
4901
|
+
}, Go = (e) => P(e), Fo = (e) => P(e), zo = (e) => P(e), Wo = (e) => P(e), Eo = (e) => P(e), Yo = (e) => P(e), Bo = (e) => P(e), Ho = (e) => ({
|
|
4892
4902
|
status: e.status == 1,
|
|
4893
4903
|
message: e.msg ?? "",
|
|
4894
4904
|
data: e.data
|
|
@@ -5195,7 +5205,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5195
5205
|
};
|
|
5196
5206
|
};
|
|
5197
5207
|
var W = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(W || {});
|
|
5198
|
-
const
|
|
5208
|
+
const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5199
5209
|
__proto__: null,
|
|
5200
5210
|
MissionStatus: W
|
|
5201
5211
|
}, Symbol.toStringTag, { value: "Module" })), Ti = (e) => {
|
|
@@ -5281,13 +5291,13 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5281
5291
|
new: !1
|
|
5282
5292
|
},
|
|
5283
5293
|
imageUrl: `${e.mdDomains[a.mdDomains_id]}${ee(a.img, a.id, `?ts=${a.filemtime}`)}`,
|
|
5284
|
-
logoUrl: `/image/platform_logo/platform_logo_${a.code}?v=1
|
|
5294
|
+
logoUrl: a.code ? `/image/platform_logo/platform_logo_${a.code}.png?v=1` : "",
|
|
5285
5295
|
rate: "0.00",
|
|
5286
5296
|
jackpotAmount: ""
|
|
5287
5297
|
})) ?? [] : []
|
|
5288
5298
|
}), Di = (e) => P(e), ki = (e) => P(e);
|
|
5289
5299
|
var A = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(A || {});
|
|
5290
|
-
const
|
|
5300
|
+
const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5291
5301
|
__proto__: null,
|
|
5292
5302
|
AccumulateDepositStatus: A
|
|
5293
5303
|
}, Symbol.toStringTag, { value: "Module" })), xi = (e) => {
|
|
@@ -5482,7 +5492,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5482
5492
|
desc: a.txn_type
|
|
5483
5493
|
}))
|
|
5484
5494
|
}
|
|
5485
|
-
}),
|
|
5495
|
+
}), Bi = (e) => e.status == 0 ? {
|
|
5486
5496
|
status: !1,
|
|
5487
5497
|
message: e.msg ?? "",
|
|
5488
5498
|
data: null
|
|
@@ -5500,7 +5510,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5500
5510
|
prize: a.prize
|
|
5501
5511
|
}))
|
|
5502
5512
|
}
|
|
5503
|
-
},
|
|
5513
|
+
}, Hi = (e) => ({
|
|
5504
5514
|
status: e.status === 1,
|
|
5505
5515
|
message: e.msg ?? "",
|
|
5506
5516
|
data: Number(e.data ?? "0")
|
|
@@ -5583,7 +5593,7 @@ const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5583
5593
|
new: !1
|
|
5584
5594
|
},
|
|
5585
5595
|
imageUrl: `${e.mdDomains[s.mdDomains_id]}${ee(s.img, s.id, `?ts=${s.filemtime}`)}`,
|
|
5586
|
-
logoUrl: `/image/platform_logo/platform_logo_${s.
|
|
5596
|
+
logoUrl: `/image/platform_logo/platform_logo_${s.img.split("/").pop()}.png?v=1`,
|
|
5587
5597
|
rate: "0.00",
|
|
5588
5598
|
jackpotAmount: ""
|
|
5589
5599
|
}))) ?? []
|
|
@@ -5947,7 +5957,7 @@ const Vu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5947
5957
|
}
|
|
5948
5958
|
return e;
|
|
5949
5959
|
};
|
|
5950
|
-
var ce = /* @__PURE__ */ ((e) => (e.mobileBanner = "mobileBanner", e.mobileAbout = "mobileAbout", e.mobileAd = "mobileAd", e.about = "about", e.appAd = "appAd", e.deposit = "deposit", e))(ce || {});
|
|
5960
|
+
var ce = /* @__PURE__ */ ((e) => (e.mobileBanner = "mobileBanner", e.mobileAbout = "mobileAbout", e.mobileAd = "mobileAd", e.about = "about", e.appAd = "appAd", e.deposit = "deposit", e.eventPopupBotLeft = "eventPopupBotLeft", e.eventPopupBotRight = "eventPopupBotRight", e))(ce || {});
|
|
5951
5961
|
const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5952
5962
|
__proto__: null,
|
|
5953
5963
|
CmsCategory: ce
|
|
@@ -6238,7 +6248,7 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6238
6248
|
new: !1
|
|
6239
6249
|
},
|
|
6240
6250
|
imageUrl: `${e.mdDomains[s.mdDomains_id]}${ee(s.img, s.id, `?ts=${s.filemtime}`)}`,
|
|
6241
|
-
logoUrl: `/image/platform_logo/platform_logo_${s.code_PlatformMaster}?v=1
|
|
6251
|
+
logoUrl: s.code_PlatformMaster ? `/image/platform_logo/platform_logo_${s.code_PlatformMaster}.png?v=1` : "",
|
|
6242
6252
|
rate: "0.00",
|
|
6243
6253
|
jackpotAmount: ""
|
|
6244
6254
|
}))) ?? []
|
|
@@ -6362,10 +6372,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6362
6372
|
o.result[i] = Ys(c);
|
|
6363
6373
|
break;
|
|
6364
6374
|
case u.addBankCard:
|
|
6365
|
-
o.result[i] =
|
|
6375
|
+
o.result[i] = Bs(c);
|
|
6366
6376
|
break;
|
|
6367
6377
|
case u.transactionReport:
|
|
6368
|
-
o.result[i] =
|
|
6378
|
+
o.result[i] = Hs(
|
|
6369
6379
|
c
|
|
6370
6380
|
);
|
|
6371
6381
|
break;
|
|
@@ -6591,12 +6601,12 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6591
6601
|
);
|
|
6592
6602
|
break;
|
|
6593
6603
|
case u.submitTransferMoney:
|
|
6594
|
-
o.result[i] =
|
|
6604
|
+
o.result[i] = Bo(
|
|
6595
6605
|
c
|
|
6596
6606
|
);
|
|
6597
6607
|
break;
|
|
6598
6608
|
case u.requestUpdateMobileTacCode:
|
|
6599
|
-
o.result[i] =
|
|
6609
|
+
o.result[i] = Ho(
|
|
6600
6610
|
c
|
|
6601
6611
|
);
|
|
6602
6612
|
break;
|
|
@@ -6825,10 +6835,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6825
6835
|
);
|
|
6826
6836
|
break;
|
|
6827
6837
|
case u.getWheelData:
|
|
6828
|
-
o.result[i] =
|
|
6838
|
+
o.result[i] = Bi(c);
|
|
6829
6839
|
break;
|
|
6830
6840
|
case u.getWheelTicket:
|
|
6831
|
-
o.result[i] =
|
|
6841
|
+
o.result[i] = Hi(c);
|
|
6832
6842
|
break;
|
|
6833
6843
|
case u.spinWheel:
|
|
6834
6844
|
o.result[i] = Ui(c);
|
|
@@ -7219,10 +7229,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7219
7229
|
__proto__: null
|
|
7220
7230
|
}, Symbol.toStringTag, { value: "Module" })), Yc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7221
7231
|
__proto__: null
|
|
7222
|
-
}, Symbol.toStringTag, { value: "Module" })), Hc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7223
|
-
__proto__: null
|
|
7224
7232
|
}, Symbol.toStringTag, { value: "Module" })), Bc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7225
7233
|
__proto__: null
|
|
7234
|
+
}, Symbol.toStringTag, { value: "Module" })), Hc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7235
|
+
__proto__: null
|
|
7226
7236
|
}, Symbol.toStringTag, { value: "Module" })), Uc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7227
7237
|
__proto__: null
|
|
7228
7238
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -7330,10 +7340,10 @@ const qc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7330
7340
|
__proto__: null
|
|
7331
7341
|
}, Symbol.toStringTag, { value: "Module" })), Yl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7332
7342
|
__proto__: null
|
|
7333
|
-
}, Symbol.toStringTag, { value: "Module" })), Hl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7334
|
-
__proto__: null
|
|
7335
7343
|
}, Symbol.toStringTag, { value: "Module" })), Bl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7336
7344
|
__proto__: null
|
|
7345
|
+
}, Symbol.toStringTag, { value: "Module" })), Hl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7346
|
+
__proto__: null
|
|
7337
7347
|
}, Symbol.toStringTag, { value: "Module" })), Ul = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7338
7348
|
__proto__: null
|
|
7339
7349
|
}, Symbol.toStringTag, { value: "Module" })), ql = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -7431,7 +7441,7 @@ export {
|
|
|
7431
7441
|
ic as gameListType,
|
|
7432
7442
|
Kl as getASCMatchCountType,
|
|
7433
7443
|
Zl as getAccumulateDepositClaimType,
|
|
7434
|
-
|
|
7444
|
+
Hu as getAccumulateDepositDataType,
|
|
7435
7445
|
ll as getActivePPType,
|
|
7436
7446
|
dl as getActiveProductType,
|
|
7437
7447
|
nl as getCountryType,
|
|
@@ -7445,15 +7455,15 @@ export {
|
|
|
7445
7455
|
_d as getFeedbackType,
|
|
7446
7456
|
bd as getGoldEggDataType,
|
|
7447
7457
|
qc as getImageType,
|
|
7448
|
-
|
|
7449
|
-
|
|
7458
|
+
Bl as getIncentiveData,
|
|
7459
|
+
Hl as getIncentiveRebate,
|
|
7450
7460
|
Cc as getInviteRewardClaimType,
|
|
7451
7461
|
xc as getInviteRewardDataType,
|
|
7452
7462
|
Oc as getInviteRewardReportType,
|
|
7453
7463
|
$c as getInviteRewardSettingType,
|
|
7454
7464
|
nc as getMaintenanceModeApi,
|
|
7455
7465
|
Ul as getMissionClaim,
|
|
7456
|
-
|
|
7466
|
+
Bu as getMissionData,
|
|
7457
7467
|
hd as getNewbieMissionClaimType,
|
|
7458
7468
|
qu as getNewbieMissionDataType,
|
|
7459
7469
|
nd as getPopoutItemType,
|
|
@@ -7510,7 +7520,7 @@ export {
|
|
|
7510
7520
|
Ql as requestForgetUsernameType,
|
|
7511
7521
|
Jc as requestTacCodeType,
|
|
7512
7522
|
bl as requestTransferMoneyType,
|
|
7513
|
-
|
|
7523
|
+
Bc as requestUpdateMobileTacCode,
|
|
7514
7524
|
ml as requestWithdrawTacType,
|
|
7515
7525
|
gl as requestWithdrawalCodeType,
|
|
7516
7526
|
Sl as searchNumberHistoryType,
|
|
@@ -7527,7 +7537,7 @@ export {
|
|
|
7527
7537
|
Ec as submitGiftCodeType,
|
|
7528
7538
|
hl as submitTransferMoneyType,
|
|
7529
7539
|
xl as submitTwoFactorAuthenticateType,
|
|
7530
|
-
|
|
7540
|
+
Hc as submitUpdateMobileTacCode,
|
|
7531
7541
|
ol as submitValidateType,
|
|
7532
7542
|
Cl as submitWithdrawalAlipayType,
|
|
7533
7543
|
pl as submitWithdrawalCodeType,
|