60p82u21t54k 0.3.16 → 0.3.18

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.
@@ -77,7 +77,7 @@ const Ta = (e) => {
77
77
  __proto__: null,
78
78
  getConfig: he,
79
79
  setConfig: Ta
80
- }, Symbol.toStringTag, { value: "Module" })), ea = 6048e5, va = 864e5, wa = 6e4, Ra = 36e5, Pa = 1e3, xt = Symbol.for("constructDateFrom");
80
+ }, Symbol.toStringTag, { value: "Module" })), ea = 6048e5, va = 864e5, wa = 6e4, Pa = 36e5, Ra = 1e3, xt = Symbol.for("constructDateFrom");
81
81
  function j(e, a) {
82
82
  return typeof e == "function" ? e(a) : e && typeof e == "object" && xt in e ? e[xt](a) : e instanceof Date ? new e.constructor(a) : new Date(a);
83
83
  }
@@ -612,7 +612,7 @@ function sa(e, a) {
612
612
  const t = I(e, a == null ? void 0 : a.in), n = +U(t, a) - +mn(t, a);
613
613
  return Math.round(n / ea) + 1;
614
614
  }
615
- function R(e, a) {
615
+ function P(e, a) {
616
616
  const t = e < 0 ? "-" : "", n = Math.abs(e).toString().padStart(a, "0");
617
617
  return t + n;
618
618
  }
@@ -620,16 +620,16 @@ const H = {
620
620
  // Year
621
621
  y(e, a) {
622
622
  const t = e.getFullYear(), n = t > 0 ? t : 1 - t;
623
- return R(a === "yy" ? n % 100 : n, a.length);
623
+ return P(a === "yy" ? n % 100 : n, a.length);
624
624
  },
625
625
  // Month
626
626
  M(e, a) {
627
627
  const t = e.getMonth();
628
- return a === "M" ? String(t + 1) : R(t + 1, 2);
628
+ return a === "M" ? String(t + 1) : P(t + 1, 2);
629
629
  },
630
630
  // Day of the month
631
631
  d(e, a) {
632
- return R(e.getDate(), a.length);
632
+ return P(e.getDate(), a.length);
633
633
  },
634
634
  // AM or PM
635
635
  a(e, a) {
@@ -649,26 +649,26 @@ const H = {
649
649
  },
650
650
  // Hour [1-12]
651
651
  h(e, a) {
652
- return R(e.getHours() % 12 || 12, a.length);
652
+ return P(e.getHours() % 12 || 12, a.length);
653
653
  },
654
654
  // Hour [0-23]
655
655
  H(e, a) {
656
- return R(e.getHours(), a.length);
656
+ return P(e.getHours(), a.length);
657
657
  },
658
658
  // Minute
659
659
  m(e, a) {
660
- return R(e.getMinutes(), a.length);
660
+ return P(e.getMinutes(), a.length);
661
661
  },
662
662
  // Second
663
663
  s(e, a) {
664
- return R(e.getSeconds(), a.length);
664
+ return P(e.getSeconds(), a.length);
665
665
  },
666
666
  // Fraction of second
667
667
  S(e, a) {
668
668
  const t = a.length, n = e.getMilliseconds(), r = Math.trunc(
669
669
  n * Math.pow(10, t - 3)
670
670
  );
671
- return R(r, a.length);
671
+ return P(r, a.length);
672
672
  }
673
673
  }, X = {
674
674
  midnight: "midnight",
@@ -709,14 +709,14 @@ const H = {
709
709
  const r = Ge(e, n), s = r > 0 ? r : 1 - r;
710
710
  if (a === "YY") {
711
711
  const o = s % 100;
712
- return R(o, 2);
712
+ return P(o, 2);
713
713
  }
714
- return a === "Yo" ? t.ordinalNumber(s, { unit: "year" }) : R(s, a.length);
714
+ return a === "Yo" ? t.ordinalNumber(s, { unit: "year" }) : P(s, a.length);
715
715
  },
716
716
  // ISO week-numbering year
717
717
  R: function(e, a) {
718
718
  const t = aa(e);
719
- return R(t, a.length);
719
+ return P(t, a.length);
720
720
  },
721
721
  // Extended year. This is a single number designating the year of this calendar system.
722
722
  // The main difference between `y` and `u` localizers are B.C. years:
@@ -729,7 +729,7 @@ const H = {
729
729
  // while `uu` pads single digit years to 2 characters and returns other years unchanged.
730
730
  u: function(e, a) {
731
731
  const t = e.getFullYear();
732
- return R(t, a.length);
732
+ return P(t, a.length);
733
733
  },
734
734
  // Quarter
735
735
  Q: function(e, a, t) {
@@ -740,7 +740,7 @@ const H = {
740
740
  return String(n);
741
741
  // 01, 02, 03, 04
742
742
  case "QQ":
743
- return R(n, 2);
743
+ return P(n, 2);
744
744
  // 1st, 2nd, 3rd, 4th
745
745
  case "Qo":
746
746
  return t.ordinalNumber(n, { unit: "quarter" });
@@ -774,7 +774,7 @@ const H = {
774
774
  return String(n);
775
775
  // 01, 02, 03, 04
776
776
  case "qq":
777
- return R(n, 2);
777
+ return P(n, 2);
778
778
  // 1st, 2nd, 3rd, 4th
779
779
  case "qo":
780
780
  return t.ordinalNumber(n, { unit: "quarter" });
@@ -836,7 +836,7 @@ const H = {
836
836
  return String(n + 1);
837
837
  // 01, 02, ..., 12
838
838
  case "LL":
839
- return R(n + 1, 2);
839
+ return P(n + 1, 2);
840
840
  // 1st, 2nd, ..., 12th
841
841
  case "Lo":
842
842
  return t.ordinalNumber(n + 1, { unit: "month" });
@@ -861,12 +861,12 @@ const H = {
861
861
  // Local week of year
862
862
  w: function(e, a, t, n) {
863
863
  const r = sa(e, n);
864
- return a === "wo" ? t.ordinalNumber(r, { unit: "week" }) : R(r, a.length);
864
+ return a === "wo" ? t.ordinalNumber(r, { unit: "week" }) : P(r, a.length);
865
865
  },
866
866
  // ISO week of year
867
867
  I: function(e, a, t) {
868
868
  const n = ra(e);
869
- return a === "Io" ? t.ordinalNumber(n, { unit: "week" }) : R(n, a.length);
869
+ return a === "Io" ? t.ordinalNumber(n, { unit: "week" }) : P(n, a.length);
870
870
  },
871
871
  // Day of the month
872
872
  d: function(e, a, t) {
@@ -875,7 +875,7 @@ const H = {
875
875
  // Day of year
876
876
  D: function(e, a, t) {
877
877
  const n = dn(e);
878
- return a === "Do" ? t.ordinalNumber(n, { unit: "dayOfYear" }) : R(n, a.length);
878
+ return a === "Do" ? t.ordinalNumber(n, { unit: "dayOfYear" }) : P(n, a.length);
879
879
  },
880
880
  // Day of week
881
881
  E: function(e, a, t) {
@@ -919,7 +919,7 @@ const H = {
919
919
  return String(s);
920
920
  // Padded numerical value
921
921
  case "ee":
922
- return R(s, 2);
922
+ return P(s, 2);
923
923
  // 1st, 2nd, ..., 7th
924
924
  case "eo":
925
925
  return t.ordinalNumber(s, { unit: "day" });
@@ -958,7 +958,7 @@ const H = {
958
958
  return String(s);
959
959
  // Padded numerical value
960
960
  case "cc":
961
- return R(s, a.length);
961
+ return P(s, a.length);
962
962
  // 1st, 2nd, ..., 7th
963
963
  case "co":
964
964
  return t.ordinalNumber(s, { unit: "day" });
@@ -997,7 +997,7 @@ const H = {
997
997
  return String(r);
998
998
  // 02
999
999
  case "ii":
1000
- return R(r, a.length);
1000
+ return P(r, a.length);
1001
1001
  // 2nd
1002
1002
  case "io":
1003
1003
  return t.ordinalNumber(r, { unit: "day" });
@@ -1125,12 +1125,12 @@ const H = {
1125
1125
  // Hour [0-11]
1126
1126
  K: function(e, a, t) {
1127
1127
  const n = e.getHours() % 12;
1128
- return a === "Ko" ? t.ordinalNumber(n, { unit: "hour" }) : R(n, a.length);
1128
+ return a === "Ko" ? t.ordinalNumber(n, { unit: "hour" }) : P(n, a.length);
1129
1129
  },
1130
1130
  // Hour [1-24]
1131
1131
  k: function(e, a, t) {
1132
1132
  let n = e.getHours();
1133
- return n === 0 && (n = 24), a === "ko" ? t.ordinalNumber(n, { unit: "hour" }) : R(n, a.length);
1133
+ return n === 0 && (n = 24), a === "ko" ? t.ordinalNumber(n, { unit: "hour" }) : P(n, a.length);
1134
1134
  },
1135
1135
  // Minute
1136
1136
  m: function(e, a, t) {
@@ -1225,22 +1225,22 @@ const H = {
1225
1225
  // Seconds timestamp
1226
1226
  t: function(e, a, t) {
1227
1227
  const n = Math.trunc(+e / 1e3);
1228
- return R(n, a.length);
1228
+ return P(n, a.length);
1229
1229
  },
1230
1230
  // Milliseconds timestamp
1231
1231
  T: function(e, a, t) {
1232
- return R(+e, a.length);
1232
+ return P(+e, a.length);
1233
1233
  }
1234
1234
  };
1235
1235
  function St(e, a = "") {
1236
1236
  const t = e > 0 ? "-" : "+", n = Math.abs(e), r = Math.trunc(n / 60), s = n % 60;
1237
- return s === 0 ? t + String(r) : t + String(r) + a + R(s, 2);
1237
+ return s === 0 ? t + String(r) : t + String(r) + a + P(s, 2);
1238
1238
  }
1239
1239
  function It(e, a) {
1240
- return e % 60 === 0 ? (e > 0 ? "-" : "+") + R(Math.abs(e) / 60, 2) : V(e, a);
1240
+ return e % 60 === 0 ? (e > 0 ? "-" : "+") + P(Math.abs(e) / 60, 2) : V(e, a);
1241
1241
  }
1242
1242
  function V(e, a = "") {
1243
- const t = e > 0 ? "-" : "+", n = Math.abs(e), r = R(Math.trunc(n / 60), 2), s = R(n % 60, 2);
1243
+ const t = e > 0 ? "-" : "+", n = Math.abs(e), r = P(Math.trunc(n / 60), 2), s = P(n % 60, 2);
1244
1244
  return t + r + a + s;
1245
1245
  }
1246
1246
  const jt = (e, a) => {
@@ -1307,7 +1307,7 @@ function bn(e, a, t) {
1307
1307
  return `Use \`${e.toLowerCase()}\` instead of \`${e}\` (in \`${a}\`) for formatting ${n} to the input \`${t}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`;
1308
1308
  }
1309
1309
  const hn = /[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g, _n = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g, Tn = /^'([^]*?)'?$/, vn = /''/g, wn = /[a-zA-Z]/;
1310
- function Rn(e, a, t) {
1310
+ function Pn(e, a, t) {
1311
1311
  var c, y, p, g, T, _, k, C;
1312
1312
  const n = te(), r = (t == null ? void 0 : t.locale) ?? n.locale ?? na, s = (t == null ? void 0 : t.firstWeekContainsDate) ?? ((y = (c = t == null ? void 0 : t.locale) == null ? void 0 : c.options) == null ? void 0 : y.firstWeekContainsDate) ?? n.firstWeekContainsDate ?? ((g = (p = n.locale) == null ? void 0 : p.options) == null ? void 0 : g.firstWeekContainsDate) ?? 1, o = (t == null ? void 0 : t.weekStartsOn) ?? ((_ = (T = t == null ? void 0 : t.locale) == null ? void 0 : T.options) == null ? void 0 : _.weekStartsOn) ?? n.weekStartsOn ?? ((C = (k = n.locale) == null ? void 0 : k.options) == null ? void 0 : C.weekStartsOn) ?? 0, l = I(e, t == null ? void 0 : t.in);
1313
1313
  if (!Sa(l))
@@ -1324,7 +1324,7 @@ function Rn(e, a, t) {
1324
1324
  return { isToken: !1, value: "'" };
1325
1325
  const h = D[0];
1326
1326
  if (h === "'")
1327
- return { isToken: !1, value: Pn(D) };
1327
+ return { isToken: !1, value: Rn(D) };
1328
1328
  if (Mt[h])
1329
1329
  return { isToken: !0, value: D };
1330
1330
  if (h.match(wn))
@@ -1347,7 +1347,7 @@ function Rn(e, a, t) {
1347
1347
  return b(l, h, r.localize, i);
1348
1348
  }).join("");
1349
1349
  }
1350
- function Pn(e) {
1350
+ function Rn(e) {
1351
1351
  const a = e.match(Tn);
1352
1352
  return a ? a[1].replace(vn, "'") : e;
1353
1353
  }
@@ -1515,7 +1515,7 @@ function z(e, a) {
1515
1515
  };
1516
1516
  const n = t[1] === "+" ? 1 : -1, r = t[2] ? parseInt(t[2], 10) : 0, s = t[3] ? parseInt(t[3], 10) : 0, o = t[5] ? parseInt(t[5], 10) : 0;
1517
1517
  return {
1518
- value: n * (r * Ra + s * wa + o * Pa),
1518
+ value: n * (r * Pa + s * wa + o * Ra),
1519
1519
  rest: a.slice(t[0].length)
1520
1520
  };
1521
1521
  }
@@ -2941,8 +2941,8 @@ function vr(e) {
2941
2941
  return e.match(yr)[1].replace(br, "'");
2942
2942
  }
2943
2943
  function Ct(e, a, t) {
2944
- const n = ca(), r = Pr(e, t.timeZone, t.locale ?? n.locale);
2945
- return "formatToParts" in r ? wr(r, a) : Rr(r, a);
2944
+ const n = ca(), r = Rr(e, t.timeZone, t.locale ?? n.locale);
2945
+ return "formatToParts" in r ? wr(r, a) : Pr(r, a);
2946
2946
  }
2947
2947
  function wr(e, a) {
2948
2948
  const t = e.formatToParts(a);
@@ -2950,11 +2950,11 @@ function wr(e, a) {
2950
2950
  if (t[n].type === "timeZoneName")
2951
2951
  return t[n].value;
2952
2952
  }
2953
- function Rr(e, a) {
2953
+ function Pr(e, a) {
2954
2954
  const t = e.format(a).replace(/\u200E/g, ""), n = / [\w-+ ]+$/.exec(t);
2955
2955
  return n ? n[0].substr(1) : "";
2956
2956
  }
2957
- function Pr(e, a, t) {
2957
+ function Rr(e, a, t) {
2958
2958
  return new Intl.DateTimeFormat(t ? [t.code, "en-US"] : void 0, {
2959
2959
  timeZone: a,
2960
2960
  timeZoneName: e
@@ -3382,7 +3382,7 @@ function Vr(e, a, t = {}) {
3382
3382
  return m ? i.substring(0, l - 1) + i.substring(l + 1) : i;
3383
3383
  }, a);
3384
3384
  }
3385
- return Rn(e, a, t);
3385
+ return Pn(e, a, t);
3386
3386
  }
3387
3387
  function Ar(e, a, t) {
3388
3388
  e = fe(e, t);
@@ -3565,7 +3565,7 @@ var Y = /* @__PURE__ */ ((e) => (e.default = "default", e.pay = "pay", e.auto =
3565
3565
  const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3566
3566
  __proto__: null,
3567
3567
  PaymentType: Y
3568
- }, Symbol.toStringTag, { value: "Module" })), Re = {
3568
+ }, Symbol.toStringTag, { value: "Module" })), Pe = {
3569
3569
  depositBank: !1,
3570
3570
  depositDateTime: !1,
3571
3571
  depositDetail: !1,
@@ -3579,7 +3579,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3579
3579
  type: Y.unknown,
3580
3580
  promo: [],
3581
3581
  bank: [],
3582
- requiredField: Re,
3582
+ requiredField: Pe,
3583
3583
  hintMsg: ""
3584
3584
  }, gs = (e) => {
3585
3585
  var a;
@@ -3629,7 +3629,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3629
3629
  paymentList: n
3630
3630
  };
3631
3631
  })) ?? [];
3632
- }, Pe = (e) => {
3632
+ }, Re = (e) => {
3633
3633
  const a = {
3634
3634
  id: -1,
3635
3635
  name: "excludePromo",
@@ -3678,7 +3678,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3678
3678
  name: "manualMethod",
3679
3679
  pathName: e,
3680
3680
  type: n,
3681
- promo: Pe(a.promo),
3681
+ promo: Re(a.promo),
3682
3682
  bank: a.bank.map((s) => {
3683
3683
  const o = s.list && s.list.length > 0 ? s.list[0].mintransaction ?? "0.00" : "0.00", l = s.list && s.list.length > 0 ? s.list[0].maxtransaction ?? "0.00" : "0.00", { amountList: m, minAmount: i, maxAmount: c } = le(
3684
3684
  Number(o),
@@ -3716,7 +3716,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3716
3716
  name: "onlineBankingMethod",
3717
3717
  pathName: e,
3718
3718
  type: n,
3719
- promo: Pe(a.promo),
3719
+ promo: Re(a.promo),
3720
3720
  bank: a.banklist.map((s) => {
3721
3721
  let o = "0.00", l = "0.00";
3722
3722
  const m = s.bankindex ?? 0;
@@ -3757,7 +3757,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3757
3757
  gateway: [p, ...g]
3758
3758
  };
3759
3759
  }),
3760
- requiredField: Re,
3760
+ requiredField: Pe,
3761
3761
  hintMsg: ""
3762
3762
  };
3763
3763
  }, ps = (e, a, t, n) => {
@@ -3804,9 +3804,9 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3804
3804
  name: "autoMethod",
3805
3805
  pathName: e,
3806
3806
  type: r,
3807
- promo: Pe(t.promo),
3807
+ promo: Re(t.promo),
3808
3808
  bank: s,
3809
- requiredField: Re,
3809
+ requiredField: Pe,
3810
3810
  hintMsg: ""
3811
3811
  };
3812
3812
  }, ys = (e, a, t) => {
@@ -3816,7 +3816,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3816
3816
  name: "fixAmountMethod",
3817
3817
  pathName: e,
3818
3818
  type: n,
3819
- promo: Pe(t.promo),
3819
+ promo: Re(t.promo),
3820
3820
  bank: t.bank.map((s) => {
3821
3821
  const o = s.amtlist.map(Number).sort((m, i) => m - i);
3822
3822
  return {
@@ -3827,7 +3827,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3827
3827
  max: o.length > 0 ? o[o.length - 1] : 0
3828
3828
  };
3829
3829
  }),
3830
- requiredField: Re,
3830
+ requiredField: Pe,
3831
3831
  hintMsg: ""
3832
3832
  };
3833
3833
  }, bs = (e) => (e == null ? void 0 : e.map((a) => ({
@@ -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: l.code ? `/image/platform_logo/platform_logo_${l.code.toLowerCase()}.png?v=1` : "",
3868
+ logoUrl: c.com ? `/image/platform_logo/platform_logo_${c.com}.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.com ? `/image/platform_logo/platform_logo_${l.com}.png?v=1` : "",
3889
+ logoUrl: l.code_PlatformProduct ? `/image/platform_logo/platform_logo_${l.code_PlatformProduct}.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, 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;
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, Pt, Rt, Dt, kt;
3899
3899
  return {
3900
3900
  id: a.gradeindex,
3901
3901
  is_current_level: !1,
@@ -3973,7 +3973,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3973
3973
  isShow: !0,
3974
3974
  bonus: v(((Tt = (_t = a.benefit) == null ? void 0 : _t.salary_20th) == null ? void 0 : Tt.bonus) ?? "0"),
3975
3975
  bonus_name: ((wt = (vt = a.benefit) == null ? void 0 : vt.salary_20th) == null ? void 0 : wt.bonus_name) ?? "",
3976
- turnover: v(((Pt = (Rt = a.benefit) == null ? void 0 : Rt.salary_20th) == null ? void 0 : Pt.turnover) ?? "0"),
3976
+ turnover: v(((Rt = (Pt = a.benefit) == null ? void 0 : Pt.salary_20th) == null ? void 0 : Rt.turnover) ?? "0"),
3977
3977
  turnover_name: ((kt = (Dt = a.benefit) == null ? void 0 : Dt.salary_20th) == null ? void 0 : kt.turnover_name) ?? ""
3978
3978
  }
3979
3979
  }
@@ -4122,10 +4122,10 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4122
4122
  claimable: e === 1,
4123
4123
  expired: e === 0,
4124
4124
  claimed: e === -1
4125
- }), Rs = (e) => e.mdVipSetting.filter((t) => t.status == 1).map((t) => ({
4125
+ }), Ps = (e) => e.mdVipSetting.filter((t) => t.status == 1).map((t) => ({
4126
4126
  fieldName: t.fieldname,
4127
4127
  showName: t.showname
4128
- })), Ps = (e) => ({
4128
+ })), Rs = (e) => ({
4129
4129
  current_deposit: e.deposit,
4130
4130
  current_turnover: e.turnOver,
4131
4131
  current_grade_id: e.mdCurrentGrade ? e.mdCurrentGrade.gradeindex : 0,
@@ -4342,10 +4342,10 @@ const Ls = (e) => {
4342
4342
  status: e.status == 1,
4343
4343
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
4344
4344
  flag: e.flag
4345
- }), P = (e) => ({
4345
+ }), R = (e) => ({
4346
4346
  status: e.status == 1,
4347
4347
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? ""
4348
- }), Ws = (e) => P(e), Es = (e) => {
4348
+ }), Ws = (e) => R(e), Es = (e) => {
4349
4349
  var a, t, n, r, s;
4350
4350
  return {
4351
4351
  bankCard: ((a = e.bankCard) == null ? void 0 : a.map((o) => {
@@ -4412,7 +4412,7 @@ const Ls = (e) => {
4412
4412
  withdrawCount: e.withdrawCount,
4413
4413
  withdrawMin135: Number(e.withdrawMin_135) && Number(e.withdrawMin_135) > 0 ? Number(e.withdrawMin_135) : Number(e.withdrawMin),
4414
4414
  withdrawMax135: Number(e.withdrawMax_135) && Number(e.withdrawMax_135) > 0 ? Number(e.withdrawMax_135) : Number(e.withdrawMax)
4415
- }), Bs = (e) => P(e);
4415
+ }), Bs = (e) => R(e);
4416
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 || {});
4417
4417
  const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4418
4418
  __proto__: null,
@@ -4787,7 +4787,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4787
4787
  }
4788
4788
  }
4789
4789
  return a;
4790
- }, po = (e) => P(e), yo = (e) => P(e), bo = (e) => {
4790
+ }, po = (e) => R(e), yo = (e) => R(e), bo = (e) => {
4791
4791
  var a, t, n, r, s;
4792
4792
  return {
4793
4793
  status: e.status == 1,
@@ -4819,7 +4819,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4819
4819
  regex: a.regex,
4820
4820
  showName: a.showname,
4821
4821
  inputHelper: a.inputHelper
4822
- })) : [], _o = (e) => P(e), To = (e) => e, vo = (e) => {
4822
+ })) : [], _o = (e) => R(e), To = (e) => e, vo = (e) => {
4823
4823
  var a;
4824
4824
  return {
4825
4825
  status: e.status == 1,
@@ -4829,15 +4829,15 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4829
4829
  ledgerIndex: e.checkgame.ledgerindex ?? 0,
4830
4830
  amount: e.checkgame.amount ?? ""
4831
4831
  };
4832
- }, wo = (e) => P(e), Ro = (e) => ({
4832
+ }, wo = (e) => R(e), Po = (e) => ({
4833
4833
  status: e.status == 1,
4834
4834
  message: e.message,
4835
4835
  user: e.user ?? ""
4836
- }), Po = (e) => ({
4836
+ }), Ro = (e) => ({
4837
4837
  status: e.status == 1,
4838
4838
  message: e.msg ?? "",
4839
4839
  amount: e.amount ?? ""
4840
- }), Do = (e) => P(e), ko = (e) => {
4840
+ }), Do = (e) => R(e), ko = (e) => {
4841
4841
  var a;
4842
4842
  return {
4843
4843
  status: e.status == 1,
@@ -4871,10 +4871,10 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4871
4871
  message: e.msg ?? "",
4872
4872
  form: e.form ?? "",
4873
4873
  gameUrl: e.data ?? ""
4874
- }), So = (e) => P(e), Io = (e) => P(e), je = (e) => ({
4874
+ }), So = (e) => R(e), Io = (e) => R(e), je = (e) => ({
4875
4875
  status: e.status == 1,
4876
4876
  message: e.errormessage ?? ""
4877
- }), jo = (e) => P(e), Co = (e) => e, No = (e) => P(e), Lo = (e) => {
4877
+ }), jo = (e) => R(e), Co = (e) => e, No = (e) => R(e), Lo = (e) => {
4878
4878
  var a;
4879
4879
  return {
4880
4880
  platformProduct: ((a = e.mdPlatformProduct) == null ? void 0 : a.map((t) => ({
@@ -4898,7 +4898,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4898
4898
  }))) ?? []
4899
4899
  };
4900
4900
  })) ?? [];
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) => ({
4901
+ }, Go = (e) => R(e), Fo = (e) => R(e), zo = (e) => R(e), Wo = (e) => R(e), Eo = (e) => R(e), Yo = (e) => R(e), Bo = (e) => R(e), Ho = (e) => ({
4902
4902
  status: e.status == 1,
4903
4903
  message: e.msg ?? "",
4904
4904
  data: e.data
@@ -5060,7 +5060,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5060
5060
  binded: ((n = e.data) == null ? void 0 : n.binded) ?? !1
5061
5061
  }
5062
5062
  };
5063
- }, ai = (e) => P(e), ni = (e) => {
5063
+ }, ai = (e) => R(e), ni = (e) => {
5064
5064
  var a;
5065
5065
  return {
5066
5066
  status: e.status == 1,
@@ -5070,7 +5070,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5070
5070
  createdAt: t.created_at
5071
5071
  }))) ?? []
5072
5072
  };
5073
- }, ri = (e) => P(e), si = (e) => {
5073
+ }, ri = (e) => R(e), si = (e) => {
5074
5074
  var a, t, n;
5075
5075
  return {
5076
5076
  status: e.status == 1,
@@ -5095,11 +5095,11 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5095
5095
  }))) ?? []
5096
5096
  }
5097
5097
  };
5098
- }, oi = (e) => P(e), ii = (e) => ({
5098
+ }, oi = (e) => R(e), ii = (e) => ({
5099
5099
  status: e.status == 1,
5100
5100
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
5101
5101
  tokenAmount: e.token_amount
5102
- }), ui = (e) => P(e), ci = (e) => {
5102
+ }), ui = (e) => R(e), ci = (e) => {
5103
5103
  let a = 0;
5104
5104
  return e.data != null && typeof e.data == "object" && (a = e.data.amount), {
5105
5105
  status: e.status,
@@ -5182,7 +5182,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5182
5182
  errorMessage: e.errormessage ?? "",
5183
5183
  isAutoTransfer: e.optionkey == "auto" || ((a = e.message) == null ? void 0 : a.optionkey) == "auto" || ((t = e.mdAccountSetting) == null ? void 0 : t.optionkey) == "auto"
5184
5184
  };
5185
- }, yi = (e) => P(e), bi = (e) => ({
5185
+ }, yi = (e) => R(e), bi = (e) => ({
5186
5186
  status: e.status,
5187
5187
  message: e.msg ?? "",
5188
5188
  turnover: e.data ? e.data.turnover : 0,
@@ -5264,7 +5264,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5264
5264
  }, wi = (e) => ({
5265
5265
  status: e.status,
5266
5266
  message: e.msg ?? ""
5267
- }), Ri = (e) => ({
5267
+ }), Pi = (e) => ({
5268
5268
  status: e.status == 1,
5269
5269
  socialLogin: e.social_login == 1,
5270
5270
  errorMessage: e.erorrmessage ?? "",
@@ -5276,7 +5276,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5276
5276
  maxLength: a.maxlen ?? "0",
5277
5277
  inputHelper: a.inputHelper ?? ""
5278
5278
  }))
5279
- }), Pi = (e) => ({
5279
+ }), Ri = (e) => ({
5280
5280
  currentPage: e.mdGameLists.current_page ?? 0,
5281
5281
  lastPage: e.mdGameLists.last_page ?? 0,
5282
5282
  data: e.mdGameLists.data && e.mdGameLists.data.length > 0 ? e.mdGameLists.data.map((a) => ({
@@ -5295,7 +5295,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5295
5295
  rate: "0.00",
5296
5296
  jackpotAmount: ""
5297
5297
  })) ?? [] : []
5298
- }), Di = (e) => P(e), ki = (e) => P(e);
5298
+ }), Di = (e) => R(e), ki = (e) => R(e);
5299
5299
  var A = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(A || {});
