60p82u21t54k 0.0.76 → 0.0.77
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 +909 -871
- package/dist/60p82u21t54k.umd.js +1 -1
- package/dist/api/api.d.ts.map +1 -1
- package/dist/api/type.d.ts +12 -3
- package/dist/api/type.d.ts.map +1 -1
- package/dist/model/applyWeekCard/getApplyWeekCardResponse.d.ts +10 -0
- package/dist/model/applyWeekCard/getApplyWeekCardResponse.d.ts.map +1 -0
- package/dist/model/applyWeekCard/type.d.ts +5 -0
- package/dist/model/applyWeekCard/type.d.ts.map +1 -0
- package/dist/model/getWeekCardClaim/getGetWeekCardClaimResponse.d.ts +10 -0
- package/dist/model/getWeekCardClaim/getGetWeekCardClaimResponse.d.ts.map +1 -0
- package/dist/model/getWeekCardClaim/type.d.ts +5 -0
- package/dist/model/getWeekCardClaim/type.d.ts.map +1 -0
- package/dist/model/getWeekCardData/getGetWeekCardDataResponse.d.ts +25 -0
- package/dist/model/getWeekCardData/getGetWeekCardDataResponse.d.ts.map +1 -0
- package/dist/model/getWeekCardData/type.d.ts +14 -0
- package/dist/model/getWeekCardData/type.d.ts.map +1 -0
- package/dist/model/playGame/getPlayGameResponse.d.ts +7 -4
- package/dist/model/playGame/getPlayGameResponse.d.ts.map +1 -1
- package/dist/model/playGame/type.d.ts +4 -1
- package/dist/model/playGame/type.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/60p82u21t54k.es.js
CHANGED
|
@@ -59,35 +59,35 @@ L.interceptors.response.use(
|
|
|
59
59
|
return e.response ? (t.status = e.response.status, t.message = e.response.data.message || e.response.statusText, console.error("Error response:", JSON.stringify(t)), e.response.status === 401 ? console.error("Unauthorized access - redirecting to login.") : e.response.status === 404 ? console.error("Resource not found.") : e.response.status >= 500 && console.error("Server error. Please try again later.")) : e.request ? console.error("No response received:", e.request) : console.error("Error setting up request:", e.message), Promise.reject(t);
|
|
60
60
|
}
|
|
61
61
|
);
|
|
62
|
-
const
|
|
62
|
+
const ae = (e) => new TextEncoder().encode(e), ne = (e) => {
|
|
63
63
|
try {
|
|
64
64
|
return atob(e);
|
|
65
65
|
} catch (t) {
|
|
66
66
|
return console.error("Failed to decode Base64:", t), "";
|
|
67
67
|
}
|
|
68
68
|
}, oe = () => {
|
|
69
|
-
const e = /* @__PURE__ */ new Date(), t = e.getFullYear(),
|
|
70
|
-
(
|
|
69
|
+
const e = /* @__PURE__ */ new Date(), t = e.getFullYear(), a = e.getMonth(), u = new Date(t, a, 1, 12, 0, 0), i = new Date(t, a + 1, 1, 12, 0, 0), l = Math.floor(
|
|
70
|
+
(i.getTime() - e.getTime()) / 1e3
|
|
71
71
|
), d = Math.floor(
|
|
72
|
-
(
|
|
72
|
+
(i.getTime() - u.getTime()) / 1e3
|
|
73
73
|
), m = d - l;
|
|
74
74
|
return {
|
|
75
75
|
monthRemainingTime: l,
|
|
76
76
|
monthProgressPercentage: Math.round(m / d * 100)
|
|
77
77
|
};
|
|
78
78
|
}, re = () => {
|
|
79
|
-
const e = /* @__PURE__ */ new Date(), t = e.getDay(),
|
|
79
|
+
const e = /* @__PURE__ */ new Date(), t = e.getDay(), a = t === 1 ? 7 : 8 - t, u = new Date(
|
|
80
80
|
e.getFullYear(),
|
|
81
81
|
e.getMonth(),
|
|
82
|
-
e.getDate() +
|
|
82
|
+
e.getDate() + a,
|
|
83
83
|
12,
|
|
84
84
|
0,
|
|
85
85
|
0,
|
|
86
86
|
0
|
|
87
|
-
),
|
|
88
|
-
return console.log(
|
|
89
|
-
weekRemainingTime:
|
|
90
|
-
weekProgressPercentage: Math.round(
|
|
87
|
+
), i = Math.floor((u.getTime() - e.getTime()) / 1e3), g = 7 * 24 * 60 * 60;
|
|
88
|
+
return console.log(i), console.log(g), {
|
|
89
|
+
weekRemainingTime: i,
|
|
90
|
+
weekProgressPercentage: Math.round(i / g * 100)
|
|
91
91
|
};
|
|
92
92
|
}, se = () => {
|
|
93
93
|
const e = /* @__PURE__ */ new Date(), t = new Date(
|
|
@@ -98,16 +98,16 @@ const ne = (e) => new TextEncoder().encode(e), ae = (e) => {
|
|
|
98
98
|
0,
|
|
99
99
|
0,
|
|
100
100
|
0
|
|
101
|
-
),
|
|
101
|
+
), a = Math.floor((t.getTime() - e.getTime()) / 1e3), d = 24 * 60 * 60;
|
|
102
102
|
return {
|
|
103
|
-
dayRemainingTime:
|
|
104
|
-
dayProgressPercentage: Math.round(
|
|
103
|
+
dayRemainingTime: a,
|
|
104
|
+
dayProgressPercentage: Math.round(a / d * 100)
|
|
105
105
|
};
|
|
106
106
|
};
|
|
107
|
-
var
|
|
107
|
+
var s = /* @__PURE__ */ ((e) => (e.announcement = "announcement", e.gameList = "gameList", e.fishGameList = "fishGameList", e.cmsList = "cmsList", e.paymentsProvider = "paymentsProvider", e.getUserProfile = "getUserProfile", e.vipList = "vipList", e.vipStatus = "vipStatus", e.vipBonus = "vipBonus", e.vipFieldStatus = "vipFieldStatus", e.promotion = "promotion", e.getSetting = "getSetting", e.getCountryMobile = "getCountryMobile", e.getPlatformTurnoverRate = "getPlatformTurnoverRate", e.mainWallet = "mainWallet", e.getLanguageSetting = "getLanguageSetting", e.getFourDimensionData = "getfourDimensionData", e.getCompany = "getCompany", e.searchResultDate = "searchResultDate", e.searchHot = "searchHot", e.searchByDate = "searchByDate", e.upcomingMatches = "upcomingMatches", e.deposit = "deposit", e.applyVipBonus = "applyVipBonus", e.getBankCardData = "getBankCardData", e.withdrawalGet = "withdrawalGet", e.withdraw = "withdraw", e.addBankCard = "addBankCard", e.transactionReport = "transactionReport", e.changePassword = "changePassword", e.wallet = "wallet", e.getEventList = "getEventlist", e.getEventToken = "getEventToken", e.getExtraGame = "getExtraGame", e.mailBox = "mailBox", e.slotGameList = "slotGameList", e.getTurnOverRewardData = "getTurnOverRewardData", e.getTurnOverRewardReport = "getTurnOverRewardReport", e.getInviteRewardData = "getInviteRewardData", e.getInviteRewardReport = "getInviteRewardReport", e.getTopupRewardData = "getTopupRewardData", e.getTopupRewardReport = "getTopupRewardReport", e.getRewardReferral = "getRewardReferral", e.submitWithdrawValidate = "submitWithdrawValidate", e.getDepositPromotion = "getDepositPromotion", e.getInviteRewardClaim = "getInviteRewardClaim", e.getTopUpRewardClaim = "getTopupRewardClaim", e.getTurnOverRewardClaim = "getTurnOverRewardClaim", e.getInviteRewardSetting = "getInviteRewardSetting", e.getTopUpRewardSetting = "getTopupRewardSetting", e.getTurnOverRewardSetting = "getTurnOverRewardSetting", e.requestForgetPassword = "requestForgetPassword", e.submitForgetPassword = "submitForgetPassword", e.getImage = "getImage", e.getDepositValidate = "getDepositValidate", e.getTransferCreditValidate = "getTransferCreditValidate", e.getWithdrawValidate = "getWithdrawValidate", e.updateProfilePicture = "updateProfilePicture", e.readMail = "readMail", e.checkRedPacketValidate = "checkRedpacketValidate", e.requestTacCode = "requestTacCode", e.getUsernameByRefer = "getUsernameByRefer", e.applyPromo = "applyPromo", e.applyRedPacket = "applyRedpacket", e.applySignIn = "applySignIn", e.getCountry = "getCountry", e.submitGiftCode = "submitGiftCode", e.playGame = "playGame", e.transferToMain = "transferToMain", e.transferProcess = "transferProcess", e.submitDepositValidate = "submitDepositValidate", e.submitTransferCreditValidate = "submitTransferCreditValidate", e.checkTransferCredit = "checkTransferCredit", e.friendList = "friendList", e.friendListEdit = "friendListEdit", e.getActivePP = "getActivePP", e.getActiveProduct = "getActiveProduct", e.requestWithdrawTac = "requestWithdrawTac", e.requestWithdrawalCode = "requestWithdrawalCode", e.commissionWithdraw = "commissionWithdraw", e.submitWithdrawalCode = "submitWithdrawalCode", e.submitCryptoAccount = "submitCryptoAccount", e.requestTransferMoney = "requestTransferMoney", e.submitTransferMoney = "submitTransferMoney", e.getVerifyPromo = "getVerifyPromo", e.requestUpdateMobileTacCode = "requestUpdateMobileTacCode", e.submitUpdateMobileTacCode = "submitUpdateMobileTacCode", e.signInViewInfo = "signInViewInfo", e.signInRecord = "signInRecord", e.referralProfile = "referralProfile", e.referralMemberProfile = "referralMemberProfile", e.registerAction = "registerAction", e.transferReport = "transferReport", e.agTransferCreditReport = "agTransferCreditReport", e.betReport = "betReport", e.getTwoFactorAuthenticate = "getTwoFactorAuthenticate", e.getUserDeviceList = "getUserDeviceList", e.submitTwoFactorAuthenticate = "submitTwoFactorAuthenticate", e.unbindUserDevice = "unbindUserDevice", e.searchNumberHistory = "searchNumberHistory", e.changeWithdrawalCode = "changeWithdrawalCode", e.checkRedPacketToken = "checkRedPacketToken", e.submitWithdrawalAlipay = "submitWithdrawalAlipay", e.applyReliefFund = "applyReliefFund", e.getReliefFundData = "getReliefFundData", e.getReliefFundReport = "getReliefFundReport", e.getWeekCardData = "getWeekCardData", e.applyWeekCard = "applyWeekCard", e.getWeekCardClaim = "getWeekCardClaim", e))(s || {});
|
|
108
108
|
const ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
109
109
|
__proto__: null,
|
|
110
|
-
Api:
|
|
110
|
+
Api: s
|
|
111
111
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
112
112
|
var D = /* @__PURE__ */ ((e) => (e.default = "default", e.pay = "pay", e.auto = "auto", e.fix = "fix", e.manual = "manual", e.unknown = "unknown", e))(D || {});
|
|
113
113
|
const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -120,7 +120,7 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
120
120
|
depositMethod: !1,
|
|
121
121
|
depositor: !1,
|
|
122
122
|
uploadReceipt: !1
|
|
123
|
-
},
|
|
123
|
+
}, V = {
|
|
124
124
|
id: 0,
|
|
125
125
|
name: "",
|
|
126
126
|
type: D.unknown,
|
|
@@ -129,36 +129,36 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
129
129
|
requiredField: F
|
|
130
130
|
}, ue = (e) => {
|
|
131
131
|
var t;
|
|
132
|
-
return ((t = e.mdPaymentChannels) == null ? void 0 : t.map((
|
|
132
|
+
return ((t = e.mdPaymentChannels) == null ? void 0 : t.map((a) => {
|
|
133
133
|
const u = [];
|
|
134
|
-
switch (
|
|
134
|
+
switch (a.name) {
|
|
135
135
|
case D.default:
|
|
136
|
-
u.push(H(
|
|
136
|
+
u.push(H(a.paymentmethod.manual, e));
|
|
137
137
|
break;
|
|
138
138
|
case D.pay:
|
|
139
|
-
u.push(de(
|
|
139
|
+
u.push(de(a.paymentmethod.onlinebanking, e));
|
|
140
140
|
break;
|
|
141
141
|
default:
|
|
142
|
-
if (
|
|
143
|
-
ce(
|
|
144
|
-
),
|
|
145
|
-
let
|
|
146
|
-
for (let l = 0; l <
|
|
147
|
-
const d =
|
|
142
|
+
if (a.paymentmethod.auto.bank.length > 0 && u.push(
|
|
143
|
+
ce(a.bankid ?? 0, a.paymentmethod.auto, e)
|
|
144
|
+
), a.paymentmethod.manual.bank.length > 0) {
|
|
145
|
+
let i = !1;
|
|
146
|
+
for (let l = 0; l < a.paymentmethod.manual.bank.length; l++) {
|
|
147
|
+
const d = a.paymentmethod.manual.bank[l];
|
|
148
148
|
if (d.list && d.list.length > 0) {
|
|
149
|
-
|
|
149
|
+
i = !0;
|
|
150
150
|
break;
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
|
-
|
|
153
|
+
i && u.push(H(a.paymentmethod.manual, e));
|
|
154
154
|
}
|
|
155
|
-
|
|
156
|
-
me(
|
|
155
|
+
a.paymentmethod.fixamount.bank.length > 0 && u.push(
|
|
156
|
+
me(a.bankid ?? 0, a.paymentmethod.fixamount)
|
|
157
157
|
);
|
|
158
158
|
}
|
|
159
159
|
return {
|
|
160
|
-
name:
|
|
161
|
-
imageUrl: `/image/game/native/deposit/sidemenu/${
|
|
160
|
+
name: a.label,
|
|
161
|
+
imageUrl: `/image/game/native/deposit/sidemenu/${a.name}.png?${e.systemtime}`,
|
|
162
162
|
paymentList: u
|
|
163
163
|
};
|
|
164
164
|
})) ?? [];
|
|
@@ -169,18 +169,18 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
169
169
|
disabled: !0,
|
|
170
170
|
welcomeBonus: !1,
|
|
171
171
|
dailyBonus: !1
|
|
172
|
-
},
|
|
172
|
+
}, a = e.map((u) => ({
|
|
173
173
|
id: u.promoindex,
|
|
174
174
|
name: u.promodesc,
|
|
175
175
|
disabled: !1,
|
|
176
176
|
welcomeBonus: u.dtype === "5" && u.type === "F",
|
|
177
177
|
dailyBonus: u.dtype === "5" && u.type === "D"
|
|
178
178
|
}));
|
|
179
|
-
return [t, ...
|
|
180
|
-
}, N = (e, t,
|
|
181
|
-
let
|
|
182
|
-
|
|
183
|
-
const d = Math.round(
|
|
179
|
+
return [t, ...a];
|
|
180
|
+
}, N = (e, t, a, u) => {
|
|
181
|
+
let i, l;
|
|
182
|
+
a > 0 ? i = e > 0 ? Math.max(a, e) : a : i = Math.max(e, 0), u > 0 ? l = t > 0 ? Math.min(u, t) : u : l = Math.max(t, 0);
|
|
183
|
+
const d = Math.round(i);
|
|
184
184
|
let m = 1e3;
|
|
185
185
|
l < m && (m = Math.round(l));
|
|
186
186
|
const f = m - d;
|
|
@@ -209,20 +209,20 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
209
209
|
name: "manualMethod",
|
|
210
210
|
type: D.manual,
|
|
211
211
|
promo: B(e.promo),
|
|
212
|
-
bank: e.bank.map((
|
|
213
|
-
const l =
|
|
212
|
+
bank: e.bank.map((i) => {
|
|
213
|
+
const l = i.list && i.list.length > 0 ? i.list[0].mintransaction ?? "0.00" : "0.00", d = i.list && i.list.length > 0 ? i.list[0].maxtransaction ?? "0.00" : "0.00", { amountList: m, minAmount: f, maxAmount: g } = N(
|
|
214
214
|
Number(l),
|
|
215
215
|
Number(d),
|
|
216
216
|
t.mdBankLevelDetail.deposit_min,
|
|
217
217
|
t.mdBankLevelDetail.deposit_max
|
|
218
218
|
);
|
|
219
219
|
return t.mdManualDepositRequireField.depositor = !0, {
|
|
220
|
-
id:
|
|
221
|
-
bankAccountId:
|
|
222
|
-
name:
|
|
223
|
-
accountName:
|
|
224
|
-
accountNo:
|
|
225
|
-
qrcode:
|
|
220
|
+
id: i.bankindex ?? 0,
|
|
221
|
+
bankAccountId: i.list && i.list.length > 0 ? i.list[0].bankaccountindex ?? 0 : 0,
|
|
222
|
+
name: i.list && i.list.length > 0 ? i.list[0].label ?? "" : "",
|
|
223
|
+
accountName: i.list && i.list.length > 0 ? i.list[0].bankaccountname ?? "" : "",
|
|
224
|
+
accountNo: i.list && i.list.length > 0 ? i.list[0].bankaccountno ?? "" : "",
|
|
225
|
+
qrcode: i.list && i.list.length > 0 ? i.list[0].bankaccountdesc : "",
|
|
226
226
|
amountList: m,
|
|
227
227
|
min: f,
|
|
228
228
|
max: g
|
|
@@ -236,14 +236,14 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
236
236
|
depositor: t.mdManualDepositRequireField.depositor,
|
|
237
237
|
uploadReceipt: t.mdUploadReceipt
|
|
238
238
|
}
|
|
239
|
-
} :
|
|
239
|
+
} : V, de = (e, t) => t ? {
|
|
240
240
|
id: 0,
|
|
241
241
|
name: "onlineBankingMethod",
|
|
242
242
|
type: D.pay,
|
|
243
243
|
promo: B(e.promo),
|
|
244
|
-
bank: e.banklist.map((
|
|
244
|
+
bank: e.banklist.map((i) => {
|
|
245
245
|
let l = "0.00", d = "0.00";
|
|
246
|
-
const m =
|
|
246
|
+
const m = i.bankindex ?? 0;
|
|
247
247
|
for (let S = 0; S < t.mdGatewayMinMax.length; S++)
|
|
248
248
|
t.mdGatewayMinMax[S].bankindex == m.toString() && (l = t.mdGatewayMinMax[S].min, d = t.mdGatewayMinMax[S].max);
|
|
249
249
|
const { amountList: f, minAmount: g, maxAmount: _ } = N(
|
|
@@ -257,7 +257,7 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
257
257
|
amountList: f,
|
|
258
258
|
min: g,
|
|
259
259
|
max: _
|
|
260
|
-
}, M =
|
|
260
|
+
}, M = i.pg.map((S) => {
|
|
261
261
|
const O = S.mintransaction ?? "0.00", G = S.maxtransaction ?? "0.00", { amountList: U, minAmount: R, maxAmount: $ } = N(
|
|
262
262
|
Number(O),
|
|
263
263
|
Number(G),
|
|
@@ -273,8 +273,8 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
273
273
|
};
|
|
274
274
|
});
|
|
275
275
|
return {
|
|
276
|
-
id:
|
|
277
|
-
name:
|
|
276
|
+
id: i.bankindex ?? 0,
|
|
277
|
+
name: i.banknameenglish ?? "",
|
|
278
278
|
amountList: [],
|
|
279
279
|
min: 0,
|
|
280
280
|
max: 0,
|
|
@@ -282,18 +282,18 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
282
282
|
};
|
|
283
283
|
}),
|
|
284
284
|
requiredField: F
|
|
285
|
-
} :
|
|
286
|
-
if (!
|
|
285
|
+
} : V, ce = (e, t, a) => {
|
|
286
|
+
if (!a) return V;
|
|
287
287
|
const u = D.auto;
|
|
288
|
-
let
|
|
289
|
-
const l =
|
|
290
|
-
if (t.bank.length > 0 &&
|
|
291
|
-
|
|
288
|
+
let i = [];
|
|
289
|
+
const l = a.mdGatewayMinMax ?? [];
|
|
290
|
+
if (t.bank.length > 0 && a.mdPGSelection === "1")
|
|
291
|
+
i = t.bank.map((m) => {
|
|
292
292
|
const { amountList: f, minAmount: g, maxAmount: _ } = N(
|
|
293
293
|
m.mintransaction ?? 0,
|
|
294
294
|
m.maxtransaction ?? 0,
|
|
295
|
-
|
|
296
|
-
|
|
295
|
+
a.mdBankLevelDetail.onlinepayment_min,
|
|
296
|
+
a.mdBankLevelDetail.onlinepayment_max
|
|
297
297
|
);
|
|
298
298
|
return {
|
|
299
299
|
id: m.pgindex ?? 0,
|
|
@@ -310,8 +310,8 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
310
310
|
const { amountList: g, minAmount: _, maxAmount: h } = N(
|
|
311
311
|
Number(m),
|
|
312
312
|
Number(f),
|
|
313
|
-
|
|
314
|
-
|
|
313
|
+
a.mdBankLevelDetail.onlinepayment_min,
|
|
314
|
+
a.mdBankLevelDetail.onlinepayment_max
|
|
315
315
|
), M = {
|
|
316
316
|
id: 0,
|
|
317
317
|
name: "autoChannel",
|
|
@@ -319,29 +319,29 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
319
319
|
min: _,
|
|
320
320
|
max: h
|
|
321
321
|
};
|
|
322
|
-
|
|
322
|
+
i.push(M);
|
|
323
323
|
}
|
|
324
324
|
return {
|
|
325
325
|
id: e,
|
|
326
326
|
name: "autoMethod",
|
|
327
327
|
type: u,
|
|
328
328
|
promo: B(t.promo),
|
|
329
|
-
bank:
|
|
329
|
+
bank: i,
|
|
330
330
|
requiredField: F
|
|
331
331
|
};
|
|
332
332
|
}, me = (e, t) => {
|
|
333
|
-
const
|
|
333
|
+
const a = D.fix;
|
|
334
334
|
return {
|
|
335
335
|
id: e,
|
|
336
336
|
name: "fixAmountMethod",
|
|
337
|
-
type:
|
|
337
|
+
type: a,
|
|
338
338
|
promo: B(t.promo),
|
|
339
|
-
bank: t.bank.map((
|
|
340
|
-
const l =
|
|
339
|
+
bank: t.bank.map((i) => {
|
|
340
|
+
const l = i.amtlist.map(Number).sort((m, f) => m - f);
|
|
341
341
|
return {
|
|
342
|
-
id:
|
|
343
|
-
name:
|
|
344
|
-
amountList:
|
|
342
|
+
id: i.pgindex,
|
|
343
|
+
name: i.name,
|
|
344
|
+
amountList: i.amtlist,
|
|
345
345
|
min: l.length > 0 ? l[0] : 0,
|
|
346
346
|
max: l.length > 0 ? l[l.length - 1] : 0
|
|
347
347
|
};
|
|
@@ -360,7 +360,7 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
360
360
|
phoneNumber: e.mdUserDetail.mobileno ?? "",
|
|
361
361
|
profilePicUrl: e.mdUserDetail.profile_pic
|
|
362
362
|
}), be = (e) => {
|
|
363
|
-
var t,
|
|
363
|
+
var t, a, u, i;
|
|
364
364
|
return {
|
|
365
365
|
platformGame: ((t = e.mdGameListResult) == null ? void 0 : t.map((l) => {
|
|
366
366
|
var d;
|
|
@@ -384,7 +384,7 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
384
384
|
}))) ?? []
|
|
385
385
|
};
|
|
386
386
|
})) ?? [],
|
|
387
|
-
hotGameList: e.mdGameLists !== null ? ((u = (
|
|
387
|
+
hotGameList: e.mdGameLists !== null ? ((u = (a = e.mdGameLists) == null ? void 0 : a.data) == null ? void 0 : u.map((l) => ({
|
|
388
388
|
gameId: Number(l.id),
|
|
389
389
|
platformId: Number(l.id_PlatformProduct),
|
|
390
390
|
name: l.name,
|
|
@@ -397,7 +397,7 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
397
397
|
imageUrl: `${e.mdDomains[l.mdDomains_id]}${l.img}?ts=${l.filemtime}`,
|
|
398
398
|
rate: "0.00"
|
|
399
399
|
}))) ?? [] : [],
|
|
400
|
-
platformGameList: e.mdGameLists !== null && e.mdGameLists.length > 0 ? ((
|
|
400
|
+
platformGameList: e.mdGameLists !== null && e.mdGameLists.length > 0 ? ((i = e.mdGameLists) == null ? void 0 : i.map((l) => ({
|
|
401
401
|
gameId: Number(l.id),
|
|
402
402
|
platformId: Number(l.id_PlatformProduct),
|
|
403
403
|
name: l.name,
|
|
@@ -429,13 +429,13 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
429
429
|
current: "0",
|
|
430
430
|
total: t.min_deposit
|
|
431
431
|
},
|
|
432
|
-
promo_list: t.promocash.filter((
|
|
433
|
-
name:
|
|
434
|
-
min_deposit:
|
|
435
|
-
promo_bonus:
|
|
436
|
-
promo_limit:
|
|
437
|
-
turnover_multiplier:
|
|
438
|
-
type:
|
|
432
|
+
promo_list: t.promocash.filter((a) => a.isshow == 1 && a.status == "1").map((a) => ({
|
|
433
|
+
name: a.promosimplified,
|
|
434
|
+
min_deposit: a.min_deposit,
|
|
435
|
+
promo_bonus: a.percentage,
|
|
436
|
+
promo_limit: a.max_promo_amt,
|
|
437
|
+
turnover_multiplier: a.multiply,
|
|
438
|
+
type: a.promo_type
|
|
439
439
|
})),
|
|
440
440
|
benefit_list: t.benefit
|
|
441
441
|
})),
|
|
@@ -470,17 +470,17 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
470
470
|
}
|
|
471
471
|
}
|
|
472
472
|
}), ye = (e) => ({
|
|
473
|
-
category: e.category.sort((t,
|
|
473
|
+
category: e.category.sort((t, a) => t.sequence - a.sequence).map((t) => ({
|
|
474
474
|
id: t.catid,
|
|
475
475
|
name: t.name
|
|
476
476
|
})),
|
|
477
|
-
list: e.list.sort((t,
|
|
478
|
-
let
|
|
479
|
-
return t.stime !== "" && t.etime !== "" && (
|
|
477
|
+
list: e.list.sort((t, a) => t.sequence - a.sequence).map((t) => {
|
|
478
|
+
let a = "";
|
|
479
|
+
return t.stime !== "" && t.etime !== "" && (a = `${t.stime} - ${t.etime}`), t.stime !== "" && t.etime === "" && (a = t.stime), t.stime === "" && t.etime !== "" && (a = t.etime), {
|
|
480
480
|
categoryId: t.catid,
|
|
481
481
|
imgUrl: t.banner,
|
|
482
482
|
content: t.content,
|
|
483
|
-
time:
|
|
483
|
+
time: a,
|
|
484
484
|
name: t.title
|
|
485
485
|
};
|
|
486
486
|
})
|
|
@@ -494,9 +494,9 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
494
494
|
day: {
|
|
495
495
|
isClaimable: e.day === 1
|
|
496
496
|
}
|
|
497
|
-
}), he = (e) => e.mdVipSetting.filter((
|
|
498
|
-
fieldName:
|
|
499
|
-
showName:
|
|
497
|
+
}), he = (e) => e.mdVipSetting.filter((a) => a.status == 1).map((a) => ({
|
|
498
|
+
fieldName: a.fieldname,
|
|
499
|
+
showName: a.showname
|
|
500
500
|
})), Te = (e) => ({
|
|
501
501
|
current_deposit: e.deposit,
|
|
502
502
|
current_turnover: e.turnOver,
|
|
@@ -506,15 +506,15 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
506
506
|
}), ve = (e) => {
|
|
507
507
|
let t = 4;
|
|
508
508
|
e.vipcalculation && (t = Number(e.vipcalculation));
|
|
509
|
-
let
|
|
510
|
-
return e.extralivechat && (
|
|
509
|
+
let a = [];
|
|
510
|
+
return e.extralivechat && (a = JSON.parse(e.extralivechat)), {
|
|
511
511
|
vipCalculation: t,
|
|
512
512
|
livechat: e.livechat ?? "",
|
|
513
|
-
livechatList:
|
|
514
|
-
let
|
|
515
|
-
return
|
|
513
|
+
livechatList: a.filter((u) => u.status == 1).map((u) => {
|
|
514
|
+
let i = u.imgname;
|
|
515
|
+
return i.slice(-4) === ".png" && (i = u.imgname.slice(0, -4)), {
|
|
516
516
|
name: u.name,
|
|
517
|
-
imageUrl: `/image/game/native/customer_service/${
|
|
517
|
+
imageUrl: `/image/game/native/customer_service/${i}.png`,
|
|
518
518
|
url: u.url
|
|
519
519
|
};
|
|
520
520
|
}),
|
|
@@ -530,21 +530,21 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
530
530
|
crypto: e.crypto === "1"
|
|
531
531
|
};
|
|
532
532
|
}, Re = (e) => {
|
|
533
|
-
var t,
|
|
533
|
+
var t, a, u;
|
|
534
534
|
return {
|
|
535
|
-
banner: ((t = e.mobileBanner) == null ? void 0 : t.map((
|
|
536
|
-
ad: ((
|
|
537
|
-
about: ((u = e.mobileAbout) == null ? void 0 : u.map((
|
|
538
|
-
name:
|
|
539
|
-
content:
|
|
535
|
+
banner: ((t = e.mobileBanner) == null ? void 0 : t.map((i) => `${i.imagepath}?${i.filemtime}`)) ?? [],
|
|
536
|
+
ad: ((a = e.mobileAd) == null ? void 0 : a.map((i) => `${i.imagepath}?${i.filemtime}`)) ?? [],
|
|
537
|
+
about: ((u = e.mobileAbout) == null ? void 0 : u.map((i) => ({
|
|
538
|
+
name: i.name,
|
|
539
|
+
content: i.content
|
|
540
540
|
}))) ?? []
|
|
541
541
|
};
|
|
542
542
|
}, Se = (e) => {
|
|
543
543
|
var t;
|
|
544
|
-
return ((t = e.data) == null ? void 0 : t.filter((
|
|
545
|
-
code:
|
|
546
|
-
regex:
|
|
547
|
-
value:
|
|
544
|
+
return ((t = e.data) == null ? void 0 : t.filter((a) => a.status == "1").map((a) => ({
|
|
545
|
+
code: a.area_code,
|
|
546
|
+
regex: a.regex,
|
|
547
|
+
value: a.value
|
|
548
548
|
}))) ?? [];
|
|
549
549
|
}, ke = (e) => e, Pe = (e) => {
|
|
550
550
|
let t = null;
|
|
@@ -553,71 +553,71 @@ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
553
553
|
};
|
|
554
554
|
}, Oe = (e) => {
|
|
555
555
|
var t;
|
|
556
|
-
return ((t = e.data) == null ? void 0 : t.filter((
|
|
557
|
-
name:
|
|
558
|
-
code:
|
|
559
|
-
iconUrl:
|
|
556
|
+
return ((t = e.data) == null ? void 0 : t.filter((a) => a.status == "1").map((a) => ({
|
|
557
|
+
name: a.title,
|
|
558
|
+
code: a.code,
|
|
559
|
+
iconUrl: a.flag_icon
|
|
560
560
|
}))) ?? [];
|
|
561
561
|
}, Me = (e) => (console.log(e), {
|
|
562
562
|
name: ""
|
|
563
563
|
}), je = (e) => {
|
|
564
564
|
var t;
|
|
565
|
-
return ((t = e.data) == null ? void 0 : t.filter((
|
|
566
|
-
id:
|
|
567
|
-
name:
|
|
565
|
+
return ((t = e.data) == null ? void 0 : t.filter((a) => a.company_status == 1).map((a) => ({
|
|
566
|
+
id: a.company_id,
|
|
567
|
+
name: a.company_name,
|
|
568
568
|
date: []
|
|
569
569
|
}))) ?? [];
|
|
570
570
|
}, xe = (e) => {
|
|
571
571
|
var t;
|
|
572
|
-
return ((t = e.data) == null ? void 0 : t.map((
|
|
572
|
+
return ((t = e.data) == null ? void 0 : t.map((a) => {
|
|
573
573
|
var u;
|
|
574
574
|
return {
|
|
575
|
-
id:
|
|
576
|
-
date: ((u =
|
|
575
|
+
id: a.key,
|
|
576
|
+
date: ((u = a.draw_date) == null ? void 0 : u.map((i) => De(i.draw_tmactive))) ?? []
|
|
577
577
|
};
|
|
578
578
|
})) ?? [];
|
|
579
579
|
};
|
|
580
580
|
function De(e) {
|
|
581
|
-
const t = new Date(e * 1e3),
|
|
582
|
-
return `${
|
|
581
|
+
const t = new Date(e * 1e3), a = t.getFullYear(), u = ("0" + (t.getMonth() + 1)).slice(-2), i = ("0" + t.getDate()).slice(-2);
|
|
582
|
+
return `${a}-${u}-${i}`;
|
|
583
583
|
}
|
|
584
584
|
const Ce = (e) => {
|
|
585
585
|
var t;
|
|
586
|
-
return ((t = e.data) == null ? void 0 : t.map((
|
|
586
|
+
return ((t = e.data) == null ? void 0 : t.map((a) => {
|
|
587
587
|
var u;
|
|
588
588
|
return {
|
|
589
|
-
id:
|
|
590
|
-
name:
|
|
591
|
-
list: ((u =
|
|
592
|
-
combination:
|
|
593
|
-
total:
|
|
589
|
+
id: a.company_id,
|
|
590
|
+
name: a.company_name,
|
|
591
|
+
list: ((u = a.drawCount) == null ? void 0 : u.map((i) => ({
|
|
592
|
+
combination: i.combination_combination,
|
|
593
|
+
total: i.total
|
|
594
594
|
}))) ?? []
|
|
595
595
|
};
|
|
596
596
|
})) ?? [];
|
|
597
597
|
}, we = (e) => e.data.map((t) => ({
|
|
598
598
|
companyId: t.company_id,
|
|
599
599
|
companyName: t.company_name,
|
|
600
|
-
resultByDateList: t.draws.map((
|
|
601
|
-
const u =
|
|
600
|
+
resultByDateList: t.draws.map((a) => {
|
|
601
|
+
const u = a.results.filter((p) => p.combination_dimension == 3).map((p) => p.combination_combination), i = a.results.filter(
|
|
602
602
|
(p) => p.combination_dimension == 4 && p.combination_position === 1
|
|
603
|
-
).map((p) => p.combination_combination), l =
|
|
603
|
+
).map((p) => p.combination_combination), l = a.results.filter(
|
|
604
604
|
(p) => p.combination_dimension === 4 && p.combination_position === 2
|
|
605
|
-
).map((p) => p.combination_combination), d =
|
|
605
|
+
).map((p) => p.combination_combination), d = a.results.filter(
|
|
606
606
|
(p) => p.combination_dimension === 4 && p.combination_position === 3
|
|
607
|
-
).map((p) => p.combination_combination), m =
|
|
607
|
+
).map((p) => p.combination_combination), m = a.results.filter(
|
|
608
608
|
(p) => p.combination_dimension === 4 && p.combination_position === 4
|
|
609
|
-
).map((p) => p.combination_combination), f =
|
|
609
|
+
).map((p) => p.combination_combination), f = a.results.filter(
|
|
610
610
|
(p) => p.combination_dimension === 4 && p.combination_position === 5
|
|
611
|
-
).map((p) => p.combination_combination), g =
|
|
611
|
+
).map((p) => p.combination_combination), g = a.results.filter(
|
|
612
612
|
(p) => p.combination_dimension === 5 && p.combination_position === 1
|
|
613
|
-
).map((p) => p.combination_combination), _ =
|
|
613
|
+
).map((p) => p.combination_combination), _ = a.results.filter((p) => p.combination_dimension == 5).map((p) => p.combination_combination), h = a.results.filter(
|
|
614
614
|
(p) => p.combination_dimension === 6 && p.combination_position === 1
|
|
615
|
-
).map((p) => p.combination_combination), M =
|
|
615
|
+
).map((p) => p.combination_combination), M = a.results.filter((p) => p.combination_dimension === 6).map((p) => p.combination_combination);
|
|
616
616
|
return {
|
|
617
|
-
date:
|
|
617
|
+
date: a.date,
|
|
618
618
|
dimension_3: u,
|
|
619
619
|
dimension_4: {
|
|
620
|
-
prize_1:
|
|
620
|
+
prize_1: i,
|
|
621
621
|
prize_2: l,
|
|
622
622
|
prize_3: d,
|
|
623
623
|
prize_4: m,
|
|
@@ -659,7 +659,7 @@ const Ce = (e) => {
|
|
|
659
659
|
status: e.status == 1,
|
|
660
660
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? ""
|
|
661
661
|
}), ze = (e) => v(e), Ne = (e) => {
|
|
662
|
-
var t,
|
|
662
|
+
var t, a, u, i, l;
|
|
663
663
|
return {
|
|
664
664
|
bankCard: ((t = e.bankCard) == null ? void 0 : t.map((d) => {
|
|
665
665
|
var m, f;
|
|
@@ -678,7 +678,7 @@ const Ce = (e) => {
|
|
|
678
678
|
countryIndex: d.countryindex
|
|
679
679
|
};
|
|
680
680
|
})) ?? [],
|
|
681
|
-
bankList: ((
|
|
681
|
+
bankList: ((a = e.bankList) == null ? void 0 : a.map((d) => ({
|
|
682
682
|
bankIndex: d.bankindex,
|
|
683
683
|
bankType: d.bank_type,
|
|
684
684
|
bankName: d.banknamesimplified,
|
|
@@ -693,7 +693,7 @@ const Ce = (e) => {
|
|
|
693
693
|
label: d.label,
|
|
694
694
|
countryIndex: d.countryindex
|
|
695
695
|
}))) ?? [],
|
|
696
|
-
cryptoAccount: ((
|
|
696
|
+
cryptoAccount: ((i = e.mdAccountCrypto) == null ? void 0 : i.map((d) => ({
|
|
697
697
|
id: d.crypto_id,
|
|
698
698
|
type: d.type,
|
|
699
699
|
name: d.crypto_name,
|
|
@@ -724,19 +724,19 @@ const Ce = (e) => {
|
|
|
724
724
|
withdrawMaxFee: Number(e.withdrawMaxFee),
|
|
725
725
|
withdrawCount: e.withdrawCount
|
|
726
726
|
}), Be = (e) => v(e), Ue = (e) => {
|
|
727
|
-
var t,
|
|
727
|
+
var t, a, u, i, l, d;
|
|
728
728
|
return {
|
|
729
729
|
subStatusModes: ((t = e.subStatusModes) == null ? void 0 : t.map((m) => ({
|
|
730
730
|
key: m.key,
|
|
731
731
|
value: m.value
|
|
732
732
|
}))) ?? [],
|
|
733
|
-
subTransactionMethods: ((
|
|
733
|
+
subTransactionMethods: ((a = e.subTransactionMethods) == null ? void 0 : a.map((m) => ({
|
|
734
734
|
key: m.key,
|
|
735
735
|
value: m.value
|
|
736
736
|
}))) ?? [],
|
|
737
737
|
mdCashLedgers: {
|
|
738
738
|
currentPage: ((u = e.mdCashLedgers) == null ? void 0 : u.current_page) ?? 0,
|
|
739
|
-
lastPage: ((
|
|
739
|
+
lastPage: ((i = e.mdCashLedgers) == null ? void 0 : i.last_page) ?? 0,
|
|
740
740
|
data: ((d = (l = e.mdCashLedgers) == null ? void 0 : l.data) == null ? void 0 : d.map((m) => {
|
|
741
741
|
var f, g;
|
|
742
742
|
return {
|
|
@@ -744,7 +744,7 @@ const Ce = (e) => {
|
|
|
744
744
|
transactionIndex: m.transactionindex,
|
|
745
745
|
fund: {
|
|
746
746
|
id: m.fundindex,
|
|
747
|
-
desc:
|
|
747
|
+
desc: We(m.fundindex, m.transactionindex),
|
|
748
748
|
ext: m.fundindex === 3 ? `(${m.promo_cash})` : ""
|
|
749
749
|
},
|
|
750
750
|
status: {
|
|
@@ -761,7 +761,7 @@ const Ce = (e) => {
|
|
|
761
761
|
})) ?? []
|
|
762
762
|
}
|
|
763
763
|
};
|
|
764
|
-
},
|
|
764
|
+
}, We = (e, t) => {
|
|
765
765
|
switch (e) {
|
|
766
766
|
case 1:
|
|
767
767
|
if (t === 1)
|
|
@@ -791,12 +791,12 @@ const Ce = (e) => {
|
|
|
791
791
|
return "shareHolderDividend";
|
|
792
792
|
}
|
|
793
793
|
return "";
|
|
794
|
-
},
|
|
794
|
+
}, qe = (e) => ({
|
|
795
795
|
status: e.status == 1
|
|
796
|
-
}),
|
|
797
|
-
var
|
|
796
|
+
}), Ve = (e) => (e == null ? void 0 : e.map((t) => {
|
|
797
|
+
var a;
|
|
798
798
|
return {
|
|
799
|
-
activeCom: ((
|
|
799
|
+
activeCom: ((a = t.active_com) == null ? void 0 : a.map((u) => ({
|
|
800
800
|
code: u.code,
|
|
801
801
|
name: u.name,
|
|
802
802
|
categoryId: u.category_id,
|
|
@@ -820,9 +820,9 @@ const Ce = (e) => {
|
|
|
820
820
|
return {
|
|
821
821
|
status: e.status == 1,
|
|
822
822
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
823
|
-
data: ((t = e.data) == null ? void 0 : t.map((
|
|
824
|
-
id:
|
|
825
|
-
tokenAmount:
|
|
823
|
+
data: ((t = e.data) == null ? void 0 : t.map((a) => ({
|
|
824
|
+
id: a.id,
|
|
825
|
+
tokenAmount: a.token_amount
|
|
826
826
|
}))) ?? []
|
|
827
827
|
};
|
|
828
828
|
}, Ae = (e) => ({
|
|
@@ -839,20 +839,20 @@ const Ce = (e) => {
|
|
|
839
839
|
content: t.account_message_content.content
|
|
840
840
|
}))) ?? [], Je = (e) => {
|
|
841
841
|
var t;
|
|
842
|
-
return ((t = e.mdGameLists) == null ? void 0 : t.map((
|
|
843
|
-
id:
|
|
844
|
-
gameName:
|
|
845
|
-
platformProductID:
|
|
846
|
-
imgUrl: `${e.mdDomains[
|
|
842
|
+
return ((t = e.mdGameLists) == null ? void 0 : t.map((a) => ({
|
|
843
|
+
id: a.id,
|
|
844
|
+
gameName: a.name,
|
|
845
|
+
platformProductID: a.id_PlatformProduct,
|
|
846
|
+
imgUrl: `${e.mdDomains[a.mdDomains_id]}${a.img}?${a.filemtime}`
|
|
847
847
|
}))) ?? [];
|
|
848
848
|
}, Ye = (e) => e.mdGameLists.map((t) => ({
|
|
849
849
|
id: t.id,
|
|
850
850
|
name: t.name,
|
|
851
|
-
list: t.gameList.map((
|
|
852
|
-
const u = e.mdDomains, l = `${u.length >=
|
|
851
|
+
list: t.gameList.map((a) => {
|
|
852
|
+
const u = e.mdDomains, l = `${u.length >= a.mdDomains_id ? u[a.mdDomains_id] : ""}${a.img}?${a.filemtime}`;
|
|
853
853
|
return {
|
|
854
|
-
id:
|
|
855
|
-
name:
|
|
854
|
+
id: a.id,
|
|
855
|
+
name: a.name,
|
|
856
856
|
imageUrl: l
|
|
857
857
|
};
|
|
858
858
|
})
|
|
@@ -871,16 +871,16 @@ const Ce = (e) => {
|
|
|
871
871
|
totalReward: e.data.total_reward,
|
|
872
872
|
unclaimReward: e.data.unclaim_reward.toString()
|
|
873
873
|
}, Qe = (e) => {
|
|
874
|
-
const t = /* @__PURE__ */ new Set(),
|
|
874
|
+
const t = /* @__PURE__ */ new Set(), a = e.data.map((l) => (t.add(l.downline), {
|
|
875
875
|
id: l.logindex,
|
|
876
876
|
name: l.firstname,
|
|
877
877
|
cashback: l.turnover,
|
|
878
878
|
commission: l.income
|
|
879
|
-
})), u = e.data.reduce((l, d) => l + parseFloat(d.income), 0),
|
|
879
|
+
})), u = e.data.reduce((l, d) => l + parseFloat(d.income), 0), i = t.size;
|
|
880
880
|
return {
|
|
881
881
|
totalReward: u,
|
|
882
|
-
totalCount:
|
|
883
|
-
list:
|
|
882
|
+
totalCount: i,
|
|
883
|
+
list: a
|
|
884
884
|
};
|
|
885
885
|
}, Xe = (e) => e.status == 0 ? {
|
|
886
886
|
claimedReward: "0",
|
|
@@ -897,18 +897,18 @@ const Ce = (e) => {
|
|
|
897
897
|
totalReward: e.data.total_reward,
|
|
898
898
|
unclaimReward: e.data.unclaim_reward.toString()
|
|
899
899
|
}, Ze = (e) => {
|
|
900
|
-
const t = /* @__PURE__ */ new Set(),
|
|
900
|
+
const t = /* @__PURE__ */ new Set(), a = e.data.map((l) => (t.add(l.accountid), {
|
|
901
901
|
id: l.id,
|
|
902
902
|
name: l.firstname,
|
|
903
903
|
dateCreated: l.created,
|
|
904
904
|
deposit: l.deposit,
|
|
905
905
|
activeBet: l.activebet,
|
|
906
906
|
commission: l.reward
|
|
907
|
-
})), u = e.data.reduce((l, d) => l + parseFloat(d.reward), 0),
|
|
907
|
+
})), u = e.data.reduce((l, d) => l + parseFloat(d.reward), 0), i = t.size;
|
|
908
908
|
return {
|
|
909
909
|
totalReward: u,
|
|
910
|
-
totalCount:
|
|
911
|
-
list:
|
|
910
|
+
totalCount: i,
|
|
911
|
+
list: a
|
|
912
912
|
};
|
|
913
913
|
}, et = (e) => e.status == 0 ? {
|
|
914
914
|
claimedReward: "0",
|
|
@@ -925,18 +925,18 @@ const Ce = (e) => {
|
|
|
925
925
|
totalReward: e.data.total_reward,
|
|
926
926
|
unclaimReward: e.data.unclaim_reward.toString()
|
|
927
927
|
}, tt = (e) => {
|
|
928
|
-
const t = /* @__PURE__ */ new Set(),
|
|
928
|
+
const t = /* @__PURE__ */ new Set(), a = e.data.map((l) => (t.add(l.accountid), {
|
|
929
929
|
id: l.logindex,
|
|
930
930
|
name: l.firstname,
|
|
931
931
|
total: l.deposit,
|
|
932
932
|
commission: l.reward
|
|
933
|
-
})), u = e.data.reduce((l, d) => l + parseFloat(d.reward), 0),
|
|
933
|
+
})), u = e.data.reduce((l, d) => l + parseFloat(d.reward), 0), i = t.size;
|
|
934
934
|
return {
|
|
935
935
|
totalReward: u,
|
|
936
|
-
totalCount:
|
|
937
|
-
list:
|
|
936
|
+
totalCount: i,
|
|
937
|
+
list: a
|
|
938
938
|
};
|
|
939
|
-
},
|
|
939
|
+
}, at = (e) => e.status == 0 ? {
|
|
940
940
|
directDownline: "0",
|
|
941
941
|
otherDownline: "0",
|
|
942
942
|
uplineCode: "",
|
|
@@ -946,9 +946,9 @@ const Ce = (e) => {
|
|
|
946
946
|
otherDownline: e.data.others_downline_count.toString(),
|
|
947
947
|
uplineCode: e.data.upline.accountcode,
|
|
948
948
|
referralCode: e.data.referral_code
|
|
949
|
-
},
|
|
949
|
+
}, nt = (e) => {
|
|
950
950
|
var f;
|
|
951
|
-
let t = null,
|
|
951
|
+
let t = null, a = null;
|
|
952
952
|
if (e.status == 0)
|
|
953
953
|
return { welcomeBonus: null, dailyBonus: null };
|
|
954
954
|
const u = e.data.filter((g) => g.dtype == "5" && g.type == "F").map((g) => {
|
|
@@ -965,7 +965,7 @@ const Ce = (e) => {
|
|
|
965
965
|
};
|
|
966
966
|
});
|
|
967
967
|
u.length > 0 && (t = u[0]);
|
|
968
|
-
const
|
|
968
|
+
const i = e.data.filter((g) => g.dtype == "5" && g.type == "D").map((g) => {
|
|
969
969
|
const _ = Math.min(
|
|
970
970
|
Number(g.min_deposit) * Number(g.percentage) / 100,
|
|
971
971
|
Number(g.max_promo_amt)
|
|
@@ -978,17 +978,17 @@ const Ce = (e) => {
|
|
|
978
978
|
expiryTime: g.etime
|
|
979
979
|
};
|
|
980
980
|
});
|
|
981
|
-
let l = 0, d = ((f =
|
|
982
|
-
const m =
|
|
981
|
+
let l = 0, d = ((f = i[0]) == null ? void 0 : f.expiryTime) || "";
|
|
982
|
+
const m = i.map((g) => (l = Math.max(l, g.percentage), new Date(g.expiryTime) < new Date(d) && (d = g.expiryTime), {
|
|
983
983
|
name: g.name,
|
|
984
984
|
depositAmount: g.depositAmount,
|
|
985
985
|
promoAmount: g.promoAmount
|
|
986
986
|
}));
|
|
987
|
-
return
|
|
987
|
+
return a = {
|
|
988
988
|
percentage: l,
|
|
989
989
|
expiryTime: d,
|
|
990
990
|
list: m
|
|
991
|
-
}, { welcomeBonus: t, dailyBonus:
|
|
991
|
+
}, { welcomeBonus: t, dailyBonus: a };
|
|
992
992
|
}, ot = (e) => ({
|
|
993
993
|
status: e.status == 1,
|
|
994
994
|
message: e.msg ?? ""
|
|
@@ -1010,14 +1010,14 @@ const Ce = (e) => {
|
|
|
1010
1010
|
if (e.status == 0 || !e.data)
|
|
1011
1011
|
return {};
|
|
1012
1012
|
const t = {};
|
|
1013
|
-
for (const
|
|
1014
|
-
if (Object.prototype.hasOwnProperty.call(e.data,
|
|
1015
|
-
const u = e.data[
|
|
1016
|
-
t[
|
|
1017
|
-
for (let
|
|
1018
|
-
const l = u[
|
|
1013
|
+
for (const a in e.data)
|
|
1014
|
+
if (Object.prototype.hasOwnProperty.call(e.data, a)) {
|
|
1015
|
+
const u = e.data[a];
|
|
1016
|
+
t[a] = [];
|
|
1017
|
+
for (let i = 0; i < u.length; i++) {
|
|
1018
|
+
const l = u[i];
|
|
1019
1019
|
let d = "";
|
|
1020
|
-
u.length >
|
|
1020
|
+
u.length > i + 1 && (d = (Number(u[i + 1].achievement) - 1).toString()), t[a].push({
|
|
1021
1021
|
rate: l.rate,
|
|
1022
1022
|
minValue: l.achievement.toString(),
|
|
1023
1023
|
maxValue: d
|
|
@@ -1029,14 +1029,14 @@ const Ce = (e) => {
|
|
|
1029
1029
|
if (e.status == 0 || !e.data)
|
|
1030
1030
|
return {};
|
|
1031
1031
|
const t = {};
|
|
1032
|
-
for (const
|
|
1033
|
-
if (Object.prototype.hasOwnProperty.call(e.data,
|
|
1034
|
-
const u = e.data[
|
|
1035
|
-
t[
|
|
1036
|
-
for (let
|
|
1037
|
-
const l = u[
|
|
1032
|
+
for (const a in e.data)
|
|
1033
|
+
if (Object.prototype.hasOwnProperty.call(e.data, a)) {
|
|
1034
|
+
const u = e.data[a];
|
|
1035
|
+
t[a] = [];
|
|
1036
|
+
for (let i = 0; i < u.length; i++) {
|
|
1037
|
+
const l = u[i];
|
|
1038
1038
|
let d = "";
|
|
1039
|
-
u.length >
|
|
1039
|
+
u.length > i + 1 && (d = (Number(u[i + 1].achievement) - 1).toString()), t[a].push({
|
|
1040
1040
|
rate: l.rate,
|
|
1041
1041
|
minValue: l.achievement,
|
|
1042
1042
|
maxValue: d
|
|
@@ -1045,17 +1045,17 @@ const Ce = (e) => {
|
|
|
1045
1045
|
}
|
|
1046
1046
|
return t;
|
|
1047
1047
|
}, dt = (e) => v(e), ct = (e) => v(e), mt = (e) => {
|
|
1048
|
-
var t,
|
|
1048
|
+
var t, a, u, i, l;
|
|
1049
1049
|
return {
|
|
1050
1050
|
status: e.status == 1,
|
|
1051
1051
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1052
1052
|
default: ((t = e.data) == null ? void 0 : t.default) ?? [],
|
|
1053
|
-
online: ((
|
|
1053
|
+
online: ((a = e.data) == null ? void 0 : a.online) ?? [],
|
|
1054
1054
|
mycard: ((u = e.data) == null ? void 0 : u.mycard) ?? [],
|
|
1055
|
-
qrcode: ((
|
|
1055
|
+
qrcode: ((i = e.data) == null ? void 0 : i.qrcode) ?? [],
|
|
1056
1056
|
personal: ((l = e.data) == null ? void 0 : l.personal) ?? []
|
|
1057
1057
|
};
|
|
1058
|
-
},
|
|
1058
|
+
}, W = (e) => (console.log(e), {
|
|
1059
1059
|
validated: e.withdrawValidate === 1 || e.depositValidate === 1 || e.TransferCreditValidate === 1,
|
|
1060
1060
|
forms: pt(e)
|
|
1061
1061
|
}), pt = (e) => e.subDepositForms && e.subDepositForms.length > 0 ? e.subDepositForms.map((t) => ({
|
|
@@ -1099,15 +1099,15 @@ const Ce = (e) => {
|
|
|
1099
1099
|
return {
|
|
1100
1100
|
status: e.status == 1,
|
|
1101
1101
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1102
|
-
countryList: ((t = e.data) == null ? void 0 : t.map((
|
|
1103
|
-
var u,
|
|
1102
|
+
countryList: ((t = e.data) == null ? void 0 : t.map((a) => {
|
|
1103
|
+
var u, i;
|
|
1104
1104
|
return {
|
|
1105
|
-
countryIndex:
|
|
1106
|
-
currencyName:
|
|
1107
|
-
label:
|
|
1105
|
+
countryIndex: a.countryindex,
|
|
1106
|
+
currencyName: a.currency_name ?? "",
|
|
1107
|
+
label: a.label,
|
|
1108
1108
|
currencyRate: {
|
|
1109
|
-
depositCurrencyRate: ((u =
|
|
1110
|
-
withdrawCurrencyRate: ((
|
|
1109
|
+
depositCurrencyRate: ((u = a.currency_rate) == null ? void 0 : u.currency_rate_deposit) ?? "",
|
|
1110
|
+
withdrawCurrencyRate: ((i = a.currency_rate) == null ? void 0 : i.currency_rate_withdraw) ?? ""
|
|
1111
1111
|
}
|
|
1112
1112
|
};
|
|
1113
1113
|
})) ?? []
|
|
@@ -1115,26 +1115,29 @@ const Ce = (e) => {
|
|
|
1115
1115
|
}, St = (e) => ({
|
|
1116
1116
|
status: e.status == 1,
|
|
1117
1117
|
message: e.msg ?? ""
|
|
1118
|
-
}), kt = (e) => (
|
|
1119
|
-
|
|
1120
|
-
|
|
1118
|
+
}), kt = (e) => ({
|
|
1119
|
+
status: e.status == 1,
|
|
1120
|
+
message: e.msg ?? "",
|
|
1121
|
+
form: e.form ?? "",
|
|
1122
|
+
gameUrl: e.data ?? ""
|
|
1123
|
+
}), Pt = (e) => v(e), Ot = (e) => v(e), q = (e) => ({
|
|
1121
1124
|
status: e.status == 1,
|
|
1122
1125
|
message: e.errormessage ?? ""
|
|
1123
1126
|
}), Mt = (e) => v(e), jt = (e) => e, xt = (e) => v(e), Dt = (e) => {
|
|
1124
1127
|
var t;
|
|
1125
1128
|
return {
|
|
1126
|
-
platformProduct: ((t = e.mdPlatformProduct) == null ? void 0 : t.map((
|
|
1127
|
-
productMasterId:
|
|
1128
|
-
name:
|
|
1129
|
-
com:
|
|
1129
|
+
platformProduct: ((t = e.mdPlatformProduct) == null ? void 0 : t.map((a) => ({
|
|
1130
|
+
productMasterId: a.id_ProductMaster,
|
|
1131
|
+
name: a.name,
|
|
1132
|
+
com: a.com
|
|
1130
1133
|
}))) ?? []
|
|
1131
1134
|
};
|
|
1132
1135
|
}, Ct = (e) => {
|
|
1133
1136
|
var t;
|
|
1134
1137
|
return {
|
|
1135
|
-
productMaster: ((t = e.mdProductMaster) == null ? void 0 : t.map((
|
|
1136
|
-
id:
|
|
1137
|
-
name:
|
|
1138
|
+
productMaster: ((t = e.mdProductMaster) == null ? void 0 : t.map((a) => ({
|
|
1139
|
+
id: a.id,
|
|
1140
|
+
name: a.name
|
|
1138
1141
|
}))) ?? []
|
|
1139
1142
|
};
|
|
1140
1143
|
}, wt = (e) => v(e), It = (e) => v(e), Lt = (e) => v(e), Gt = (e) => v(e), zt = (e) => v(e), Nt = (e) => v(e), Ft = (e) => v(e), Bt = (e) => ({
|
|
@@ -1144,20 +1147,20 @@ const Ce = (e) => {
|
|
|
1144
1147
|
}), Ut = (e) => ({
|
|
1145
1148
|
status: e.status == 1,
|
|
1146
1149
|
message: e.msg ?? ""
|
|
1147
|
-
}),
|
|
1150
|
+
}), Wt = (e) => {
|
|
1148
1151
|
let t = "";
|
|
1149
1152
|
return e.data && (t = e.data.max_promo_amt), {
|
|
1150
1153
|
status: e.status == 1,
|
|
1151
1154
|
amount: t
|
|
1152
1155
|
};
|
|
1153
|
-
},
|
|
1156
|
+
}, qt = (e) => ({
|
|
1154
1157
|
eventDescription: {
|
|
1155
1158
|
condition: e.bottomDescription.signinCondition,
|
|
1156
1159
|
prize: e.bottomDescription.signinPrize,
|
|
1157
1160
|
others: e.bottomDescription.otherDescription
|
|
1158
1161
|
},
|
|
1159
1162
|
firstDayOfMonth: e.firstDayOfMonth
|
|
1160
|
-
}),
|
|
1163
|
+
}), Vt = (e) => ({
|
|
1161
1164
|
status: e.status == 1,
|
|
1162
1165
|
signedDays: e.days,
|
|
1163
1166
|
signedToday: e.todayIsSign === 1,
|
|
@@ -1192,11 +1195,11 @@ const Ce = (e) => {
|
|
|
1192
1195
|
extension: e.extension_list.map((t) => ({
|
|
1193
1196
|
name: t.name,
|
|
1194
1197
|
achievedLevel: t.achieved_level,
|
|
1195
|
-
detail: t.detail.map((
|
|
1196
|
-
level:
|
|
1197
|
-
levelName:
|
|
1198
|
-
achievement:
|
|
1199
|
-
commission:
|
|
1198
|
+
detail: t.detail.map((a) => ({
|
|
1199
|
+
level: a.level,
|
|
1200
|
+
levelName: a.levelname,
|
|
1201
|
+
achievement: a.achievement,
|
|
1202
|
+
commission: a.commission
|
|
1200
1203
|
}))
|
|
1201
1204
|
}))
|
|
1202
1205
|
}), $t = (e) => ({
|
|
@@ -1221,12 +1224,12 @@ const Ce = (e) => {
|
|
|
1221
1224
|
return {
|
|
1222
1225
|
currentPage: e.mdGameCreditLimitTransfers.current_page,
|
|
1223
1226
|
lastPage: e.mdGameCreditLimitTransfers.last_page,
|
|
1224
|
-
data: ((t = e.mdGameCreditLimitTransfers.data) == null ? void 0 : t.map((
|
|
1225
|
-
transferIndex:
|
|
1226
|
-
comFrom:
|
|
1227
|
-
comTo:
|
|
1228
|
-
amount:
|
|
1229
|
-
transferDateTime:
|
|
1227
|
+
data: ((t = e.mdGameCreditLimitTransfers.data) == null ? void 0 : t.map((a) => ({
|
|
1228
|
+
transferIndex: a.clindex,
|
|
1229
|
+
comFrom: a.com_from,
|
|
1230
|
+
comTo: a.com_to,
|
|
1231
|
+
amount: a.amount,
|
|
1232
|
+
transferDateTime: a.transferdatetime
|
|
1230
1233
|
}))) ?? []
|
|
1231
1234
|
};
|
|
1232
1235
|
}, Jt = (e) => {
|
|
@@ -1234,25 +1237,25 @@ const Ce = (e) => {
|
|
|
1234
1237
|
return {
|
|
1235
1238
|
currentPage: e.mdAgTransfeReport.current_page,
|
|
1236
1239
|
lastPage: e.mdAgTransfeReport.last_page,
|
|
1237
|
-
data: ((t = e.mdAgTransfeReport.data) == null ? void 0 : t.map((
|
|
1238
|
-
sender:
|
|
1239
|
-
receiver:
|
|
1240
|
-
id:
|
|
1241
|
-
amount:
|
|
1242
|
-
transferDateTime:
|
|
1240
|
+
data: ((t = e.mdAgTransfeReport.data) == null ? void 0 : t.map((a) => ({
|
|
1241
|
+
sender: a.sender,
|
|
1242
|
+
receiver: a.receiver,
|
|
1243
|
+
id: a.id,
|
|
1244
|
+
amount: a.amount,
|
|
1245
|
+
transferDateTime: a.transferdatetime
|
|
1243
1246
|
}))) ?? []
|
|
1244
1247
|
};
|
|
1245
1248
|
}, Yt = (e) => {
|
|
1246
|
-
var t,
|
|
1249
|
+
var t, a, u, i, l, d, m, f, g, _;
|
|
1247
1250
|
return {
|
|
1248
1251
|
status: e.status == 1,
|
|
1249
1252
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1250
1253
|
data: {
|
|
1251
1254
|
total: {
|
|
1252
1255
|
bet: (((t = e.data) == null ? void 0 : t.total.bet) ?? 0).toFixed(2),
|
|
1253
|
-
activeBet: (((
|
|
1256
|
+
activeBet: (((a = e.data) == null ? void 0 : a.total.activebet) ?? 0).toFixed(2),
|
|
1254
1257
|
validBet: (((u = e.data) == null ? void 0 : u.total.validbet) ?? 0).toFixed(2),
|
|
1255
|
-
payout: (((
|
|
1258
|
+
payout: (((i = e.data) == null ? void 0 : i.total.payout) ?? 0).toFixed(2)
|
|
1256
1259
|
},
|
|
1257
1260
|
sum: ((d = (l = e.data) == null ? void 0 : l.sum) == null ? void 0 : d.map((h) => ({
|
|
1258
1261
|
bet: h.bet,
|
|
@@ -1276,13 +1279,13 @@ const Ce = (e) => {
|
|
|
1276
1279
|
}
|
|
1277
1280
|
};
|
|
1278
1281
|
}, Kt = (e) => {
|
|
1279
|
-
var t,
|
|
1282
|
+
var t, a, u;
|
|
1280
1283
|
return {
|
|
1281
1284
|
status: e.status == 1,
|
|
1282
1285
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1283
1286
|
data: {
|
|
1284
1287
|
key: ((t = e.data) == null ? void 0 : t.key) ?? "",
|
|
1285
|
-
qrcode: ((
|
|
1288
|
+
qrcode: ((a = e.data) == null ? void 0 : a.qrcode) ?? "",
|
|
1286
1289
|
binded: ((u = e.data) == null ? void 0 : u.binded) ?? !1
|
|
1287
1290
|
}
|
|
1288
1291
|
};
|
|
@@ -1291,53 +1294,53 @@ const Ce = (e) => {
|
|
|
1291
1294
|
return {
|
|
1292
1295
|
status: e.status == 1,
|
|
1293
1296
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1294
|
-
data: ((t = e.data) == null ? void 0 : t.map((
|
|
1295
|
-
deviceName:
|
|
1296
|
-
createdAt:
|
|
1297
|
+
data: ((t = e.data) == null ? void 0 : t.map((a) => ({
|
|
1298
|
+
deviceName: a.device_name,
|
|
1299
|
+
createdAt: a.created_at
|
|
1297
1300
|
}))) ?? []
|
|
1298
1301
|
};
|
|
1299
|
-
}, Zt = (e) => v(e),
|
|
1300
|
-
var t,
|
|
1302
|
+
}, Zt = (e) => v(e), ea = (e) => {
|
|
1303
|
+
var t, a, u;
|
|
1301
1304
|
return {
|
|
1302
1305
|
status: e.status == 1,
|
|
1303
1306
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1304
1307
|
data: {
|
|
1305
|
-
companyCount: ((t = e.data.companyRCount) == null ? void 0 : t.map((
|
|
1306
|
-
key:
|
|
1307
|
-
count:
|
|
1308
|
+
companyCount: ((t = e.data.companyRCount) == null ? void 0 : t.map((i) => ({
|
|
1309
|
+
key: i.key,
|
|
1310
|
+
count: i.count
|
|
1308
1311
|
}))) ?? [],
|
|
1309
|
-
prizeCount: ((
|
|
1310
|
-
key:
|
|
1311
|
-
count:
|
|
1312
|
+
prizeCount: ((a = e.data.prizeRCount) == null ? void 0 : a.map((i) => ({
|
|
1313
|
+
key: i.key,
|
|
1314
|
+
count: i.count
|
|
1312
1315
|
}))) ?? [],
|
|
1313
|
-
list: ((u = e.data.list) == null ? void 0 : u.map((
|
|
1314
|
-
dimension:
|
|
1315
|
-
combination:
|
|
1316
|
-
prizePosition:
|
|
1317
|
-
drawIdentifier:
|
|
1318
|
-
drawTimestamp:
|
|
1319
|
-
companyId:
|
|
1320
|
-
companyName:
|
|
1316
|
+
list: ((u = e.data.list) == null ? void 0 : u.map((i) => ({
|
|
1317
|
+
dimension: i.combination_dimension,
|
|
1318
|
+
combination: i.combination_combination,
|
|
1319
|
+
prizePosition: i.combination_position,
|
|
1320
|
+
drawIdentifier: i.draw.draw_identifier,
|
|
1321
|
+
drawTimestamp: i.draw.draw_tmactive,
|
|
1322
|
+
companyId: i.company.company_id,
|
|
1323
|
+
companyName: i.company.company_name
|
|
1321
1324
|
}))) ?? []
|
|
1322
1325
|
}
|
|
1323
1326
|
};
|
|
1324
|
-
},
|
|
1327
|
+
}, ta = (e) => v(e), aa = (e) => ({
|
|
1325
1328
|
status: e.status == 1,
|
|
1326
1329
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1327
1330
|
tokenAmount: e.token_amount
|
|
1328
|
-
}),
|
|
1331
|
+
}), na = (e) => v(e);
|
|
1329
1332
|
var E = /* @__PURE__ */ ((e) => (e.vipcalculation = "vipcalculation", e.livechat = "livechat", e.extralivechat = "extralivechat", e.mobilevalidate = "mobilevalidate", e.withdrawtac = "withdrawtac", e.imageDomain = "imagedomain", e.withdrawalCode = "withdrawalcode", e.withdrawAlipay = "withdrawalipay", e.crypto = "crypto", e))(E || {});
|
|
1330
|
-
const
|
|
1333
|
+
const oa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1331
1334
|
__proto__: null,
|
|
1332
1335
|
SettingType: E
|
|
1333
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
1336
|
+
}, Symbol.toStringTag, { value: "Module" })), ra = (e) => {
|
|
1334
1337
|
let t = 0;
|
|
1335
1338
|
return e.data != null && typeof e.data == "object" && (t = e.data.amount), {
|
|
1336
1339
|
status: e.status,
|
|
1337
1340
|
message: e.msg ?? "",
|
|
1338
1341
|
amount: t
|
|
1339
1342
|
};
|
|
1340
|
-
},
|
|
1343
|
+
}, sa = (e) => e.status == 0 ? {
|
|
1341
1344
|
record: {
|
|
1342
1345
|
today: {
|
|
1343
1346
|
deposit: "0",
|
|
@@ -1367,79 +1370,101 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1367
1370
|
loseLimit: t.loselimit,
|
|
1368
1371
|
maxReward: t.max_reward
|
|
1369
1372
|
}))
|
|
1370
|
-
},
|
|
1373
|
+
}, ia = (e) => e.status == 0 ? [] : e.data.map((t) => ({
|
|
1371
1374
|
amount: t.amount,
|
|
1372
1375
|
date: t.date,
|
|
1373
1376
|
deposit: t.deposit,
|
|
1374
1377
|
payout: t.payout
|
|
1375
|
-
})),
|
|
1376
|
-
|
|
1378
|
+
})), la = (e) => ({
|
|
1379
|
+
status: e.status,
|
|
1380
|
+
message: e.msg ?? ""
|
|
1381
|
+
}), ua = (e) => e.status == 0 ? {
|
|
1382
|
+
status: e.status,
|
|
1383
|
+
message: e.msg ?? "",
|
|
1384
|
+
data: null
|
|
1385
|
+
} : {
|
|
1386
|
+
status: e.status,
|
|
1387
|
+
message: "",
|
|
1388
|
+
data: {
|
|
1389
|
+
price: e.data.price,
|
|
1390
|
+
instantReward: e.data.instant_reward,
|
|
1391
|
+
dailyReward: e.data.daily_reward,
|
|
1392
|
+
period: e.data.period,
|
|
1393
|
+
purchasable: e.data.purchasable,
|
|
1394
|
+
collectable: e.data.collectable,
|
|
1395
|
+
remainingDay: e.data.remaining
|
|
1396
|
+
}
|
|
1397
|
+
}, da = (e) => ({
|
|
1398
|
+
status: e.status,
|
|
1399
|
+
message: e.msg ?? ""
|
|
1400
|
+
}), ca = async (e) => {
|
|
1401
|
+
var t, a, u, i, l, d, m, f, g, _, h, M;
|
|
1377
1402
|
try {
|
|
1378
|
-
e.findIndex((c) => c.name ===
|
|
1403
|
+
e.findIndex((c) => c.name === s.vipList) !== -1 && e.push(
|
|
1379
1404
|
{
|
|
1380
|
-
name:
|
|
1405
|
+
name: s.vipBonus,
|
|
1381
1406
|
query: ""
|
|
1382
1407
|
},
|
|
1383
|
-
{ name:
|
|
1384
|
-
{ name:
|
|
1408
|
+
{ name: s.vipFieldStatus, query: "" },
|
|
1409
|
+
{ name: s.vipStatus, query: "" },
|
|
1385
1410
|
{
|
|
1386
|
-
name:
|
|
1411
|
+
name: s.getSetting,
|
|
1387
1412
|
query: JSON.stringify({ name: [E.vipcalculation] })
|
|
1388
1413
|
}
|
|
1389
1414
|
);
|
|
1390
|
-
const S = e.findIndex((c) => c.name ===
|
|
1415
|
+
const S = e.findIndex((c) => c.name === s.gameList);
|
|
1391
1416
|
S !== -1 && (JSON.parse(e[S].query).pid || e.push({
|
|
1392
|
-
name:
|
|
1417
|
+
name: s.fishGameList,
|
|
1393
1418
|
query: JSON.stringify({
|
|
1394
1419
|
d: "mobile",
|
|
1395
1420
|
p: "1",
|
|
1396
1421
|
c: "0"
|
|
1397
1422
|
})
|
|
1398
1423
|
}), e.push({
|
|
1399
|
-
name:
|
|
1424
|
+
name: s.getPlatformTurnoverRate,
|
|
1400
1425
|
query: ""
|
|
1401
1426
|
}));
|
|
1402
|
-
const O = e.findIndex((c) => c.name ===
|
|
1427
|
+
const O = e.findIndex((c) => c.name === s.searchHot);
|
|
1403
1428
|
if (O !== -1) {
|
|
1404
1429
|
let c = {};
|
|
1405
1430
|
e.forEach((y) => {
|
|
1406
1431
|
c = y.query;
|
|
1407
1432
|
}), e.splice(O), e.push({
|
|
1408
|
-
name:
|
|
1433
|
+
name: s.getFourDimensionData,
|
|
1409
1434
|
query: String(c)
|
|
1410
1435
|
});
|
|
1411
1436
|
}
|
|
1412
|
-
const G = e.findIndex((c) => c.name ===
|
|
1437
|
+
const G = e.findIndex((c) => c.name === s.searchNumberHistory);
|
|
1413
1438
|
if (G !== -1) {
|
|
1414
1439
|
let c = {};
|
|
1415
1440
|
e.forEach((y) => {
|
|
1416
1441
|
c = y.query;
|
|
1417
1442
|
}), e.splice(G), e.push({
|
|
1418
|
-
name:
|
|
1443
|
+
name: s.getFourDimensionData,
|
|
1419
1444
|
query: String(c)
|
|
1420
1445
|
});
|
|
1421
1446
|
}
|
|
1422
|
-
if (e.findIndex((c) => c.name ===
|
|
1447
|
+
if (e.findIndex((c) => c.name === s.searchByDate) !== -1) {
|
|
1423
1448
|
let c = {};
|
|
1424
1449
|
e.forEach((y) => {
|
|
1425
1450
|
c = y.query;
|
|
1426
1451
|
}), e.splice(G), e.push({
|
|
1427
|
-
name:
|
|
1452
|
+
name: s.getFourDimensionData,
|
|
1428
1453
|
query: String(c)
|
|
1429
1454
|
});
|
|
1430
1455
|
}
|
|
1431
1456
|
const R = e.findIndex(
|
|
1432
|
-
(c) => c.name ===
|
|
1457
|
+
(c) => c.name === s.getFourDimensionData
|
|
1433
1458
|
);
|
|
1434
1459
|
R !== -1 && e[R].query == "" && (e.splice(R), e.push(
|
|
1435
1460
|
{
|
|
1436
|
-
name:
|
|
1437
|
-
query: JSON.stringify({ action:
|
|
1461
|
+
name: s.getFourDimensionData,
|
|
1462
|
+
query: JSON.stringify({ action: s.getCompany, native: "1" })
|
|
1438
1463
|
},
|
|
1439
1464
|
{
|
|
1440
|
-
name:
|
|
1465
|
+
name: s.getFourDimensionData,
|
|
1441
1466
|
query: JSON.stringify({
|
|
1442
|
-
action:
|
|
1467
|
+
action: s.searchResultDate,
|
|
1443
1468
|
limit: 100,
|
|
1444
1469
|
company: [],
|
|
1445
1470
|
native: "1",
|
|
@@ -1454,7 +1479,7 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1454
1479
|
}))
|
|
1455
1480
|
}, te = await L.post(
|
|
1456
1481
|
"/jwt",
|
|
1457
|
-
|
|
1482
|
+
ae(JSON.stringify(A))
|
|
1458
1483
|
), o = {
|
|
1459
1484
|
status: 200,
|
|
1460
1485
|
message: "",
|
|
@@ -1462,450 +1487,463 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1462
1487
|
};
|
|
1463
1488
|
for (const c of te.data.responses) {
|
|
1464
1489
|
c.error != null && c.error.code != 200 && (o.status = c.error.code, o.message = c.error.message);
|
|
1465
|
-
const y = c.attributes !== null && c.attributes !== void 0 ?
|
|
1466
|
-
if (console.log(r), console.log(
|
|
1490
|
+
const y = c.attributes !== null && c.attributes !== void 0 ? ne(c.attributes) : null, r = c.name, n = y ? JSON.parse(y) : null;
|
|
1491
|
+
if (console.log(r), console.log(JSON.stringify(n)), !n)
|
|
1467
1492
|
console.log("Not data received"), o.result[r] = null;
|
|
1468
1493
|
else
|
|
1469
1494
|
switch (r) {
|
|
1470
|
-
case
|
|
1471
|
-
o.result[r] = pe(
|
|
1495
|
+
case s.announcement:
|
|
1496
|
+
o.result[r] = pe(n);
|
|
1472
1497
|
break;
|
|
1473
|
-
case
|
|
1474
|
-
o.result[r] = be(
|
|
1498
|
+
case s.gameList:
|
|
1499
|
+
o.result[r] = be(n);
|
|
1475
1500
|
break;
|
|
1476
|
-
case
|
|
1477
|
-
o.result[r] = Re(
|
|
1501
|
+
case s.cmsList:
|
|
1502
|
+
o.result[r] = Re(n);
|
|
1478
1503
|
break;
|
|
1479
|
-
case
|
|
1504
|
+
case s.paymentsProvider:
|
|
1480
1505
|
o.result[r] = ue(
|
|
1481
|
-
|
|
1506
|
+
n
|
|
1482
1507
|
);
|
|
1483
1508
|
break;
|
|
1484
|
-
case
|
|
1485
|
-
o.result[r] = ge(
|
|
1509
|
+
case s.getUserProfile:
|
|
1510
|
+
o.result[r] = ge(n);
|
|
1486
1511
|
break;
|
|
1487
|
-
case
|
|
1488
|
-
o.result[r] = fe(
|
|
1512
|
+
case s.vipList:
|
|
1513
|
+
o.result[r] = fe(n);
|
|
1489
1514
|
break;
|
|
1490
|
-
case
|
|
1491
|
-
o.result[r] = _e(
|
|
1515
|
+
case s.vipBonus:
|
|
1516
|
+
o.result[r] = _e(n);
|
|
1492
1517
|
break;
|
|
1493
|
-
case
|
|
1494
|
-
o.result[r] = he(
|
|
1518
|
+
case s.vipFieldStatus:
|
|
1519
|
+
o.result[r] = he(n);
|
|
1495
1520
|
break;
|
|
1496
|
-
case
|
|
1497
|
-
o.result[r] = Te(
|
|
1521
|
+
case s.vipStatus:
|
|
1522
|
+
o.result[r] = Te(n);
|
|
1498
1523
|
break;
|
|
1499
|
-
case
|
|
1500
|
-
o.result[r] = ye(
|
|
1524
|
+
case s.promotion:
|
|
1525
|
+
o.result[r] = ye(n);
|
|
1501
1526
|
break;
|
|
1502
|
-
case
|
|
1503
|
-
o.result[r] = ve(
|
|
1527
|
+
case s.getSetting:
|
|
1528
|
+
o.result[r] = ve(n);
|
|
1504
1529
|
break;
|
|
1505
|
-
case
|
|
1530
|
+
case s.getCountryMobile:
|
|
1506
1531
|
o.result[r] = Se(
|
|
1507
|
-
|
|
1532
|
+
n
|
|
1508
1533
|
);
|
|
1509
1534
|
break;
|
|
1510
|
-
case
|
|
1535
|
+
case s.getPlatformTurnoverRate:
|
|
1511
1536
|
o.result[r] = ke(
|
|
1512
|
-
|
|
1537
|
+
n
|
|
1513
1538
|
);
|
|
1514
1539
|
break;
|
|
1515
|
-
case
|
|
1516
|
-
o.result[r] = Pe(
|
|
1540
|
+
case s.mainWallet:
|
|
1541
|
+
o.result[r] = Pe(n);
|
|
1517
1542
|
break;
|
|
1518
|
-
case
|
|
1543
|
+
case s.getLanguageSetting:
|
|
1519
1544
|
o.result[r] = Oe(
|
|
1520
|
-
|
|
1545
|
+
n
|
|
1521
1546
|
);
|
|
1522
1547
|
break;
|
|
1523
|
-
case
|
|
1548
|
+
case s.getFourDimensionData:
|
|
1524
1549
|
o.result[r] = Me(
|
|
1525
|
-
|
|
1550
|
+
n
|
|
1526
1551
|
);
|
|
1527
1552
|
break;
|
|
1528
|
-
case
|
|
1529
|
-
o.result[r] = je(
|
|
1553
|
+
case s.getCompany:
|
|
1554
|
+
o.result[r] = je(n);
|
|
1530
1555
|
break;
|
|
1531
|
-
case
|
|
1556
|
+
case s.searchResultDate:
|
|
1532
1557
|
o.result[r] = xe(
|
|
1533
|
-
|
|
1558
|
+
n
|
|
1534
1559
|
);
|
|
1535
1560
|
break;
|
|
1536
|
-
case
|
|
1537
|
-
o.result[r] = Ce(
|
|
1561
|
+
case s.searchHot:
|
|
1562
|
+
o.result[r] = Ce(n);
|
|
1538
1563
|
break;
|
|
1539
|
-
case
|
|
1540
|
-
o.result[r] = we(
|
|
1564
|
+
case s.searchByDate:
|
|
1565
|
+
o.result[r] = we(n);
|
|
1541
1566
|
break;
|
|
1542
|
-
case
|
|
1567
|
+
case s.upcomingMatches:
|
|
1543
1568
|
o.result[r] = Ie(
|
|
1544
|
-
|
|
1569
|
+
n
|
|
1545
1570
|
);
|
|
1546
1571
|
break;
|
|
1547
|
-
case
|
|
1548
|
-
o.result[r] = Le(
|
|
1572
|
+
case s.deposit:
|
|
1573
|
+
o.result[r] = Le(n);
|
|
1549
1574
|
break;
|
|
1550
|
-
case
|
|
1551
|
-
o.result[r] = Ge(
|
|
1575
|
+
case s.applyVipBonus:
|
|
1576
|
+
o.result[r] = Ge(n);
|
|
1552
1577
|
break;
|
|
1553
|
-
case
|
|
1554
|
-
o.result[r] = ze(
|
|
1578
|
+
case s.withdraw:
|
|
1579
|
+
o.result[r] = ze(n);
|
|
1555
1580
|
break;
|
|
1556
|
-
case
|
|
1581
|
+
case s.getBankCardData:
|
|
1557
1582
|
o.result[r] = Ne(
|
|
1558
|
-
|
|
1583
|
+
n
|
|
1559
1584
|
);
|
|
1560
1585
|
break;
|
|
1561
|
-
case
|
|
1562
|
-
o.result[r] = Fe(
|
|
1586
|
+
case s.withdrawalGet:
|
|
1587
|
+
o.result[r] = Fe(n);
|
|
1563
1588
|
break;
|
|
1564
|
-
case
|
|
1565
|
-
o.result[r] = Be(
|
|
1589
|
+
case s.addBankCard:
|
|
1590
|
+
o.result[r] = Be(n);
|
|
1566
1591
|
break;
|
|
1567
|
-
case
|
|
1592
|
+
case s.transactionReport:
|
|
1568
1593
|
o.result[r] = Ue(
|
|
1569
|
-
|
|
1594
|
+
n
|
|
1570
1595
|
);
|
|
1571
1596
|
break;
|
|
1572
|
-
case
|
|
1573
|
-
o.result[r] =
|
|
1597
|
+
case s.changePassword:
|
|
1598
|
+
o.result[r] = qe(n);
|
|
1574
1599
|
break;
|
|
1575
|
-
case
|
|
1576
|
-
o.result[r] =
|
|
1600
|
+
case s.wallet:
|
|
1601
|
+
o.result[r] = Ve(n);
|
|
1577
1602
|
break;
|
|
1578
|
-
case
|
|
1579
|
-
o.result[r] = Ee(
|
|
1603
|
+
case s.getEventList:
|
|
1604
|
+
o.result[r] = Ee(n);
|
|
1580
1605
|
break;
|
|
1581
|
-
case
|
|
1582
|
-
o.result[r] = $e(
|
|
1606
|
+
case s.getEventToken:
|
|
1607
|
+
o.result[r] = $e(n);
|
|
1583
1608
|
break;
|
|
1584
|
-
case
|
|
1585
|
-
o.result[r] = Ae(
|
|
1609
|
+
case s.getExtraGame:
|
|
1610
|
+
o.result[r] = Ae(n);
|
|
1586
1611
|
break;
|
|
1587
|
-
case
|
|
1588
|
-
o.result[r] = He(
|
|
1612
|
+
case s.mailBox:
|
|
1613
|
+
o.result[r] = He(n);
|
|
1589
1614
|
break;
|
|
1590
|
-
case
|
|
1591
|
-
o.result[r] = Je(
|
|
1615
|
+
case s.fishGameList:
|
|
1616
|
+
o.result[r] = Je(n);
|
|
1592
1617
|
break;
|
|
1593
|
-
case
|
|
1594
|
-
o.result[r] = Ye(
|
|
1618
|
+
case s.slotGameList:
|
|
1619
|
+
o.result[r] = Ye(n);
|
|
1595
1620
|
break;
|
|
1596
|
-
case
|
|
1621
|
+
case s.getTurnOverRewardData:
|
|
1597
1622
|
o.result[r] = Ke(
|
|
1598
|
-
|
|
1623
|
+
n
|
|
1599
1624
|
);
|
|
1600
1625
|
break;
|
|
1601
|
-
case
|
|
1626
|
+
case s.getTurnOverRewardReport:
|
|
1602
1627
|
o.result[r] = Qe(
|
|
1603
|
-
|
|
1628
|
+
n
|
|
1604
1629
|
);
|
|
1605
1630
|
break;
|
|
1606
|
-
case
|
|
1631
|
+
case s.getInviteRewardData:
|
|
1607
1632
|
o.result[r] = Xe(
|
|
1608
|
-
|
|
1633
|
+
n
|
|
1609
1634
|
);
|
|
1610
1635
|
break;
|
|
1611
|
-
case
|
|
1636
|
+
case s.getInviteRewardReport:
|
|
1612
1637
|
o.result[r] = Ze(
|
|
1613
|
-
|
|
1638
|
+
n
|
|
1614
1639
|
);
|
|
1615
1640
|
break;
|
|
1616
|
-
case
|
|
1641
|
+
case s.getTopupRewardData:
|
|
1617
1642
|
o.result[r] = et(
|
|
1618
|
-
|
|
1643
|
+
n
|
|
1619
1644
|
);
|
|
1620
1645
|
break;
|
|
1621
|
-
case
|
|
1646
|
+
case s.getTopupRewardReport:
|
|
1622
1647
|
o.result[r] = tt(
|
|
1623
|
-
|
|
1648
|
+
n
|
|
1624
1649
|
);
|
|
1625
1650
|
break;
|
|
1626
|
-
case
|
|
1627
|
-
o.result[r] =
|
|
1628
|
-
|
|
1651
|
+
case s.getRewardReferral:
|
|
1652
|
+
o.result[r] = at(
|
|
1653
|
+
n
|
|
1629
1654
|
);
|
|
1630
1655
|
break;
|
|
1631
|
-
case
|
|
1632
|
-
o.result[r] =
|
|
1656
|
+
case s.submitWithdrawValidate:
|
|
1657
|
+
o.result[r] = q(n);
|
|
1633
1658
|
break;
|
|
1634
|
-
case
|
|
1635
|
-
o.result[r] =
|
|
1636
|
-
|
|
1659
|
+
case s.getDepositPromotion:
|
|
1660
|
+
o.result[r] = nt(
|
|
1661
|
+
n
|
|
1637
1662
|
);
|
|
1638
1663
|
break;
|
|
1639
|
-
case
|
|
1664
|
+
case s.getTopUpRewardClaim:
|
|
1640
1665
|
o.result[r] = ot(
|
|
1641
|
-
|
|
1666
|
+
n
|
|
1642
1667
|
);
|
|
1643
1668
|
break;
|
|
1644
|
-
case
|
|
1669
|
+
case s.getInviteRewardClaim:
|
|
1645
1670
|
o.result[r] = rt(
|
|
1646
|
-
|
|
1671
|
+
n
|
|
1647
1672
|
);
|
|
1648
1673
|
break;
|
|
1649
|
-
case
|
|
1674
|
+
case s.getTurnOverRewardClaim:
|
|
1650
1675
|
o.result[r] = st(
|
|
1651
|
-
|
|
1676
|
+
n
|
|
1652
1677
|
);
|
|
1653
1678
|
break;
|
|
1654
|
-
case
|
|
1679
|
+
case s.getInviteRewardSetting:
|
|
1655
1680
|
o.result[r] = it(
|
|
1656
|
-
|
|
1681
|
+
n
|
|
1657
1682
|
);
|
|
1658
1683
|
break;
|
|
1659
|
-
case
|
|
1684
|
+
case s.getTurnOverRewardSetting:
|
|
1660
1685
|
o.result[r] = lt(
|
|
1661
|
-
|
|
1686
|
+
n
|
|
1662
1687
|
);
|
|
1663
1688
|
break;
|
|
1664
|
-
case
|
|
1689
|
+
case s.getTopUpRewardSetting:
|
|
1665
1690
|
o.result[r] = ut(
|
|
1666
|
-
|
|
1691
|
+
n
|
|
1667
1692
|
);
|
|
1668
1693
|
break;
|
|
1669
|
-
case
|
|
1694
|
+
case s.requestForgetPassword:
|
|
1670
1695
|
o.result[r] = dt(
|
|
1671
|
-
|
|
1696
|
+
n
|
|
1672
1697
|
);
|
|
1673
1698
|
break;
|
|
1674
|
-
case
|
|
1699
|
+
case s.submitForgetPassword:
|
|
1675
1700
|
o.result[r] = ct(
|
|
1676
|
-
|
|
1701
|
+
n
|
|
1677
1702
|
);
|
|
1678
1703
|
break;
|
|
1679
|
-
case
|
|
1680
|
-
o.result[r] = mt(
|
|
1704
|
+
case s.getImage:
|
|
1705
|
+
o.result[r] = mt(n);
|
|
1681
1706
|
break;
|
|
1682
|
-
case
|
|
1683
|
-
o.result[r] =
|
|
1707
|
+
case s.getDepositValidate:
|
|
1708
|
+
o.result[r] = W(n);
|
|
1684
1709
|
break;
|
|
1685
|
-
case
|
|
1686
|
-
o.result[r] =
|
|
1710
|
+
case s.getWithdrawValidate:
|
|
1711
|
+
o.result[r] = W(n);
|
|
1687
1712
|
break;
|
|
1688
|
-
case
|
|
1689
|
-
o.result[r] =
|
|
1713
|
+
case s.getTransferCreditValidate:
|
|
1714
|
+
o.result[r] = W(n);
|
|
1690
1715
|
break;
|
|
1691
|
-
case
|
|
1716
|
+
case s.updateProfilePicture:
|
|
1692
1717
|
o.result[r] = gt(
|
|
1693
|
-
|
|
1718
|
+
n
|
|
1694
1719
|
);
|
|
1695
1720
|
break;
|
|
1696
|
-
case
|
|
1697
|
-
o.result[r] = bt(
|
|
1721
|
+
case s.readMail:
|
|
1722
|
+
o.result[r] = bt(n);
|
|
1698
1723
|
break;
|
|
1699
|
-
case
|
|
1724
|
+
case s.checkRedPacketValidate:
|
|
1700
1725
|
o.result[r] = ft(
|
|
1701
|
-
|
|
1726
|
+
n
|
|
1702
1727
|
);
|
|
1703
1728
|
break;
|
|
1704
|
-
case
|
|
1705
|
-
o.result[r] = yt(
|
|
1729
|
+
case s.requestTacCode:
|
|
1730
|
+
o.result[r] = yt(n);
|
|
1706
1731
|
break;
|
|
1707
|
-
case
|
|
1732
|
+
case s.getUsernameByRefer:
|
|
1708
1733
|
o.result[r] = _t(
|
|
1709
|
-
|
|
1734
|
+
n
|
|
1710
1735
|
);
|
|
1711
1736
|
break;
|
|
1712
|
-
case
|
|
1713
|
-
o.result[r] = ht(
|
|
1737
|
+
case s.applyPromo:
|
|
1738
|
+
o.result[r] = ht(n);
|
|
1714
1739
|
break;
|
|
1715
|
-
case
|
|
1716
|
-
o.result[r] = Tt(
|
|
1740
|
+
case s.applyRedPacket:
|
|
1741
|
+
o.result[r] = Tt(n);
|
|
1717
1742
|
break;
|
|
1718
|
-
case
|
|
1719
|
-
o.result[r] = vt(
|
|
1743
|
+
case s.applySignIn:
|
|
1744
|
+
o.result[r] = vt(n);
|
|
1720
1745
|
break;
|
|
1721
|
-
case
|
|
1722
|
-
o.result[r] = Rt(
|
|
1746
|
+
case s.getCountry:
|
|
1747
|
+
o.result[r] = Rt(n);
|
|
1723
1748
|
break;
|
|
1724
|
-
case
|
|
1725
|
-
o.result[r] = St(
|
|
1749
|
+
case s.submitGiftCode:
|
|
1750
|
+
o.result[r] = St(n);
|
|
1726
1751
|
break;
|
|
1727
|
-
case
|
|
1728
|
-
o.result[r] = kt(
|
|
1752
|
+
case s.playGame:
|
|
1753
|
+
o.result[r] = kt(n);
|
|
1729
1754
|
break;
|
|
1730
|
-
case
|
|
1731
|
-
o.result[r] = Pt(
|
|
1755
|
+
case s.transferToMain:
|
|
1756
|
+
o.result[r] = Pt(n);
|
|
1732
1757
|
break;
|
|
1733
|
-
case
|
|
1758
|
+
case s.transferProcess:
|
|
1734
1759
|
o.result[r] = Ot(
|
|
1735
|
-
|
|
1760
|
+
n
|
|
1736
1761
|
);
|
|
1737
1762
|
break;
|
|
1738
|
-
case
|
|
1739
|
-
o.result[r] =
|
|
1763
|
+
case s.submitDepositValidate:
|
|
1764
|
+
o.result[r] = q(n);
|
|
1740
1765
|
break;
|
|
1741
|
-
case
|
|
1742
|
-
o.result[r] =
|
|
1766
|
+
case s.submitTransferCreditValidate:
|
|
1767
|
+
o.result[r] = q(n);
|
|
1743
1768
|
break;
|
|
1744
|
-
case
|
|
1769
|
+
case s.checkTransferCredit:
|
|
1745
1770
|
o.result[r] = Mt(
|
|
1746
|
-
|
|
1771
|
+
n
|
|
1747
1772
|
);
|
|
1748
1773
|
break;
|
|
1749
|
-
case
|
|
1750
|
-
o.result[r] = jt(
|
|
1774
|
+
case s.friendList:
|
|
1775
|
+
o.result[r] = jt(n);
|
|
1751
1776
|
break;
|
|
1752
|
-
case
|
|
1753
|
-
o.result[r] = xt(
|
|
1777
|
+
case s.friendListEdit:
|
|
1778
|
+
o.result[r] = xt(n);
|
|
1754
1779
|
break;
|
|
1755
|
-
case
|
|
1756
|
-
o.result[r] = Dt(
|
|
1780
|
+
case s.getActivePP:
|
|
1781
|
+
o.result[r] = Dt(n);
|
|
1757
1782
|
break;
|
|
1758
|
-
case
|
|
1783
|
+
case s.getActiveProduct:
|
|
1759
1784
|
o.result[r] = Ct(
|
|
1760
|
-
|
|
1785
|
+
n
|
|
1761
1786
|
);
|
|
1762
1787
|
break;
|
|
1763
|
-
case
|
|
1788
|
+
case s.requestWithdrawTac:
|
|
1764
1789
|
o.result[r] = wt(
|
|
1765
|
-
|
|
1790
|
+
n
|
|
1766
1791
|
);
|
|
1767
1792
|
break;
|
|
1768
|
-
case
|
|
1793
|
+
case s.requestWithdrawalCode:
|
|
1769
1794
|
o.result[r] = It(
|
|
1770
|
-
|
|
1795
|
+
n
|
|
1771
1796
|
);
|
|
1772
1797
|
break;
|
|
1773
|
-
case
|
|
1798
|
+
case s.commissionWithdraw:
|
|
1774
1799
|
o.result[r] = Lt(
|
|
1775
|
-
|
|
1800
|
+
n
|
|
1776
1801
|
);
|
|
1777
1802
|
break;
|
|
1778
|
-
case
|
|
1803
|
+
case s.submitWithdrawalCode:
|
|
1779
1804
|
o.result[r] = Gt(
|
|
1780
|
-
|
|
1805
|
+
n
|
|
1781
1806
|
);
|
|
1782
1807
|
break;
|
|
1783
|
-
case
|
|
1808
|
+
case s.submitCryptoAccount:
|
|
1784
1809
|
o.result[r] = zt(
|
|
1785
|
-
|
|
1810
|
+
n
|
|
1786
1811
|
);
|
|
1787
1812
|
break;
|
|
1788
|
-
case
|
|
1813
|
+
case s.requestTransferMoney:
|
|
1789
1814
|
o.result[r] = Nt(
|
|
1790
|
-
|
|
1815
|
+
n
|
|
1791
1816
|
);
|
|
1792
1817
|
break;
|
|
1793
|
-
case
|
|
1818
|
+
case s.submitTransferMoney:
|
|
1794
1819
|
o.result[r] = Ft(
|
|
1795
|
-
|
|
1820
|
+
n
|
|
1796
1821
|
);
|
|
1797
1822
|
break;
|
|
1798
|
-
case
|
|
1823
|
+
case s.requestUpdateMobileTacCode:
|
|
1799
1824
|
o.result[r] = Bt(
|
|
1800
|
-
|
|
1825
|
+
n
|
|
1801
1826
|
);
|
|
1802
1827
|
break;
|
|
1803
|
-
case
|
|
1828
|
+
case s.submitUpdateMobileTacCode:
|
|
1804
1829
|
o.result[r] = Ut(
|
|
1805
|
-
|
|
1830
|
+
n
|
|
1806
1831
|
);
|
|
1807
1832
|
break;
|
|
1808
|
-
case
|
|
1809
|
-
o.result[r] =
|
|
1833
|
+
case s.getVerifyPromo:
|
|
1834
|
+
o.result[r] = Wt(n);
|
|
1810
1835
|
break;
|
|
1811
|
-
case
|
|
1812
|
-
o.result[r] =
|
|
1836
|
+
case s.signInViewInfo:
|
|
1837
|
+
o.result[r] = qt(n);
|
|
1813
1838
|
break;
|
|
1814
|
-
case
|
|
1815
|
-
o.result[r] =
|
|
1839
|
+
case s.signInRecord:
|
|
1840
|
+
o.result[r] = Vt(n);
|
|
1816
1841
|
break;
|
|
1817
|
-
case
|
|
1842
|
+
case s.referralProfile:
|
|
1818
1843
|
o.result[r] = Et(
|
|
1819
|
-
|
|
1844
|
+
n
|
|
1820
1845
|
);
|
|
1821
1846
|
break;
|
|
1822
|
-
case
|
|
1847
|
+
case s.referralMemberProfile:
|
|
1823
1848
|
o.result[r] = $t(
|
|
1824
|
-
|
|
1849
|
+
n
|
|
1825
1850
|
);
|
|
1826
1851
|
break;
|
|
1827
|
-
case
|
|
1828
|
-
o.result[r] = At(
|
|
1852
|
+
case s.registerAction:
|
|
1853
|
+
o.result[r] = At(n);
|
|
1829
1854
|
break;
|
|
1830
|
-
case
|
|
1831
|
-
o.result[r] = Ht(
|
|
1855
|
+
case s.transferReport:
|
|
1856
|
+
o.result[r] = Ht(n);
|
|
1832
1857
|
break;
|
|
1833
|
-
case
|
|
1858
|
+
case s.agTransferCreditReport:
|
|
1834
1859
|
o.result[r] = Jt(
|
|
1835
|
-
|
|
1860
|
+
n
|
|
1836
1861
|
);
|
|
1837
1862
|
break;
|
|
1838
|
-
case
|
|
1839
|
-
o.result[r] = Yt(
|
|
1863
|
+
case s.betReport:
|
|
1864
|
+
o.result[r] = Yt(n);
|
|
1840
1865
|
break;
|
|
1841
|
-
case
|
|
1866
|
+
case s.getTwoFactorAuthenticate:
|
|
1842
1867
|
o.result[r] = Kt(
|
|
1843
|
-
|
|
1868
|
+
n
|
|
1844
1869
|
);
|
|
1845
1870
|
break;
|
|
1846
|
-
case
|
|
1871
|
+
case s.submitTwoFactorAuthenticate:
|
|
1847
1872
|
o.result[r] = Qt(
|
|
1848
|
-
|
|
1873
|
+
n
|
|
1849
1874
|
);
|
|
1850
1875
|
break;
|
|
1851
|
-
case
|
|
1876
|
+
case s.getUserDeviceList:
|
|
1852
1877
|
o.result[r] = Xt(
|
|
1853
|
-
|
|
1878
|
+
n
|
|
1854
1879
|
);
|
|
1855
1880
|
break;
|
|
1856
|
-
case
|
|
1881
|
+
case s.unbindUserDevice:
|
|
1857
1882
|
o.result[r] = Zt(
|
|
1858
|
-
|
|
1883
|
+
n
|
|
1859
1884
|
);
|
|
1860
1885
|
break;
|
|
1861
|
-
case
|
|
1862
|
-
o.result[r] =
|
|
1863
|
-
|
|
1886
|
+
case s.searchNumberHistory:
|
|
1887
|
+
o.result[r] = ea(
|
|
1888
|
+
n
|
|
1864
1889
|
);
|
|
1865
1890
|
break;
|
|
1866
|
-
case
|
|
1867
|
-
o.result[r] =
|
|
1868
|
-
|
|
1891
|
+
case s.changeWithdrawalCode:
|
|
1892
|
+
o.result[r] = ta(
|
|
1893
|
+
n
|
|
1869
1894
|
);
|
|
1870
1895
|
break;
|
|
1871
|
-
case
|
|
1872
|
-
o.result[r] =
|
|
1873
|
-
|
|
1896
|
+
case s.checkRedPacketToken:
|
|
1897
|
+
o.result[r] = aa(
|
|
1898
|
+
n
|
|
1874
1899
|
);
|
|
1875
1900
|
break;
|
|
1876
|
-
case
|
|
1877
|
-
o.result[r] =
|
|
1878
|
-
|
|
1901
|
+
case s.submitWithdrawalAlipay:
|
|
1902
|
+
o.result[r] = na(
|
|
1903
|
+
n
|
|
1879
1904
|
);
|
|
1880
1905
|
break;
|
|
1881
|
-
case
|
|
1882
|
-
o.result[r] =
|
|
1883
|
-
|
|
1906
|
+
case s.applyReliefFund:
|
|
1907
|
+
o.result[r] = ra(
|
|
1908
|
+
n
|
|
1884
1909
|
);
|
|
1885
1910
|
break;
|
|
1886
|
-
case
|
|
1887
|
-
o.result[r] =
|
|
1888
|
-
|
|
1911
|
+
case s.getReliefFundData:
|
|
1912
|
+
o.result[r] = sa(
|
|
1913
|
+
n
|
|
1889
1914
|
);
|
|
1890
1915
|
break;
|
|
1891
|
-
case
|
|
1892
|
-
o.result[r] =
|
|
1893
|
-
|
|
1916
|
+
case s.getReliefFundReport:
|
|
1917
|
+
o.result[r] = ia(
|
|
1918
|
+
n
|
|
1894
1919
|
);
|
|
1895
1920
|
break;
|
|
1921
|
+
case s.getWeekCardClaim:
|
|
1922
|
+
o.result[r] = la(
|
|
1923
|
+
n
|
|
1924
|
+
);
|
|
1925
|
+
break;
|
|
1926
|
+
case s.getWeekCardData:
|
|
1927
|
+
o.result[r] = ua(
|
|
1928
|
+
n
|
|
1929
|
+
);
|
|
1930
|
+
break;
|
|
1931
|
+
case s.applyWeekCard:
|
|
1932
|
+
o.result[r] = da(n);
|
|
1933
|
+
break;
|
|
1896
1934
|
}
|
|
1897
1935
|
}
|
|
1898
|
-
if (
|
|
1936
|
+
if (s.vipList in o.result && ((t = o.result) != null && t.vipList)) {
|
|
1899
1937
|
const c = o.result.vipList;
|
|
1900
1938
|
let y = 4;
|
|
1901
|
-
if (
|
|
1939
|
+
if (s.getSetting in o.result && ((a = o.result) != null && a.getSetting && (y = o.result.getSetting.vipCalculation), delete o.result.getSetting), s.vipStatus in o.result) {
|
|
1902
1940
|
if ((u = o.result) != null && u.vipStatus) {
|
|
1903
1941
|
const r = o.result.vipStatus, {
|
|
1904
|
-
current_grade_id:
|
|
1942
|
+
current_grade_id: n,
|
|
1905
1943
|
current_deposit: T,
|
|
1906
1944
|
current_turnover: k,
|
|
1907
1945
|
percentage: j
|
|
1908
|
-
} = r, C = c.list.findIndex((P) => P.id ===
|
|
1946
|
+
} = r, C = c.list.findIndex((P) => P.id === n);
|
|
1909
1947
|
c.list = c.list.map((P, w) => {
|
|
1910
1948
|
const I = w === C;
|
|
1911
1949
|
let x = "0", b = "0", z = 0;
|
|
@@ -1928,9 +1966,9 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1928
1966
|
}
|
|
1929
1967
|
delete o.result.vipStatus;
|
|
1930
1968
|
}
|
|
1931
|
-
if (
|
|
1932
|
-
if ((
|
|
1933
|
-
const r = o.result.vipBonus,
|
|
1969
|
+
if (s.vipBonus in o.result) {
|
|
1970
|
+
if ((i = o.result) != null && i.vipBonus) {
|
|
1971
|
+
const r = o.result.vipBonus, n = c.list.find((z) => z.is_current_level == !0), T = Number(n == null ? void 0 : n.benefit_list.daily.bonus) ?? 0, k = Number(n == null ? void 0 : n.benefit_list.weekly.bonus) ?? 0, j = Number(n == null ? void 0 : n.benefit_list.monthly.bonus) ?? 0;
|
|
1934
1972
|
c.bonus.day.isClaimable = r.day.isClaimable;
|
|
1935
1973
|
const { dayRemainingTime: C, dayProgressPercentage: P } = se();
|
|
1936
1974
|
c.bonus.day.timestamp = {
|
|
@@ -1950,10 +1988,10 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1950
1988
|
}
|
|
1951
1989
|
delete o.result.vipBonus;
|
|
1952
1990
|
}
|
|
1953
|
-
if (
|
|
1991
|
+
if (s.vipFieldStatus in o.result) {
|
|
1954
1992
|
if ((l = o.result) != null && l.vipFieldStatus) {
|
|
1955
|
-
const r = o.result.vipFieldStatus,
|
|
1956
|
-
|
|
1993
|
+
const r = o.result.vipFieldStatus, n = [];
|
|
1994
|
+
n.push({
|
|
1957
1995
|
name: "",
|
|
1958
1996
|
code: "vipLevel",
|
|
1959
1997
|
value: c.list.map((b) => b.name)
|
|
@@ -1961,7 +1999,7 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1961
1999
|
const T = r.findIndex(
|
|
1962
2000
|
(b) => b.fieldName == "upgrade_bonus"
|
|
1963
2001
|
);
|
|
1964
|
-
T > -1 &&
|
|
2002
|
+
T > -1 && n.push({
|
|
1965
2003
|
name: r[T].showName,
|
|
1966
2004
|
code: "",
|
|
1967
2005
|
value: c.list.map((b) => b.benefit_list.upgrade.bonus)
|
|
@@ -1969,7 +2007,7 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1969
2007
|
const k = r.findIndex(
|
|
1970
2008
|
(b) => b.fieldName == "upgrade_bonus_multiply"
|
|
1971
2009
|
);
|
|
1972
|
-
k > -1 &&
|
|
2010
|
+
k > -1 && n.push({
|
|
1973
2011
|
name: r[k].showName,
|
|
1974
2012
|
code: "",
|
|
1975
2013
|
value: c.list.map((b) => b.benefit_list.upgrade.turnover)
|
|
@@ -1977,7 +2015,7 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1977
2015
|
const j = r.findIndex(
|
|
1978
2016
|
(b) => b.fieldName == "monthly_bonus"
|
|
1979
2017
|
);
|
|
1980
|
-
c.bonus.month.isShow = j > -1, j > -1 &&
|
|
2018
|
+
c.bonus.month.isShow = j > -1, j > -1 && n.push({
|
|
1981
2019
|
name: r[j].showName,
|
|
1982
2020
|
code: "",
|
|
1983
2021
|
value: c.list.map((b) => b.benefit_list.monthly.bonus)
|
|
@@ -1985,7 +2023,7 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1985
2023
|
const C = r.findIndex(
|
|
1986
2024
|
(b) => b.fieldName == "monthly_bonus_multiply"
|
|
1987
2025
|
);
|
|
1988
|
-
C > -1 &&
|
|
2026
|
+
C > -1 && n.push({
|
|
1989
2027
|
name: r[C].showName,
|
|
1990
2028
|
code: "",
|
|
1991
2029
|
value: c.list.map((b) => b.benefit_list.monthly.turnover)
|
|
@@ -1993,7 +2031,7 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1993
2031
|
const P = r.findIndex(
|
|
1994
2032
|
(b) => b.fieldName == "weekly_bonus"
|
|
1995
2033
|
);
|
|
1996
|
-
c.bonus.week.isShow = P > -1, P > -1 &&
|
|
2034
|
+
c.bonus.week.isShow = P > -1, P > -1 && n.push({
|
|
1997
2035
|
name: r[P].showName,
|
|
1998
2036
|
code: "",
|
|
1999
2037
|
value: c.list.map((b) => b.benefit_list.weekly.bonus)
|
|
@@ -2001,7 +2039,7 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2001
2039
|
const w = r.findIndex(
|
|
2002
2040
|
(b) => b.fieldName == "weekly_bonus_multiply"
|
|
2003
2041
|
);
|
|
2004
|
-
w > -1 &&
|
|
2042
|
+
w > -1 && n.push({
|
|
2005
2043
|
name: r[w].showName,
|
|
2006
2044
|
code: "",
|
|
2007
2045
|
value: c.list.map((b) => b.benefit_list.weekly.turnover)
|
|
@@ -2009,7 +2047,7 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2009
2047
|
const I = r.findIndex(
|
|
2010
2048
|
(b) => b.fieldName == "daily_bonus"
|
|
2011
2049
|
);
|
|
2012
|
-
c.bonus.day.isShow = I > -1, I > -1 &&
|
|
2050
|
+
c.bonus.day.isShow = I > -1, I > -1 && n.push({
|
|
2013
2051
|
name: r[I].showName,
|
|
2014
2052
|
code: "",
|
|
2015
2053
|
value: c.list.map((b) => b.benefit_list.daily.bonus)
|
|
@@ -2017,61 +2055,61 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2017
2055
|
const x = r.findIndex(
|
|
2018
2056
|
(b) => b.fieldName == "daily_bonus_multiply"
|
|
2019
2057
|
);
|
|
2020
|
-
x > -1 &&
|
|
2058
|
+
x > -1 && n.push({
|
|
2021
2059
|
name: r[x].showName,
|
|
2022
2060
|
code: "",
|
|
2023
2061
|
value: c.list.map((b) => b.benefit_list.daily.turnover)
|
|
2024
|
-
}), (y === 1 || y === 3 || y === 4) &&
|
|
2062
|
+
}), (y === 1 || y === 3 || y === 4) && n.push({
|
|
2025
2063
|
name: "",
|
|
2026
2064
|
code: "detail_deposit",
|
|
2027
2065
|
value: c.list.map((b) => b.deposit.total)
|
|
2028
|
-
}), (y === 2 || y === 3 || y === 4) &&
|
|
2066
|
+
}), (y === 2 || y === 3 || y === 4) && n.push({
|
|
2029
2067
|
name: "",
|
|
2030
2068
|
code: "detail_turnover",
|
|
2031
2069
|
value: c.list.map((b) => b.turnover.total)
|
|
2032
|
-
}), c.detail =
|
|
2070
|
+
}), c.detail = n;
|
|
2033
2071
|
}
|
|
2034
2072
|
delete o.result.vipFieldStatus;
|
|
2035
2073
|
}
|
|
2036
2074
|
o.result.vipList = c;
|
|
2037
2075
|
}
|
|
2038
|
-
if (
|
|
2076
|
+
if (s.gameList in o.result && ((d = o.result) != null && d.gameList)) {
|
|
2039
2077
|
const c = o.result.gameList;
|
|
2040
2078
|
if (JSON.parse(e[S].query).pid) {
|
|
2041
|
-
if (
|
|
2079
|
+
if (s.getPlatformTurnoverRate in o.result && ((m = o.result) != null && m.getPlatformTurnoverRate)) {
|
|
2042
2080
|
const y = o.result.getPlatformTurnoverRate;
|
|
2043
2081
|
c.platformGameList = c.platformGameList.map((r) => {
|
|
2044
|
-
const
|
|
2082
|
+
const n = y.find(
|
|
2045
2083
|
(T) => T.id === r.platformId
|
|
2046
2084
|
);
|
|
2047
2085
|
return {
|
|
2048
2086
|
...r,
|
|
2049
|
-
rate: (
|
|
2087
|
+
rate: (n == null ? void 0 : n.percentage) ?? "0.00"
|
|
2050
2088
|
};
|
|
2051
2089
|
});
|
|
2052
2090
|
}
|
|
2053
2091
|
} else {
|
|
2054
|
-
const y = c.platformGame.map((r) => r.list.filter((
|
|
2055
|
-
if (c.trialGameList = y.flat(),
|
|
2092
|
+
const y = c.platformGame.map((r) => r.list.filter((n) => n.flag.trial && !r.nextPage).map((n) => n));
|
|
2093
|
+
if (c.trialGameList = y.flat(), s.fishGameList in o.result && o.result.fishGameList) {
|
|
2056
2094
|
const r = o.result.fishGameList;
|
|
2057
|
-
c.fishGameList = r.map((
|
|
2058
|
-
gameId: Number(
|
|
2059
|
-
platformId: Number(
|
|
2060
|
-
name:
|
|
2095
|
+
c.fishGameList = r.map((n) => ({
|
|
2096
|
+
gameId: Number(n.id),
|
|
2097
|
+
platformId: Number(n.platformProductID),
|
|
2098
|
+
name: n.gameName,
|
|
2061
2099
|
flag: {
|
|
2062
2100
|
value: 0,
|
|
2063
2101
|
hot: !1,
|
|
2064
2102
|
trial: !1,
|
|
2065
2103
|
new: !1
|
|
2066
2104
|
},
|
|
2067
|
-
imageUrl:
|
|
2105
|
+
imageUrl: n.imgUrl,
|
|
2068
2106
|
rate: "0.00"
|
|
2069
2107
|
})), delete o.result.fishGameList;
|
|
2070
2108
|
}
|
|
2071
|
-
if (
|
|
2109
|
+
if (s.getPlatformTurnoverRate in o.result && ((f = o.result) != null && f.getPlatformTurnoverRate)) {
|
|
2072
2110
|
const r = o.result.getPlatformTurnoverRate;
|
|
2073
|
-
c.platformGame.forEach((
|
|
2074
|
-
|
|
2111
|
+
c.platformGame.forEach((n) => {
|
|
2112
|
+
n.list = n.list.map((T) => {
|
|
2075
2113
|
const k = r.find(
|
|
2076
2114
|
(j) => j.id === T.platformId
|
|
2077
2115
|
);
|
|
@@ -2080,28 +2118,28 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2080
2118
|
rate: (k == null ? void 0 : k.percentage) ?? "0.00"
|
|
2081
2119
|
};
|
|
2082
2120
|
});
|
|
2083
|
-
}), c.hotGameList = c.hotGameList.map((
|
|
2121
|
+
}), c.hotGameList = c.hotGameList.map((n) => {
|
|
2084
2122
|
const T = r.find(
|
|
2085
|
-
(k) => k.id ===
|
|
2123
|
+
(k) => k.id === n.platformId
|
|
2086
2124
|
);
|
|
2087
2125
|
return {
|
|
2088
|
-
...
|
|
2126
|
+
...n,
|
|
2089
2127
|
rate: (T == null ? void 0 : T.percentage) ?? "0.00"
|
|
2090
2128
|
};
|
|
2091
|
-
}), c.trialGameList = c.trialGameList.map((
|
|
2129
|
+
}), c.trialGameList = c.trialGameList.map((n) => {
|
|
2092
2130
|
const T = r.find(
|
|
2093
|
-
(k) => k.id ===
|
|
2131
|
+
(k) => k.id === n.platformId
|
|
2094
2132
|
);
|
|
2095
2133
|
return {
|
|
2096
|
-
...
|
|
2134
|
+
...n,
|
|
2097
2135
|
rate: (T == null ? void 0 : T.percentage) ?? "0.00"
|
|
2098
2136
|
};
|
|
2099
|
-
}), c.fishGameList = c.fishGameList.map((
|
|
2137
|
+
}), c.fishGameList = c.fishGameList.map((n) => {
|
|
2100
2138
|
const T = r.find(
|
|
2101
|
-
(k) => k.id ===
|
|
2139
|
+
(k) => k.id === n.platformId
|
|
2102
2140
|
);
|
|
2103
2141
|
return {
|
|
2104
|
-
...
|
|
2142
|
+
...n,
|
|
2105
2143
|
rate: (T == null ? void 0 : T.percentage) ?? "0.00"
|
|
2106
2144
|
};
|
|
2107
2145
|
}), delete o.result.getPlatformTurnoverRate;
|
|
@@ -2109,13 +2147,13 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2109
2147
|
}
|
|
2110
2148
|
o.result.gameList = c;
|
|
2111
2149
|
}
|
|
2112
|
-
if (
|
|
2150
|
+
if (s.getCompany in o.result && ((g = o.result) != null && g.getCompany)) {
|
|
2113
2151
|
const c = o.result.getCompany;
|
|
2114
|
-
if (
|
|
2152
|
+
if (s.searchResultDate in o.result && (_ = o.result) != null && _.searchResultDate) {
|
|
2115
2153
|
const y = o.result.searchResultDate;
|
|
2116
2154
|
c.forEach((r) => {
|
|
2117
|
-
const
|
|
2118
|
-
|
|
2155
|
+
const n = y.find((T) => T.id == r.id);
|
|
2156
|
+
n && (r.date = n == null ? void 0 : n.date);
|
|
2119
2157
|
}), delete o.result.searchResultDate;
|
|
2120
2158
|
}
|
|
2121
2159
|
o.result.getCompany = c;
|
|
@@ -2132,17 +2170,17 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2132
2170
|
result: {}
|
|
2133
2171
|
});
|
|
2134
2172
|
}
|
|
2135
|
-
},
|
|
2173
|
+
}, ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2136
2174
|
__proto__: null,
|
|
2137
|
-
post:
|
|
2138
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2139
|
-
let
|
|
2175
|
+
post: ca
|
|
2176
|
+
}, Symbol.toStringTag, { value: "Module" })), pa = async (e, t) => {
|
|
2177
|
+
let a = {
|
|
2140
2178
|
status: 200,
|
|
2141
2179
|
message: "",
|
|
2142
2180
|
accessToken: ""
|
|
2143
2181
|
};
|
|
2144
2182
|
try {
|
|
2145
|
-
|
|
2183
|
+
a = {
|
|
2146
2184
|
status: 200,
|
|
2147
2185
|
message: "",
|
|
2148
2186
|
accessToken: (await L.post("/auth/sesh", {
|
|
@@ -2151,14 +2189,14 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2151
2189
|
})).data.access_token
|
|
2152
2190
|
};
|
|
2153
2191
|
} catch (u) {
|
|
2154
|
-
|
|
2192
|
+
a = {
|
|
2155
2193
|
status: u.status || 500,
|
|
2156
2194
|
message: u.message,
|
|
2157
2195
|
accessToken: ""
|
|
2158
2196
|
};
|
|
2159
2197
|
}
|
|
2160
|
-
return
|
|
2161
|
-
},
|
|
2198
|
+
return a;
|
|
2199
|
+
}, ga = async (e, t, a, u, i) => {
|
|
2162
2200
|
let l = {
|
|
2163
2201
|
status: 200,
|
|
2164
2202
|
message: "",
|
|
@@ -2168,9 +2206,9 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2168
2206
|
const m = (await L.post("/auth/jwt", {
|
|
2169
2207
|
os: e,
|
|
2170
2208
|
usr: t,
|
|
2171
|
-
pwd:
|
|
2209
|
+
pwd: a,
|
|
2172
2210
|
mobileno: u,
|
|
2173
|
-
type:
|
|
2211
|
+
type: i
|
|
2174
2212
|
})).data;
|
|
2175
2213
|
l.status === 200 && (l = {
|
|
2176
2214
|
status: 200,
|
|
@@ -2185,11 +2223,11 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2185
2223
|
};
|
|
2186
2224
|
}
|
|
2187
2225
|
return l;
|
|
2188
|
-
},
|
|
2226
|
+
}, ba = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2189
2227
|
__proto__: null,
|
|
2190
|
-
call:
|
|
2191
|
-
debug:
|
|
2192
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2228
|
+
call: ga,
|
|
2229
|
+
debug: pa
|
|
2230
|
+
}, Symbol.toStringTag, { value: "Module" })), fa = async () => {
|
|
2193
2231
|
let e = {
|
|
2194
2232
|
status: 200,
|
|
2195
2233
|
message: ""
|
|
@@ -2203,9 +2241,9 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2203
2241
|
};
|
|
2204
2242
|
}
|
|
2205
2243
|
return e;
|
|
2206
|
-
},
|
|
2244
|
+
}, ya = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2207
2245
|
__proto__: null,
|
|
2208
|
-
call:
|
|
2246
|
+
call: fa
|
|
2209
2247
|
}, Symbol.toStringTag, { value: "Module" })), J = {
|
|
2210
2248
|
data: {
|
|
2211
2249
|
status: !1,
|
|
@@ -2216,21 +2254,21 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2216
2254
|
accountId: 0
|
|
2217
2255
|
}
|
|
2218
2256
|
}
|
|
2219
|
-
},
|
|
2257
|
+
}, _a = async () => {
|
|
2220
2258
|
let e = {
|
|
2221
2259
|
status: 200,
|
|
2222
2260
|
message: "",
|
|
2223
2261
|
...J
|
|
2224
2262
|
};
|
|
2225
2263
|
try {
|
|
2226
|
-
const
|
|
2264
|
+
const a = (await L.get("/autoregister")).data;
|
|
2227
2265
|
e.data = {
|
|
2228
|
-
status:
|
|
2229
|
-
message:
|
|
2266
|
+
status: a.status == 1,
|
|
2267
|
+
message: a.message ?? "",
|
|
2230
2268
|
data: {
|
|
2231
|
-
account:
|
|
2232
|
-
password:
|
|
2233
|
-
accountId:
|
|
2269
|
+
account: a.data.accountcode,
|
|
2270
|
+
password: a.data.password,
|
|
2271
|
+
accountId: a.data.accountid
|
|
2234
2272
|
}
|
|
2235
2273
|
};
|
|
2236
2274
|
} catch (t) {
|
|
@@ -2241,16 +2279,16 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2241
2279
|
};
|
|
2242
2280
|
}
|
|
2243
2281
|
return e;
|
|
2244
|
-
},
|
|
2282
|
+
}, ha = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2245
2283
|
__proto__: null,
|
|
2246
|
-
call:
|
|
2284
|
+
call: _a
|
|
2247
2285
|
}, Symbol.toStringTag, { value: "Module" })), Y = {
|
|
2248
2286
|
data: {
|
|
2249
2287
|
status: !1,
|
|
2250
2288
|
message: ""
|
|
2251
2289
|
}
|
|
2252
|
-
},
|
|
2253
|
-
let
|
|
2290
|
+
}, Ta = async (e, t) => {
|
|
2291
|
+
let a = {
|
|
2254
2292
|
status: 200,
|
|
2255
2293
|
message: "",
|
|
2256
2294
|
...Y
|
|
@@ -2259,416 +2297,416 @@ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2259
2297
|
const u = await L.post("/setlocale", {
|
|
2260
2298
|
language: e,
|
|
2261
2299
|
udid: t ?? ""
|
|
2262
|
-
}),
|
|
2300
|
+
}), i = JSON.parse(
|
|
2263
2301
|
atob(u.data.responses[0].attributes)
|
|
2264
2302
|
);
|
|
2265
|
-
|
|
2266
|
-
status:
|
|
2267
|
-
message:
|
|
2303
|
+
a.data = {
|
|
2304
|
+
status: i.status == 1,
|
|
2305
|
+
message: i.message ?? ""
|
|
2268
2306
|
};
|
|
2269
2307
|
} catch (u) {
|
|
2270
|
-
|
|
2308
|
+
a = {
|
|
2271
2309
|
status: u.status || 500,
|
|
2272
2310
|
message: u.message,
|
|
2273
2311
|
...Y
|
|
2274
2312
|
};
|
|
2275
2313
|
}
|
|
2276
|
-
return
|
|
2277
|
-
},
|
|
2314
|
+
return a;
|
|
2315
|
+
}, va = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2278
2316
|
__proto__: null,
|
|
2279
|
-
call:
|
|
2280
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2317
|
+
call: Ta
|
|
2318
|
+
}, Symbol.toStringTag, { value: "Module" })), Ra = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2281
2319
|
__proto__: null
|
|
2282
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2320
|
+
}, Symbol.toStringTag, { value: "Module" })), Sa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2283
2321
|
__proto__: null
|
|
2284
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2322
|
+
}, Symbol.toStringTag, { value: "Module" })), ka = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2285
2323
|
__proto__: null
|
|
2286
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2324
|
+
}, Symbol.toStringTag, { value: "Module" })), Pa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2287
2325
|
__proto__: null
|
|
2288
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2326
|
+
}, Symbol.toStringTag, { value: "Module" })), Oa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2289
2327
|
__proto__: null
|
|
2290
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2328
|
+
}, Symbol.toStringTag, { value: "Module" })), Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2291
2329
|
__proto__: null
|
|
2292
2330
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
2293
2331
|
var Z = /* @__PURE__ */ ((e) => (e.mobileBanner = "mobileBanner", e.mobileAbout = "mobileAbout", e.mobileAd = "mobileAd", e))(Z || {});
|
|
2294
|
-
const
|
|
2332
|
+
const ja = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2295
2333
|
__proto__: null,
|
|
2296
2334
|
CmsType: Z
|
|
2297
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2335
|
+
}, Symbol.toStringTag, { value: "Module" })), xa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2298
2336
|
__proto__: null
|
|
2299
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2337
|
+
}, Symbol.toStringTag, { value: "Module" })), Da = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2300
2338
|
__proto__: null
|
|
2301
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2339
|
+
}, Symbol.toStringTag, { value: "Module" })), Ca = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2302
2340
|
__proto__: null
|
|
2303
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2341
|
+
}, Symbol.toStringTag, { value: "Module" })), wa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2304
2342
|
__proto__: null
|
|
2305
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2343
|
+
}, Symbol.toStringTag, { value: "Module" })), Ia = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2306
2344
|
__proto__: null
|
|
2307
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2345
|
+
}, Symbol.toStringTag, { value: "Module" })), La = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2308
2346
|
__proto__: null
|
|
2309
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2347
|
+
}, Symbol.toStringTag, { value: "Module" })), Ga = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2310
2348
|
__proto__: null
|
|
2311
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2349
|
+
}, Symbol.toStringTag, { value: "Module" })), za = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2312
2350
|
__proto__: null
|
|
2313
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2351
|
+
}, Symbol.toStringTag, { value: "Module" })), Na = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2314
2352
|
__proto__: null
|
|
2315
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2353
|
+
}, Symbol.toStringTag, { value: "Module" })), Fa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2316
2354
|
__proto__: null
|
|
2317
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2355
|
+
}, Symbol.toStringTag, { value: "Module" })), Ba = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2318
2356
|
__proto__: null
|
|
2319
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2357
|
+
}, Symbol.toStringTag, { value: "Module" })), Ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2320
2358
|
__proto__: null
|
|
2321
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2359
|
+
}, Symbol.toStringTag, { value: "Module" })), Wa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2322
2360
|
__proto__: null
|
|
2323
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2361
|
+
}, Symbol.toStringTag, { value: "Module" })), qa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2324
2362
|
__proto__: null
|
|
2325
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2363
|
+
}, Symbol.toStringTag, { value: "Module" })), Va = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2326
2364
|
__proto__: null
|
|
2327
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2365
|
+
}, Symbol.toStringTag, { value: "Module" })), Ea = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2328
2366
|
__proto__: null
|
|
2329
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2367
|
+
}, Symbol.toStringTag, { value: "Module" })), $a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2330
2368
|
__proto__: null
|
|
2331
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2369
|
+
}, Symbol.toStringTag, { value: "Module" })), Aa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2332
2370
|
__proto__: null
|
|
2333
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2371
|
+
}, Symbol.toStringTag, { value: "Module" })), Ha = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2334
2372
|
__proto__: null
|
|
2335
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2373
|
+
}, Symbol.toStringTag, { value: "Module" })), Ja = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2336
2374
|
__proto__: null
|
|
2337
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2375
|
+
}, Symbol.toStringTag, { value: "Module" })), Ya = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2338
2376
|
__proto__: null
|
|
2339
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2377
|
+
}, Symbol.toStringTag, { value: "Module" })), Ka = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2340
2378
|
__proto__: null
|
|
2341
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2379
|
+
}, Symbol.toStringTag, { value: "Module" })), Qa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2342
2380
|
__proto__: null
|
|
2343
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2381
|
+
}, Symbol.toStringTag, { value: "Module" })), Xa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2344
2382
|
__proto__: null
|
|
2345
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2383
|
+
}, Symbol.toStringTag, { value: "Module" })), Za = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2346
2384
|
__proto__: null
|
|
2347
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2385
|
+
}, Symbol.toStringTag, { value: "Module" })), en = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2348
2386
|
__proto__: null
|
|
2349
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2387
|
+
}, Symbol.toStringTag, { value: "Module" })), tn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2350
2388
|
__proto__: null
|
|
2351
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2389
|
+
}, Symbol.toStringTag, { value: "Module" })), an = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2352
2390
|
__proto__: null
|
|
2353
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2391
|
+
}, Symbol.toStringTag, { value: "Module" })), nn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2354
2392
|
__proto__: null
|
|
2355
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2393
|
+
}, Symbol.toStringTag, { value: "Module" })), on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2356
2394
|
__proto__: null
|
|
2357
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2395
|
+
}, Symbol.toStringTag, { value: "Module" })), rn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2358
2396
|
__proto__: null
|
|
2359
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2397
|
+
}, Symbol.toStringTag, { value: "Module" })), sn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2360
2398
|
__proto__: null
|
|
2361
2399
|
}, Symbol.toStringTag, { value: "Module" })), K = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2362
2400
|
__proto__: null
|
|
2363
2401
|
}, Symbol.toStringTag, { value: "Module" })), Q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2364
2402
|
__proto__: null
|
|
2365
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2403
|
+
}, Symbol.toStringTag, { value: "Module" })), ln = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2366
2404
|
__proto__: null
|
|
2367
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2405
|
+
}, Symbol.toStringTag, { value: "Module" })), un = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2368
2406
|
__proto__: null
|
|
2369
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2407
|
+
}, Symbol.toStringTag, { value: "Module" })), dn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2370
2408
|
__proto__: null
|
|
2371
2409
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
2372
2410
|
var ee = /* @__PURE__ */ ((e) => (e.default = "default", e.online = "online", e.mycard = "mycard", e.qrcode = "qrcode", e.personal = "personal", e))(ee || {});
|
|
2373
|
-
const
|
|
2411
|
+
const cn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2374
2412
|
__proto__: null,
|
|
2375
2413
|
ImageType: ee
|
|
2376
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2414
|
+
}, Symbol.toStringTag, { value: "Module" })), mn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2377
2415
|
__proto__: null
|
|
2378
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2416
|
+
}, Symbol.toStringTag, { value: "Module" })), pn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2379
2417
|
__proto__: null
|
|
2380
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2418
|
+
}, Symbol.toStringTag, { value: "Module" })), gn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2381
2419
|
__proto__: null
|
|
2382
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2420
|
+
}, Symbol.toStringTag, { value: "Module" })), bn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2383
2421
|
__proto__: null
|
|
2384
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2422
|
+
}, Symbol.toStringTag, { value: "Module" })), fn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2385
2423
|
__proto__: null
|
|
2386
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2424
|
+
}, Symbol.toStringTag, { value: "Module" })), yn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2387
2425
|
__proto__: null
|
|
2388
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2426
|
+
}, Symbol.toStringTag, { value: "Module" })), _n = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2389
2427
|
__proto__: null
|
|
2390
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2428
|
+
}, Symbol.toStringTag, { value: "Module" })), hn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2391
2429
|
__proto__: null
|
|
2392
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2430
|
+
}, Symbol.toStringTag, { value: "Module" })), Tn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2393
2431
|
__proto__: null
|
|
2394
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2432
|
+
}, Symbol.toStringTag, { value: "Module" })), vn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2395
2433
|
__proto__: null
|
|
2396
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2434
|
+
}, Symbol.toStringTag, { value: "Module" })), Rn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2397
2435
|
__proto__: null
|
|
2398
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2436
|
+
}, Symbol.toStringTag, { value: "Module" })), Sn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2399
2437
|
__proto__: null
|
|
2400
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2438
|
+
}, Symbol.toStringTag, { value: "Module" })), kn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2401
2439
|
__proto__: null
|
|
2402
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2440
|
+
}, Symbol.toStringTag, { value: "Module" })), Pn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2403
2441
|
__proto__: null
|
|
2404
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2442
|
+
}, Symbol.toStringTag, { value: "Module" })), On = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2405
2443
|
__proto__: null
|
|
2406
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2444
|
+
}, Symbol.toStringTag, { value: "Module" })), Mn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2407
2445
|
__proto__: null
|
|
2408
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2446
|
+
}, Symbol.toStringTag, { value: "Module" })), jn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2409
2447
|
__proto__: null
|
|
2410
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2448
|
+
}, Symbol.toStringTag, { value: "Module" })), xn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2411
2449
|
__proto__: null
|
|
2412
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2450
|
+
}, Symbol.toStringTag, { value: "Module" })), Dn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2413
2451
|
__proto__: null
|
|
2414
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2452
|
+
}, Symbol.toStringTag, { value: "Module" })), Cn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2415
2453
|
__proto__: null
|
|
2416
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2454
|
+
}, Symbol.toStringTag, { value: "Module" })), wn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2417
2455
|
__proto__: null
|
|
2418
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2456
|
+
}, Symbol.toStringTag, { value: "Module" })), In = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2419
2457
|
__proto__: null
|
|
2420
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2458
|
+
}, Symbol.toStringTag, { value: "Module" })), Ln = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2421
2459
|
__proto__: null
|
|
2422
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2460
|
+
}, Symbol.toStringTag, { value: "Module" })), Gn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2423
2461
|
__proto__: null
|
|
2424
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2462
|
+
}, Symbol.toStringTag, { value: "Module" })), zn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2425
2463
|
__proto__: null
|
|
2426
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2464
|
+
}, Symbol.toStringTag, { value: "Module" })), Nn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2427
2465
|
__proto__: null
|
|
2428
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2466
|
+
}, Symbol.toStringTag, { value: "Module" })), Fn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2429
2467
|
__proto__: null
|
|
2430
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2468
|
+
}, Symbol.toStringTag, { value: "Module" })), Bn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2431
2469
|
__proto__: null
|
|
2432
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2470
|
+
}, Symbol.toStringTag, { value: "Module" })), Un = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2433
2471
|
__proto__: null
|
|
2434
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2472
|
+
}, Symbol.toStringTag, { value: "Module" })), Wn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2435
2473
|
__proto__: null
|
|
2436
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2474
|
+
}, Symbol.toStringTag, { value: "Module" })), qn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2437
2475
|
__proto__: null
|
|
2438
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2476
|
+
}, Symbol.toStringTag, { value: "Module" })), Vn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2439
2477
|
__proto__: null
|
|
2440
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2478
|
+
}, Symbol.toStringTag, { value: "Module" })), En = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2441
2479
|
__proto__: null
|
|
2442
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2480
|
+
}, Symbol.toStringTag, { value: "Module" })), $n = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2443
2481
|
__proto__: null
|
|
2444
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2482
|
+
}, Symbol.toStringTag, { value: "Module" })), An = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2445
2483
|
__proto__: null
|
|
2446
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2484
|
+
}, Symbol.toStringTag, { value: "Module" })), Hn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2447
2485
|
__proto__: null
|
|
2448
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2486
|
+
}, Symbol.toStringTag, { value: "Module" })), Jn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2449
2487
|
__proto__: null
|
|
2450
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2488
|
+
}, Symbol.toStringTag, { value: "Module" })), Yn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2451
2489
|
__proto__: null
|
|
2452
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2490
|
+
}, Symbol.toStringTag, { value: "Module" })), Kn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2453
2491
|
__proto__: null
|
|
2454
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2492
|
+
}, Symbol.toStringTag, { value: "Module" })), Qn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2455
2493
|
__proto__: null
|
|
2456
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2494
|
+
}, Symbol.toStringTag, { value: "Module" })), Xn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2457
2495
|
__proto__: null
|
|
2458
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2496
|
+
}, Symbol.toStringTag, { value: "Module" })), Zn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2459
2497
|
__proto__: null
|
|
2460
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2498
|
+
}, Symbol.toStringTag, { value: "Module" })), eo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2461
2499
|
__proto__: null
|
|
2462
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2500
|
+
}, Symbol.toStringTag, { value: "Module" })), to = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2463
2501
|
__proto__: null
|
|
2464
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2502
|
+
}, Symbol.toStringTag, { value: "Module" })), ao = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2465
2503
|
__proto__: null
|
|
2466
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2467
|
-
api:
|
|
2468
|
-
loginApi:
|
|
2469
|
-
logoutApi:
|
|
2470
|
-
autoRegisterApi:
|
|
2471
|
-
setLocaleApi:
|
|
2504
|
+
}, Symbol.toStringTag, { value: "Module" })), no = {
|
|
2505
|
+
api: ma,
|
|
2506
|
+
loginApi: ba,
|
|
2507
|
+
logoutApi: ya,
|
|
2508
|
+
autoRegisterApi: ha,
|
|
2509
|
+
setLocaleApi: va,
|
|
2472
2510
|
apiType: ie,
|
|
2473
|
-
loginType:
|
|
2474
|
-
logoutType:
|
|
2475
|
-
announcementType:
|
|
2511
|
+
loginType: Ra,
|
|
2512
|
+
logoutType: Sa,
|
|
2513
|
+
announcementType: ka,
|
|
2476
2514
|
paymentsProviderType: le,
|
|
2477
|
-
gameListType:
|
|
2478
|
-
vipListType:
|
|
2479
|
-
promotionType:
|
|
2480
|
-
cmsListType:
|
|
2481
|
-
mainWalletType:
|
|
2482
|
-
upcomingMatchType:
|
|
2483
|
-
depositType:
|
|
2484
|
-
applyVipBonusType:
|
|
2485
|
-
withdrawalGetType:
|
|
2486
|
-
addBankCardType:
|
|
2487
|
-
withdrawType:
|
|
2488
|
-
getSettingType:
|
|
2489
|
-
transactionReportType:
|
|
2490
|
-
changePasswordType:
|
|
2491
|
-
walletType:
|
|
2492
|
-
getEventListType:
|
|
2493
|
-
getEventTokenType:
|
|
2494
|
-
getExtraGameType:
|
|
2495
|
-
mailBoxType:
|
|
2496
|
-
fishGameListType:
|
|
2497
|
-
slotGameListType:
|
|
2498
|
-
getTurnOverRewardDataType:
|
|
2499
|
-
getTurnOverRewardReportType:
|
|
2500
|
-
getInviteRewardDataType:
|
|
2501
|
-
getInviteRewardReportType:
|
|
2502
|
-
getTopupRewardDataType:
|
|
2503
|
-
getTopupRewardReportType:
|
|
2504
|
-
getRewardReferralType:
|
|
2505
|
-
getDepositPromotionType:
|
|
2506
|
-
getInviteRewardClaimType:
|
|
2507
|
-
getTopUpRewardClaimType:
|
|
2508
|
-
getTurnOverRewardClaimType:
|
|
2509
|
-
getInviteRewardSettingType:
|
|
2510
|
-
getTopUpRewardSettingType:
|
|
2511
|
-
getTurnOverRewardSettingType:
|
|
2512
|
-
requestForgetPasswordType:
|
|
2513
|
-
submitForgetPasswordType:
|
|
2515
|
+
gameListType: Pa,
|
|
2516
|
+
vipListType: Oa,
|
|
2517
|
+
promotionType: Ma,
|
|
2518
|
+
cmsListType: ja,
|
|
2519
|
+
mainWalletType: xa,
|
|
2520
|
+
upcomingMatchType: Da,
|
|
2521
|
+
depositType: Ca,
|
|
2522
|
+
applyVipBonusType: wa,
|
|
2523
|
+
withdrawalGetType: Ia,
|
|
2524
|
+
addBankCardType: La,
|
|
2525
|
+
withdrawType: Ga,
|
|
2526
|
+
getSettingType: oa,
|
|
2527
|
+
transactionReportType: za,
|
|
2528
|
+
changePasswordType: Na,
|
|
2529
|
+
walletType: Fa,
|
|
2530
|
+
getEventListType: Ba,
|
|
2531
|
+
getEventTokenType: Ua,
|
|
2532
|
+
getExtraGameType: Wa,
|
|
2533
|
+
mailBoxType: qa,
|
|
2534
|
+
fishGameListType: Va,
|
|
2535
|
+
slotGameListType: Ea,
|
|
2536
|
+
getTurnOverRewardDataType: $a,
|
|
2537
|
+
getTurnOverRewardReportType: Aa,
|
|
2538
|
+
getInviteRewardDataType: Ha,
|
|
2539
|
+
getInviteRewardReportType: Ja,
|
|
2540
|
+
getTopupRewardDataType: Ya,
|
|
2541
|
+
getTopupRewardReportType: Ka,
|
|
2542
|
+
getRewardReferralType: Qa,
|
|
2543
|
+
getDepositPromotionType: Xa,
|
|
2544
|
+
getInviteRewardClaimType: Za,
|
|
2545
|
+
getTopUpRewardClaimType: en,
|
|
2546
|
+
getTurnOverRewardClaimType: tn,
|
|
2547
|
+
getInviteRewardSettingType: an,
|
|
2548
|
+
getTopUpRewardSettingType: nn,
|
|
2549
|
+
getTurnOverRewardSettingType: on,
|
|
2550
|
+
requestForgetPasswordType: rn,
|
|
2551
|
+
submitForgetPasswordType: sn,
|
|
2514
2552
|
submitGiftCode: K,
|
|
2515
2553
|
playGame: Q,
|
|
2516
|
-
requestUpdateMobileTacCode:
|
|
2517
|
-
submitUpdateMobileTacCode:
|
|
2518
|
-
getVerifyPromo:
|
|
2519
|
-
getImageType:
|
|
2520
|
-
getValidateType:
|
|
2521
|
-
updateProfilePictureType:
|
|
2522
|
-
readMailType:
|
|
2523
|
-
checkRedPacketValidateType:
|
|
2524
|
-
getUserProfileType:
|
|
2525
|
-
requestTacCodeType:
|
|
2526
|
-
getUsernameByReferType:
|
|
2527
|
-
applyPromoType:
|
|
2528
|
-
applySignInType:
|
|
2529
|
-
applyRedPacketType:
|
|
2530
|
-
getCountryType:
|
|
2554
|
+
requestUpdateMobileTacCode: ln,
|
|
2555
|
+
submitUpdateMobileTacCode: un,
|
|
2556
|
+
getVerifyPromo: dn,
|
|
2557
|
+
getImageType: cn,
|
|
2558
|
+
getValidateType: mn,
|
|
2559
|
+
updateProfilePictureType: pn,
|
|
2560
|
+
readMailType: gn,
|
|
2561
|
+
checkRedPacketValidateType: bn,
|
|
2562
|
+
getUserProfileType: fn,
|
|
2563
|
+
requestTacCodeType: yn,
|
|
2564
|
+
getUsernameByReferType: _n,
|
|
2565
|
+
applyPromoType: hn,
|
|
2566
|
+
applySignInType: Tn,
|
|
2567
|
+
applyRedPacketType: vn,
|
|
2568
|
+
getCountryType: Rn,
|
|
2531
2569
|
submitGiftCodeType: K,
|
|
2532
2570
|
playGameType: Q,
|
|
2533
|
-
transferToMainType:
|
|
2534
|
-
transferProcessType:
|
|
2535
|
-
submitValidateType:
|
|
2536
|
-
checkTransferCreditType:
|
|
2537
|
-
friendListType:
|
|
2538
|
-
friendListEditType:
|
|
2539
|
-
getActivePPType:
|
|
2540
|
-
getActiveProductType:
|
|
2541
|
-
requestWithdrawTacType:
|
|
2542
|
-
requestWithdrawalCodeType:
|
|
2543
|
-
commissionWithdrawType:
|
|
2544
|
-
submitWithdrawalCodeType:
|
|
2545
|
-
submitCryptoAccountType:
|
|
2546
|
-
requestTransferMoneyType:
|
|
2547
|
-
submitTransferMoneyType:
|
|
2548
|
-
signInViewInfoType:
|
|
2549
|
-
signInRecordType:
|
|
2550
|
-
referralProfileType:
|
|
2551
|
-
referralMemberProfileType:
|
|
2552
|
-
registerActionType:
|
|
2553
|
-
transferReportType:
|
|
2554
|
-
agTransferCreditReportType:
|
|
2555
|
-
betReportType:
|
|
2556
|
-
getTwoFactorAuthenticateType:
|
|
2557
|
-
submitTwoFactorAuthenticateType:
|
|
2558
|
-
getUserDeviceListType:
|
|
2559
|
-
unbindUserDeviceType:
|
|
2560
|
-
searchNumberHistoryType:
|
|
2561
|
-
changeWithdrawalCodeType:
|
|
2562
|
-
checkRedPacketTokenType:
|
|
2563
|
-
submitWithdrawalAlipayType:
|
|
2564
|
-
applyReliefFund:
|
|
2565
|
-
getReliefFundData:
|
|
2566
|
-
getReliefFundReport:
|
|
2567
|
-
},
|
|
2571
|
+
transferToMainType: Sn,
|
|
2572
|
+
transferProcessType: kn,
|
|
2573
|
+
submitValidateType: Pn,
|
|
2574
|
+
checkTransferCreditType: On,
|
|
2575
|
+
friendListType: Mn,
|
|
2576
|
+
friendListEditType: jn,
|
|
2577
|
+
getActivePPType: xn,
|
|
2578
|
+
getActiveProductType: Dn,
|
|
2579
|
+
requestWithdrawTacType: Cn,
|
|
2580
|
+
requestWithdrawalCodeType: wn,
|
|
2581
|
+
commissionWithdrawType: In,
|
|
2582
|
+
submitWithdrawalCodeType: Ln,
|
|
2583
|
+
submitCryptoAccountType: Gn,
|
|
2584
|
+
requestTransferMoneyType: zn,
|
|
2585
|
+
submitTransferMoneyType: Nn,
|
|
2586
|
+
signInViewInfoType: Fn,
|
|
2587
|
+
signInRecordType: Bn,
|
|
2588
|
+
referralProfileType: Un,
|
|
2589
|
+
referralMemberProfileType: Wn,
|
|
2590
|
+
registerActionType: qn,
|
|
2591
|
+
transferReportType: Vn,
|
|
2592
|
+
agTransferCreditReportType: En,
|
|
2593
|
+
betReportType: $n,
|
|
2594
|
+
getTwoFactorAuthenticateType: An,
|
|
2595
|
+
submitTwoFactorAuthenticateType: Hn,
|
|
2596
|
+
getUserDeviceListType: Jn,
|
|
2597
|
+
unbindUserDeviceType: Yn,
|
|
2598
|
+
searchNumberHistoryType: Kn,
|
|
2599
|
+
changeWithdrawalCodeType: Qn,
|
|
2600
|
+
checkRedPacketTokenType: Xn,
|
|
2601
|
+
submitWithdrawalAlipayType: Zn,
|
|
2602
|
+
applyReliefFund: eo,
|
|
2603
|
+
getReliefFundData: to,
|
|
2604
|
+
getReliefFundReport: ao
|
|
2605
|
+
}, ro = {
|
|
2568
2606
|
install(e) {
|
|
2569
|
-
e.config.globalProperties.$library =
|
|
2607
|
+
e.config.globalProperties.$library = no;
|
|
2570
2608
|
}
|
|
2571
2609
|
};
|
|
2572
2610
|
export {
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2611
|
+
ro as Repository,
|
|
2612
|
+
La as addBankCardType,
|
|
2613
|
+
En as agTransferCreditReportType,
|
|
2614
|
+
ka as announcementType,
|
|
2615
|
+
ma as api,
|
|
2578
2616
|
ie as apiType,
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2617
|
+
hn as applyPromoType,
|
|
2618
|
+
vn as applyRedPacketType,
|
|
2619
|
+
eo as applyReliefFund,
|
|
2620
|
+
Tn as applySignInType,
|
|
2621
|
+
wa as applyVipBonusType,
|
|
2622
|
+
ha as autoRegisterApi,
|
|
2623
|
+
$n as betReportType,
|
|
2624
|
+
Na as changePasswordType,
|
|
2625
|
+
Qn as changeWithdrawalCodeType,
|
|
2626
|
+
Xn as checkRedPacketTokenType,
|
|
2627
|
+
bn as checkRedPacketValidateType,
|
|
2628
|
+
On as checkTransferCreditType,
|
|
2629
|
+
ja as cmsListType,
|
|
2630
|
+
In as commissionWithdrawType,
|
|
2631
|
+
Ca as depositType,
|
|
2632
|
+
Va as fishGameListType,
|
|
2633
|
+
jn as friendListEditType,
|
|
2634
|
+
Mn as friendListType,
|
|
2635
|
+
Pa as gameListType,
|
|
2636
|
+
xn as getActivePPType,
|
|
2637
|
+
Dn as getActiveProductType,
|
|
2638
|
+
Rn as getCountryType,
|
|
2639
|
+
Xa as getDepositPromotionType,
|
|
2640
|
+
Ba as getEventListType,
|
|
2641
|
+
Ua as getEventTokenType,
|
|
2642
|
+
Wa as getExtraGameType,
|
|
2643
|
+
cn as getImageType,
|
|
2644
|
+
Za as getInviteRewardClaimType,
|
|
2645
|
+
Ha as getInviteRewardDataType,
|
|
2646
|
+
Ja as getInviteRewardReportType,
|
|
2647
|
+
an as getInviteRewardSettingType,
|
|
2648
|
+
to as getReliefFundData,
|
|
2649
|
+
ao as getReliefFundReport,
|
|
2650
|
+
Qa as getRewardReferralType,
|
|
2651
|
+
oa as getSettingType,
|
|
2652
|
+
en as getTopUpRewardClaimType,
|
|
2653
|
+
nn as getTopUpRewardSettingType,
|
|
2654
|
+
Ya as getTopupRewardDataType,
|
|
2655
|
+
Ka as getTopupRewardReportType,
|
|
2656
|
+
tn as getTurnOverRewardClaimType,
|
|
2657
|
+
$a as getTurnOverRewardDataType,
|
|
2658
|
+
Aa as getTurnOverRewardReportType,
|
|
2659
|
+
on as getTurnOverRewardSettingType,
|
|
2660
|
+
An as getTwoFactorAuthenticateType,
|
|
2661
|
+
Jn as getUserDeviceListType,
|
|
2662
|
+
fn as getUserProfileType,
|
|
2663
|
+
_n as getUsernameByReferType,
|
|
2664
|
+
mn as getValidateType,
|
|
2665
|
+
dn as getVerifyPromo,
|
|
2666
|
+
ba as loginApi,
|
|
2667
|
+
Ra as loginType,
|
|
2668
|
+
ya as logoutApi,
|
|
2669
|
+
Sa as logoutType,
|
|
2670
|
+
qa as mailBoxType,
|
|
2671
|
+
xa as mainWalletType,
|
|
2634
2672
|
le as paymentsProviderType,
|
|
2635
2673
|
Q as playGame,
|
|
2636
2674
|
Q as playGameType,
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2675
|
+
Ma as promotionType,
|
|
2676
|
+
gn as readMailType,
|
|
2677
|
+
Wn as referralMemberProfileType,
|
|
2678
|
+
Un as referralProfileType,
|
|
2679
|
+
qn as registerActionType,
|
|
2680
|
+
rn as requestForgetPasswordType,
|
|
2681
|
+
yn as requestTacCodeType,
|
|
2682
|
+
zn as requestTransferMoneyType,
|
|
2683
|
+
ln as requestUpdateMobileTacCode,
|
|
2684
|
+
Cn as requestWithdrawTacType,
|
|
2685
|
+
wn as requestWithdrawalCodeType,
|
|
2686
|
+
Kn as searchNumberHistoryType,
|
|
2687
|
+
va as setLocaleApi,
|
|
2688
|
+
Bn as signInRecordType,
|
|
2689
|
+
Fn as signInViewInfoType,
|
|
2690
|
+
Ea as slotGameListType,
|
|
2691
|
+
Gn as submitCryptoAccountType,
|
|
2692
|
+
sn as submitForgetPasswordType,
|
|
2655
2693
|
K as submitGiftCode,
|
|
2656
2694
|
K as submitGiftCodeType,
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2695
|
+
Nn as submitTransferMoneyType,
|
|
2696
|
+
Hn as submitTwoFactorAuthenticateType,
|
|
2697
|
+
un as submitUpdateMobileTacCode,
|
|
2698
|
+
Pn as submitValidateType,
|
|
2699
|
+
Zn as submitWithdrawalAlipayType,
|
|
2700
|
+
Ln as submitWithdrawalCodeType,
|
|
2701
|
+
za as transactionReportType,
|
|
2702
|
+
kn as transferProcessType,
|
|
2703
|
+
Vn as transferReportType,
|
|
2704
|
+
Sn as transferToMainType,
|
|
2705
|
+
Yn as unbindUserDeviceType,
|
|
2706
|
+
Da as upcomingMatchType,
|
|
2707
|
+
pn as updateProfilePictureType,
|
|
2708
|
+
Oa as vipListType,
|
|
2709
|
+
Fa as walletType,
|
|
2710
|
+
Ga as withdrawType,
|
|
2711
|
+
Ia as withdrawalGetType
|
|
2674
2712
|
};
|