5300
5300
  const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5301
5301
  __proto__: null,
@@ -5593,7 +5593,7 @@ const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5593
5593
  new: !1
5594
5594
  },
5595
5595
  imageUrl: `${e.mdDomains[s.mdDomains_id]}${ee(s.img, s.id, `?ts=${s.filemtime}`)}`,
5596
- logoUrl: `/image/platform_logo/platform_logo_${s.img.split("/").pop()}.png?v=1`,
5596
+ logoUrl: s.code ? `/image/platform_logo/platform_logo_${s.code}.png?v=1` : "",
5597
5597
  rate: "0.00",
5598
5598
  jackpotAmount: ""
5599
5599
  }))) ?? []
@@ -5617,7 +5617,7 @@ const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5617
5617
  status: e.status == 1,
5618
5618
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
5619
5619
  tokenAmount: e.token_amount
5620
- }), Ji = (e) => P(e);
5620
+ }), Ji = (e) => R(e);
5621
5621
  var J = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(J || {});
5622
5622
  const qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5623
5623
  __proto__: null,
@@ -6205,10 +6205,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6205
6205
  replyBy: a.replyby ?? "",
6206
6206
  replyOn: a.replyon ?? ""
6207
6207
  })) ?? []
6208
- }, Ru = (e) => ({
6208
+ }, Pu = (e) => ({
6209
6209
  status: e.status == 1,
6210
6210
  message: e.message ?? ""
6211
- }), Pu = (e) => {
6211
+ }), Ru = (e) => {
6212
6212
  if (u.casinoGameList in e && (e != null && e.casinoGameList)) {
6213
6213
  const a = e.casinoGameList;
6214
6214
  if (u.getPlatformTurnoverRate in e && (e != null && e.getPlatformTurnoverRate)) {
@@ -6301,10 +6301,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6301
6301
  o.result[i] = ws(c);
6302
6302
  break;
6303
6303
  case u.vipFieldStatus:
6304
- o.result[i] = Rs(c);
6304
+ o.result[i] = Ps(c);
6305
6305
  break;
6306
6306
  case u.vipStatus:
6307
- o.result[i] = Ps(c);
6307
+ o.result[i] = Rs(c);
6308
6308
  break;
6309
6309
  case u.promotion:
6310
6310
  o.result[i] = vs(c);
@@ -6515,12 +6515,12 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6515
6515
  o.result[i] = wo(c);
6516
6516
  break;
6517
6517
  case u.getUsernameByRefer:
6518
- o.result[i] = Ro(
6518
+ o.result[i] = Po(
6519
6519
  c
6520
6520
  );
6521
6521
  break;
6522
6522
  case u.applyPromo:
6523
- o.result[i] = Po(c);
6523
+ o.result[i] = Ro(c);
6524
6524
  break;
6525
6525
  case u.applyRedPacket:
6526
6526
  o.result[i] = Do(c);
@@ -6748,10 +6748,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6748
6748
  );
6749
6749
  break;
6750
6750
  case u.registerForm:
6751
- o.result[i] = Ri(c);
6751
+ o.result[i] = Pi(c);
6752
6752
  break;
6753
6753
  case u.getFavouriteGame:
6754
- o.result[i] = Pi(
6754
+ o.result[i] = Ri(
6755
6755
  c
6756
6756
  );
6757
6757
  break;
@@ -6886,14 +6886,14 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6886
6886
  o.result[i] = wu(c);
6887
6887
  break;
6888
6888
  case u.submitFeedback:
6889
- o.result[i] = Ru(c);
6889
+ o.result[i] = Pu(c);
6890
6890
  break;
6891
6891
  case u.casinoGameList:
6892
6892
  o.result[i] = ku(c);
6893
6893
  break;
6894
6894
  }
6895
6895
  }
6896
- return o.result = iu(o.result), o.result = au(o.result), o.result = ru(o.result), o.result = ou(o.result), o.result = lu(o.result), o.result = mu(o.result), o.result = gu(o.result), o.result = yu(o.result), o.result = bu(o.result), o.result = Pu(o.result), o;
6896
+ return o.result = iu(o.result), o.result = au(o.result), o.result = ru(o.result), o.result = ou(o.result), o.result = lu(o.result), o.result = mu(o.result), o.result = gu(o.result), o.result = yu(o.result), o.result = bu(o.result), o.result = Ru(o.result), o;
6897
6897
  } catch (n) {
6898
6898
  return Kt.isAxiosError(n) ? {
6899
6899
  status: ((a = n.response) == null ? void 0 : a.status) || 600,
@@ -7189,10 +7189,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7189
7189
  __proto__: null
7190
7190
  }, Symbol.toStringTag, { value: "Module" })), wc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7191
7191
  __proto__: null
7192
- }, Symbol.toStringTag, { value: "Module" })), Rc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7193
- __proto__: null
7194
7192
  }, Symbol.toStringTag, { value: "Module" })), Pc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7195
7193
  __proto__: null
7194
+ }, Symbol.toStringTag, { value: "Module" })), Rc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7195
+ __proto__: null
7196
7196
  }, Symbol.toStringTag, { value: "Module" })), Dc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7197
7197
  __proto__: null
7198
7198
  }, Symbol.toStringTag, { value: "Module" })), kc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -7300,10 +7300,10 @@ const qc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7300
7300
  __proto__: null
7301
7301
  }, Symbol.toStringTag, { value: "Module" })), wl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7302
7302
  __proto__: null
7303
- }, Symbol.toStringTag, { value: "Module" })), Rl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7304
- __proto__: null
7305
7303
  }, Symbol.toStringTag, { value: "Module" })), Pl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7306
7304
  __proto__: null
7305
+ }, Symbol.toStringTag, { value: "Module" })), Rl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7306
+ __proto__: null
7307
7307
  }, Symbol.toStringTag, { value: "Module" })), Dl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7308
7308
  __proto__: null
7309
7309
  }, Symbol.toStringTag, { value: "Module" })), kl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -7409,7 +7409,7 @@ const qc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7409
7409
  }, Symbol.toStringTag, { value: "Module" }));
7410
7410
  export {
7411
7411
  pc as addBankCardType,
7412
- Pl as agTransferCreditReportType,
7412
+ Rl as agTransferCreditReportType,
7413
7413
  oc as announcementType,
7414
7414
  Qu as api,
7415
7415
  zu as apiType,
@@ -7435,7 +7435,7 @@ export {
7435
7435
  fl as commissionWithdrawType,
7436
7436
  Fu as config,
7437
7437
  mc as depositType,
7438
- Rc as fishGameListType,
7438
+ Pc as fishGameListType,
7439
7439
  cl as friendListEditType,
7440
7440
  ul as friendListType,
7441
7441
  ic as gameListType,
@@ -7514,7 +7514,7 @@ export {
7514
7514
  Jl as rebateRefundSettingType,
7515
7515
  wl as referralMemberProfileType,
7516
7516
  vl as referralProfileType,
7517
- Rl as registerActionType,
7517
+ Pl as registerActionType,
7518
7518
  ql as registerFormType,
7519
7519
  zc as requestForgetPasswordType,
7520
7520
  Ql as requestForgetUsernameType,
@@ -7527,7 +7527,7 @@ export {
7527
7527
  tc as setLocaleApi,
7528
7528
  Tl as signInRecordType,
7529
7529
  _l as signInViewInfoType,
7530
- Pc as slotGameListType,
7530
+ Rc as slotGameListType,
7531
7531
  ld as spinWheelType,
7532
7532
  yl as submitCryptoAccountType,
7533
7533
  Td as submitFeedbackType,