queenamdi-functions-beta 0.0.6 → 0.0.7

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.
@@ -1,871 +1 @@
1
- // <<==== Baileys ====>>
2
- const {
3
- default: makeWASocket,
4
- DisconnectReason,
5
- useSingleFileAuthState,
6
- useMultiFileAuthState,
7
- MessageRetryMap,
8
- getDevice,
9
- makeInMemoryStore,
10
- fetchLatestBaileysVersion,
11
- } = require("@adiwajshing/baileys");
12
-
13
- const axios = require('axios');
14
- const CryptoJS = require("crypto-js");
15
- const fs = require("fs");
16
- const got = require('got');
17
- const QRCode = require('qrcode')
18
- const sharp = require('sharp');
19
-
20
- // <<==== HEROKU ====>>
21
- const Heroku = require('heroku-client');
22
- const heroku = new Heroku({
23
- token: vars.HEROKU_API
24
- });
25
- let baseURI = '/apps/' + vars.HEROKU_APP;
26
-
27
- const { state, saveState } = useSingleFileAuthState("./amdi_session.json");
28
-
29
- const msgRetryCounterMap = {};
30
-
31
- // <<==== Language ====>>
32
- const Language = require('../../../language/applyLANG');
33
- const Lang = Language.getString('amdiModule');
34
-
35
- // <==== Temp Store ====>
36
- let messages = []
37
- function deleteMessageST(messageID) {
38
- delete messages[messageID]
39
- }
40
- function saveMessageST(messageID, txt) {
41
- messages[messageID] = txt
42
- }
43
- function getMessageST(messageID) {
44
- return messages[messageID]
45
-
46
- }
47
- function clearMessagesST() {
48
- messages = []
49
- }
50
- setInterval(clearMessagesST, 120000)
51
-
52
- const retryMessageHandler = async message => {
53
- let text = getMessageST(message.id)
54
- deleteMessageST(message.id)
55
- return {
56
- conversation: text
57
- }
58
- }
59
-
60
- function deleteAuth() {
61
- try {
62
- fs.unlinkSync("./amdi_session.json");
63
- } catch (err) {
64
- console.log("There is no session file.");
65
- }
66
- }
67
-
68
- // <<==== Logger ====>>
69
- const P = require("pino");
70
- let MAIN_LOGGER = P({ timestamp: () => `,"time":"${new Date().toJSON()}"` });
71
- const logger = MAIN_LOGGER.child({});
72
- logger.level = 'silent';
73
-
74
-
75
- const amdiDB = require('../../../assets/amdiDB'); // QueenAmdi Database
76
- const vars = require('../../../assets/amdiSettings')
77
-
78
- // <<==== AUTH-FETCH ====>>
79
- let cred, auth_row_count;
80
- async function fetchauth() {
81
- try {
82
- auth_result = await amdiDB.query('select * from auth;');//checking auth table
83
- console.log(Lang.existWA)
84
- auth_row_count = await auth_result.rowCount;
85
- let data = auth_result.rows[0];
86
- if (auth_row_count == 0) {
87
- console.log(Lang.genNEWses)
88
- } else {
89
- console.log(Lang.waConImport);
90
- cred = {
91
- creds: {
92
- noiseKey: JSON.parse(data.noisekey),
93
- signedIdentityKey: JSON.parse(data.signedidentitykey),
94
- signedPreKey: JSON.parse(data.signedprekey),
95
- registrationId: Number(data.registrationid),
96
- advSecretKey: data.advsecretkey,
97
- nextPreKeyId: Number(data.nextprekeyid),
98
- firstUnuploadedPreKeyId: Number(data.firstunuploadedprekeyid),
99
- // serverHasPreKeys: Boolean(data.serverhasprekeys),
100
- serverHasPreKeys: false,
101
- account: JSON.parse(data.account),
102
- me: JSON.parse(data.me),
103
- signalIdentities: JSON.parse(data.signalidentities),
104
- lastAccountSyncTimestamp: 0, // To allow bot to read the messages
105
- // lastAccountSyncTimestamp: Number(data.lastaccountsynctimestampb),
106
- myAppStateKeyId: data.myappstatekeyid,
107
- },
108
- keys: state.keys,
109
- };
110
- cred.creds.noiseKey.private = Buffer.from(cred.creds.noiseKey.private);
111
- cred.creds.noiseKey.public = Buffer.from(cred.creds.noiseKey.public);
112
- cred.creds.signedIdentityKey.private = Buffer.from(
113
- cred.creds.signedIdentityKey.private
114
- );
115
- cred.creds.signedIdentityKey.public = Buffer.from(
116
- cred.creds.signedIdentityKey.public
117
- );
118
- cred.creds.signedPreKey.keyPair.private = Buffer.from(
119
- cred.creds.signedPreKey.keyPair.private
120
- );
121
- cred.creds.signedPreKey.keyPair.public = Buffer.from(
122
- cred.creds.signedPreKey.keyPair.public
123
- );
124
- cred.creds.signedPreKey.signature = Buffer.from(
125
- cred.creds.signedPreKey.signature
126
- );
127
- cred.creds.signalIdentities[0].identifierKey = Buffer.from(
128
- cred.creds.signalIdentities[0].identifierKey
129
- );
130
- }
131
- } catch (err) {
132
- console.log(Lang.dbCREATE);//if login fail create a amdiDB
133
- //console.log(err);
134
- await amdiDB.query(
135
- "CREATE TABLE auth(noiseKey text, signedIdentityKey text, signedPreKey text, registrationId text, advSecretKey text, nextPreKeyId text, firstUnuploadedPreKeyId text, serverHasPreKeys text, account text, me text, signalIdentities text, lastAccountSyncTimestamp text, myAppStateKeyId text);");
136
- await fetchauth();
137
- }
138
- }
139
-
140
- function updateLogin() {
141
- try {
142
- let noiseKey = JSON.stringify(state.creds.noiseKey);
143
- let signedIdentityKey = JSON.stringify(state.creds.signedIdentityKey);
144
- let signedPreKey = JSON.stringify(state.creds.signedPreKey);
145
- let registrationId = state.creds.registrationId;
146
- let advSecretKey = state.creds.advSecretKey;
147
- let nextPreKeyId = state.creds.nextPreKeyId;
148
- let firstUnuploadedPreKeyId = state.creds.firstUnuploadedPreKeyId;
149
- let serverHasPreKeys = state.creds.serverHasPreKeys;
150
- let account = JSON.stringify(state.creds.account);
151
- let me = JSON.stringify(state.creds.me);
152
- let signalIdentities = JSON.stringify(state.creds.signalIdentities);
153
- let lastAccountSyncTimestamp = state.creds.lastAccountSyncTimestamp;
154
- let myAppStateKeyId = state.creds.myAppStateKeyId; //?
155
- // INSERT / UPDATE LOGIN DATA
156
- if (auth_row_count == 0) {
157
- console.log(Lang.insertWACON);
158
- amdiDB.query(
159
- "INSERT INTO auth VALUES($1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13);",
160
- [
161
- noiseKey, signedIdentityKey, signedPreKey, registrationId, advSecretKey, nextPreKeyId,
162
- firstUnuploadedPreKeyId, serverHasPreKeys, account, me, signalIdentities, lastAccountSyncTimestamp, myAppStateKeyId,
163
- ]
164
- );
165
- amdiDB.query("commit;");
166
- console.log(Lang.insertWADone);
167
- } else {
168
- console.log(Lang.updateWACON);
169
- amdiDB.query(
170
- "UPDATE auth SET noiseKey = $1, signedIdentityKey = $2, signedPreKey = $3, registrationId = $4, advSecretKey = $5, nextPreKeyId = $6, firstUnuploadedPreKeyId = $7, serverHasPreKeys = $8, account = $9, me = $10, signalIdentities = $11, lastAccountSyncTimestamp = $12, myAppStateKeyId = $13;",
171
- [
172
- noiseKey, signedIdentityKey, signedPreKey, registrationId, advSecretKey, nextPreKeyId, firstUnuploadedPreKeyId,
173
- serverHasPreKeys, account, me, signalIdentities, lastAccountSyncTimestamp, myAppStateKeyId,
174
- ]
175
- );
176
- }
177
- amdiDB.query("commit;");
178
- } catch { }
179
- }
180
-
181
- // <<==== OWNER and USER ====>>
182
- const Bot_Number = vars.BOT_NUMBER + '@s.whatsapp.net';
183
- const allowedNumbs = ["94757405652", "94719077818", "94757672873", "94759551299", "94774976567", "94785457519", "94785435462"];
184
- const footerTXT = 'ǫᴜᴇᴇɴ ᴀᴍᴅɪ - ᴍᴜʟᴛɪ ᴅᴇᴠɪᴄᴇ'
185
- const MOD = vars.MOD
186
- const util = require("util");
187
- const readdir = util.promisify(fs.readdir);
188
- const readFile = util.promisify(fs.readFile);
189
- const { getBanJids } = require('../../../database/ban_jidDB');
190
- const { getWelcome, getBye } = require('../../../database/greetingsDB');
191
-
192
- // <<==== Plugins Controller ====>>
193
- let commandsPrimary = {};
194
- let commandsPrivate = {};
195
- let commandsAdmin = {};
196
-
197
- let reactionPrimary = {};
198
- let reactionPrivate = {};
199
- let reactionAdmin = {};
200
-
201
- var prefix = '';
202
- if (/\[(\W*)\]/.test(vars.PREFIX)) {
203
- prefix = vars.PREFIX.match(/\[(\W*)\]/)[1][0];
204
- } else {
205
- prefix = '.';
206
- }
207
-
208
- const addCommands = async () => {
209
- let path = "./plugins/primary/";
210
- let filenames = await readdir(path);
211
- filenames.forEach((file) => {
212
- if (file.endsWith(".js")) {
213
- let { command } = require('.' + path + file);
214
- let cmdMap = command();
215
- const cmdInfo = cmdMap.cmdInfo;
216
- for (let c of Object.keys(cmdInfo)) {
217
- const cmdObjects = cmdInfo[c];
218
- commandsPrimary[cmdObjects.cmd] = cmdMap.operate;
219
- reactionPrimary[cmdObjects.cmd] = cmdObjects.react;
220
- }
221
- }
222
- });
223
-
224
- path = "./plugins/private/";
225
- filenames = await readdir(path);
226
- filenames.forEach((file) => {
227
- if (file.endsWith(".js")) {
228
- let { command } = require('.' + path + file);
229
- let cmdMap = command();
230
- const cmdInfo = cmdMap.cmdInfo;
231
- for (let c of Object.keys(cmdInfo)) {
232
- const cmdObjects = cmdInfo[c];
233
- commandsPrivate[cmdObjects.cmd] = cmdMap.operate;
234
- reactionPrivate[cmdObjects.cmd] = cmdObjects.react;
235
- }
236
- }
237
- });
238
-
239
- path = "./plugins/admin/";
240
- filenames = await readdir(path);
241
- filenames.forEach((file) => {
242
- if (file.endsWith(".js")) {
243
- let { command } = require('.' + path + file);
244
- let cmdMap = command();
245
- const cmdInfo = cmdMap.cmdInfo;
246
- for (let c of Object.keys(cmdInfo)) {
247
- const cmdObjects = cmdInfo[c];
248
- commandsAdmin[cmdObjects.cmd] = cmdMap.operate;
249
- reactionAdmin[cmdObjects.cmd] = cmdObjects.react;
250
- }
251
- }
252
- });
253
-
254
- //deleting the files .webp .jpeg .jpg .mp3 .mp4 .png
255
- path = "./";
256
- filenames = await readdir(path);
257
- filenames.forEach((file) => {
258
- if (file.endsWith(".webp") || file.endsWith(".jpeg") || file.endsWith(".mp3") || file.endsWith(".mp4") || file.endsWith(".jpg") || file.endsWith(".png") || file.endsWith(".gif")) {
259
- fs.unlinkSync('.' + path + file);
260
- }
261
- });
262
- };
263
-
264
-
265
- // <<==== Queen Amdi Main Function ====>>
266
- const QueenAmdi = async () => {
267
- console.log('Queen Amdi Multi-Device💃❤');
268
- console.log(`🔖 Version : ${Lang.version} [Public]`);
269
-
270
- addCommands()
271
-
272
- setInterval(deleteAuth, 1000 * 60 * 30);
273
- await fetchauth();
274
- if (auth_row_count != 0) {
275
- state.creds = cred.creds;
276
- }
277
-
278
- const { version, isLatest } = await fetchLatestBaileysVersion(); // WA Web version checking
279
- console.log(`📟 Currently using Web WA: ${version.join(".")}v, 📋 Latest: ${isLatest}`);
280
- let noLogs = P({ level: "silent" }); // Hide the chat logs
281
-
282
-
283
- const amdiCONN = makeWASocket({
284
- version,
285
- logger: noLogs,
286
- defaultQueryTimeoutMs: undefined,
287
- printQRInTerminal: false,
288
- browser: [" Queen Amdi-MD ", "Safari", "1.0.0"],
289
- msgRetryCounterMap,
290
- auth: state,
291
- getMessage: retryMessageHandler
292
- });
293
-
294
- const store = makeInMemoryStore({
295
- logger: P().child({ level: "debug", stream: "store" }),
296
- });
297
- store.bind(amdiCONN.ev);
298
-
299
- // <==== Owner ====>
300
- const LoggerChat = (text) => {
301
- amdiCONN.sendMessage(vars.LOG_JID, { text: text })
302
- }
303
-
304
- // <==== group-participants.update ====>
305
- amdiCONN.ev.on('group-participants.update', async (grpData) => {
306
- if (vars.CHAT_UPDATES == 'true') {
307
- try {
308
- amdiCONN.groupMetadata(grpData.id).then((res) => {
309
- // console.log(res)
310
- LoggerChat(`💠 *Group Participant Updates*\n\n‣ Status: ${grpData.action} \n‣ Group Name: ${res.subject} \n‣ JID: ${grpData.id} \n‣ Participants: ${grpData.participants[0]}`);
311
- })
312
- } catch (e) {
313
- return;
314
- }
315
- }
316
-
317
- // console.log(grpData)
318
- const welcomeData = await getWelcome(grpData.id)
319
- const byeData = await getBye(grpData.id)
320
- if (grpData.action == 'add') {
321
- if (welcomeData !== -1 || welcomeData.welnote !== 'blank') {
322
- const welcomeButtons = [
323
- {index: 1, urlButton: {displayText: '💃🏻 Official Website', url: 'https://amdaniwasa.com/'}},
324
- {index: 2, urlButton: {displayText: '🎞️ AN Tech YouTube Channel', url: 'https://www.youtube.com/channel/UCZx8U1EU95-Wn9mH4dn15vQ'}}
325
- ]
326
- const welcomeTemplate = {
327
- caption: welcomeData.welnote,
328
- footer: footerTXT,
329
- templateButtons: welcomeButtons,
330
- image: {url: welcomeData.welpicurl}
331
- }
332
- return await amdiCONN.sendMessage(grpData.id, welcomeTemplate)
333
- }
334
- }
335
-
336
- if (grpData.action == 'remove') {
337
- if (byeData !== -1 || byeData.byenote !== 'blank') {
338
- const byeButtons = [
339
- {index: 1, urlButton: {displayText: '💃🏻 Official Website', url: 'https://amdaniwasa.com/'}},
340
- {index: 2, urlButton: {displayText: '🎞️ AN Tech YouTube Channel', url: 'https://www.youtube.com/channel/UCZx8U1EU95-Wn9mH4dn15vQ'}}
341
- ]
342
- const byeTemplate = {
343
- caption: byeData.byenote,
344
- footer: footerTXT,
345
- templateButtons: byeButtons,
346
- image: {url: byeData.byepicurl}
347
- }
348
- return await amdiCONN.sendMessage(grpData.id, byeTemplate)
349
- }
350
- }
351
- });
352
-
353
- // <==== messages.upsert ====>
354
- amdiCONN.ev.on("messages.upsert", async (m) => {
355
- try {
356
- const msg = JSON.parse(JSON.stringify(m)).messages[0];
357
- if (!msg.message || msg.message.reactionMessage) return; //When demote, add, remove etc run, msg.message will return
358
- if (msg.key.remoteJid == "status@broadcast") return;
359
-
360
- const content = JSON.stringify(msg.message);
361
- const clientJID = msg.key.remoteJid;
362
- const type = Object.keys(msg.message)[0];
363
-
364
- const code = "manoj-amdi"
365
- let url = `https://raw.githubusercontent.com/BlackAmda/QueenAmdi/master/owner.json`
366
- const response = await got(url);
367
- const ownerJSON = JSON.parse(response.body);
368
- const banned_users_MM = ownerJSON.data.Manoj_Multi_Device.banned_user
369
- const banned_users_QA = ownerJSON.data.Queen_Amdi.banned_user
370
- const bytes_MM = CryptoJS.AES.decrypt(banned_users_MM, code);
371
- const bytes_QA = CryptoJS.AES.decrypt(banned_users_QA, code);
372
- const decrypt_JIDS_MM = bytes_MM.toString(CryptoJS.enc.Utf8);
373
- const decrypt_JIDS_QA = bytes_QA.toString(CryptoJS.enc.Utf8);
374
- var abc = decrypt_JIDS_MM.split(',');
375
- var efg = decrypt_JIDS_QA.split(',');
376
- const banned_group_MM = ownerJSON.data.Manoj_Multi_Device.banned_group
377
- const banned_group_QA = ownerJSON.data.Queen_Amdi.banned_group
378
-
379
-
380
- // <==== reply ====>
381
- const reply = (replyCL) => {
382
- amdiCONN.sendMessage(clientJID, { text: replyCL }, { quoted: (fromMe === false ? m.messages[0] : '') })
383
- }
384
-
385
- // <==== Audio Message ====>
386
- const sendAudioMsg = (audioURL, mimeType, pttStatus) => {
387
- amdiCONN.sendMessage(
388
- clientJID,
389
- { audio: { url: audioURL }, mimetype: mimeType, ptt: pttStatus },
390
- { quoted: (fromMe === false ? m.messages[0] : '') }
391
- )
392
- }
393
-
394
- // <==== Button Message ====>
395
- const sendButtonMsg = (buttons, text, tagMsg, imageURL) => {
396
- var buttonMessage = ''
397
- if (imageURL) {
398
- buttonMessage = {
399
- image: {url: imageURL },
400
- caption: text,
401
- footer: footerTXT,
402
- buttons: buttons,
403
- headerType: 4
404
- }
405
- } else if (!imageURL) {
406
- buttonMessage = {
407
- text: text,
408
- footer: footerTXT,
409
- buttons: buttons,
410
- headerType: 1
411
- }
412
- }
413
- amdiCONN.sendMessage(clientJID, buttonMessage, { quoted: (tagMsg === true ? (fromMe === false ? m.messages[0] : '') : '') })
414
- }
415
-
416
- // <==== Template Message ====>
417
- const sendTemplate = (buttons, text, tagMsg, imageURL) => {
418
- var templateMessage = ''
419
- if (imageURL) {
420
- templateMessage = {
421
- caption: text,
422
- footer: footerTXT,
423
- templateButtons: buttons,
424
- image: {url: imageURL}
425
- }
426
- } else if (!imageURL) {
427
- templateMessage = {
428
- text: text,
429
- footer: footerTXT,
430
- templateButtons: buttons
431
- }
432
- }
433
- amdiCONN.sendMessage(clientJID, templateMessage, { quoted: (tagMsg === true ? (fromMe === false ? m.messages[0] : '') : '') })
434
- }
435
-
436
- // <==== List Message ====>
437
- const sendListMsg = (listInfo, sections) => {
438
- var buttonTXT = ''
439
- if (listInfo.buttonTXT == 'default') { buttonTXT = 'Click here' }
440
- else { buttonTXT = listInfo.buttonTXT }
441
-
442
- const listMessage = {
443
- text: listInfo.text,
444
- footer: footerTXT,
445
- title: listInfo.title,
446
- buttonText: buttonTXT,
447
- sections
448
- };
449
- amdiCONN.sendMessage(clientJID, listMessage, { quoted: (fromMe === false ? m.messages[0] : '') })
450
- }
451
-
452
- // <==== Reaction ====>
453
- const react = (emoji, reactMsg) => {
454
- const reactionMessage = {
455
- react: {
456
- text: emoji,
457
- key: reactMsg.key
458
- }
459
- }
460
- amdiCONN.sendMessage(clientJID, reactionMessage)
461
- }
462
-
463
- // <==== Admin Fetch ====>
464
- const writeGroupAdmins = (participants) => {
465
- admins = [];
466
- for (let i of participants) {
467
- ((i.admin == 'admin') || (i.admin == 'superadmin')) ? admins.push(i.id) : "";
468
- }
469
- return admins;
470
- };
471
-
472
- // <==== Bot Number ====>
473
- let botNumberJid = amdiCONN.user.id;
474
- botNumberJid =
475
- botNumberJid.slice(0, botNumberJid.search(":")) +
476
- botNumberJid.slice(botNumberJid.search("@"));
477
-
478
-
479
- // <==== Message Body Reader ====>
480
- let msgBody = type === "conversation" && msg.message.conversation.startsWith(prefix)
481
- ? msg.message.conversation : type == "imageMessage" &&
482
- msg.message.imageMessage.caption &&
483
- msg.message.imageMessage.caption.startsWith(prefix)
484
- ? msg.message.imageMessage.caption : type == "videoMessage" &&
485
- msg.message.videoMessage.caption &&
486
- msg.message.videoMessage.caption.startsWith(prefix)
487
- ? msg.message.videoMessage.caption : type == "extendedTextMessage" &&
488
- msg.message.extendedTextMessage.text &&
489
- msg.message.extendedTextMessage.text.startsWith(prefix)
490
- ? msg.message.extendedTextMessage.text
491
- : type == "buttonsResponseMessage"
492
- ? msg.message.buttonsResponseMessage.selectedButtonId
493
- : type == "templateButtonReplyMessage"
494
- ? msg.message.templateButtonReplyMessage.selectedId
495
- : type == "listResponseMessage"
496
- ? msg.message.listResponseMessage.singleSelectReply.selectedRowId
497
- : type == "messageContextInfo"
498
- ? (msg.message.buttonsResponseMessage?.selectedButtonId || msg.message.listResponseMessage?.singleSelectReply.selectedRowId || msg.text)
499
- : "";
500
-
501
-
502
- if (msgBody[1] == " ") msgBody = msgBody[0] + msgBody.slice(2);
503
- const evv = msgBody.trim().split(/ +/).slice(1).join(' ');
504
- const command = msgBody.slice(1).trim().split(/ +/).shift().toLowerCase();
505
- const input = msgBody.trim().split(/ +/).slice(1);
506
- const isCmd = msgBody.startsWith(prefix);
507
- const isGroup = clientJID.endsWith("@g.us");
508
- const fromMe = m.messages[0].key.fromMe
509
- const msgDevice = getDevice(m.messages[0].key.id)
510
-
511
- let isReply;
512
- if (m.messages[0].message.hasOwnProperty('extendedTextMessage') &&
513
- m.messages[0].message.extendedTextMessage.hasOwnProperty('contextInfo') === true &&
514
- m.messages[0].message.extendedTextMessage.contextInfo.hasOwnProperty('quotedMessage')) {
515
- isReply = m.messages[0].message.extendedTextMessage.contextInfo.quotedMessage
516
- } else {
517
- isReply = false
518
- }
519
- const reply_message = isReply != false ? m.messages[0].message.extendedTextMessage.contextInfo.quotedMessage : false
520
-
521
- /*if (fromMe == false || !allowedNumbs.includes(senderNumb)) {
522
- if (msgDevice == 'web') {
523
- reply('*⛔ Other bots are not allowed here!*')
524
- }
525
- }*/
526
-
527
- // console.log(msg)
528
- if (!isCmd) return;
529
-
530
- // <==== Main Groups ====> CLOSED FOR BETA VERSION
531
- /*if (m.messages[0].key.remoteJid.includes('g.us')) {
532
- const QA_GROUPS = ownerJSON.data.Queen_Amdi.main_groups
533
- const MM_GROUPS = ownerJSON.data.Manoj_Multi_Device.main_groups
534
- if (QA_GROUPS.includes(m.messages[0].key.remoteJid.split('@')[0]) || MM_GROUPS.includes(m.messages[0].key.remoteJid.split('@')[0])) {
535
- return;
536
- }
537
- }*/
538
-
539
- // <==== Banned users ====>
540
- if (m.messages[0].key.remoteJid.includes('g.us') ? abc.includes(m.messages[0].key.participant.split('@')[0]) : abc.includes(m.messages[0].key.remoteJid.split('@')[0])) {
541
- amdiCONN.sendMessage(clientJID, { text: '⚠️ *Developers have banned you from using Queen Amdi and Manoj-MD bot.*' }, { quoted: m.messages[0] })
542
- return;
543
- }
544
- if (m.messages[0].key.remoteJid.includes('g.us') ? efg.includes(m.messages[0].key.participant.split('@')[0]) : efg.includes(m.messages[0].key.remoteJid.split('@')[0])) {
545
- amdiCONN.sendMessage(clientJID, { text: '⚠️ *Developers have banned you from using Queen Amdi and Manoj-MD bot.*' }, { quoted: m.messages[0] })
546
- return;
547
- }
548
-
549
- // <==== Banned groups ====>
550
- if (m.messages[0].key.remoteJid.includes('g.us')) {
551
- if (banned_group_MM.includes(m.messages[0].key.remoteJid.split('@')[0]) || banned_group_QA.includes(m.messages[0].key.remoteJid.split('@')[0])) {
552
- amdiCONN.sendMessage(clientJID, { text: '⚠️ *Developers have banned this group from using Queen Amdi and Manoj-MD bot.*' }, { quoted: m.messages[0] })
553
- return;
554
- }
555
- }
556
-
557
-
558
- // <==== Message Seen Status ====>
559
- const readMessages = () => {
560
- if (vars.READ_KEY == 'true') {
561
- const readkey = {
562
- remoteJid: clientJID,
563
- id: m.messages[0].key.id,
564
- participant: isGroup ? m.messages[0].key.participant : undefined
565
- }
566
- amdiCONN.readMessages([readkey]);
567
- }
568
- }
569
-
570
- const groupMetadata = isGroup ? await amdiCONN.groupMetadata(clientJID) : "";
571
- let sender = isGroup ? msg.key.participant : m.messages[0].key.remoteJid;
572
- const senderNumb = sender.includes(":") ? sender.split(":")[0] : sender.split("@")[0];
573
- if (msg.key.fromMe) sender = botNumberJid;
574
- const senderjid = sender.includes(":") ? sender.slice(0, sender.search(":")) + '@' + sender.split("@")[1] : sender;
575
-
576
- // <==== Ban users ====>
577
- let blockCount = await getBanJids(sender);
578
- if (blockCount == 1) return;
579
-
580
- // <==== Ban groups ====>
581
- if (isGroup) {
582
- let blockCount = await getBanJids(clientJID);
583
- if (blockCount == 1) return;
584
- }
585
-
586
- const groupName = isGroup ? groupMetadata.subject : "";
587
- const groupDesc = isGroup ? groupMetadata.desc : "";
588
- const groupMembers = isGroup ? groupMetadata.participants : "";
589
- const groupAdmins = isGroup ? writeGroupAdmins(groupMembers) : "";
590
-
591
- const isBotGroupAdmin = groupAdmins.includes(botNumberJid) || false;
592
- const isGroupAdmin = groupAdmins.includes(senderjid) || false;
593
-
594
- const isMedia
595
- = type === "imageMessage" || type === "videoMessage";
596
- const isTaggedImage
597
- = type === "extendedTextMessage" && content.includes("imageMessage");
598
- const isTaggedVideo
599
- = type === "extendedTextMessage" && content.includes("videoMessage");
600
- const isTaggedSticker
601
- = type === "extendedTextMessage" && content.includes("stickerMessage");
602
- const isTaggedDocument
603
- = type === "extendedTextMessage" && content.includes("documentMessage");
604
-
605
- // <==== Command Display in Console ====>
606
- if (vars.CHAT_UPDATES == 'true') {
607
- console.log(`[COMMAND: ${command}]-[NAME: ${m.messages[0].pushName}]-[CLIENT: ${senderNumb}]-[GRP: ${groupName}]`);
608
- }
609
-
610
- // <==== Send every command info to Bot Number ====>
611
- if (vars.CHAT_UPDATES == 'true') {
612
- let chat_name = groupName == '' ? '[Inbox]' : groupName
613
- LoggerChat(`📳 *Command Usage*\n\n‣ COMMAND: ${command} \n‣ CLIENT: ${senderNumb} \n‣ NAME: ${m.messages[0].pushName} \n‣ CHAT NAME: ${chat_name}`);
614
- }
615
-
616
- // <==== Block Commands ====>
617
- let blockCommandsInDesc = [];
618
- if (groupDesc) {
619
- let firstLineDesc = groupDesc.toString().split("\n")[0];
620
- blockCommandsInDesc = firstLineDesc.split(",");
621
- }
622
- if (command != '') {
623
- if (blockCommandsInDesc.includes(command)) {
624
- reply(Lang.cmdBlockByGrpDesc);
625
- return;
626
- }
627
- }
628
-
629
- const msgLayout = {
630
- prefix, evv, sender, reply_message, allowedNumbs, footerTXT, reply, sendAudioMsg, sendButtonMsg, sendTemplate, sendListMsg, react, LoggerChat, senderjid, command, groupMetadata, isGroup, isGroupAdmin,
631
- isBotGroupAdmin, isMedia, isTaggedImage, isTaggedVideo, isTaggedSticker, isTaggedDocument, botNumberJid, msgDevice, isReply
632
- }
633
-
634
- //console.log(m.messages[0].key.id)
635
- //console.log(msgDevice)
636
- //await amdiCONN.sendMessage(clientJID, {text: 'Hora gediya oya ' + msgDevice + ' neda use krna phone eka'}, { quoted: (fromMe === false ? m.messages[0] : '') });
637
-
638
- // <==== Commands Manager ====>
639
- if (commandsPrimary[command]) { // [Primary Commands]
640
- if (vars.WORKTYPE == 'public') { // [Primary Commands - Public_Mode]
641
- readMessages();
642
- if (reactionPrimary[command] && fromMe == false) {
643
- await react(reactionPrimary[command], m.messages[0])
644
- }
645
- commandsPrimary[command](amdiCONN, m.messages[0], clientJID, input, msgLayout, fromMe);
646
- if (fromMe == true) {
647
- await amdiCONN.sendMessage(clientJID, { delete: m.messages[0].key })
648
- }
649
- return;
650
- } else if (vars.WORKTYPE == 'private') { // [Primary Commands - Private_Mode]
651
- if (allowedNumbs.includes(senderNumb) || fromMe == true || MOD.includes(senderNumb)) {
652
- readMessages();
653
- if (reactionPrimary[command] && fromMe == false) {
654
- await react(reactionPrimary[command], m.messages[0])
655
- }
656
- commandsPrimary[command](amdiCONN, m.messages[0], clientJID, input, msgLayout, fromMe);
657
- if (fromMe == true) {
658
- await amdiCONN.sendMessage(clientJID, { delete: m.messages[0].key })
659
- }
660
- return;
661
- } else {
662
- return;
663
- }
664
- }
665
- }
666
-
667
- if (commandsPrivate[command]) { // [Private Commands]
668
- if (allowedNumbs.includes(senderNumb) || fromMe == true || MOD.includes(senderNumb)) {
669
- readMessages();
670
- if (reactionPrivate[command] && fromMe == false) {
671
- await react(reactionPrivate[command], m.messages[0])
672
- }
673
- commandsPrivate[command](amdiCONN, m.messages[0], clientJID, input, msgLayout, fromMe);
674
- } else {
675
- if (vars.WORKTYPE == 'public') {
676
- readMessages();
677
- await amdiCONN.sendMessage(clientJID, {text: Lang.ownerCMDonly}, { quoted: (fromMe === false ? m.messages[0] : '') });
678
- }
679
- }
680
- if (fromMe == true) {
681
- await amdiCONN.sendMessage(clientJID, { delete: m.messages[0].key })
682
- }
683
- return;
684
- }
685
-
686
- if (commandsAdmin[command]) { // [Admin Commands]
687
- if (!isGroup) {
688
- if (allowedNumbs.includes(senderNumb) || fromMe == true || MOD.includes(senderNumb)) {
689
- readMessages();
690
- await amdiCONN.sendMessage(clientJID, {text: Lang.grpCMDonly}, { quoted: (fromMe === false ? m.messages[0] : '') });
691
- if (fromMe == true) {
692
- await amdiCONN.sendMessage(clientJID, { delete: m.messages[0].key })
693
- }
694
- return;
695
- }
696
- } else {
697
- if (!isGroupAdmin) {
698
- if (vars.WORKTYPE == 'public' && !allowedNumbs.includes(senderNumb)) {
699
- readMessages();
700
- await amdiCONN.sendMessage(clientJID, {text: Lang.notAdmin}, { quoted: (fromMe === false ? m.messages[0] : '') });
701
- return;
702
- }
703
- }
704
-
705
- if (!isBotGroupAdmin) {
706
- readMessages();
707
- await amdiCONN.sendMessage(clientJID, {text: Lang.noAdmin}, { quoted: (fromMe === false ? m.messages[0] : '') });
708
- if (fromMe == true) {
709
- await amdiCONN.sendMessage(clientJID, { delete: m.messages[0].key })
710
- }
711
- return;
712
- }
713
-
714
- if (isGroupAdmin || allowedNumbs.includes(senderNumb)) {
715
- readMessages();
716
- if (reactionAdmin[command] && fromMe == false) {
717
- await react(reactionAdmin[command], m.messages[0])
718
- }
719
- commandsAdmin[command](amdiCONN, m.messages[0], clientJID, input, msgLayout, fromMe);
720
- if (fromMe == true) {
721
- await amdiCONN.sendMessage(clientJID, { delete: m.messages[0].key })
722
- }
723
- return;
724
- }
725
- }
726
- }
727
-
728
- if (m.messages[0].message.conversation == '.') {
729
- return;
730
- }
731
-
732
- if (m.messages[0].message.hasOwnProperty('extendedTextMessage') &&
733
- m.messages[0].message.extendedTextMessage.hasOwnProperty('text') === true) {
734
- if (m.messages[0].message.extendedTextMessage.text == '.') {
735
- return;
736
- }
737
- }
738
-
739
- if (!commandsPrimary[command] || !commandsPrivate[command] || !commandsAdmin[command]) {
740
- if (vars.WORKTYPE == 'public') {
741
- react("❌", m.messages[0])
742
- return;
743
- } else if (vars.WORKTYPE == 'private') {
744
- if (allowedNumbs.includes(senderNumb) || fromMe == true || MOD.includes(senderNumb)) {
745
- react("❌", m.messages[0])
746
- return;
747
- }
748
- }
749
- }
750
-
751
- } catch (err) {
752
- console.log(err);
753
- return;
754
- }
755
- });
756
-
757
- // <==== connection.update ====>
758
- amdiCONN.ev.on("connection.update", (update) => {
759
- const { connection, lastDisconnect, qr } = update;
760
-
761
- if (qr) {
762
- QRCode.toDataURL(qr).then((url) => {
763
- let buffer = new Buffer.from(url.replace('data:image/png;base64,', ''), 'base64')
764
- sharp(buffer)
765
- .resize(640, 640)
766
- .toFile('./qr_code/image.png');
767
- })
768
- }
769
-
770
- if (connection === "close") {
771
- const { Boom } = require('@hapi/boom')
772
- console.log('Disconnected ❌')
773
- let reason = new Boom(lastDisconnect?.error)?.output.statusCode
774
- if (reason === DisconnectReason.badSession) { console.log(`Bad Session File, Please Delete Session and Scan Again`); QueenAmdi(); }
775
- else if (reason === DisconnectReason.connectionClosed) { console.log("Connection closed, reconnecting...."); QueenAmdi(); }
776
- else if (reason === DisconnectReason.connectionLost) { console.log("Connection Lost from Server, reconnecting..."); QueenAmdi(); }
777
- else if (reason === DisconnectReason.connectionReplaced) { console.log("Connection Replaced, Another New Session Opened, Please Close Current Session First"); QueenAmdi(); }
778
- else if (reason === DisconnectReason.loggedOut) { console.log(`Device Logged Out, Please Scan Again And Run.`); QueenAmdi(); }
779
- else if (reason === DisconnectReason.restartRequired) { console.log("Restart Required, Restarting..."); QueenAmdi(); }
780
- else if (reason === DisconnectReason.timedOut) { console.log("Connection TimedOut, Reconnecting..."); QueenAmdi(); }
781
- else {
782
- QueenAmdi();
783
- }
784
- }
785
-
786
- if (connection === 'open') {
787
- console.log('✅ Web WA connected!')
788
- updateLogin();
789
-
790
- (async () => {
791
- const code = "manoj-amdi"
792
- let link = `https://raw.githubusercontent.com/BlackAmda/QueenAmdi/master/owner.json`
793
- const responseDATA = await got(link);
794
- const ownerJSON = JSON.parse(responseDATA.body);
795
- const banned_users_MM = ownerJSON.data.Manoj_Multi_Device.banned_user
796
- const banned_users_QA = ownerJSON.data.Queen_Amdi.banned_user
797
- const bytes_MM = CryptoJS.AES.decrypt(banned_users_MM, code);
798
- const bytes_QA = CryptoJS.AES.decrypt(banned_users_QA, code);
799
- const decrypt_JIDS_MM = bytes_MM.toString(CryptoJS.enc.Utf8);
800
- const decrypt_JIDS_QA = bytes_QA.toString(CryptoJS.enc.Utf8);
801
- var abc = decrypt_JIDS_MM.split(',');
802
- var efg = decrypt_JIDS_QA.split(',');
803
-
804
- if (abc.includes(amdiCONN.user.id.split('@')[0])) {
805
- process.exit(0);;
806
- }
807
- if (efg.includes(amdiCONN.user.id.split('@')[0])) {
808
- process.exit(0);;
809
- }
810
-
811
- let url = `https://gist.githubusercontent.com/BlackAmda/7b5dd14313b6312539e106ec36436db7/raw/`
812
- const response = await got(url);
813
- const json = JSON.parse(response.body);
814
- const pic = json.QRConnected
815
- let buffer = new Buffer.from(pic.replace('data:image/jpeg;base64,', ''), 'base64')
816
- fs.writeFile("./qr_code/image.png", buffer, function(err) {
817
- if (err) throw err;
818
- });
819
- setInterval(() => {
820
- fs.writeFile("./qr_code/image.png", buffer, function(err) {
821
- if (err) throw err;
822
- });
823
- }, 900000)
824
- })();
825
-
826
- // <==== LOG NUMBER ====>
827
- if (vars.LOG_JID) {
828
- const templateButtons = [
829
- {index: 1, quickReplyButton: {displayText: "👨🏻‍🏫 Join our support group", id: 'id-like-buttons-message'}},
830
- {index: 2, urlButton: {displayText: '📚 Queen Amdi - Wiki', url: 'https://github.com/BlackAmda/QueenAmdi'}},
831
- {index: 3, urlButton: {displayText: '🎞️ AN Tech YouTube Channel', url: 'https://www.youtube.com/channel/UCZx8U1EU95-Wn9mH4dn15vQ?sub_confirmation=1'}}
832
- ]
833
-
834
- const templateMessage = {
835
- caption: Lang.connDONE,
836
- footer: footerTXT,
837
- templateButtons: templateButtons,
838
- image: { url: 'https://i.ibb.co/0Vr6qJX/20220619-164946.jpg' }
839
- }
840
- amdiCONN.sendMessage(vars.LOG_JID, templateMessage)
841
- } else {
842
- try {
843
- (async () => {
844
- const img = await axios.get("https://i.ibb.co/PTGSn82/BotLogs.jpg", { responseType: 'arraybuffer' });
845
- const group = await amdiCONN.groupCreate("📟 Queen Amdi v4 Console💃🏻♥️", [])
846
- console.log ("Created console group with id: " + group.id)
847
- await amdiCONN.groupUpdateDescription(group.id, vars.VERSION + "\n\nThis is your bot logs chat.\n\nDon't use any commands here.")
848
- await amdiCONN.updateProfilePicture(group.id, img.data)
849
- await heroku.patch(baseURI + '/config-vars', {
850
- body: {
851
- ['logGrpJID']: group.id
852
- }
853
- })
854
- })();
855
- } catch {
856
- amdiCONN.sendMessage('94404@s.whatsapp.net', {
857
- image: { url: 'https://i.ibb.co/p3dWwsZ/20220703-010653.jpg' },
858
- caption: "ERROR 404! Please scan the QR again."
859
- })
860
- }
861
- }
862
- console.log ("📲 Now all functions are ready to use")
863
- }
864
- });
865
- amdiCONN.ev.on('creds.update', saveState)
866
- return amdiCONN;
867
- };
868
-
869
- module.exports = {
870
- Base : QueenAmdi
871
- }
1
+ const _0x43e6b6=_0xd829;(function(_0x451e88,_0x5ecf49){const _0x38be0a={_0x5b1672:0x22b,_0x22865d:0x2cc,_0x445de7:0x1a1,_0x2c80ff:0x20a,_0x51083a:0x35f,_0x2cc374:0x263,_0x219f7e:0x1f4,_0x2f31d0:0x218,_0x48d8a4:0x237},_0x17c364=_0xd829,_0x48092d=_0x451e88();while(!![]){try{const _0x4d3e21=parseInt(_0x17c364(_0x38be0a._0x5b1672))/(0x11*-0x16f+0xe31+0xa2f)*(-parseInt(_0x17c364(_0x38be0a._0x22865d))/(0x1*-0x25bb+-0x190f+0x3ecc))+parseInt(_0x17c364(0x13a))/(0xfa6+0x1862+0x5*-0x801)*(parseInt(_0x17c364(_0x38be0a._0x445de7))/(0x1*-0x3a5+0x11*-0xe1+0x129a))+-parseInt(_0x17c364(0xe9))/(0x12b0+-0x80e+-0x1*0xa9d)+parseInt(_0x17c364(_0x38be0a._0x2c80ff))/(0x1206+0x24cf+-0x36cf)*(parseInt(_0x17c364(0xd3))/(-0x8d+0x23ba+0x16*-0x199))+-parseInt(_0x17c364(_0x38be0a._0x51083a))/(0xc28*0x2+0x7*0x53b+-0x3ce5)*(parseInt(_0x17c364(0x386))/(-0x50b*0x6+-0x26ce*0x1+-0x3a3*-0x13))+-parseInt(_0x17c364(_0x38be0a._0x2cc374))/(0xd92+0x1a41+0x1e5*-0x15)*(-parseInt(_0x17c364(_0x38be0a._0x219f7e))/(-0x21c+0x9+0x21e))+parseInt(_0x17c364(_0x38be0a._0x2f31d0))/(-0x2170+-0x5a3+0x271f)*(parseInt(_0x17c364(_0x38be0a._0x48d8a4))/(0x4*-0x70c+-0xbe2+0x281f*0x1));if(_0x4d3e21===_0x5ecf49)break;else _0x48092d['push'](_0x48092d['shift']());}catch(_0x235dfd){_0x48092d['push'](_0x48092d['shift']());}}}(_0x4009,-0x40*-0x4817+0x27*0x99e5+-0xde9c8*0x2));const {default:makeWASocket,DisconnectReason,useSingleFileAuthState,useMultiFileAuthState,MessageRetryMap,getDevice,makeInMemoryStore,fetchLatestBaileysVersion}=require('\x40\x61\x64\x69\x77\x61\x6a\x73\x68\x69'+_0x43e6b6(0x271)),axios=require(_0x43e6b6(0x287)),CryptoJS=require(_0x43e6b6(0x3cd)),fs=require('\x66\x73'),got=require(_0x43e6b6(0x215)),QRCode=require(_0x43e6b6(0x3da)),sharp=require(_0x43e6b6(0xe5)),amdiDB=require('\x2e\x2e\x2f\x2e\x2e\x2f\x2e\x2e\x2f\x61'+'\x73\x73\x65\x74\x73\x2f\x61\x6d\x64\x69'+'\x44\x42'),vars=require(_0x43e6b6(0xd6)+_0x43e6b6(0xe4)+_0x43e6b6(0x183)),Heroku=require(_0x43e6b6(0x1df)+_0x43e6b6(0x2e3)),_0x231b8f={};_0x231b8f[_0x43e6b6(0x3c7)]=vars[_0x43e6b6(0x270)];const heroku=new Heroku(_0x231b8f);let baseURI=_0x43e6b6(0x311)+vars['\x48\x45\x52\x4f\x4b\x55\x5f\x41\x50\x50'];const {state,saveState}=useSingleFileAuthState('\x2e\x2f\x61\x6d\x64\x69\x5f\x73\x65\x73'+_0x43e6b6(0x13d)),msgRetryCounterMap={},Language=require(_0x43e6b6(0x146)+_0x43e6b6(0x155)+_0x43e6b6(0xf9)),Lang=Language[_0x43e6b6(0x368)](_0x43e6b6(0x354));let messages=[];function deleteMessageST(_0x3a3391){delete messages[_0x3a3391];}function saveMessageST(_0x333623,_0x91c9ff){messages[_0x333623]=_0x91c9ff;}function getMessageST(_0x11c6e9){return messages[_0x11c6e9];}function clearMessagesST(){messages=[];}setInterval(clearMessagesST,-0x367c5+-0xb594+0x5f219);function _0x4009(){const _0x3ada1d=['\x46\x44\x6f\x52\x6a','\x51\x51\x58\x46\x65','\x42\x75\x74\x74\x6f\x6e','\x59\x4c\x41\x6c\x6d','\x63\x6d\x64\x42\x6c\x6f\x63\x6b\x42\x79','\x79\x4b\x63\x74\x70','\x67\x73\x2e\x6a\x70\x67','\x49\x59\x5a\x59\x4e','\x72\x65\x73\x69\x7a\x65','\x75\x70\x6c\x6f\x61\x64\x65\x64\x50\x72','\x61\x64\x6d\x69\x6e\x2f','\x61\x78\x69\x6f\x73','\x57\x74\x78\x45\x69','\x6f\x6c\x65\ud83d\udc83\ud83c\udffb\u2665\ufe0f','\x61\x75\x74\x68','\x69\x77\x49\x4e\x50','\x65\x72\x6d\x69\x6e\x61\x6c','\x44\x65\x4b\x6c\x63','\x59\x7a\x76\x4d\x41','\x6d\x79\x41\x70\x70\x53\x74\x61\x74\x65','\x66\x6f\x72\x45\x61\x63\x68','\x64\x63\x55\x69\x68','\x43\x6c\x69\x63\x6b\x20\x68\x65\x72\x65','\x74\x50\x78\x75\x43','\x6d\x20\x75\x73\x69\x6e\x67\x20\x51\x75','\x54\x54\x6d\x66\x4d','\x5a\x62\x79\x4a\x76','\x2e\x2e\x2f\x2e\x2e\x2f\x2e\x2e\x2f\x64','\x20\x2d\x20\u1d0d\u1d1c\u029f\u1d1b\u026a\x20\u1d05','\x37\x2c\x20\x73\x65\x72\x76\x65\x72\x48','\x65\x72\x72\x6f\x72','\x70\x53\x74\x61\x74\x65\x4b\x65\x79\x49','\ud83d\udc83\ud83c\udffb\x20\x4f\x66\x66\x69\x63\x69\x61\x6c','\x64\x44\x5a\x46\x49','\x73\x6c\x69\x63\x65','\x39\x34\x37\x38\x35\x34\x35\x37\x35\x31','\x50\x49\x66\x55\x4b','\x7a\x71\x48\x6e\x6a','\x73\x69\x6c\x65\x6e\x74','\x74\x61\x6a\x4a\x4b','\x70\x74\x74','\x56\x45\x52\x53\x49\x4f\x4e','\x61\x6e\x6e\x65\x6c','\x20\x24\x31\x32\x2c\x20\x6d\x79\x41\x70','\x20\x74\x65\x78\x74\x2c\x20\x61\x64\x76','\x65\x78\x74\x2c\x20\x6d\x79\x41\x70\x70','\x68\x67\x47\x61\x44','\x65\x73\x73\x61\x67\x65','\x4b\x65\x79\x49\x64','\x55\x4d\x6a\x7a\x6a','\x56\x45\x62\x5a\x68','\x2f\x6a\x70\x65\x67\x3b\x62\x61\x73\x65','\x64\x61\x74\x61','\x72\x65\x73\x74\x61\x72\x74\x52\x65\x71','\x63\x75\x6d\x65\x6e\x74','\x46\x51\x52\x6f\x78','\x71\x75\x69\x63\x6b\x52\x65\x70\x6c\x79','\x20\x67\x72\x6f\x75\x70\x20\x66\x72\x6f','\x63\x68\x69\x6c\x64','\x20\x4f\x70\x65\x6e\x65\x64\x2c\x20\x50','\x63\x74\x52\x65\x70\x6c\x79','\x62\x75\x74\x74\x6f\x6e\x73\x52\x65\x73','\x65\x6e\x64\x73\x57\x69\x74\x68','\x51\x41\x41\x4c\x45','\x61\x67\x65','\x7a\x5a\x77\x4b\x4d','\x70\x75\x73\x68\x4e\x61\x6d\x65','\x62\x61\x6e\x6e\x65\x64\x5f\x67\x72\x6f','\x62\x6f\x64\x79','\x67\x65\x74\x4d\x65\x73\x73\x61\x67\x65','\x49\x62\x77\x63\x61','\x62\x71\x4d\x78\x41','\x63\x6c\x6f\x73\x65','\x49\x62\x4f\x71\x56','\x50\x70\x53\x62\x45','\x69\x73\x54\x61\x67\x67\x65\x64\x53\x74','\x53\x6a\x4f\x4c\x47','\x75\x70\x64\x61\x74\x65\x50\x72\x6f\x66','\x67\x72\x6f\x75\x70\x2d\x70\x61\x72\x74','\x70\x72\x69\x6d\x61\x72\x79\x2f','\x32\x75\x57\x73\x69\x43\x6d','\x6c\x6f\x67\x67\x65\x72','\x74\x3a\x20','\x63\x6f\x6e\x6e\x44\x4f\x4e\x45','\x36\x34\x33\x36\x64\x62\x37\x2f\x72\x61','\x2e\x70\x6e\x67','\x4d\x61\x6e\x6f\x6a\x5f\x4d\x75\x6c\x74','\x2e\x6a\x70\x67','\x6f\x62\x73\x6f\x76','\x4c\x45\x20\x61\x75\x74\x68\x28\x6e\x6f','\x6e\x49\x42\x49\x51','\x61\x64\x6d\x69\x6e','\x54\x56\x50\x64\x42','\x61\x72\x74\x69\x63\x69\x70\x61\x6e\x74','\x72\x65\x67\x69\x73\x74\x72\x61\x74\x69','\x6e\x6f\x69\x73\x65\x6b\x65\x79','\x75\x74\x69\x6c','\x75\x69\x72\x65\x64','\x67\x2e\x75\x73','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x61\x6d','\x65\x78\x69\x74','\x2e\x2f\x71\x72\x5f\x63\x6f\x64\x65\x2f','\x4f\x6b\x43\x74\x4e','\x65\x6e\x74','\x61\x6b\x67\x70\x53','\x73\x65\x4d\x65\x73\x73\x61\x67\x65','\x5a\x76\x46\x69\x62','\x72\x79\x54\x69\x6d\x65\x6f\x75\x74\x4d','\x2e\x2f\x70\x6c\x75\x67\x69\x6e\x73\x2f','\x69\x5f\x44\x65\x76\x69\x63\x65','\x6a\x6f\x69\x6e','\x31\x34\x33\x31\x33\x62\x36\x33\x31\x32','\x78\x44\x79\x43\x4a','\x6d\x65\x73\x73\x61\x67\x65\x43\x6f\x6e','\x71\x61\x6e\x47\x55','\x69\x6e\x73\x65\x72\x74\x57\x41\x43\x4f','\x63\x50\x74\x43\x49','\x4c\x69\x71\x73\x4a','\x2e\x6d\x70\x34','\x69\x64\x2d\x6c\x69\x6b\x65\x2d\x62\x75','\x76\x70\x55\x62\x68','\x64\x6f\x63\x75\x6d\x65\x6e\x74\x4d\x65','\x73\x59\x62\x79\x76','\x43\x48\x41\x54\x5f\x55\x50\x44\x41\x54','\x57\x77\x76\x41\x57','\x4e\x61\x6d\x65\x3a\x20','\x45\x58\x4c\x57\x47','\x64\x6e\x31\x35\x76\x51\x3f\x73\x75\x62','\x52\x67\x71\x4f\x67','\x72\x65\x6d\x6f\x74\x65\x4a\x69\x64','\x58\x67\x56\x48\x63','\x6c\x74\x62\x58\x4e','\x2e\x6a\x73','\x73\x65\x72\x63\x6f\x6e\x74\x65\x6e\x74','\x6c\x69\x73\x74\x52\x65\x73\x70\x6f\x6e','\x67\x52\x68\x66\x70','\x6e\x73\x6f\x6c\x65\x20\x67\x72\x6f\x75','\x55\x74\x66\x38','\x63\x6f\x6d\x6d\x69\x74\x3b','\x6e\x6f\x41\x64\x6d\x69\x6e','\x72\x65\x61\x64\x4d\x65\x73\x73\x61\x67','\x5a\x68\x61\x76\x48','\x61\x47\x6a\x47\x72','\x51\x75\x65\x65\x6e\x20\x41\x6d\x64\x69','\x5d\x2d\x5b\x43\x4c\x49\x45\x4e\x54\x3a','\x73\x74\x61\x72\x74\x69\x6e\x67\x2e\x2e','\x62\x78\x57\x73\x6a','\x72\x65\x61\x64\x64\x69\x72','\x73\x69\x67\x6e\x61\x6c\x69\x64\x65\x6e','\x2f\x61\x70\x70\x73\x2f','\x63\x6f\x75\x6e\x74\x53\x79\x6e\x63\x54','\x53\x65\x73\x73\x69\x6f\x6e\x20\x46\x69','\x20\x0a\u2023\x20\x4a\x49\x44\x3a\x20','\x72\x76\x4d\x6f\x55','\x65\x41\x4e\x73\x4e','\x20\x4d\x75\x6c\x74\x69\x2d\x44\x65\x76','\x39\x34\x37\x35\x37\x34\x30\x35\x36\x35','\x73\x69\x67\x6e\x61\x6c\x49\x64\x65\x6e','\x6d\x65\x73\x73\x61\x67\x65\x73','\x6c\x6f\x67\x47\x72\x70\x4a\x49\x44','\x43\x52\x45\x41\x54\x45\x20\x54\x41\x42','\x63\x6d\x64','\x43\x4e\x46\x45\x46','\x6e\x5a\x49\x75\x44','\x73\x65\x6e\x64\x65\x72','\x4d\x73\x67\x71\x5a','\x64\x69\x73\x70\x6c\x61\x79\x54\x65\x78','\x43\x4d\x42\x4f\x55','\x4b\x65\x79','\x6c\x2f\x55\x43\x5a\x78\x38\x55\x31\x45','\x47\x45\x73\x74\x6e','\x79\x69\x64','\x69\x6e\x73\x65\x72\x74\x57\x41\x44\x6f','\x61\x74\x61\x62\x61\x73\x65\x2f\x67\x72','\x6c\x65\x61\x73\x65\x20\x53\x63\x61\x6e','\x40\x73\x2e\x77\x68\x61\x74\x73\x61\x70','\x2c\x24\x31\x30\x2c\x24\x31\x31\x2c\x24','\x67\x55\x6e\x72\x74','\x6f\x70\x65\x6e','\x43\x61\x74\x41\x64','\x74\x69\x74\x6c\x65','\x59\x79\x6c\x7a\x50','\x50\x6a\x66\x7a\x6c','\x65\x4b\x65\x79\x49\x64\x20\x3d\x20\x24','\x77\x74\x70\x50\x41','\x76\x5a\x4f\x4c\x57','\x76\x6a\x4b\x48\x7a','\x57\x6a\x6b\x75\x64','\x75\x70\x64\x61\x74\x65\x57\x41\x43\x4f','\u1d07\u1d20\u026a\u1d04\u1d07','\x67\x72\x6f\x75\x70\x4d\x65\x74\x61\x64','\x57\x67\x6d\x61\x41','\x65\x20\x53\x65\x73\x73\x69\x6f\x6e\x20','\x74\x48\x63\x51\x62','\x65\x20\x43\x75\x72\x72\x65\x6e\x74\x20','\x24\x33\x2c\x24\x34\x2c\x24\x35\x2c\x24','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x72\x61','\x76\x51\x44\x49\x4a','\x77\x65\x6c\x70\x69\x63\x75\x72\x6c','\x4d\x77\x6d\x6f\x76','\x58\x63\x5a\x52\x7a','\x57\x4f\x52\x4b\x54\x59\x50\x45','\ud83d\udcf3\x20\x2a\x43\x6f\x6d\x6d\x61\x6e\x64','\x63\x6f\x6e\x76\x65\x72\x73\x61\x74\x69','\x73\x65\x6e\x64\x54\x65\x6d\x70\x6c\x61','\x70\x72\x65\x66\x69\x78','\x7a\x73\x65\x6d\x43','\x62\x61\x64\x53\x65\x73\x73\x69\x6f\x6e','\x5a\x42\x4d\x57\x6b','\x6d\x64\x69\x2f\x6d\x61\x73\x74\x65\x72','\x62\x69\x6e\x64','\x67\x49\x4d\x66\x74','\x72\x6f\x77\x43\x6f\x75\x6e\x74','\x74\x65\x78\x74\x49\x6e\x66\x6f','\x79\x67\x78\x6b\x74','\x69\x61\x51\x61\x68','\x61\x6d\x64\x69\x4d\x6f\x64\x75\x6c\x65','\x70\x54\x44\x55\x4b','\x75\x76\x4f\x4c\x72','\x46\x49\x54\x42\x65','\x61\x63\x63\x6f\x75\x6e\x74','\x35\x33\x39\x65\x31\x30\x36\x65\x63\x33','\x44\x67\x67\x6f\x6a','\x6d\x73\x67\x52\x65\x74\x72\x79\x43\x6f','\x2e\x63\x6f\x6d\x2f\x42\x6c\x61\x63\x6b','\x69\x6e\x67\x2e\x2e\x2e','\x20\x0a\u2023\x20\x50\x61\x72\x74\x69\x63','\x38\x6f\x41\x71\x66\x70\x79','\x69\x73\x65\x4b\x65\x79\x20\x74\x65\x78','\x7a\x6c\x56\x4f\x52','\x57\x77\x73\x5a\x2f\x32\x30\x32\x32\x30','\x69\x73\x54\x61\x67\x67\x65\x64\x56\x69','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77','\x74\x65\x6d\x70\x6c\x61\x74\x65\x42\x75','\x74\x61\x6d\x70','\x2c\x22\x74\x69\x6d\x65\x22\x3a\x22','\x67\x65\x74\x53\x74\x72\x69\x6e\x67','\x36\x31\x39\x2d\x31\x36\x34\x39\x34\x36','\x43\x55\x63\x6e\x59','\x55\x69\x78\x73\x4c','\x79\x54\x4f\x67\x4f','\x79\x6f\x75\x72\x20\x62\x6f\x74\x20\x6c','\x74\x68\x65\x6e','\x54\x71\x6d\x4b\x69','\x72\x65\x61\x64\x46\x69\x6c\x65','\x4e\x4d\x4f\x54\x69','\x51\x73\x45\x69\x65','\x59\x71\x4f\x64\x51','\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x67','\x78\x74\x4d\x65\x73\x73\x61\x67\x65','\x20\x74\x65\x78\x74\x2c\x20\x73\x69\x67','\x62\x20\x57\x41\x3a\x20','\x64\x65\x6e\x74\x69\x74\x79\x4b\x65\x79','\x70\x72\x6f\x6d\x69\x73\x69\x66\x79','\x65\x78\x69\x73\x74\x57\x41','\x61\x74\x61\x62\x61\x73\x65\x2f\x62\x61','\x64\x20\x3d\x20\x24\x31\x33\x3b','\x75\x72\x6c','\x41\x58\x63\x43\x69','\x20\x52\x75\x6e\x2e','\x74\x6f\x4a\x53\x4f\x4e','\x6d\x73\x67\x44\x65\x76\x69\x63\x65','\x68\x43\x74\x71\x72','\x68\x69\x43\x4e\x6d','\x74\x6f\x53\x74\x72\x69\x6e\x67','\x49\x41\x74\x76\x41','\x37\x33\x31\x31\x36\x30\x39\x6c\x6b\x44\x42\x62\x51','\x6e\x46\x6d\x77\x56','\x73\x74\x2e\x67\x69\x74\x68\x75\x62\x75','\x39\x34\x37\x37\x34\x39\x37\x36\x35\x36','\x6d\x55\x45\x76\x51','\x6d\x69\x6d\x65\x74\x79\x70\x65','\x74\x69\x74\x69\x65\x73','\x6d\x49\x6e\x59\x56','\x75\x6e\x6c\x69\x6e\x6b\x53\x79\x6e\x63','\x70\x61\x72\x74\x69\x63\x69\x70\x61\x6e','\x55\x71\x67\x54\x72','\x6f\x55\x4d\x44\x61','\x59\x75\x4e\x4f\x4d','\x52\x5a\x6d\x57\x65','\x5b\x49\x6e\x62\x6f\x78\x5d','\x20\x24\x34\x2c\x20\x61\x64\x76\x53\x65','\x73\x69\x67\x6e\x65\x64\x50\x72\x65\x4b','\x61\x73\x50\x72\x65\x4b\x65\x79\x73\x20','\x65\x44\x65\x73\x63\x72\x69\x70\x74\x69','\x42\x54\x75\x5a\x68','\x73\x67\x72\x54\x59','\x39\x34\x34\x30\x34\x40\x73\x2e\x77\x68','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x69\x2e','\x73\x65\x61\x72\x63\x68','\x68\x65\x61\x64\x65\x72\x54\x79\x70\x65','\x6d\x65\x73\x73\x61\x67\x65','\x74\x6f\x46\x69\x6c\x65','\x20\x52\x65\x63\x6f\x6e\x6e\x65\x63\x74','\x57\x42\x47\x6f\x50','\x63\x72\x65\x64\x73','\x61\x6e\x20\x74\x68\x65\x20\x51\x52\x20','\x50\x72\x65\x4b\x65\x79\x49\x64\x20\x74','\x39\x34\x37\x35\x37\x36\x37\x32\x38\x37','\x63\x76\x55\x75\x4f','\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20','\x66\x41\x70\x62\x52','\x58\x59\x68\x69\x55','\x6b\x65\x79\x73','\x44\x69\x73\x63\x6f\x6e\x6e\x65\x63\x74','\x66\x72\x6f\x6d\x20\x75\x73\x69\x6e\x67','\x62\x79\x65\x70\x69\x63\x75\x72\x6c','\x24\x35\x2c\x20\x6e\x65\x78\x74\x50\x72','\x68\x45\x4d\x75\x72','\x58\x49\x61\x70\x75','\x51\x5a\x76\x53\x45','\x61\x74\x73\x61\x70\x70\x2e\x6e\x65\x74','\x72\x65\x61\x63\x74\x69\x6f\x6e\x4d\x65','\x65\x77\x20\x53\x65\x73\x73\x69\x6f\x6e','\x73\x74\x72\x61\x74\x69\x6f\x6e\x49\x64','\x73\x43\x55\x6c\x6d','\x4c\x6d\x42\x42\x67','\x45\x50\x57\x44\x64','\x2f\x6f\x77\x6e\x65\x72\x2e\x6a\x73\x6f','\x74\x6f\x44\x61\x74\x61\x55\x52\x4c','\x77\x41\x55\x49\x4a','\x62\x72\x6f\x77\x73\x65\x72','\x50\x6d\x79\x62\x4c','\x69\x6d\x65\x73\x74\x61\x6d\x70\x20\x74','\x69\x6e\x63\x6c\x75\x64\x65\x73','\x44\x6f\x64\x53\x50','\x76\x44\x47\x57\x6f','\x52\x65\x73\x74\x61\x72\x74\x20\x52\x65','\x64\x65\x63\x72\x79\x70\x74','\x68\x20\x53\x45\x54\x20\x6e\x6f\x69\x73','\x68\x59\x72\x6c\x57','\x74\x6f\x6b\x65\x6e','\x66\x72\x6f\x6d\x4d\x65','\x57\x48\x4c\x50\x65','\x42\x61\x64\x20\x53\x65\x73\x73\x69\x6f','\x76\x69\x64\x65\x6f\x4d\x65\x73\x73\x61','\x47\x53\x77\x6a\x67','\x63\x72\x79\x70\x74\x6f\x2d\x6a\x73','\x41\x48\x69\x6a\x57','\x74\x69\x74\x79\x4b\x65\x79','\x70\x20\x77\x69\x74\x68\x20\x69\x64\x3a','\x7a\x77\x41\x48\x69','\x4f\x20\x61\x75\x74\x68\x20\x56\x41\x4c','\x47\x72\x70\x44\x65\x73\x63','\x43\x72\x65\x61\x74\x65\x64\x20\x63\x6f','\x61\x63\x74\x69\x6f\x6e','\x64\x62\x43\x52\x45\x41\x54\x45','\x52\x45\x41\x44\x5f\x4b\x45\x59','\x6a\x69\x6a\x7a\x47','\x69\x73\x52\x65\x70\x6c\x79','\x71\x72\x63\x6f\x64\x65','\x73\x65\x6c\x65\x63\x74\x65\x64\x52\x6f','\x63\x72\x65\x74\x4b\x65\x79\x20\x3d\x20','\x72\x42\x53\x48\x79','\x74\x72\x75\x65','\x77\x74\x76\x55\x66','\x61\x64\x76\x53\x65\x63\x72\x65\x74\x4b','\x71\x75\x65\x72\x79','\x64\x61\x74\x61\x3a\x69\x6d\x61\x67\x65','\x61\x6e\x64\x20\x53\x63\x61\x6e\x20\x41','\x67\x76\x75\x78\x59','\x46\x59\x4b\x66\x47','\x20\x0a\u2023\x20\x4e\x41\x4d\x45\x3a\x20','\x58\x54\x50\x48\x72','\x69\x62\x62\x2e\x63\x6f\x2f\x30\x56\x72','\x4f\x62\x56\x70\x6d','\x73\x65\x6e\x64\x65\x72\x6a\x69\x64','\x4c\x62\x58\x66\x66','\x20\x24\x32\x2c\x20\x73\x69\x67\x6e\x65','\x50\x6e\x50\x4d\x6b','\x69\x73\x47\x72\x6f\x75\x70','\x62\x57\x63\x6f\x58','\x73\x65\x63\x74\x69\x6f\x6e\x73','\ud83d\udcdf\x20\x43\x75\x72\x72\x65\x6e\x74\x6c','\x20\x41\x67\x61\x69\x6e\x20\x41\x6e\x64','\x7a\x72\x45\x4d\x6e','\x48\x43\x5a\x47\x50','\x74\x7a\x61\x41\x45','\x61\x74\x61','\x20\x0a\u2023\x20\x43\x4c\x49\x45\x4e\x54','\x6f\x20\x73\x65\x73\x73\x69\x6f\x6e\x20','\x4d\x4a\x48\x4d\x71','\x43\x43\x42\x6d\x62','\x77\x6f\x65\x53\x51','\x6b\x65\x79','\x48\x6a\x4e\x4c\x69','\x67\x53\x5a\x49\x74','\x36\x34\x32\x39\x30\x38\x58\x41\x67\x45\x79\x66','\x4e\x65\x54\x41\x5a','\x62\x6f\x74\x4e\x75\x6d\x62\x65\x72\x4a','\x2e\x2e\x2f\x2e\x2e\x2f\x2e\x2e\x2f\x61','\x70\x72\x69\x76\x61\x74\x65','\ud83d\udca0\x20\x2a\x47\x72\x6f\x75\x70\x20\x50','\x74\x74\x6f\x6e\x52\x65\x70\x6c\x79\x4d','\x69\x63\x69\x70\x61\x6e\x74\x73\x2e\x75','\x44\x4d\x4e\x47\x65','\x4b\x71\x54\x47\x6e','\x67\x72\x6f\x75\x70\x43\x72\x65\x61\x74','\x72\x61\x74\x69\x6f\x6e\x49\x64\x20\x3d','\x42\x6e\x74\x41\x6d','\x2f\x63\x6f\x6e\x66\x69\x67\x2d\x76\x61','\x6f\x6e\x49\x64','\x4a\x6b\x50\x62\x64','\x73\x73\x61\x67\x65','\x73\x73\x65\x74\x73\x2f\x61\x6d\x64\x69','\x73\x68\x61\x72\x70','\x74\x6d\x78\x4c\x4e','\x53\x74\x61\x74\x65\x4b\x65\x79\x49\x64','\x44\x65\x76\x69\x63\x65\x20\x4c\x6f\x67','\x38\x32\x35\x32\x30\x30\x35\x75\x43\x76\x57\x69\x5a','\x54\x79\x62\x44\x44','\x5f\x63\x6f\x6e\x66\x69\x72\x6d\x61\x74','\x41\x42\x71\x71\x49','\x54\x67\x78\x71\x76','\x56\x70\x53\x62\x4e','\x65\x72\x74\x79','\x4d\x73\x67','\x44\x4e\x53\x42\x6c','\x70\x75\x62\x6c\x69\x63','\x20\x51\x75\x65\x65\x6e\x20\x41\x6d\x64','\x79\x70\x4e\x6c\x4b','\x6b\x65\x79\x69\x64','\x4c\x6f\x73\x74','\x69\x70\x61\x6e\x74\x73\x3a\x20','\x44\x4c\x64\x6d\x61','\x70\x6c\x79\x4c\x41\x4e\x47','\x69\x2d\x4d\x44\x20','\x74\x6f\x4c\x6f\x77\x65\x72\x43\x61\x73','\x6f\x62\x61\x6f\x52','\x62\x61\x6e\x6e\x65\x64\x5f\x75\x73\x65','\x73\x20\x74\x65\x78\x74\x2c\x20\x61\x63','\x50\x44\x50\x72\x45','\x55\x6e\x75\x70\x6c\x6f\x61\x64\x65\x64','\x4d\x4f\x44','\x74\x65\x78\x74\x2c\x20\x6e\x65\x78\x74','\x77\x53\x76\x77\x49','\x72\x59\x72\x7a\x56','\x6e\x6f\x74\x41\x64\x6d\x69\x6e','\x61\x6c\x6c\x6f\x77\x65\x64\x4e\x75\x6d','\x65\x72\x63\x6f\x6e\x74\x65\x6e\x74\x2e','\x59\x6f\x75\x54\x75\x62\x65\x20\x43\x68','\x61\x64\x76\x73\x65\x63\x72\x65\x74\x6b','\x70\x6f\x6e\x73\x65\x4d\x65\x73\x73\x61','\x76\x2c\x20\ud83d\udccb\x20\x4c\x61\x74\x65\x73','\x6c\x65\x61\x73\x65\x20\x43\x6c\x6f\x73','\x65\x6a\x45\x51\x67','\x6e\x65\x64\x50\x72\x65\x4b\x65\x79\x20','\x42\x44\x7a\x6d\x68','\x47\x44\x43\x62\x67','\x74\x69\x74\x79\x6b\x65\x79','\x63\x72\x65\x64\x73\x2e\x75\x70\x64\x61','\x69\x6d\x61\x67\x65\x4d\x65\x73\x73\x61','\x4a\x4b\x43\x72\x67','\x6e\x64\x20\x4d\x61\x6e\x6f\x6a\x2d\x4d','\x6d\x61\x6e\x6f\x6a\x2d\x61\x6d\x64\x69','\x65\x52\x42\x7a\x74','\x68\x56\x65\x69\x4c','\x6a\x77\x72\x47\x4e','\x71\x70\x7a\x68\x71','\x6f\x47\x57\x4d\x79','\x73\x70\x6c\x69\x74','\x51\x52\x43\x6f\x6e\x6e\x65\x63\x74\x65','\x20\x41\x6e\x6f\x74\x68\x65\x72\x20\x4e','\x52\x63\x72\x42\x6b','\x6c\x42\x42\x6f\x45','\x61\x59\x75\x70\x6b','\x74\x74\x6f\x6e\x73','\x79\x20\x75\x73\x69\x6e\x67\x20\x57\x65','\x66\x69\x72\x73\x74\x55\x6e\x75\x70\x6c','\ud83d\udcdf\x20\x51\x75\x65\x65\x6e\x20\x41\x6d','\x56\x53\x45\x4a\x50','\x71\x75\x6f\x74\x65\x64\x4d\x65\x73\x73','\x61\x6e\x6e\x65\x64\x20\x79\x6f\x75\x20','\x75\x54\x48\x77\x72','\x2e\x6a\x70\x65\x67','\x45\x49\x75\x6c\x61','\x58\x4f\x63\x71\x71','\x2f\x70\x6e\x67\x3b\x62\x61\x73\x65\x36','\x63\x4d\x4a\x43\x55','\x67\x65\x6e\x4e\x45\x57\x73\x65\x73','\x66\x72\x6f\x6d','\x43\x4e\x78\x57\x74','\x69\x73\x42\x6f\x74\x47\x72\x6f\x75\x70','\x20\x63\x6c\x6f\x73\x65\x64\x2c\x20\x72','\x70\x64\x61\x74\x65','\x6d\x51\x76\x4d\x72','\x6e\x6f\x69\x73\x65\x4b\x65\x79','\x50\x61\x6d\x78\x49','\x54\x68\x65\x72\x65\x20\x69\x73\x20\x6e','\x20\x61\x6e\x79\x20\x63\x6f\x6d\x6d\x61','\x33\x33\x31\x30\x38\x37\x32\x75\x6e\x65\x44\x53\x44','\x75\x65\x65\x6e\x41\x6d\x64\x69','\x49\x67\x7a\x45\x47','\x73\x69\x6f\x6e\x2e\x6a\x73\x6f\x6e','\x4b\x43\x69\x56\x59','\x67\x65\x74','\x5a\x4e\x50\x53\x58','\x77\x65\x6c\x6e\x6f\x74\x65','\x20\x73\x69\x67\x6e\x65\x64\x49\x64\x65','\x78\x77\x45\x74\x51','\x36\x71\x4a\x58\x2f\x32\x30\x32\x32\x30','\x63\x7a\x73\x58\x54','\x2e\x2e\x2f\x2e\x2e\x2f\x2e\x2e\x2f\x6c','\x62\x75\x74\x74\x6f\x6e\x54\x65\x78\x74','\x6a\x6b\x72\x4d\x58','\x6d\x53\x41\x6b\x4f','\x71\x75\x69\x72\x65\x64\x2c\x20\x52\x65','\x73\x43\x72\x70\x61','\x6f\x75\x74\x70\x75\x74','\x79\x42\x44\x67\x46','\x73\x74\x72\x69\x6e\x67\x69\x66\x79','\x51\x58\x4d\x53\x47','\x55\x39\x35\x2d\x57\x6e\x39\x6d\x48\x34','\x72\x65\x6d\x6f\x76\x65','\x65\x76\x76','\x69\x62\x62\x2e\x63\x6f\x2f\x50\x54\x47','\x6d\x53\x62\x6f\x4f','\x61\x6e\x67\x75\x61\x67\x65\x2f\x61\x70','\x47\x47\x58\x79\x6a','\x78\x74\x2c\x20\x6c\x61\x73\x74\x41\x63','\x79\x50\x61\x6b\x75','\x73\x74\x61\x74\x75\x73\x43\x6f\x64\x65','\x69\x6e\x64\x65\x78','\x73\x61\x67\x65','\x41\x6d\x64\x61\x2f\x37\x62\x35\x64\x64','\x77\x52\x48\x41\x43','\x44\x4e\x4b\x61\x43','\x5d\x2d\x5b\x4e\x41\x4d\x45\x3a\x20','\x4d\x57\x61\x76\x47','\x69\x6c\x65\x50\x69\x63\x74\x75\x72\x65','\x54\x6c\x42\x6d\x74','\x53\x4f\x78\x78\x50','\x4e\x64\x52\x44\x79','\x54\x77\x74\x75\x79','\x4c\x6f\x67\x67\x65\x72\x43\x68\x61\x74','\x72\x65\x4b\x65\x79\x73','\x74\x72\x69\x6d','\x72\x6f\x6d\x20\x61\x75\x74\x68\x3b','\x57\x47\x42\x6b\x4a','\x77\x71\x61\x51\x52','\x71\x7a\x50\x64\x57','\x6e\x74\x69\x74\x79\x4b\x65\x79\x20\x3d','\x62\x68\x6d\x61\x4e','\x56\x49\x4d\x61\x6a','\x65\x78\x74\x2c\x20\x66\x69\x72\x73\x74','\x72\x6f\x77\x73','\x79\x4e\x54\x62\x79','\x6f\x67\x73\x20\x63\x68\x61\x74\x2e\x0a','\x55\x45\x53\x28\x24\x31\x2c\x24\x32\x2c','\x72\x65\x70\x6c\x79\x5f\x6d\x65\x73\x73','\ud83c\udf9e\ufe0f\x20\x41\x4e\x20\x54\x65\x63\x68\x20','\x4b\x64\x41\x79\x4b','\x63\x4d\x48\x4e\x63','\x76\x6a\x5a\x43\x67','\x41\x45\x53','\x43\x4f\x42\x56\x4b','\x68\x63\x6e\x4d\x7a','\x45\x45\x4b\x74\x50','\x52\x59\x72\x74\x76','\x74\x69\x74\x69\x65\x73\x20\x3d\x20\x24','\x69\x6d\x61\x67\x65','\x6c\x6f\x67','\x65\x6e\x63','\x53\x65\x74\x74\x69\x6e\x67\x73','\x6f\x61\x64\x65\x64\x70\x72\x65\x6b\x65','\x61\x64\x63\x61\x73\x74','\x58\x64\x49\x68\x4d','\x20\x53\x65\x72\x76\x65\x72\x2c\x20\x72','\x5d\x2d\x5b\x47\x52\x50\x3a\x20','\x4e\x48\x78\x55\x68','\x72\x65\x44\x48\x4e','\x77\x2e\x79\x6f\x75\x74\x75\x62\x65\x2e','\x73\x69\x6e\x67\x6c\x65\x53\x65\x6c\x65','\x58\x63\x43\x66\x69','\x2e\x75\x70\x64\x61\x74\x65','\x76\x65\x72\x73\x69\x6f\x6e','\x64\x65\x66\x61\x75\x6c\x74','\x67\x65\x69\x68\x59','\x7a\x4d\x66\x4d\x4d','\x75\x72\x6c\x42\x75\x74\x74\x6f\x6e','\x74\x65\x73\x74','\x73\x58\x4d\x64\x52','\x53\x65\x63\x72\x65\x74\x4b\x65\x79\x20','\x65\x78\x70\x6f\x72\x74\x73','\x61\x70\x70\x71\x61','\x61\x48\x5a\x41\x69','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x67\x69','\x0a\u2023\x20\x53\x74\x61\x74\x75\x73\x3a','\x72\x4f\x62\x68\x79','\x68\x78\x43\x54\x74','\x67\x2e\x2e\x2e','\x49\x56\x78\x72\x71','\x74\x2c\x20\x73\x69\x67\x6e\x65\x64\x49','\x34\x57\x72\x4e\x49\x6a\x42','\x65\x6d\x57\x59\x72','\x74\x77\x59\x58\x5a','\x69\x20\x61\x6e\x64\x20\x4d\x61\x6e\x6f','\x44\x20\x62\x6f\x74\x2e\x2a','\x49\x76\x45\x61\x73','\x31\x2e\x30\x2e\x30','\x46\x74\x6c\x47\x4c','\x63\x6d\x64\x49\x6e\x66\x6f','\x75\x5a\x42\x6f\x42','\x79\x49\x64','\x37\x30\x33\x2d\x30\x31\x30\x36\x35\x33','\x65\x4f\x4b\x6b\x4d','\x6d\x64\x61\x2f\x51\x75\x65\x65\x6e\x41','\x59\x45\x45\x53\x76','\x74\x68\x75\x62\x2e\x63\x6f\x6d\x2f\x42','\x51\x58\x42\x65\x6e','\x48\x64\x75\x55\x46','\x71\x75\x6f\x74\x65\x64','\x20\x73\x69\x67\x6e\x61\x6c\x49\x64\x65','\x56\x76\x59\x70\x6a','\x73\x69\x67\x6e\x65\x64\x70\x72\x65\x6b','\x71\x62\x72\x4d\x41','\x73\x65\x6c\x65\x63\x74\x65\x64\x42\x75','\x68\x4b\x76\x62\x78','\x64\x69\x20\x76\x34\x20\x43\x6f\x6e\x73','\x66\x69\x6c\x65\x2e','\x74\x4b\x47\x67\x76','\x65\x74\x66\x4c\x6f','\x51\x64\x4c\x6d\x64','\x69\x64\x65\x6e\x74\x69\x66\x69\x65\x72','\x64\x6f\x6c\x47\x72','\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e','\x49\x6b\x42\x55\x72','\x6a\x2d\x4d\x44\x20\x62\x6f\x74\x2e\x2a','\x66\x68\x64\x6a\x6b','\x69\x62\x62\x2e\x63\x6f\x2f\x70\x33\x64','\x64\x61\x6e\x69\x77\x61\x73\x61\x2e\x63','\x65\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6e','\x49\x6e\x73\x41\x4f','\x73\x65\x6c\x65\x63\x74\x65\x64\x49\x64','\ud83d\udcf2\x20\x4e\x6f\x77\x20\x61\x6c\x6c\x20','\x62\x75\x74\x74\x6f\x6e\x73','\x20\x52\x65\x70\x6c\x61\x63\x65\x64\x2c','\x6a\x43\x79\x63\x45','\x4c\x51\x4e\x42\x42','\x73\x69\x67\x6e\x65\x64\x49\x64\x65\x6e','\x2e\x6d\x70\x33','\x61\x4e\x56\x68\x6e','\x64\x6e\x31\x35\x76\x51','\x61\x42\x5a\x74\x61','\x64\x65\x6f','\ud83d\udcda\x20\x51\x75\x65\x65\x6e\x20\x41\x6d','\x5b\x43\x4f\x4d\x4d\x41\x4e\x44\x3a\x20','\x4f\x4f\x46\x65\x45','\x44\x69\x76\x50\x59','\x44\x43\x41\x50\x47','\x49\x49\x47\x77\x6f','\x20\x0a\u2023\x20\x43\x48\x41\x54\x20\x4e','\x74\x54\x79\x48\x73','\x69\x73\x47\x72\x6f\x75\x70\x41\x64\x6d','\x65\x61\x73\x65\x20\x44\x65\x6c\x65\x74','\x68\x65\x72\x6f\x6b\x75\x2d\x63\x6c\x69','\x42\x61\x73\x65','\x65\x72\x73\x20\x68\x61\x76\x65\x20\x62','\x44\x6f\x6c\x62\x4a','\x20\x55\x70\x64\x61\x74\x65\x73\x2a\x0a','\x73\x65\x6e\x64\x4d\x65\x73\x73\x61\x67','\x45\x64\x45\x4d\x47','\x5a\x71\x56\x45\x57','\x73\x65\x6e\x64\x41\x75\x64\x69\x6f\x4d','\x6d\x65\x20\x3d\x20\x24\x31\x30\x2c\x20','\x69\x7a\x48\x51\x6a','\x46\x51\x71\x43\x41','\x41\x46\x77\x79\x76','\x4c\x41\x74\x49\x67','\x68\x61\x73\x4f\x77\x6e\x50\x72\x6f\x70','\x6e\x65\x78\x74\x70\x72\x65\x6b\x65\x79','\x47\x69\x5a\x50\x4b','\x52\x76\x76\x68\x64','\x6e\x58\x74\x71\x6f','\x73\x74\x61\x72\x74\x73\x57\x69\x74\x68','\x70\x61\x72\x73\x65','\x31\x36\x33\x30\x31\x32\x33\x7a\x6a\x70\x6b\x50\x70','\x6d\x62\x65\x66\x51','\x61\x64\x64','\x72\x65\x61\x63\x74','\x67\x72\x6f\x75\x70\x55\x70\x64\x61\x74','\x6b\x61\x7a\x79\x6a','\x45\x52\x52\x4f\x52\x20\x34\x30\x34\x21','\x69\x4b\x6e\x4c\x75','\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54','\x63\x6f\x6d\x2f\x63\x68\x61\x6e\x6e\x65','\u26a0\ufe0f\x20\x2a\x44\x65\x76\x65\x6c\x6f\x70','\x49\x77\x6a\x4a\x63','\x70\x4a\x44\x62\x65','\x70\x61\x74\x63\x68','\x6f\x6e\x69\x64','\x6f\x4b\x64\x6e\x5a','\x76\x67\x6b\x67\x6e','\x73\x75\x62\x6a\x65\x63\x74','\x73\x74\x69\x63\x6b\x65\x72\x4d\x65\x73','\x43\x6c\x6f\x73\x65\x64','\x6d\x61\x74\x63\x68','\x61\x6e\x6e\x65\x64\x20\x74\x68\x69\x73','\x35\x34\x7a\x46\x56\x4c\x4c\x7a','\x0a\x44\x6f\x6e\x27\x74\x20\x75\x73\x65','\x75\x73\x65\x72','\x71\x69\x6b\x44\x6d','\x39\x34\x37\x38\x35\x34\x33\x35\x34\x36','\x62\x75\x74\x74\x6f\x6e\x54\x58\x54','\x65\x65\x74\x69\x6e\x67\x73\x44\x42','\x51\x75\x65\x65\x6e\x5f\x41\x6d\x64\x69','\x2e\x67\x69\x66','\x75\x47\x78\x45\x74','\x61\x72\x72\x61\x79\x62\x75\x66\x66\x65','\x67\x6f\x74','\x52\x52\x44\x70\x49','\x64\x65\x62\x75\x67','\x38\x37\x31\x30\x34\x34\x4b\x7a\x43\x56\x4e\x69','\x47\x54\x6e\x50\x6d','\x4b\x51\x4d\x59\x6c','\x63\x6f\x6d\x2f\x42\x6c\x61\x63\x6b\x41','\x6e\x5f\x6a\x69\x64\x44\x42','\x66\x69\x72\x73\x74\x75\x6e\x75\x70\x6c','\x69\x73\x54\x61\x67\x67\x65\x64\x44\x6f','\x51\x65\x76\x76\x42','\x36\x2c\x20\x66\x69\x72\x73\x74\x55\x6e','\x75\x58\x5a\x51\x66','\x36\x34\x2c','\x20\x54\x69\x6d\x65\x64\x4f\x75\x74\x2c','\x66\x6f\x6f\x74\x65\x72','\x43\x54\x61\x45\x63','\x57\x51\x63\x43\x41','\x58\x64\x75\x52\x73','\x50\x52\x45\x46\x49\x58','\x6f\x70\x65\x72\x61\x74\x65','\x6b\x65\x79\x50\x61\x69\x72','\x31\x37\x31\x35\x38\x32\x31\x49\x61\x6d\x4d\x72\x4f','\x70\x75\x73\x68','\x70\x72\x69\x6e\x74\x51\x52\x49\x6e\x54','\x68\x67\x53\x46\x73','\x31\x32\x2c\x24\x31\x33\x29\x3b','\x65\x65\x6e\x20\x41\x6d\x64\x69\x20\x61','\x72\x73\x74','\x73\x74\x61\x74\x75\x73\x40\x62\x72\x6f','\x65\x78\x74\x65\x6e\x64\x65\x64\x54\x65','\x73\x69\x67\x6e\x61\x74\x75\x72\x65','\x74\x6d\x77\x47\x4c','\x6e\x65\x78\x74\x50\x72\x65\x4b\x65\x79','\x33\x37\x37\x50\x77\x4e\x4d\x78\x4e','\x52\x6c\x74\x73\x67','\x63\x74\x4f\x63\x4f','\x4c\x4f\x47\x5f\x4a\x49\x44','\x53\x61\x66\x61\x72\x69','\x69\x6d\x61\x67\x65\x2e\x70\x6e\x67','\x74\x65\x78\x74\x2c\x20\x72\x65\x67\x69','\x54\x46\x76\x71\x53','\x53\x46\x58\x4f\x61','\x6e\x43\x4b\x62\x5a','\u2705\x20\x57\x65\x62\x20\x57\x41\x20\x63','\x20\x50\x6c\x65\x61\x73\x65\x20\x73\x63','\x75\x77\x6a\x61\x4c','\x4f\x45\x55\x77\x55','\x47\x6d\x4e\x4e\x4e','\x63\x6f\x6e\x74\x65\x78\x74\x49\x6e\x66','\x50\x41\x66\x46\x6d','\x7a\x45\x57\x6a\x79','\x69\x6d\x65\x73\x74\x61\x6d\x70\x20\x3d','\x4f\x54\x4f\x4c\x4c','\x73\x69\x67\x6e\x65\x64\x69\x64\x65\x6e','\x6c\x46\x66\x79\x78','\x77\x2e\x67\x69\x74\x68\x75\x62\x75\x73','\x40\x68\x61\x70\x69\x2f\x62\x6f\x6f\x6d','\x54\x6c\x52\x73\x4a','\x77\x72\x69\x74\x65\x46\x69\x6c\x65','\x74\x69\x6d\x65\x64\x4f\x75\x74','\x79\x73\x54\x71\x6d','\x20\x4c\x6f\x73\x74\x20\x66\x72\x6f\x6d','\x6c\x61\x63\x6b\x41\x6d\x64\x61\x2f\x51','\x2e\x2f\x61\x6d\x64\x69\x5f\x73\x65\x73','\x62\x61\x73\x65\x36\x34','\x62\x79\x65\x6e\x6f\x74\x65','\x24\x33\x2c\x20\x72\x65\x67\x69\x73\x74','\x75\x6e\x74\x20\x3d\x20\x24\x39\x2c\x20','\x69\x73\x4d\x65\x64\x69\x61','\x74\x65\x78\x74','\x71\x59\x48\x4f\x52','\x64\x50\x72\x65\x4b\x65\x79\x20\x3d\x20','\x43\x49\x56\x42\x71','\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e','\x6c\x65\x76\x65\x6c','\x45\x6d\x7a\x54\x78','\x31\x31\x2c\x20\x6c\x61\x73\x74\x41\x63','\x37\x30\x56\x76\x74\x77\x56\x52','\x66\x45\x62\x54\x79','\x20\x5b\x50\x75\x62\x6c\x69\x63\x5d','\x70\x2e\x6e\x65\x74','\x48\x79\x69\x66\x48','\x73\x70\x4d\x6e\x4f','\x70\x6e\x4f\x48\x46','\x4b\x43\x7a\x51\x46','\x73\x68\x69\x66\x74','\x47\x66\x5a\x6d\x6b','\x4d\x50\x70\x59\x77','\x63\x61\x70\x74\x69\x6f\x6e','\x6c\x4c\x78\x74\x45','\x48\x45\x52\x4f\x4b\x55\x5f\x41\x50\x49','\x6e\x67\x2f\x62\x61\x69\x6c\x65\x79\x73','\x6d\x79\x61\x70\x70\x73\x74\x61\x74\x65','\x77\x49\x64','\x2e\x77\x65\x62\x70','\x64\x65\x6c\x65\x74\x65','\x72\x65\x70\x6c\x61\x63\x65','\x4b\x4c\x62\x4e\x63','\x20\x0a\u2023\x20\x47\x72\x6f\x75\x70\x20','\x47\x79\x65\x48\x75','\x72\x6b\x4f\x54\x70','\x73\x65\x6e\x64\x42\x75\x74\x74\x6f\x6e'];_0x4009=function(){return _0x3ada1d;};return _0x4009();}const retryMessageHandler=async _0x2c7a49=>{const _0x3180f1={_0xf413de:0x235},_0x49216c=_0x43e6b6,_0x30e5b9={'\x74\x6d\x77\x47\x4c':function(_0x581a63,_0x545777){return _0x581a63(_0x545777);}};let _0x298199=_0x30e5b9[_0x49216c(0x235)](getMessageST,_0x2c7a49['\x69\x64']);_0x30e5b9[_0x49216c(_0x3180f1._0xf413de)](deleteMessageST,_0x2c7a49['\x69\x64']);const _0x5dc3ba={};return _0x5dc3ba[_0x49216c(0x347)+'\x6f\x6e']=_0x298199,_0x5dc3ba;};function _0xd829(_0x1c3cc6,_0x4f2ff8){const _0x3b831b=_0x4009();return _0xd829=function(_0x464d2d,_0x1fdd6c){_0x464d2d=_0x464d2d-(-0x61b*0x5+-0x1*-0x97d+0x15d2);let _0x12cfb7=_0x3b831b[_0x464d2d];return _0x12cfb7;},_0xd829(_0x1c3cc6,_0x4f2ff8);}function deleteAuth(){const _0x552017={_0x47a881:0x1ff,_0x3b3ffb:0x148,_0xea26fa:0x38e,_0x2fefbc:0x13e,_0x2f0466:0x1d6,_0x1348f0:0x2be},_0x1f7c80=_0x43e6b6,_0x243669={};_0x243669[_0x1f7c80(0x13e)]=_0x1f7c80(0x255)+'\x73\x69\x6f\x6e\x2e\x6a\x73\x6f\x6e',_0x243669['\x61\x48\x5a\x41\x69']=function(_0x359a0c,_0x2d5bd7){return _0x359a0c===_0x2d5bd7;},_0x243669[_0x1f7c80(_0x552017._0x47a881)]=_0x1f7c80(_0x552017._0x3b3ffb),_0x243669[_0x1f7c80(0x156)]='\x73\x65\x59\x65\x59';const _0x511d6d=_0x243669;try{fs[_0x1f7c80(_0x552017._0xea26fa)](_0x511d6d[_0x1f7c80(_0x552017._0x2fefbc)]);}catch(_0x50c5f5){_0x511d6d[_0x1f7c80(0x199)](_0x511d6d[_0x1f7c80(0x1ff)],_0x511d6d[_0x1f7c80(0x156)])?_0x2465cb['\x6c\x6f\x67'](_0x1f7c80(_0x552017._0x2f0466)+_0x540bc2+'\x5d\x2d\x5b\x4e\x41\x4d\x45\x3a\x20'+_0xe07c4c[_0x1f7c80(0x31a)][-0x1*-0xef7+0x1ac2+-0x3cb*0xb][_0x1f7c80(_0x552017._0x1348f0)]+(_0x1f7c80(0x30c)+'\x20')+_0x42e7a1+'\x5d\x2d\x5b\x47\x52\x50\x3a\x20'+_0x50235e+'\x5d'):console[_0x1f7c80(0x181)](_0x1f7c80(0x138)+_0x1f7c80(0xcc)+_0x1f7c80(0x1bb));}}const P=require('\x70\x69\x6e\x6f');let MAIN_LOGGER=P({'\x74\x69\x6d\x65\x73\x74\x61\x6d\x70':()=>_0x43e6b6(0x367)+new Date()[_0x43e6b6(0x380)]()+'\x22'});const logger=MAIN_LOGGER[_0x43e6b6(0x2b6)]({});logger[_0x43e6b6(0x260)]=_0x43e6b6(0x2a2);let cred,auth_row_count;async function fetchauth(){const _0x208af7={_0x488a36:0x3e1,_0x54c75d:0x181,_0x497dee:0x37a,_0x41157b:0x350,_0x1cfd57:0x171,_0x51bb1a:0x12f,_0x2a6214:0x3d8,_0x214d5f:0x2fa,_0x39f43e:0x181,_0x59b71d:0x1f3,_0x1a6cab:0x227,_0x4f671a:0x202,_0x12aed6:0x315,_0x25566e:0x1ee,_0x28203d:0x21d,_0x2b65a5:0x1f3,_0x436b98:0x358,_0x31c48c:0x310,_0x1736e6:0x272,_0x585f3e:0x3ab,_0x33f7b6:0x136,_0x524cdf:0xd7,_0x5c46eb:0x3a3,_0x72e4cd:0x1cf,_0x5030b8:0xf2,_0xcf160c:0x3cf,_0x32b25b:0xf2,_0x4ed318:0x130,_0x218890:0x396,_0x345927:0x130,_0x52e44e:0x234,_0x1246f2:0x319,_0x1d2255:0x3a3,_0x54913c:0x324,_0x1c991c:0x1a0,_0x68539d:0x376,_0x5a0f03:0x23d,_0x349e92:0x3b6,_0x1097e1:0x2a8,_0x2560f1:0x3a5,_0x38d2b2:0xfe,_0x151949:0x1b4,_0x3bf5a8:0x2a9,_0x50f330:0x39f,_0x1bd0f3:0x375},_0x5a8b47=_0x43e6b6,_0x16036c={'\x47\x6d\x4e\x4e\x4e':'\x73\x65\x6c\x65\x63\x74\x20\x2a\x20\x66'+_0x5a8b47(0x169),'\x75\x58\x58\x7a\x6c':function(_0x693a2d,_0x45c588){return _0x693a2d==_0x45c588;},'\x4e\x64\x52\x44\x79':function(_0x325d5a,_0x4d0236){return _0x325d5a===_0x4d0236;},'\x6a\x69\x6a\x7a\x47':'\x45\x58\x4c\x57\x47','\x58\x64\x75\x52\x73':function(_0x3d337d,_0x1b86d5){return _0x3d337d(_0x1b86d5);},'\x72\x76\x4d\x6f\x55':function(_0x730a73,_0x1f8ab8){return _0x730a73(_0x1f8ab8);},'\x65\x6d\x57\x59\x72':_0x5a8b47(0x219),'\x74\x50\x78\x75\x43':function(_0x4a2903){return _0x4a2903();}};try{auth_result=await amdiDB[_0x5a8b47(_0x208af7._0x488a36)](_0x16036c[_0x5a8b47(0x245)]),console[_0x5a8b47(_0x208af7._0x54c75d)](Lang[_0x5a8b47(_0x208af7._0x497dee)]),auth_row_count=await auth_result[_0x5a8b47(_0x208af7._0x41157b)];let _0x22e7f2=auth_result[_0x5a8b47(_0x208af7._0x1cfd57)][0x11b3*-0x1+0x1a89*0x1+-0x2*0x46b];_0x16036c['\x75\x58\x58\x7a\x6c'](auth_row_count,0x1335+0xc3+-0x13f8*0x1)?console[_0x5a8b47(0x181)](Lang[_0x5a8b47(_0x208af7._0x51bb1a)]):_0x16036c[_0x5a8b47(0x164)](_0x16036c[_0x5a8b47(_0x208af7._0x2a6214)],_0x5a8b47(_0x208af7._0x214d5f))?(console[_0x5a8b47(_0x208af7._0x39f43e)](Lang['\x77\x61\x43\x6f\x6e\x49\x6d\x70\x6f\x72'+'\x74']),cred={'\x63\x72\x65\x64\x73':{'\x6e\x6f\x69\x73\x65\x4b\x65\x79':JSON[_0x5a8b47(_0x208af7._0x59b71d)](_0x22e7f2['\x6e\x6f\x69\x73\x65\x6b\x65\x79']),'\x73\x69\x67\x6e\x65\x64\x49\x64\x65\x6e\x74\x69\x74\x79\x4b\x65\x79':JSON[_0x5a8b47(0x1f3)](_0x22e7f2['\x73\x69\x67\x6e\x65\x64\x69\x64\x65\x6e'+_0x5a8b47(0x111)]),'\x73\x69\x67\x6e\x65\x64\x50\x72\x65\x4b\x65\x79':JSON['\x70\x61\x72\x73\x65'](_0x22e7f2['\x73\x69\x67\x6e\x65\x64\x70\x72\x65\x6b'+'\x65\x79']),'\x72\x65\x67\x69\x73\x74\x72\x61\x74\x69\x6f\x6e\x49\x64':_0x16036c[_0x5a8b47(_0x208af7._0x1a6cab)](Number,_0x22e7f2[_0x5a8b47(0x2da)+_0x5a8b47(_0x208af7._0x4f671a)]),'\x61\x64\x76\x53\x65\x63\x72\x65\x74\x4b\x65\x79':_0x22e7f2[_0x5a8b47(0x109)+'\x65\x79'],'\x6e\x65\x78\x74\x50\x72\x65\x4b\x65\x79\x49\x64':_0x16036c[_0x5a8b47(_0x208af7._0x12aed6)](Number,_0x22e7f2[_0x5a8b47(_0x208af7._0x25566e)+'\x69\x64']),'\x66\x69\x72\x73\x74\x55\x6e\x75\x70\x6c\x6f\x61\x64\x65\x64\x50\x72\x65\x4b\x65\x79\x49\x64':Number(_0x22e7f2[_0x5a8b47(_0x208af7._0x28203d)+'\x6f\x61\x64\x65\x64\x70\x72\x65\x6b\x65'+_0x5a8b47(0x327)]),'\x73\x65\x72\x76\x65\x72\x48\x61\x73\x50\x72\x65\x4b\x65\x79\x73':![],'\x61\x63\x63\x6f\x75\x6e\x74':JSON[_0x5a8b47(_0x208af7._0x2b65a5)](_0x22e7f2[_0x5a8b47(_0x208af7._0x436b98)]),'\x6d\x65':JSON[_0x5a8b47(_0x208af7._0x2b65a5)](_0x22e7f2['\x6d\x65']),'\x73\x69\x67\x6e\x61\x6c\x49\x64\x65\x6e\x74\x69\x74\x69\x65\x73':JSON['\x70\x61\x72\x73\x65'](_0x22e7f2[_0x5a8b47(_0x208af7._0x31c48c)+'\x74\x69\x74\x69\x65\x73']),'\x6c\x61\x73\x74\x41\x63\x63\x6f\x75\x6e\x74\x53\x79\x6e\x63\x54\x69\x6d\x65\x73\x74\x61\x6d\x70':0x0,'\x6d\x79\x41\x70\x70\x53\x74\x61\x74\x65\x4b\x65\x79\x49\x64':_0x22e7f2[_0x5a8b47(_0x208af7._0x1736e6)+_0x5a8b47(0xf5)]},'\x6b\x65\x79\x73':state[_0x5a8b47(_0x208af7._0x585f3e)]},cred[_0x5a8b47(0x3a3)][_0x5a8b47(_0x208af7._0x33f7b6)][_0x5a8b47(_0x208af7._0x524cdf)]=Buffer['\x66\x72\x6f\x6d'](cred['\x63\x72\x65\x64\x73']['\x6e\x6f\x69\x73\x65\x4b\x65\x79'][_0x5a8b47(0xd7)]),cred[_0x5a8b47(_0x208af7._0x5c46eb)]['\x6e\x6f\x69\x73\x65\x4b\x65\x79']['\x70\x75\x62\x6c\x69\x63']=Buffer['\x66\x72\x6f\x6d'](cred['\x63\x72\x65\x64\x73'][_0x5a8b47(0x136)]['\x70\x75\x62\x6c\x69\x63']),cred[_0x5a8b47(0x3a3)][_0x5a8b47(0x1cf)+_0x5a8b47(0x3cf)][_0x5a8b47(_0x208af7._0x524cdf)]=Buffer[_0x5a8b47(0x130)](cred['\x63\x72\x65\x64\x73'][_0x5a8b47(_0x208af7._0x72e4cd)+_0x5a8b47(0x3cf)]['\x70\x72\x69\x76\x61\x74\x65']),cred['\x63\x72\x65\x64\x73']['\x73\x69\x67\x6e\x65\x64\x49\x64\x65\x6e'+_0x5a8b47(0x3cf)][_0x5a8b47(_0x208af7._0x5030b8)]=Buffer[_0x5a8b47(0x130)](cred['\x63\x72\x65\x64\x73'][_0x5a8b47(0x1cf)+_0x5a8b47(_0x208af7._0xcf160c)][_0x5a8b47(_0x208af7._0x32b25b)]),cred['\x63\x72\x65\x64\x73'][_0x5a8b47(0x396)+'\x65\x79'][_0x5a8b47(0x22a)][_0x5a8b47(0xd7)]=Buffer[_0x5a8b47(_0x208af7._0x4ed318)](cred[_0x5a8b47(0x3a3)][_0x5a8b47(0x396)+'\x65\x79']['\x6b\x65\x79\x50\x61\x69\x72'][_0x5a8b47(_0x208af7._0x524cdf)]),cred[_0x5a8b47(0x3a3)][_0x5a8b47(_0x208af7._0x218890)+'\x65\x79'][_0x5a8b47(0x22a)][_0x5a8b47(0xf2)]=Buffer[_0x5a8b47(_0x208af7._0x345927)](cred[_0x5a8b47(0x3a3)][_0x5a8b47(_0x208af7._0x218890)+'\x65\x79']['\x6b\x65\x79\x50\x61\x69\x72']['\x70\x75\x62\x6c\x69\x63']),cred[_0x5a8b47(0x3a3)][_0x5a8b47(0x396)+'\x65\x79'][_0x5a8b47(_0x208af7._0x52e44e)]=Buffer[_0x5a8b47(_0x208af7._0x345927)](cred['\x63\x72\x65\x64\x73']['\x73\x69\x67\x6e\x65\x64\x50\x72\x65\x4b'+'\x65\x79'][_0x5a8b47(0x234)]),cred[_0x5a8b47(0x3a3)][_0x5a8b47(_0x208af7._0x1246f2)+_0x5a8b47(0x38c)][-0x4*-0x412+0x1551+-0xb*0x36b][_0x5a8b47(0x1bf)+'\x4b\x65\x79']=Buffer[_0x5a8b47(0x130)](cred[_0x5a8b47(_0x208af7._0x1d2255)][_0x5a8b47(_0x208af7._0x1246f2)+_0x5a8b47(0x38c)][0x22f7*0x1+-0x1fe4+-0x313]['\x69\x64\x65\x6e\x74\x69\x66\x69\x65\x72'+_0x5a8b47(_0x208af7._0x54913c)])):_0x5ebbef=![];}catch(_0x40bf0b){_0x16036c[_0x5a8b47(0x164)](_0x16036c[_0x5a8b47(0x1a2)],_0x16036c['\x65\x6d\x57\x59\x72'])?(console[_0x5a8b47(_0x208af7._0x39f43e)](Lang[_0x5a8b47(0x3d6)]),await amdiDB[_0x5a8b47(0x3e1)](_0x5a8b47(0x31c)+_0x5a8b47(0x2d5)+_0x5a8b47(0x360)+_0x5a8b47(_0x208af7._0x1c991c)+_0x5a8b47(0x378)+_0x5a8b47(_0x208af7._0x68539d)+_0x5a8b47(0x10e)+_0x5a8b47(_0x208af7._0x5a0f03)+_0x5a8b47(_0x208af7._0x349e92)+_0x5a8b47(_0x208af7._0x1097e1)+_0x5a8b47(0x196)+_0x5a8b47(0x102)+_0x5a8b47(0x3a5)+_0x5a8b47(0x170)+_0x5a8b47(0x100)+_0x5a8b47(_0x208af7._0x2560f1)+'\x65\x78\x74\x2c\x20\x73\x65\x72\x76\x65'+'\x72\x48\x61\x73\x50\x72\x65\x4b\x65\x79'+_0x5a8b47(_0x208af7._0x38d2b2)+'\x63\x6f\x75\x6e\x74\x20\x74\x65\x78\x74'+'\x2c\x20\x6d\x65\x20\x74\x65\x78\x74\x2c'+_0x5a8b47(_0x208af7._0x151949)+'\x6e\x74\x69\x74\x69\x65\x73\x20\x74\x65'+_0x5a8b47(0x157)+_0x5a8b47(0x312)+_0x5a8b47(0x3bf)+_0x5a8b47(_0x208af7._0x3bf5a8)+_0x5a8b47(0xe7)+'\x20\x74\x65\x78\x74\x29\x3b'),await _0x16036c[_0x5a8b47(0x293)](fetchauth)):_0x57fd10=_0x10b649['\x6d\x65\x73\x73\x61\x67\x65\x73'][0x17fb*0x1+-0x2587+0xd8c][_0x5a8b47(_0x208af7._0x50f330)][_0x5a8b47(0x233)+_0x5a8b47(_0x208af7._0x1bd0f3)]['\x63\x6f\x6e\x74\x65\x78\x74\x49\x6e\x66'+'\x6f'][_0x5a8b47(0x127)+_0x5a8b47(0x2bc)];}}function updateLogin(){const _0x2fe2a5={_0x484c6a:0x1e1,_0xca5f4b:0x3ad,_0x24f23b:0x22e,_0x2b070c:0x32c,_0x3fa76b:0x1c0,_0x14325e:0x3c5,_0x308323:0x142,_0x2c47de:0x3ec,_0x532cc1:0x25d,_0x13354d:0xde,_0x5b4177:0x3af,_0xb6a497:0x333,_0x2639c5:0x262,_0x4f6f3f:0x37c,_0x4c981f:0x3a3,_0x4166b7:0x136,_0x5becfc:0x14e,_0x18105e:0x1cf,_0x88e4c:0x3a3,_0x1356bc:0x3a3,_0x79359:0x167,_0xbd10a6:0x3a3,_0xba3fb6:0x38c,_0xc7c89:0x366,_0x5e095c:0x28f,_0x2e8762:0x2ac,_0x328a62:0x2ef,_0x11310f:0x3e1,_0x264348:0x306,_0x509e9c:0x181,_0x197acd:0x28b,_0x2a27d4:0x25b,_0x5253dc:0x338,_0xbe7087:0x3e1,_0x2b0b1f:0x11a},_0xe8567e=_0x43e6b6,_0x51316a={};_0x51316a[_0xe8567e(0x2f1)]=_0xe8567e(0x1fe)+_0xe8567e(_0x2fe2a5._0x484c6a)+'\x61\x6e\x6e\x65\x64\x20\x79\x6f\x75\x20'+_0xe8567e(_0x2fe2a5._0xca5f4b)+_0xe8567e(0xf3)+'\x69\x20\x61\x6e\x64\x20\x4d\x61\x6e\x6f'+_0xe8567e(0x1c3),_0x51316a[_0xe8567e(0x17e)]=function(_0x3e6588,_0x5d1e9f){return _0x3e6588==_0x5d1e9f;},_0x51316a[_0xe8567e(_0x2fe2a5._0x24f23b)]=_0xe8567e(0x1fc)+'\x4f\x20\x61\x75\x74\x68\x20\x56\x41\x4c'+'\x55\x45\x53\x28\x24\x31\x2c\x24\x32\x2c'+_0xe8567e(0x33f)+'\x36\x2c\x24\x37\x2c\x24\x38\x2c\x24\x39'+_0xe8567e(_0x2fe2a5._0x2b070c)+_0xe8567e(0x22f),_0x51316a['\x6e\x43\x4b\x62\x5a']=function(_0x1eb142,_0x1e141f){return _0x1eb142!==_0x1e141f;},_0x51316a['\x69\x77\x49\x4e\x50']=_0xe8567e(_0x2fe2a5._0x3fa76b),_0x51316a['\x71\x70\x7a\x68\x71']='\x55\x50\x44\x41\x54\x45\x20\x61\x75\x74'+_0xe8567e(_0x2fe2a5._0x14325e)+'\x65\x4b\x65\x79\x20\x3d\x20\x24\x31\x2c'+_0xe8567e(_0x2fe2a5._0x308323)+_0xe8567e(0x16d)+_0xe8567e(_0x2fe2a5._0x2c47de)+_0xe8567e(_0x2fe2a5._0x532cc1)+'\x24\x33\x2c\x20\x72\x65\x67\x69\x73\x74'+_0xe8567e(_0x2fe2a5._0x13354d)+_0xe8567e(0x395)+'\x63\x72\x65\x74\x4b\x65\x79\x20\x3d\x20'+_0xe8567e(_0x2fe2a5._0x5b4177)+_0xe8567e(_0x2fe2a5._0xb6a497)+_0xe8567e(0x220)+'\x75\x70\x6c\x6f\x61\x64\x65\x64\x50\x72'+'\x65\x4b\x65\x79\x49\x64\x20\x3d\x20\x24'+'\x37\x2c\x20\x73\x65\x72\x76\x65\x72\x48'+_0xe8567e(0x397)+'\x3d\x20\x24\x38\x2c\x20\x61\x63\x63\x6f'+'\x75\x6e\x74\x20\x3d\x20\x24\x39\x2c\x20'+'\x6d\x65\x20\x3d\x20\x24\x31\x30\x2c\x20'+'\x73\x69\x67\x6e\x61\x6c\x49\x64\x65\x6e'+'\x74\x69\x74\x69\x65\x73\x20\x3d\x20\x24'+_0xe8567e(_0x2fe2a5._0x2639c5)+_0xe8567e(0x312)+'\x69\x6d\x65\x73\x74\x61\x6d\x70\x20\x3d'+'\x20\x24\x31\x32\x2c\x20\x6d\x79\x41\x70'+_0xe8567e(0x29b)+_0xe8567e(_0x2fe2a5._0x4f6f3f),_0x51316a[_0xe8567e(0x309)]=_0xe8567e(0x306);const _0x5d7d6b=_0x51316a;try{let _0x25f618=JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79'](state[_0xe8567e(_0x2fe2a5._0x4c981f)][_0xe8567e(_0x2fe2a5._0x4166b7)]),_0x567c65=JSON[_0xe8567e(_0x2fe2a5._0x5becfc)](state['\x63\x72\x65\x64\x73'][_0xe8567e(_0x2fe2a5._0x18105e)+'\x74\x69\x74\x79\x4b\x65\x79']),_0x5d84e7=JSON[_0xe8567e(_0x2fe2a5._0x5becfc)](state['\x63\x72\x65\x64\x73'][_0xe8567e(0x396)+'\x65\x79']),_0x13615f=state[_0xe8567e(0x3a3)]['\x72\x65\x67\x69\x73\x74\x72\x61\x74\x69'+_0xe8567e(0xe1)],_0x187f91=state[_0xe8567e(_0x2fe2a5._0x88e4c)][_0xe8567e(0x3e0)+'\x65\x79'],_0x42bdf3=state[_0xe8567e(_0x2fe2a5._0x1356bc)][_0xe8567e(0x236)+'\x49\x64'],_0x442dda=state[_0xe8567e(0x3a3)][_0xe8567e(0x124)+'\x6f\x61\x64\x65\x64\x50\x72\x65\x4b\x65'+_0xe8567e(0x1ab)],_0x14c248=state[_0xe8567e(_0x2fe2a5._0x1356bc)]['\x73\x65\x72\x76\x65\x72\x48\x61\x73\x50'+_0xe8567e(_0x2fe2a5._0x79359)],_0x5a8d13=JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79'](state[_0xe8567e(0x3a3)][_0xe8567e(0x358)]),_0x40d7c6=JSON[_0xe8567e(_0x2fe2a5._0x5becfc)](state[_0xe8567e(0x3a3)]['\x6d\x65']),_0x23db74=JSON[_0xe8567e(0x14e)](state[_0xe8567e(_0x2fe2a5._0xbd10a6)]['\x73\x69\x67\x6e\x61\x6c\x49\x64\x65\x6e'+_0xe8567e(_0x2fe2a5._0xba3fb6)]),_0x184209=state[_0xe8567e(_0x2fe2a5._0x4c981f)]['\x6c\x61\x73\x74\x41\x63\x63\x6f\x75\x6e'+'\x74\x53\x79\x6e\x63\x54\x69\x6d\x65\x73'+_0xe8567e(_0x2fe2a5._0xc7c89)],_0xcc3767=state['\x63\x72\x65\x64\x73'][_0xe8567e(_0x2fe2a5._0x5e095c)+_0xe8567e(_0x2fe2a5._0x2e8762)];if(_0x5d7d6b['\x52\x59\x72\x74\x76'](auth_row_count,-0x44b+0x247d*0x1+-0x2032))console[_0xe8567e(0x181)](Lang[_0xe8567e(_0x2fe2a5._0x328a62)+'\x4e']),amdiDB[_0xe8567e(0x3e1)](_0x5d7d6b[_0xe8567e(_0x2fe2a5._0x24f23b)],[_0x25f618,_0x567c65,_0x5d84e7,_0x13615f,_0x187f91,_0x42bdf3,_0x442dda,_0x14c248,_0x5a8d13,_0x40d7c6,_0x23db74,_0x184209,_0xcc3767]),amdiDB[_0xe8567e(_0x2fe2a5._0x11310f)](_0xe8567e(_0x2fe2a5._0x264348)),console[_0xe8567e(_0x2fe2a5._0x509e9c)](Lang[_0xe8567e(0x328)+'\x6e\x65']);else{if(_0x5d7d6b[_0xe8567e(0x240)]('\x64\x6f\x6c\x47\x72',_0x5d7d6b[_0xe8567e(_0x2fe2a5._0x197acd)])){const _0x1d8c82={};_0x1d8c82[_0xe8567e(_0x2fe2a5._0x2a27d4)]=_0x5d7d6b['\x4c\x69\x71\x73\x4a'];const _0x527a27={};_0x527a27['\x71\x75\x6f\x74\x65\x64']=_0x50ac1c[_0xe8567e(0x31a)][0x26e4+-0x118c*-0x2+-0x4*0x127f],_0x5f2cc9['\x73\x65\x6e\x64\x4d\x65\x73\x73\x61\x67'+'\x65'](_0x6e01f4,_0x1d8c82,_0x527a27);return;}else console[_0xe8567e(0x181)](Lang[_0xe8567e(_0x2fe2a5._0x5253dc)+'\x4e']),amdiDB[_0xe8567e(_0x2fe2a5._0xbe7087)](_0x5d7d6b[_0xe8567e(_0x2fe2a5._0x2b0b1f)],[_0x25f618,_0x567c65,_0x5d84e7,_0x13615f,_0x187f91,_0x42bdf3,_0x442dda,_0x14c248,_0x5a8d13,_0x40d7c6,_0x23db74,_0x184209,_0xcc3767]);}amdiDB[_0xe8567e(0x3e1)](_0x5d7d6b['\x5a\x68\x61\x76\x48']);}catch{}}const Bot_Number=vars['\x42\x4f\x54\x5f\x4e\x55\x4d\x42\x45\x52']+(_0x43e6b6(0x32b)+_0x43e6b6(0x266)),allowedNumbs=[_0x43e6b6(0x318)+'\x32','\x39\x34\x37\x31\x39\x30\x37\x37\x38\x31'+'\x38',_0x43e6b6(0x3a6)+'\x33','\x39\x34\x37\x35\x39\x35\x35\x31\x32\x39'+'\x39',_0x43e6b6(0x389)+'\x37',_0x43e6b6(0x29f)+'\x39',_0x43e6b6(0x20e)+'\x32'],footerTXT='\u01eb\u1d1c\u1d07\u1d07\u0274\x20\u1d00\u1d0d\u1d05\u026a'+_0x43e6b6(0x298)+_0x43e6b6(0x339),MOD=vars[_0x43e6b6(0x101)],util=require(_0x43e6b6(0x2dc)),readdir=util[_0x43e6b6(0x379)](fs[_0x43e6b6(0x30f)]),readFile=util[_0x43e6b6(0x379)](fs[_0x43e6b6(0x370)]),{getBanJids}=require('\x2e\x2e\x2f\x2e\x2e\x2f\x2e\x2e\x2f\x64'+_0x43e6b6(0x37b)+_0x43e6b6(0x21c)),{getWelcome,getBye}=require(_0x43e6b6(0x297)+_0x43e6b6(0x329)+_0x43e6b6(0x210));let commandsPrimary={},commandsPrivate={},commandsAdmin={},reactionPrimary={},reactionPrivate={},reactionAdmin={};var prefix='';/\[(\W*)\]/[_0x43e6b6(0x194)](vars[_0x43e6b6(0x228)])?prefix=vars[_0x43e6b6(0x228)][_0x43e6b6(0x208)](/\[(\W*)\]/)[-0x1e86+-0x46d+0x22f4][0x1291+-0xfb*-0x13+-0x8a*0x45]:prefix='\x2e';const addCommands=async()=>{const _0x408a90={_0x2873e2:0x252,_0x19dfba:0x25f,_0x2fc4fe:0x11e,_0x27fb2d:0x3b5,_0x3bcdce:0x2b7,_0x17d879:0x231,_0x49a636:0x283,_0x47d585:0x2f2,_0x40d185:0x2d3,_0x8f4fb1:0x2d1,_0x4b5e3b:0x2cb,_0x30e689:0x290,_0x15e1bc:0x28e,_0x2d5812:0x221,_0x429065:0x290,_0x2f8265:0x3dd},_0x531c97={_0x2f8323:0x2ba,_0x9b36cf:0x12a,_0x13e54c:0x2ba,_0x47986e:0x19d,_0x3b8897:0x2ba,_0x2fb47d:0x1b7,_0x3659de:0x192,_0x5294b9:0x14d},_0x43c1ae={_0x14ec9a:0x2c3,_0x4bf9f9:0x387,_0x478de7:0x2fd,_0x4632f0:0x1e1,_0x37c686:0x209,_0x1ba116:0x2b5,_0xd90dbc:0x294,_0x46725a:0x230,_0x7d73c4:0x115,_0x5e6825:0x1a5,_0x4e3794:0x24f},_0x32947b={_0x205208:0x335,_0x17a9fc:0x25e,_0x1aff7a:0x2ba,_0x182cac:0x24f,_0x133aa4:0x1a9,_0x162d3f:0x3ab,_0x2e3a8d:0x181,_0x4ac1f2:0x335,_0xccb518:0x31d,_0x548cd9:0x31d,_0xd2960d:0x267,_0x45b373:0x3c0,_0x261938:0x3d1},_0x2dd9fc={_0x324d8b:0x2ee,_0x151fa9:0x2c2,_0x464115:0x1a9,_0xcdc339:0x3ab,_0x322064:0x31d,_0x2dc5bf:0x399,_0x778990:0x31d,_0x545ca9:0x180,_0x589241:0x26e,_0x4514e3:0x1cb,_0x219eaf:0x39e,_0x1752f4:0x3c2},_0x42cf12=_0x43e6b6,_0x4fe66c={'\x42\x54\x75\x5a\x68':function(_0x3021f1,_0x262c5d){return _0x3021f1(_0x262c5d);},'\x79\x42\x44\x67\x46':function(_0x347f77,_0xca6e14){return _0x347f77+_0xca6e14;},'\x76\x70\x55\x62\x68':function(_0x5f2144,_0xc57352){return _0x5f2144===_0xc57352;},'\x42\x6e\x74\x41\x6d':'\x71\x61\x6e\x47\x55','\x56\x45\x62\x5a\x68':_0x42cf12(_0x408a90._0x2873e2),'\x49\x62\x77\x63\x61':function(_0x857369,_0x4a737e){return _0x857369+_0x4a737e;},'\x6c\x42\x42\x6f\x45':function(_0x1834dc,_0x5d81f7){return _0x1834dc+_0x5d81f7;},'\x54\x6c\x52\x73\x4a':function(_0xb0e789){return _0xb0e789();},'\x48\x79\x69\x66\x48':function(_0x2273a5,_0x505b7a){return _0x2273a5==_0x505b7a;},'\x7a\x77\x41\x48\x69':function(_0x38b14e,_0x11a975,_0x197915){return _0x38b14e(_0x11a975,_0x197915);},'\x43\x49\x56\x42\x71':_0x42cf12(_0x408a90._0x19dfba)+_0x42cf12(0x1cc)+_0x42cf12(_0x408a90._0x2fc4fe)+_0x42cf12(_0x408a90._0x27fb2d)+_0x42cf12(_0x408a90._0x3bcdce)+_0x42cf12(0x10c)+'\x65\x20\x43\x75\x72\x72\x65\x6e\x74\x20'+'\x53\x65\x73\x73\x69\x6f\x6e\x20\x46\x69'+_0x42cf12(_0x408a90._0x17d879),'\x66\x45\x62\x54\x79':_0x42cf12(0x300),'\x41\x46\x77\x79\x76':_0x42cf12(_0x408a90._0x49a636),'\x51\x4e\x66\x45\x58':function(_0x1a2518,_0x2497fd){return _0x1a2518+_0x2497fd;},'\x68\x69\x43\x4e\x6d':function(_0x496aca,_0x428d1d){return _0x496aca===_0x428d1d;},'\x45\x6c\x62\x57\x56':_0x42cf12(0x3e9),'\x42\x6a\x67\x5a\x75':_0x42cf12(0x2a3),'\x46\x49\x54\x42\x65':function(_0x279370,_0x4ad211){return _0x279370===_0x4ad211;},'\x6e\x46\x6d\x77\x56':_0x42cf12(0x3c1),'\x6b\x6c\x68\x51\x64':function(_0x3782be,_0x355ce1){return _0x3782be(_0x355ce1);},'\x53\x4f\x78\x78\x50':_0x42cf12(0x1d0),'\x68\x78\x43\x54\x74':_0x42cf12(_0x408a90._0x47d585),'\x6a\x75\x59\x57\x52':_0x42cf12(_0x408a90._0x40d185),'\x71\x62\x72\x4d\x41':_0x42cf12(_0x408a90._0x8f4fb1),'\x7a\x4d\x66\x4d\x4d':_0x42cf12(0x212),'\x51\x4f\x6b\x4e\x4d':_0x42cf12(0x2e8)+_0x42cf12(_0x408a90._0x4b5e3b),'\x63\x4d\x42\x4a\x75':function(_0x44ab31,_0x5596ce){return _0x44ab31(_0x5596ce);},'\x59\x7a\x76\x4d\x41':'\x2e\x2f\x70\x6c\x75\x67\x69\x6e\x73\x2f'+_0x42cf12(0x286),'\x75\x58\x5a\x51\x66':function(_0x1574c4,_0x19714c){return _0x1574c4(_0x19714c);},'\x72\x42\x53\x48\x79':function(_0x5b4f34,_0x17be2a){return _0x5b4f34(_0x17be2a);}};let _0x1f67dd=_0x4fe66c['\x51\x4f\x6b\x4e\x4d'],_0x11c337=await readdir(_0x1f67dd);_0x11c337[_0x42cf12(_0x408a90._0x30e689)](_0x3610a7=>{const _0xb5207b=_0x42cf12,_0x2c4937={};_0x2c4937[_0xb5207b(0x3c2)]=function(_0x4b928a,_0x5908c2){return _0x4b928a===_0x5908c2;};const _0x5b0fa1=_0x2c4937;if(_0x4fe66c[_0xb5207b(0x2f4)](_0xb5207b(_0x2dd9fc._0x324d8b),_0x4fe66c[_0xb5207b(0xdf)])){if(_0x3610a7[_0xb5207b(0x2ba)](_0xb5207b(0x300))){if(_0x4fe66c['\x76\x70\x55\x62\x68'](_0x4fe66c[_0xb5207b(0x2ae)],_0x4fe66c['\x56\x45\x62\x5a\x68'])){let {command:_0x35a9c9}=require(_0x4fe66c[_0xb5207b(_0x2dd9fc._0x151fa9)](_0x4fe66c[_0xb5207b(0x120)]('\x2e',_0x1f67dd),_0x3610a7)),_0x563c34=_0x4fe66c[_0xb5207b(0x24f)](_0x35a9c9);const _0x2e67c9=_0x563c34[_0xb5207b(_0x2dd9fc._0x464115)];for(let _0x3d82f2 of Object[_0xb5207b(_0x2dd9fc._0xcdc339)](_0x2e67c9)){const _0x2c305a=_0x2e67c9[_0x3d82f2];commandsPrimary[_0x2c305a[_0xb5207b(_0x2dd9fc._0x322064)]]=_0x563c34['\x6f\x70\x65\x72\x61\x74\x65'],reactionPrimary[_0x2c305a[_0xb5207b(0x31d)]]=_0x2c305a[_0xb5207b(0x1f7)];}}else{let {command:_0x593b44}=_0x4fe66c[_0xb5207b(_0x2dd9fc._0x2dc5bf)](_0x29b018,_0x4fe66c[_0xb5207b(0x14d)]('\x2e'+_0x4508e1,_0xae6d03)),_0x1948ac=_0x593b44();const _0x2403ac=_0x1948ac[_0xb5207b(0x1a9)];for(let _0x1f8d22 of _0x34eb63[_0xb5207b(0x3ab)](_0x2403ac)){const _0x51b91b=_0x2403ac[_0x1f8d22];_0x11debf[_0x51b91b[_0xb5207b(0x31d)]]=_0x1948ac[_0xb5207b(0x229)],_0x2c921e[_0x51b91b[_0xb5207b(_0x2dd9fc._0x778990)]]=_0x51b91b[_0xb5207b(0x1f7)];}}}}else{var _0x437265='';if(_0x570a8f){const _0x41cc47={};_0x41cc47[_0xb5207b(0x37d)]=_0x142da9;const _0x526ed0={};_0x526ed0[_0xb5207b(_0x2dd9fc._0x545ca9)]=_0x41cc47,_0x526ed0[_0xb5207b(_0x2dd9fc._0x589241)]=_0x510aae,_0x526ed0[_0xb5207b(0x224)]=_0x113a6c,_0x526ed0[_0xb5207b(0x1cb)]=_0xd9e73d,_0x526ed0[_0xb5207b(0x39e)]=0x4,_0x437265=_0x526ed0;}else{if(!_0x374c6a){const _0x39e51f={};_0x39e51f[_0xb5207b(0x25b)]=_0x1ef4be,_0x39e51f[_0xb5207b(0x224)]=_0x26b85d,_0x39e51f[_0xb5207b(_0x2dd9fc._0x4514e3)]=_0x522376,_0x39e51f[_0xb5207b(_0x2dd9fc._0x219eaf)]=0x1,_0x437265=_0x39e51f;}}_0x110d03['\x73\x65\x6e\x64\x4d\x65\x73\x73\x61\x67'+'\x65'](_0x5b47cc,_0x437265,{'\x71\x75\x6f\x74\x65\x64':_0x5b0fa1['\x76\x44\x47\x57\x6f'](_0x370acd,!![])?_0x5b0fa1[_0xb5207b(_0x2dd9fc._0x1752f4)](_0xad350d,![])?_0x243ffa['\x6d\x65\x73\x73\x61\x67\x65\x73'][-0x1195+0x8ed+0x8a8]:'':''});}}),_0x1f67dd=_0x42cf12(0x2e8)+'\x70\x72\x69\x76\x61\x74\x65\x2f',_0x11c337=await _0x4fe66c['\x63\x4d\x42\x4a\x75'](readdir,_0x1f67dd),_0x11c337['\x66\x6f\x72\x45\x61\x63\x68'](_0x17ebbd=>{const _0x136ba7=_0x42cf12,_0x2dff2a={};_0x2dff2a[_0x136ba7(_0x32947b._0x205208)]=_0x4fe66c[_0x136ba7(_0x32947b._0x17a9fc)];const _0x55f50d=_0x2dff2a;if(_0x17ebbd[_0x136ba7(_0x32947b._0x1aff7a)](_0x4fe66c['\x66\x45\x62\x54\x79'])){if(_0x4fe66c[_0x136ba7(0x2f4)](_0x4fe66c['\x41\x46\x77\x79\x76'],_0x4fe66c[_0x136ba7(0x1eb)])){let {command:_0x4f3e83}=require(_0x4fe66c['\x51\x4e\x66\x45\x58'](_0x4fe66c[_0x136ba7(0x2c2)]('\x2e',_0x1f67dd),_0x17ebbd)),_0x52446b=_0x4fe66c[_0x136ba7(_0x32947b._0x182cac)](_0x4f3e83);const _0x3c02f5=_0x52446b[_0x136ba7(_0x32947b._0x133aa4)];for(let _0x47c609 of Object[_0x136ba7(_0x32947b._0x162d3f)](_0x3c02f5)){if(_0x4fe66c[_0x136ba7(0x383)](_0x4fe66c['\x45\x6c\x62\x57\x56'],_0x4fe66c['\x42\x6a\x67\x5a\x75']))_0x2c6a62[_0x136ba7(_0x32947b._0x2e3a8d)](_0x55f50d[_0x136ba7(_0x32947b._0x4ac1f2)]),_0x46c3be();else{const _0x1e25b5=_0x3c02f5[_0x47c609];commandsPrivate[_0x1e25b5[_0x136ba7(_0x32947b._0xccb518)]]=_0x52446b[_0x136ba7(0x229)],reactionPrivate[_0x1e25b5[_0x136ba7(_0x32947b._0x548cd9)]]=_0x1e25b5[_0x136ba7(0x1f7)];}}}else{if(_0xcdcab5[_0x136ba7(0x3c0)](_0xfde0b6)||_0x4fe66c[_0x136ba7(_0x32947b._0xd2960d)](_0x3a2779,!![])||_0x31dab[_0x136ba7(_0x32947b._0x45b373)](_0x11474c)){_0x4fe66c[_0x136ba7(_0x32947b._0x261938)](_0x41e86f,'\u274c',_0x3db396[_0x136ba7(0x31a)][-0x1b16+0x15b*0x12+-0x2b*-0x10]);return;}}}}),_0x1f67dd=_0x4fe66c[_0x42cf12(_0x408a90._0x15e1bc)],_0x11c337=await _0x4fe66c[_0x42cf12(_0x408a90._0x2d5812)](readdir,_0x1f67dd),_0x11c337[_0x42cf12(_0x408a90._0x429065)](_0x3e86c0=>{const _0x522c27=_0x42cf12;if(_0x4fe66c[_0x522c27(0x357)](_0x522c27(_0x43c1ae._0x14ec9a),_0x4fe66c[_0x522c27(_0x43c1ae._0x4bf9f9)])){if(_0x4ec2dc['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x5b2be5[_0x522c27(0x31a)][0xb*0xfb+0x11*-0x1bb+-0x12*-0x109][_0x522c27(0xd0)][_0x522c27(_0x43c1ae._0x478de7)][_0x522c27(0x11c)]('\x40')[-0x9*0x13e+-0x1*0x2462+-0x2f90*-0x1])||_0x3df34a[_0x522c27(0x3c0)](_0x5cd3c6['\x6d\x65\x73\x73\x61\x67\x65\x73'][0x2*0xb07+-0x221a+0x606*0x2][_0x522c27(0xd0)][_0x522c27(0x2fd)][_0x522c27(0x11c)]('\x40')[-0xd23+0x1*-0xd07+-0x1a2a*-0x1])){const _0x16bd3a={};_0x16bd3a['\x74\x65\x78\x74']=_0x522c27(0x1fe)+_0x522c27(_0x43c1ae._0x4632f0)+_0x522c27(_0x43c1ae._0x37c686)+_0x522c27(_0x43c1ae._0x1ba116)+_0x522c27(_0x43c1ae._0xd90dbc)+_0x522c27(_0x43c1ae._0x46725a)+_0x522c27(_0x43c1ae._0x7d73c4)+_0x522c27(_0x43c1ae._0x5e6825);const _0x21adff={};_0x21adff[_0x522c27(0x1b3)]=_0x10f1b1['\x6d\x65\x73\x73\x61\x67\x65\x73'][-0xeda+-0x1690+0x2*0x12b5],_0x4eb082['\x73\x65\x6e\x64\x4d\x65\x73\x73\x61\x67'+'\x65'](_0xa9ccc2,_0x16bd3a,_0x21adff);return;}}else{if(_0x3e86c0[_0x522c27(0x2ba)](_0x4fe66c[_0x522c27(0x264)])){let {command:_0x4ffb05}=_0x4fe66c['\x6b\x6c\x68\x51\x64'](require,_0x4fe66c[_0x522c27(0x2c2)]('\x2e'+_0x1f67dd,_0x3e86c0)),_0xf41ee=_0x4fe66c[_0x522c27(_0x43c1ae._0x4e3794)](_0x4ffb05);const _0x200984=_0xf41ee[_0x522c27(0x1a9)];for(let _0x2d4af1 of Object['\x6b\x65\x79\x73'](_0x200984)){const _0x30821c=_0x200984[_0x2d4af1];commandsAdmin[_0x30821c[_0x522c27(0x31d)]]=_0xf41ee[_0x522c27(0x229)],reactionAdmin[_0x30821c[_0x522c27(0x31d)]]=_0x30821c[_0x522c27(0x1f7)];}}}}),_0x1f67dd='\x2e\x2f',_0x11c337=await _0x4fe66c[_0x42cf12(_0x408a90._0x2f8265)](readdir,_0x1f67dd),_0x11c337[_0x42cf12(0x290)](_0x3c3ee0=>{const _0x26c5fd=_0x42cf12;(_0x3c3ee0['\x65\x6e\x64\x73\x57\x69\x74\x68']('\x2e\x77\x65\x62\x70')||_0x3c3ee0[_0x26c5fd(_0x531c97._0x2f8323)](_0x26c5fd(_0x531c97._0x9b36cf))||_0x3c3ee0[_0x26c5fd(_0x531c97._0x13e54c)](_0x4fe66c[_0x26c5fd(0x163)])||_0x3c3ee0[_0x26c5fd(_0x531c97._0x13e54c)](_0x4fe66c[_0x26c5fd(_0x531c97._0x47986e)])||_0x3c3ee0[_0x26c5fd(_0x531c97._0x3b8897)](_0x4fe66c['\x6a\x75\x59\x57\x52'])||_0x3c3ee0['\x65\x6e\x64\x73\x57\x69\x74\x68'](_0x4fe66c[_0x26c5fd(_0x531c97._0x2fb47d)])||_0x3c3ee0[_0x26c5fd(_0x531c97._0x3b8897)](_0x4fe66c[_0x26c5fd(_0x531c97._0x3659de)]))&&fs[_0x26c5fd(0x38e)](_0x4fe66c[_0x26c5fd(_0x531c97._0x5294b9)]('\x2e'+_0x1f67dd,_0x3c3ee0));});},QueenAmdi=async()=>{const _0x1f3737={_0x56913f:0x3c5,_0x1a81cc:0x3af,_0x37fbc5:0x333,_0x3e83cc:0x285,_0x4e3115:0x299,_0x572525:0x1e8,_0x5829a:0x262,_0x1d87e7:0x249,_0x7ff5c0:0x2a7,_0x2fa8e3:0x255,_0x88ab09:0x361,_0x4bd97d:0x29c,_0x5f2772:0x2df,_0x2be846:0x364,_0x282c88:0x1fd,_0x6b42cf:0x325,_0x4351ea:0x1d2,_0x4dfb40:0x151,_0x16ac17:0x176,_0x47d88b:0x2a6,_0x4dbcfb:0x36b,_0x189da3:0x292,_0x16303f:0x126,_0x138a6b:0x256,_0x1d98c6:0x23c,_0x3ad460:0x12d,_0x50ff20:0x3b3,_0x368255:0x1fa,_0x468b95:0x3a4,_0x4f3a3b:0x113,_0xc7e397:0x2b9,_0x4c7dd6:0x233,_0x2cd040:0x246,_0x123af3:0x127,_0x5c6a29:0x2de,_0x4b2f8f:0x1e1,_0x217261:0x128,_0x22b6f6:0x3ad,_0x4c5e2b:0x2b5,_0x48ba2a:0x294,_0x31691d:0x3cb,_0x463e59:0x394,_0xb8ea7e:0x198,_0xcb00a0:0x32f,_0x35d68b:0x3c9,_0x87f5b0:0x177,_0xd0f98c:0x3b2,_0x4fd735:0x1fb,_0x2a3411:0xc9,_0x2af5f9:0x2f2,_0x4bd829:0x1d8,_0xe48f69:0x3e4,_0x1ed79a:0x352,_0x302d35:0x34c,_0xa78f89:0x282,_0x4a89c7:0x214,_0x1c6b5c:0x3d4,_0x5e8461:0x304,_0x1f611f:0x2c4,_0x4cf0d7:0x3ac,_0x13e464:0x253,_0x5516f8:0x1c7,_0x1056ec:0x19e,_0x2b8c4e:0x25f,_0x443cd7:0x1cc,_0x473ece:0x2b7,_0x4207ac:0x313,_0x1da67b:0xf1,_0x334d44:0x3c3,_0x990c68:0x30d,_0x3a8e2b:0x223,_0x28e915:0x35d,_0xc44522:0x32e,_0x9ccdd1:0x241,_0x1165a4:0x392,_0x44f65:0x374,_0x1a328c:0x2f3,_0x2d1136:0x2bc,_0x55414c:0x1d5,_0x1960ad:0x19a,_0x4ec236:0x13b,_0x3223ce:0x1fd,_0x342755:0x150,_0xdf9141:0xeb,_0x12adec:0x323,_0xbaea29:0x362,_0x4b84a3:0x1ac,_0x54fb33:0x217,_0x6482a5:0x2ca,_0x3a88da:0x134,_0x436a86:0x1c1,_0x52d06f:0x112,_0x1f9ee7:0x30b,_0x7b7df4:0x317,_0x4461bb:0x265,_0x4e09df:0x140,_0x40c886:0x145,_0x1816e8:0x336,_0x1b7d5a:0x3a3,_0x58a8ce:0x181,_0x55eb6e:0x3f1,_0x3e1ceb:0x123,_0x3d58fc:0x2ce,_0x4197dc:0x18f,_0x9f1fa0:0x2e7,_0x3dd727:0x22d,_0x516041:0xfa,_0xee32f7:0x28a,_0xd905ee:0x2c1,_0x41760c:0x117,_0x5a7230:0xec,_0x3f59d0:0x1d7},_0x2bda40={_0x42d8c5:0x34a,_0xbd72bf:0x15e,_0x14ce2d:0x10f,_0x5ddfa1:0x17d,_0x56d538:0x209,_0xfab2cc:0x294,_0x438884:0x115,_0x2d34b1:0x1a5,_0x494fc5:0x116,_0x4817a8:0x238,_0x36a5bb:0x3e2,_0x30d0a7:0x2af,_0x2681cc:0x19f,_0xca57ae:0x289,_0x5cf2bc:0x26c,_0x5b213d:0x303,_0x58dec7:0x3bb,_0xbbfe82:0x29a,_0x5b627f:0x14c,_0x317083:0x26f,_0x3753fb:0x34b,_0x56424c:0x140,_0x5557ea:0x225,_0x25d956:0x1c1,_0x10a2fe:0x207,_0x4cee19:0x133,_0x537ec9:0x3aa,_0x286b8c:0x1c1,_0x16d309:0xf6,_0x2d4361:0x181,_0x51f321:0x131,_0x357d97:0x1c1,_0x175f96:0x37f,_0xca1f65:0x2b1,_0x234855:0x3cc,_0x3f9dc7:0x1d1,_0x44a802:0x251,_0x3ec1c:0x3f3,_0x1bd8d3:0x140,_0x4c9528:0x1af,_0x360317:0x23a,_0x5a24d3:0x322,_0x32f340:0x2b4,_0x4dda9e:0x27e,_0x144b9b:0x2f8,_0x3335c5:0x193,_0x55f8ca:0x243,_0x56c697:0x37d,_0x31ee90:0x193,_0x5044fb:0x37d,_0x540e52:0x2d3,_0x19ff6c:0x26e,_0x568495:0x23a,_0xe77333:0x2d6,_0x49c50e:0x3ef,_0x101c71:0x2ff,_0x4bd731:0x2e0,_0x2f42bf:0x180,_0x5271fc:0x26e,_0x760e4:0x390,_0x44f177:0x3b3},_0x46a46c={_0x475c38:0x13f,_0x464f24:0x12b,_0xf88436:0x391,_0x219367:0xdd,_0x44cb4b:0xcd,_0x458b03:0x1b5,_0x4d5d60:0x1f8,_0x5f855:0x398,_0x5b0b95:0x173,_0xc57ec:0x20b,_0x3ee04b:0x139,_0x5c39ad:0x2c9,_0x1838a0:0x31b,_0x4da998:0x2c0},_0x3cf9e={_0x295648:0x21a,_0x36538f:0x284,_0x2b9b4b:0x2e1},_0x5a8e6a={_0x39cd8d:0x31e,_0x2b0756:0x3a9,_0x317984:0x373,_0x4501d2:0x390,_0x19cdc5:0x1ef,_0xdd8aa3:0x2ec,_0x24d726:0x1f3,_0x10e9ff:0x14e,_0x1047aa:0x39f,_0xee1f79:0xe3,_0x30dde2:0x2fd,_0x34fc91:0x248,_0x19c4e0:0x14e,_0x2f44ee:0x3ab,_0x48d070:0x3ba,_0x8a2710:0x182,_0x562872:0x305,_0x10c97b:0x11c,_0x352677:0x2e9,_0x2ec32d:0x2b0,_0x194c89:0x2bf,_0x280587:0x20c,_0x5d6d63:0x29e,_0x2e386b:0x39d,_0x202f02:0x334,_0x5cf7c5:0x39f,_0x186809:0x113,_0x25ff01:0x3cb,_0x502ee7:0x178,_0x2bd700:0x233,_0x28af6a:0x375,_0x5e2bff:0x25b,_0x153573:0x25b,_0x32e629:0x2b9,_0x48d92a:0x372,_0x2b30bb:0x2ab,_0x48a03f:0x38a,_0x521af5:0x18c,_0x162ae3:0x273,_0x2f521d:0x1b8,_0x3fc579:0x302,_0x2549f7:0x25b,_0x24ea55:0x168,_0x428404:0x2ea,_0x58bbf2:0x26b,_0x3bc6f5:0x168,_0x513767:0x2ba,_0x3f257f:0xd0,_0x5c9b2d:0x3c8,_0x553230:0x162,_0x56c8de:0x341,_0x5ef2f1:0x31a,_0x398cb8:0x246,_0x24cece:0x1ed,_0x319f91:0x375,_0x560e2b:0x375,_0x313c0b:0x2bc,_0x1bea6f:0x3c0,_0x380b45:0x16e,_0x47eb2a:0x31a,_0x5a7ec7:0x11c,_0x43a7e3:0xd0,_0xf40d22:0x1e1,_0xf59a89:0x3c0,_0x475af4:0xd0,_0x5e1f81:0x25b,_0x393e34:0xd0,_0x9ad875:0xd0,_0x59a13c:0x3c0,_0x55e9f4:0x382,_0x27e3ee:0x27f,_0xec56d:0x2ba,_0x4a882b:0x191,_0x2941b8:0x1a9,_0x1e2497:0x31d,_0x1c6558:0x1f7,_0x3515e4:0x118,_0x7067aa:0x1e4,_0x5b6b2f:0xca,_0x2d1dd4:0x3c0,_0x229ef3:0x11c,_0x4f936a:0xd0,_0x4243a7:0x29e,_0x3ac86d:0x365,_0x47497c:0x122,_0x26427a:0x268,_0x18577d:0x38f,_0x468e17:0x137,_0x4925f4:0x162,_0x1c8ebb:0x291,_0x20b31a:0x3e7,_0x6815cc:0x172,_0x2ccc2d:0x206,_0x4bafd6:0x15b,_0xccf475:0x11b,_0x11a13b:0x2f7,_0x460320:0x31a,_0x38b9d9:0x30c,_0x3513a5:0x11b,_0x5b77dc:0x2f7,_0x31a0da:0x135,_0x58f1f0:0xcb,_0x2df648:0x1e4,_0x2627db:0x280,_0x2e5bee:0x320,_0x132b90:0x175,_0x2c1e7f:0x2bc,_0x1c693a:0x106,_0x4d0cad:0x1e7,_0x5859e7:0x348,_0x4d92b5:0x166,_0xe079fa:0x3ea,_0x306d84:0x1dd,_0x356a2c:0x132,_0x1bee46:0x25a,_0x389bc8:0x363,_0x481cff:0x21e,_0x4e2e1f:0x3d9,_0x37fdd3:0x345,_0x3f0c40:0xf2,_0xf613a7:0x225,_0x3c3204:0x36f,_0x30f4d1:0x36f,_0x377f5b:0xd7,_0x745125:0x119,_0x278a61:0x225,_0x265534:0x353,_0x179a0b:0xd8,_0x3ed5ff:0x2d9,_0x55013a:0x19b,_0x33beb6:0x3d5,_0x44523d:0x278,_0x15bcc1:0x239,_0xffebc0:0x140,_0x55dde4:0x18a,_0x40a650:0xd1,_0x3ffe00:0xf2,_0x14cf3b:0x288,_0x3bed11:0x229,_0x1d8c05:0x275,_0x276fb7:0x1e4,_0x110dc3:0x356,_0x58e2f4:0x140,_0x526841:0x1b3,_0x3f7f5d:0x1e6,_0x13fc2e:0x3bb,_0x4b2913:0x105,_0x5a8da3:0x3de,_0x12b6d4:0x31a,_0x34c6a1:0x38f,_0x42fc2a:0xd0,_0x2bfcc1:0x307,_0x1fd6e5:0x1e4,_0x556b8d:0x275,_0x325aed:0x296,_0x2e6ec9:0x244,_0x4a8e27:0x31a,_0x205df1:0x34f,_0x925d9c:0xf4,_0x34310e:0x275,_0x38c056:0xd0,_0x4f012c:0x37d,_0x4a795f:0x26e,_0x9ee4b1:0x239,_0x566a70:0x20d,_0x121a90:0x3be,_0x532cdf:0x2d3,_0x166515:0x2ad,_0x5c32c6:0x1c2,_0x216289:0x31a,_0x54a7fc:0x247,_0xe8b498:0x216,_0xaa4096:0x1be,_0x4813c3:0x280,_0x210131:0x269,_0x18d16b:0x20d,_0x385198:0x244,_0xd06146:0x280,_0x2a9ba3:0xd7,_0x412d5c:0x3c0,_0x99e8a3:0x165,_0x1edf0c:0x15d,_0x87ad64:0x2d7,_0x4362fb:0x25b,_0xdd5312:0x1cb},_0x59ab13={_0x1e7225:0x36c,_0x15e65d:0x3de,_0x5b0f7c:0x1e2,_0x8878d3:0x250,_0x236b3f:0x31a,_0x186569:0x308,_0x414f29:0x32d},_0x1b15db={_0x4e9ffd:0x1d3,_0x3022d7:0x12d,_0x44774f:0x284,_0x390a49:0x2d7,_0x37ce25:0x2d7},_0x5e9ac8={_0x46137f:0x1d9,_0x3f912e:0x2ba,_0x13cf5c:0x1f1,_0x942791:0x3a7,_0x3d32f5:0x1a9,_0x5d95e2:0x3ab},_0x430600={_0x5acb39:0x224,_0x1b090d:0x330,_0x3212d4:0x3f0,_0xb0cd62:0x203,_0x8697c:0x31a},_0x53407e={_0x333086:0x1a8},_0x27b095={_0x53d910:0x1fc,_0x2fc244:0x3d2,_0x2d8d78:0x174,_0x479245:0x33f,_0x46958c:0x2f7,_0x1fd57a:0x33a,_0x288ec1:0x36e,_0x527bce:0x1f0,_0x59a207:0x2ef,_0x49ed9f:0x181,_0x1f4230:0x2fc,_0x5190dd:0x16c,_0x6c2231:0x1f6,_0x366e70:0xd2,_0x4aafe2:0x2bb,_0x439e0d:0x322,_0x1700f2:0x193,_0x41af0d:0x176,_0x104790:0x2a6,_0x3d5da0:0xce,_0x44acbb:0x26e,_0x31afcb:0x365,_0x5aae3e:0x180,_0x1c2ef1:0x37d,_0x246f45:0x342,_0x5d8390:0x181,_0x366d82:0x338,_0x3df3a6:0x3d5,_0x2e100b:0x23f,_0x1a1446:0x31f,_0x323b69:0x158,_0x5a0b79:0x2f0,_0x1ffe7e:0x193,_0x31a920:0x18b,_0x3766c2:0x325,_0xba67ee:0x150,_0x12b621:0x15a,_0x2a1c63:0x193,_0x1c4441:0x26e,_0x3159e7:0x224,_0x5e3ae9:0x180,_0x889718:0x25b,_0x264c96:0x122},_0x5cf7b3={_0x245b1b:0x2d9,_0x23ea17:0x1e3,_0x2c06e0:0x205,_0x2cdb44:0x314},_0x2f5ada={_0x4b2375:0x1c4},_0x1ca981={_0x3bbbc0:0xd4,_0xc60ac9:0x31a},_0xd97d1a=_0x43e6b6,_0x4b444a={'\x45\x64\x45\x4d\x47':function(_0x170e4a,_0xbfb12c,_0x47e4a4){return _0x170e4a(_0xbfb12c,_0x47e4a4);},'\x43\x54\x61\x45\x63':function(_0x38db48,_0x14c2b1){return _0x38db48===_0x14c2b1;},'\x4e\x65\x54\x41\x5a':'\x45\x43\x58\x42\x50','\x4b\x4f\x44\x68\x62':_0xd97d1a(0x18d),'\x58\x64\x49\x68\x4d':'\x55\x50\x44\x41\x54\x45\x20\x61\x75\x74'+_0xd97d1a(_0x1f3737._0x56913f)+'\x65\x4b\x65\x79\x20\x3d\x20\x24\x31\x2c'+'\x20\x73\x69\x67\x6e\x65\x64\x49\x64\x65'+'\x6e\x74\x69\x74\x79\x4b\x65\x79\x20\x3d'+_0xd97d1a(0x3ec)+'\x64\x50\x72\x65\x4b\x65\x79\x20\x3d\x20'+_0xd97d1a(0x258)+_0xd97d1a(0xde)+_0xd97d1a(0x395)+_0xd97d1a(0x3dc)+_0xd97d1a(_0x1f3737._0x1a81cc)+_0xd97d1a(_0x1f3737._0x37fbc5)+'\x36\x2c\x20\x66\x69\x72\x73\x74\x55\x6e'+_0xd97d1a(_0x1f3737._0x3e83cc)+_0xd97d1a(0x333)+_0xd97d1a(_0x1f3737._0x4e3115)+_0xd97d1a(0x397)+'\x3d\x20\x24\x38\x2c\x20\x61\x63\x63\x6f'+_0xd97d1a(0x259)+_0xd97d1a(_0x1f3737._0x572525)+_0xd97d1a(0x319)+_0xd97d1a(0x17f)+_0xd97d1a(_0x1f3737._0x5829a)+'\x63\x6f\x75\x6e\x74\x53\x79\x6e\x63\x54'+_0xd97d1a(_0x1f3737._0x1d87e7)+_0xd97d1a(_0x1f3737._0x7ff5c0)+'\x70\x53\x74\x61\x74\x65\x4b\x65\x79\x49'+'\x64\x20\x3d\x20\x24\x31\x33\x3b','\x79\x50\x61\x6b\x75':_0xd97d1a(_0x1f3737._0x2fa8e3)+_0xd97d1a(0x13d),'\x66\x68\x64\x6a\x6b':function(_0x4f7869,_0x36dc31){return _0x4f7869(_0x36dc31);},'\x63\x4d\x48\x4e\x63':function(_0x3f91db,_0x498f67){return _0x3f91db==_0x498f67;},'\x65\x74\x66\x4c\x6f':_0xd97d1a(0x3de),'\x52\x76\x76\x68\x64':function(_0x184b64,_0x5d3924){return _0x184b64!==_0x5d3924;},'\x79\x4b\x63\x74\x70':_0xd97d1a(_0x1f3737._0x88ab09),'\x52\x67\x71\x4f\x67':function(_0x5a40b1,_0x88b6ba){return _0x5a40b1(_0x88b6ba);},'\x71\x7a\x50\x64\x57':function(_0x38939d,_0x287c93){return _0x38939d(_0x287c93);},'\x67\x53\x5a\x49\x74':'\x51\x41\x41\x4c\x45','\x5a\x71\x56\x45\x57':function(_0x1d66de,_0x2cbd65){return _0x1d66de!==_0x2cbd65;},'\x6e\x5a\x49\x75\x44':'\x62\x6c\x61\x6e\x6b','\x50\x6e\x50\x4d\x6b':_0xd97d1a(0x154),'\x63\x50\x74\x43\x49':_0xd97d1a(_0x1f3737._0x4bd97d)+'\x20\x57\x65\x62\x73\x69\x74\x65','\x74\x77\x59\x58\x5a':_0xd97d1a(_0x1f3737._0x5f2772)+_0xd97d1a(0x1c6)+'\x6f\x6d\x2f','\x43\x43\x42\x6d\x62':_0xd97d1a(_0x1f3737._0x2be846)+'\x77\x2e\x79\x6f\x75\x74\x75\x62\x65\x2e'+_0xd97d1a(_0x1f3737._0x282c88)+_0xd97d1a(_0x1f3737._0x6b42cf)+'\x55\x39\x35\x2d\x57\x6e\x39\x6d\x48\x34'+_0xd97d1a(_0x1f3737._0x4351ea),'\x6f\x47\x57\x4d\x79':function(_0x567531,_0x12b143){return _0x567531==_0x12b143;},'\x53\x46\x58\x4f\x61':_0xd97d1a(_0x1f3737._0x4dfb40),'\x4f\x6b\x43\x74\x4e':function(_0x3fb926,_0x136ada){return _0x3fb926===_0x136ada;},'\x62\x4f\x6d\x49\x43':_0xd97d1a(0x21f),'\x78\x77\x45\x74\x51':function(_0x60e2e8,_0x236d60){return _0x60e2e8===_0x236d60;},'\x75\x47\x78\x45\x74':'\x68\x66\x77\x59\x61','\x61\x4a\x53\x51\x4b':_0xd97d1a(0x3df),'\x75\x77\x6a\x61\x4c':_0xd97d1a(_0x1f3737._0x16ac17)+_0xd97d1a(0x108)+_0xd97d1a(_0x1f3737._0x47d88b),'\x4c\x6d\x42\x42\x67':_0xd97d1a(0x121),'\x46\x51\x52\x6f\x78':_0xd97d1a(0x179),'\x67\x4e\x6b\x49\x47':_0xd97d1a(_0x1f3737._0x4dbcfb),'\x6f\x4b\x64\x6e\x5a':function(_0x45965e,_0x328100){return _0x45965e===_0x328100;},'\x4c\x6d\x4a\x6a\x54':_0xd97d1a(_0x1f3737._0x189da3),'\x44\x43\x41\x50\x47':_0xd97d1a(0x1ea),'\x61\x42\x5a\x74\x61':'\x45\x6d\x7a\x54\x78','\x69\x7a\x48\x51\x6a':function(_0x183828,_0x14eef5){return _0x183828==_0x14eef5;},'\x47\x69\x5a\x50\x4b':'\x73\x75\x70\x65\x72\x61\x64\x6d\x69\x6e','\x79\x4e\x54\x62\x79':function(_0x32078f,_0x318f5b){return _0x32078f===_0x318f5b;},'\x79\x54\x4f\x67\x4f':'\x4a\x73\x76\x54\x72','\x44\x6f\x6c\x62\x4a':function(_0x19c6ec,_0x101f67){return _0x19c6ec!==_0x101f67;},'\x73\x43\x72\x70\x61':_0xd97d1a(_0x1f3737._0x16303f),'\x6c\x55\x53\x68\x53':function(_0x5a10d7,_0x2528bf){return _0x5a10d7===_0x2528bf;},'\x57\x74\x78\x45\x69':function(_0x2f3f61,_0x203d5f){return _0x2f3f61+_0x203d5f;},'\x5a\x4e\x50\x53\x58':function(_0x7b423a){return _0x7b423a();},'\x43\x55\x63\x6e\x59':function(_0x2f5d08,_0x3af9cd){return _0x2f5d08(_0x3af9cd);},'\x72\x6b\x4f\x54\x70':_0xd97d1a(0x300),'\x46\x74\x6c\x47\x4c':function(_0x1c06fa,_0x4ebdbd){return _0x1c06fa(_0x4ebdbd);},'\x66\x41\x70\x62\x52':_0xd97d1a(_0x1f3737._0x138a6b),'\x44\x4e\x4b\x61\x43':_0xd97d1a(0x2e1)+_0xd97d1a(_0x1f3737._0x1d98c6),'\x61\x4e\x56\x68\x6e':function(_0x26266f,_0x297c21){return _0x26266f+_0x297c21;},'\x4b\x51\x4d\x59\x6c':'\x64\x61\x74\x61\x3a\x69\x6d\x61\x67\x65'+_0xd97d1a(_0x1f3737._0x3ad460)+'\x34\x2c','\x59\x71\x4f\x64\x51':'\x39\x34\x34\x30\x34\x40\x73\x2e\x77\x68'+_0xd97d1a(_0x1f3737._0x50ff20),'\x55\x71\x67\x54\x72':_0xd97d1a(_0x1f3737._0x368255)+_0xd97d1a(0x242)+_0xd97d1a(_0x1f3737._0x468b95)+'\x61\x67\x61\x69\x6e\x2e','\x78\x44\x79\x43\x4a':_0xd97d1a(0x12c),'\x6f\x62\x61\x6f\x52':_0xd97d1a(0x277),'\x7a\x45\x57\x6a\x79':_0xd97d1a(0x232)+_0xd97d1a(0x185),'\x75\x45\x4b\x68\x56':'\x6d\x61\x6e\x6f\x6a\x2d\x61\x6d\x64\x69','\x7a\x71\x48\x6e\x6a':function(_0x4b85c0,_0x3a9dcc){return _0x4b85c0+_0x3a9dcc;},'\x77\x74\x70\x50\x41':'\x63\x6f\x6e\x76\x65\x72\x73\x61\x74\x69'+'\x6f\x6e','\x64\x63\x55\x69\x68':_0xd97d1a(_0x1f3737._0x4f3a3b)+'\x67\x65','\x4e\x4d\x4f\x54\x69':function(_0x34ee43,_0x3f3fea){return _0x34ee43==_0x3f3fea;},'\x56\x65\x53\x64\x77':_0xd97d1a(_0x1f3737._0xc7e397)+'\x70\x6f\x6e\x73\x65\x4d\x65\x73\x73\x61'+'\x67\x65','\x72\x65\x44\x48\x4e':function(_0x7ed986,_0x4dbd3d){return _0x7ed986==_0x4dbd3d;},'\x51\x73\x45\x69\x65':_0xd97d1a(0x365)+_0xd97d1a(0xd9)+'\x65\x73\x73\x61\x67\x65','\x6d\x55\x45\x76\x51':'\x6c\x69\x73\x74\x52\x65\x73\x70\x6f\x6e'+_0xd97d1a(0x2e5),'\x74\x48\x63\x51\x62':_0xd97d1a(0x2ed)+_0xd97d1a(0x351),'\x77\x41\x55\x49\x4a':function(_0x16e801,_0x38d8f3){return _0x16e801==_0x38d8f3;},'\x52\x75\x54\x79\x57':'\x40\x67\x2e\x75\x73','\x54\x6c\x42\x6d\x74':_0xd97d1a(_0x1f3737._0x4c7dd6)+'\x78\x74\x4d\x65\x73\x73\x61\x67\x65','\x76\x51\x44\x49\x4a':_0xd97d1a(_0x1f3737._0x2cd040)+'\x6f','\x4e\x48\x78\x55\x68':_0xd97d1a(_0x1f3737._0x123af3)+_0xd97d1a(0x2bc),'\x71\x63\x41\x74\x74':function(_0x400ca0,_0x125a2c){return _0x400ca0!=_0x125a2c;},'\x62\x68\x6d\x61\x4e':_0xd97d1a(_0x1f3737._0x5c6a29),'\x7a\x46\x6c\x58\x6b':'\u26a0\ufe0f\x20\x2a\x44\x65\x76\x65\x6c\x6f\x70'+_0xd97d1a(_0x1f3737._0x4b2f8f)+_0xd97d1a(_0x1f3737._0x217261)+_0xd97d1a(_0x1f3737._0x22b6f6)+_0xd97d1a(0xf3)+_0xd97d1a(0x1a4)+'\x6a\x2d\x4d\x44\x20\x62\x6f\x74\x2e\x2a','\x68\x43\x74\x71\x72':_0xd97d1a(0x103),'\x59\x4c\x41\x6c\x6d':_0xd97d1a(0x11f),'\x68\x56\x65\x69\x4c':_0xd97d1a(0x1fe)+_0xd97d1a(_0x1f3737._0x4b2f8f)+_0xd97d1a(0x209)+_0xd97d1a(_0x1f3737._0x4c5e2b)+_0xd97d1a(_0x1f3737._0x48ba2a)+_0xd97d1a(0x230)+'\x6e\x64\x20\x4d\x61\x6e\x6f\x6a\x2d\x4d'+'\x44\x20\x62\x6f\x74\x2e\x2a','\x50\x44\x50\x72\x45':_0xd97d1a(0x29d),'\x6d\x76\x6d\x61\x7a':function(_0x3f7477,_0x484cc5){return _0x3f7477(_0x484cc5);},'\x73\x70\x4d\x6e\x4f':function(_0x455822,_0x523a61){return _0x455822==_0x523a61;},'\x50\x61\x6d\x78\x49':function(_0x265746,_0x393b3c){return _0x265746===_0x393b3c;},'\x58\x54\x50\x48\x72':_0xd97d1a(_0x1f3737._0x31691d)+'\x67\x65','\x52\x70\x45\x63\x76':function(_0x4e9b36,_0x50ad4c){return _0x4e9b36===_0x50ad4c;},'\x78\x6c\x74\x61\x79':_0xd97d1a(0x2f5)+_0xd97d1a(0xe3),'\x6d\x51\x76\x4d\x72':_0xd97d1a(_0x1f3737._0x463e59),'\x7a\x4f\x48\x6a\x58':_0xd97d1a(_0x1f3737._0xb8ea7e),'\x50\x7a\x63\x6d\x75':_0xd97d1a(_0x1f3737._0xcb00a0),'\x67\x49\x4d\x66\x74':function(_0x29fa07,_0x4d5b8b){return _0x29fa07==_0x4d5b8b;},'\x4f\x45\x55\x77\x55':function(_0x19dc67,_0x192c7c,_0x5eb4c6){return _0x19dc67(_0x192c7c,_0x5eb4c6);},'\x54\x71\x6d\x4b\x69':_0xd97d1a(0x3a2),'\x6b\x5a\x6f\x74\x67':function(_0x15130e,_0x54683e){return _0x15130e==_0x54683e;},'\x4d\x50\x70\x59\x77':function(_0x3c25f0,_0x21f37f){return _0x3c25f0==_0x21f37f;},'\x6a\x77\x72\x47\x4e':function(_0x13becf,_0x1e11bb){return _0x13becf==_0x1e11bb;},'\x69\x61\x51\x61\x68':_0xd97d1a(0x26a),'\x43\x4f\x42\x56\x4b':_0xd97d1a(0x1b1),'\x4c\x62\x58\x66\x66':function(_0xdd8aa1,_0x2c69ef){return _0xdd8aa1==_0x2c69ef;},'\x63\x74\x4f\x63\x4f':function(_0x253e01,_0x1a14fa){return _0x253e01==_0x1a14fa;},'\x45\x4c\x67\x47\x78':function(_0xde7755,_0x12e563,_0x4ed4b9){return _0xde7755(_0x12e563,_0x4ed4b9);},'\x48\x6a\x4e\x4c\x69':function(_0x30493c,_0x58296a){return _0x30493c==_0x58296a;},'\x41\x58\x63\x43\x69':'\x75\x77\x69\x55\x58','\x75\x76\x4f\x4c\x72':function(_0x2ee4a6,_0x298397){return _0x2ee4a6==_0x298397;},'\x71\x79\x58\x71\x66':_0xd97d1a(_0x1f3737._0x35d68b),'\x4d\x57\x61\x76\x47':function(_0x1eb488,_0x107cab){return _0x1eb488==_0x107cab;},'\x6a\x43\x79\x63\x45':_0xd97d1a(0xf2),'\x77\x47\x50\x77\x74':_0xd97d1a(_0x1f3737._0x87f5b0),'\x68\x50\x6f\x4a\x55':function(_0x3bf18f,_0x25a215){return _0x3bf18f===_0x25a215;},'\x5a\x76\x46\x69\x62':function(_0x4072af,_0x2d4f62){return _0x4072af===_0x2d4f62;},'\x79\x46\x4d\x49\x56':function(_0x21b5ad,_0x465ddd){return _0x21b5ad==_0x465ddd;},'\x5a\x62\x79\x4a\x76':function(_0x3dd5c8,_0x5700bf){return _0x3dd5c8==_0x5700bf;},'\x52\x52\x44\x70\x49':function(_0x12cb66,_0x1fa5d0){return _0x12cb66===_0x1fa5d0;},'\x4d\x73\x67\x71\x5a':'\x65\x67\x47\x77\x41','\x47\x44\x43\x62\x67':_0xd97d1a(_0x1f3737._0xd0f98c),'\x52\x5a\x6d\x57\x65':_0xd97d1a(_0x1f3737._0x4fd735),'\x71\x69\x6b\x44\x6d':function(_0x5c3fef,_0x3552e0){return _0x5c3fef!==_0x3552e0;},'\x50\x6d\x79\x62\x4c':_0xd97d1a(0x114),'\x70\x58\x41\x63\x41':function(_0x2802a0,_0x3adb25){return _0x2802a0===_0x3adb25;},'\x50\x41\x66\x46\x6d':_0xd97d1a(0x25b),'\x7a\x5a\x77\x4b\x4d':_0xd97d1a(0x3b0),'\x77\x68\x41\x66\x47':_0xd97d1a(0x1f5),'\x70\x6e\x4f\x48\x46':function(_0x336ebc,_0x40851b){return _0x336ebc==_0x40851b;},'\x78\x70\x55\x6a\x43':_0xd97d1a(0x1dc),'\x73\x67\x72\x54\x59':_0xd97d1a(_0x1f3737._0x2a3411),'\x54\x77\x74\x75\x79':function(_0x303753,_0x627630){return _0x303753!==_0x627630;},'\x77\x52\x48\x41\x43':function(_0x1ca24e,_0x4e0db1,_0x57c4ac){return _0x1ca24e(_0x4e0db1,_0x57c4ac);},'\x65\x6a\x45\x51\x67':function(_0x3bbea3,_0x1ab7d0){return _0x3bbea3+_0x1ab7d0;},'\x7a\x73\x65\x6d\x43':'\x54\x68\x65\x72\x65\x20\x69\x73\x20\x6e'+_0xd97d1a(0xcc)+'\x66\x69\x6c\x65\x2e','\x6c\x4c\x78\x74\x45':function(_0x1c1bd9,_0x299903){return _0x1c1bd9===_0x299903;},'\x66\x6c\x75\x44\x4d':_0xd97d1a(0x1b2),'\x42\x44\x7a\x6d\x68':_0xd97d1a(0x274),'\x78\x58\x6e\x54\x78':_0xd97d1a(_0x1f3737._0x2af5f9),'\x45\x45\x4b\x74\x50':_0xd97d1a(0x2d1),'\x51\x4f\x79\x77\x6a':_0xd97d1a(_0x1f3737._0x4bd829),'\x65\x4f\x4b\x6b\x4d':function(_0x5a4f1f,_0x463714){return _0x5a4f1f!==_0x463714;},'\x46\x59\x4b\x66\x47':_0xd97d1a(_0x1f3737._0xe48f69),'\x45\x6a\x59\x55\x59':_0xd97d1a(_0x1f3737._0x1ed79a),'\x68\x59\x72\x6c\x57':function(_0x7b6c2d,_0x2170a6){return _0x7b6c2d(_0x2170a6);},'\x52\x6c\x74\x73\x67':_0xd97d1a(_0x1f3737._0x302d35),'\x49\x49\x47\x77\x6f':function(_0x45c21c,_0x3af4e0,_0x13b0d6){return _0x45c21c(_0x3af4e0,_0x13b0d6);},'\x49\x56\x78\x72\x71':'\x68\x74\x74\x70\x73\x3a\x2f\x2f\x69\x2e'+_0xd97d1a(0x153)+'\x53\x6e\x38\x32\x2f\x42\x6f\x74\x4c\x6f'+_0xd97d1a(_0x1f3737._0xa78f89),'\x5a\x55\x77\x53\x66':_0xd97d1a(_0x1f3737._0x4a89c7)+'\x72','\x69\x76\x46\x53\x78':_0xd97d1a(_0x1f3737._0x1c6b5c)+_0xd97d1a(_0x1f3737._0x5e8461)+_0xd97d1a(0x3d0)+'\x20','\x47\x66\x5a\x6d\x6b':_0xd97d1a(0xe0)+'\x72\x73','\x4a\x5a\x58\x52\x56':function(_0x1f9180,_0x485a21){return _0x1f9180===_0x485a21;},'\x45\x50\x57\x44\x64':'\x67\x52\x68\x66\x70','\x70\x54\x44\x55\x4b':function(_0x23f454,_0x19e5dd){return _0x23f454===_0x19e5dd;},'\x48\x43\x5a\x47\x50':_0xd97d1a(_0x1f3737._0x1f611f),'\x48\x4f\x4c\x7a\x58':_0xd97d1a(0x24e),'\x4f\x54\x4f\x4c\x4c':_0xd97d1a(_0x1f3737._0x4cf0d7)+'\x65\x64\x20\u274c','\x58\x59\x68\x69\x55':function(_0x183a54,_0x32fa4c){return _0x183a54===_0x32fa4c;},'\x43\x4e\x78\x57\x74':_0xd97d1a(0x25f)+_0xd97d1a(_0x1f3737._0x13e464)+_0xd97d1a(0x187)+_0xd97d1a(_0x1f3737._0x5516f8)+_0xd97d1a(_0x1f3737._0x1056ec),'\x57\x6a\x6b\x75\x64':function(_0x39f67f){return _0x39f67f();},'\x4a\x45\x44\x49\x54':_0xd97d1a(_0x1f3737._0x2b8c4e)+_0xd97d1a(_0x1f3737._0x443cd7)+'\x20\x41\x6e\x6f\x74\x68\x65\x72\x20\x4e'+_0xd97d1a(0x3b5)+_0xd97d1a(_0x1f3737._0x473ece)+_0xd97d1a(0x10c)+_0xd97d1a(0x33e)+_0xd97d1a(_0x1f3737._0x4207ac)+_0xd97d1a(0x231),'\x54\x79\x62\x44\x44':function(_0x8c445e,_0x51b442){return _0x8c445e!==_0x51b442;},'\x47\x53\x77\x6a\x67':_0xd97d1a(_0x1f3737._0x1da67b),'\x54\x54\x6d\x66\x4d':_0xd97d1a(_0x1f3737._0x334d44)+_0xd97d1a(0x14a)+_0xd97d1a(_0x1f3737._0x990c68)+'\x2e','\x50\x70\x53\x62\x45':_0xd97d1a(0x25f)+_0xd97d1a(_0x1f3737._0x3a8e2b)+_0xd97d1a(0x3a1)+_0xd97d1a(_0x1f3737._0x28e915),'\x50\x6b\x45\x4f\x67':function(_0x5a0ea4,_0x246775){return _0x5a0ea4===_0x246775;},'\x7a\x72\x45\x4d\x6e':'\x44\x67\x67\x6f\x6a','\x59\x45\x45\x53\x76':_0xd97d1a(_0x1f3737._0xc44522),'\x68\x63\x6e\x4d\x7a':_0xd97d1a(_0x1f3737._0x9ccdd1)+'\x6f\x6e\x6e\x65\x63\x74\x65\x64\x21','\x47\x79\x65\x48\x75':function(_0x97560c){return _0x97560c();},'\x71\x57\x54\x6a\x67':_0xd97d1a(0x332),'\x6b\x4f\x78\x63\x43':_0xd97d1a(_0x1f3737._0x1165a4),'\x61\x6b\x67\x70\x53':'\ud83d\udc68\ud83c\udffb\u200d\ud83c\udfeb\x20\x4a\x6f\x69\x6e\x20\x6f\x75\x72'+_0xd97d1a(_0x1f3737._0x44f65)+'\x72\x6f\x75\x70','\x6f\x49\x48\x76\x73':_0xd97d1a(_0x1f3737._0x1a328c)+'\x74\x74\x6f\x6e\x73\x2d\x6d\x65\x73\x73'+_0xd97d1a(_0x1f3737._0x2d1136),'\x57\x77\x76\x41\x57':_0xd97d1a(_0x1f3737._0x55414c)+'\x64\x69\x20\x2d\x20\x57\x69\x6b\x69','\x46\x46\x76\x6b\x57':_0xd97d1a(_0x1f3737._0x1960ad)+_0xd97d1a(0x1b0)+_0xd97d1a(0x254)+_0xd97d1a(_0x1f3737._0x4ec236),'\x49\x6e\x73\x41\x4f':'\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77'+_0xd97d1a(0x18b)+_0xd97d1a(_0x1f3737._0x3223ce)+_0xd97d1a(_0x1f3737._0x6b42cf)+_0xd97d1a(_0x1f3737._0x342755)+_0xd97d1a(0x2fb)+_0xd97d1a(_0x1f3737._0xdf9141)+'\x69\x6f\x6e\x3d\x31','\x6e\x49\x42\x49\x51':function(_0x52da2f,_0x9c52c4){return _0x52da2f===_0x9c52c4;},'\x6c\x74\x62\x58\x4e':_0xd97d1a(_0x1f3737._0x12adec),'\x69\x62\x70\x4f\x47':_0xd97d1a(0x39c)+_0xd97d1a(0x1c5)+_0xd97d1a(_0x1f3737._0xbaea29)+_0xd97d1a(_0x1f3737._0x4b84a3)+_0xd97d1a(0x2d3),'\x62\x65\x76\x72\x47':_0xd97d1a(0x1ca)+_0xd97d1a(0x3a8)+'\x61\x72\x65\x20\x72\x65\x61\x64\x79\x20'+'\x74\x6f\x20\x75\x73\x65','\x41\x48\x69\x6a\x57':function(_0x514be5,_0x17d521,_0x84b4cd){return _0x514be5(_0x17d521,_0x84b4cd);},'\x63\x7a\x73\x58\x54':function(_0x3d0ec1,_0x5cdfef){return _0x3d0ec1*_0x5cdfef;},'\x4b\x71\x54\x47\x6e':function(_0x461b7a){return _0x461b7a();},'\x76\x6a\x4b\x48\x7a':function(_0x14af86,_0x2ce9df){return _0x14af86!=_0x2ce9df;},'\x58\x67\x56\x48\x63':_0xd97d1a(0x23b),'\x43\x59\x6d\x65\x64':_0xd97d1a(0x1a7),'\x65\x52\x42\x7a\x74':function(_0x5dac64){return _0x5dac64();},'\x51\x58\x4d\x53\x47':_0xd97d1a(_0x1f3737._0x54fb33),'\x41\x42\x71\x71\x49':'\x73\x74\x6f\x72\x65','\x7a\x62\x62\x59\x6f':_0xd97d1a(_0x1f3737._0x6482a5)+_0xd97d1a(0xda)+_0xd97d1a(_0x1f3737._0x3a88da),'\x77\x49\x47\x73\x67':'\x6d\x65\x73\x73\x61\x67\x65\x73\x2e\x75'+'\x70\x73\x65\x72\x74','\x4f\x4f\x46\x65\x45':_0xd97d1a(_0x1f3737._0x436a86)+_0xd97d1a(0x18e),'\x67\x73\x43\x57\x77':_0xd97d1a(_0x1f3737._0x52d06f)+'\x74\x65'};console[_0xd97d1a(0x181)](_0xd97d1a(_0x1f3737._0x1f9ee7)+_0xd97d1a(_0x1f3737._0x7b7df4)+'\x69\x63\x65\ud83d\udc83\u2764'),console[_0xd97d1a(0x181)]('\ud83d\udd16\x20\x56\x65\x72\x73\x69\x6f\x6e\x20'+'\x3a\x20'+Lang[_0xd97d1a(0x18f)]+_0xd97d1a(_0x1f3737._0x4461bb)),_0x4b444a[_0xd97d1a(_0x1f3737._0x4e09df)](addCommands),_0x4b444a[_0xd97d1a(0x3ce)](setInterval,deleteAuth,_0x4b444a[_0xd97d1a(0x145)](_0x4b444a[_0xd97d1a(_0x1f3737._0x40c886)](0x130*-0x1+-0x12c+0x644,-0x1*0x55d+-0x1fea+-0x21*-0x123),-0x85d*0x3+0x71+-0x5*-0x4f4)),await _0x4b444a[_0xd97d1a(0xdc)](fetchauth);_0x4b444a[_0xd97d1a(_0x1f3737._0x1816e8)](auth_row_count,-0x1007+-0x4c9+0x14d0)&&(state[_0xd97d1a(0x3a3)]=cred[_0xd97d1a(_0x1f3737._0x1b7d5a)]);const {version:_0x3bcb4f,isLatest:_0x2e8e0f}=await _0x4b444a[_0xd97d1a(0xdc)](fetchLatestBaileysVersion);console[_0xd97d1a(_0x1f3737._0x58a8ce)](_0xd97d1a(_0x1f3737._0x55eb6e)+_0xd97d1a(_0x1f3737._0x3e1ceb)+_0xd97d1a(0x377)+_0x3bcb4f['\x6a\x6f\x69\x6e']('\x2e')+(_0xd97d1a(0x10b)+_0xd97d1a(_0x1f3737._0x3d58fc))+_0x2e8e0f);const _0x1b0f8b={};_0x1b0f8b[_0xd97d1a(0x260)]=_0xd97d1a(0x2a2);let _0x1b3d97=_0x4b444a['\x52\x67\x71\x4f\x67'](P,_0x1b0f8b);const _0xa736fa={};_0xa736fa[_0xd97d1a(_0x1f3737._0x4197dc)]=_0x3bcb4f,_0xa736fa[_0xd97d1a(0x2cd)]=_0x1b3d97,_0xa736fa['\x64\x65\x66\x61\x75\x6c\x74\x51\x75\x65'+_0xd97d1a(_0x1f3737._0x9f1fa0)+'\x73']=undefined,_0xa736fa[_0xd97d1a(_0x1f3737._0x3dd727)+_0xd97d1a(0x28c)]=![],_0xa736fa[_0xd97d1a(0x3bd)]=['\x20\x51\x75\x65\x65\x6e\x20\x41\x6d\x64'+_0xd97d1a(_0x1f3737._0x516041),_0x4b444a[_0xd97d1a(0x2fe)],_0x4b444a['\x43\x59\x6d\x65\x64']],_0xa736fa[_0xd97d1a(0x35b)+'\x75\x6e\x74\x65\x72\x4d\x61\x70']=msgRetryCounterMap,_0xa736fa[_0xd97d1a(_0x1f3737._0xee32f7)]=state,_0xa736fa[_0xd97d1a(_0x1f3737._0xd905ee)]=retryMessageHandler;const _0x3867b1=makeWASocket(_0xa736fa),_0x4059c6=makeInMemoryStore({'\x6c\x6f\x67\x67\x65\x72':_0x4b444a[_0xd97d1a(_0x1f3737._0x41760c)](P)[_0xd97d1a(0x2b6)]({'\x6c\x65\x76\x65\x6c':_0x4b444a[_0xd97d1a(0x14f)],'\x73\x74\x72\x65\x61\x6d':_0x4b444a[_0xd97d1a(_0x1f3737._0x5a7230)]})});_0x4059c6[_0xd97d1a(0x34e)](_0x3867b1['\x65\x76']);const _0x209654=_0x3cc0d3=>{const _0x181800=_0xd97d1a;if(_0x4b444a[_0x181800(0x225)](_0x4b444a[_0x181800(_0x1ca981._0x3bbbc0)],_0x4b444a['\x4b\x4f\x44\x68\x62'])){_0x4b444a[_0x181800(0x1e5)](_0x5ba0ee,'\u274c',_0x14ddfd[_0x181800(_0x1ca981._0xc60ac9)][0x121c*-0x1+0xb09+0x713]);return;}else{const _0x402eee={};_0x402eee['\x74\x65\x78\x74']=_0x3cc0d3,_0x3867b1[_0x181800(0x1e4)+'\x65'](vars[_0x181800(0x23a)],_0x402eee);}};return _0x3867b1['\x65\x76']['\x6f\x6e'](_0x4b444a['\x7a\x62\x62\x59\x6f'],async _0x4fd162=>{const _0x243634=_0xd97d1a,_0x2bbf3b={'\x4c\x41\x4f\x75\x4d':function(_0x16ea0e,_0x4e5862){const _0x33d20b=_0xd829;return _0x4b444a[_0x33d20b(_0x2f5ada._0x4b2375)](_0x16ea0e,_0x4e5862);},'\x75\x54\x48\x77\x72':_0x243634(_0x27b095._0x53d910)+_0x243634(_0x27b095._0x2fc244)+_0x243634(_0x27b095._0x2d8d78)+_0x243634(_0x27b095._0x479245)+'\x36\x2c\x24\x37\x2c\x24\x38\x2c\x24\x39'+_0x243634(0x32c)+_0x243634(0x22f),'\x77\x71\x61\x51\x52':_0x243634(0x306)};if(_0x4b444a[_0x243634(0x178)](vars[_0x243634(_0x27b095._0x46958c)+'\x45\x53'],_0x4b444a[_0x243634(0x1bd)]))try{_0x3867b1[_0x243634(_0x27b095._0x1fd57a)+'\x61\x74\x61'](_0x4fd162['\x69\x64'])[_0x243634(_0x27b095._0x288ec1)](_0x514217=>{const _0x244ce1=_0x243634;_0x2bbf3b['\x4c\x41\x4f\x75\x4d'](_0x209654,'\ud83d\udca0\x20\x2a\x47\x72\x6f\x75\x70\x20\x50'+_0x244ce1(_0x5cf7b3._0x245b1b)+_0x244ce1(_0x5cf7b3._0x23ea17)+_0x244ce1(0x19b)+'\x20'+_0x4fd162['\x61\x63\x74\x69\x6f\x6e']+('\x20\x0a\u2023\x20\x47\x72\x6f\x75\x70\x20'+_0x244ce1(0x2f9))+_0x514217[_0x244ce1(_0x5cf7b3._0x2c06e0)]+_0x244ce1(_0x5cf7b3._0x2cdb44)+_0x4fd162['\x69\x64']+(_0x244ce1(0x35e)+'\x69\x70\x61\x6e\x74\x73\x3a\x20')+_0x4fd162['\x70\x61\x72\x74\x69\x63\x69\x70\x61\x6e'+'\x74\x73'][0x3d4+0x8*0x473+0xae*-0x3a]);});}catch(_0x28895a){if(_0x4b444a[_0x243634(_0x27b095._0x527bce)](_0x4b444a[_0x243634(0x281)],_0x243634(0x361)))_0x354623[_0x243634(0x181)](_0x53cdd5[_0x243634(_0x27b095._0x59a207)+'\x4e']),_0x1479cd['\x71\x75\x65\x72\x79'](_0x2bbf3b[_0x243634(0x129)],[_0x7b5dd4,_0x50882c,_0x2b0259,_0x175a9c,_0x2f0724,_0x58c365,_0x2931e5,_0xae9bc1,_0x54b364,_0x1f9455,_0x5e9bc3,_0x5ae4f0,_0x16036b]),_0x8b086f['\x71\x75\x65\x72\x79'](_0x2bbf3b[_0x243634(0x16b)]),_0x536d1f[_0x243634(_0x27b095._0x49ed9f)](_0x3a33cb[_0x243634(0x328)+'\x6e\x65']);else return;}const _0xdd2658=await _0x4b444a[_0x243634(_0x27b095._0x1f4230)](getWelcome,_0x4fd162['\x69\x64']),_0x11b7ac=await _0x4b444a[_0x243634(_0x27b095._0x5190dd)](getBye,_0x4fd162['\x69\x64']);if(_0x4fd162[_0x243634(0x3d5)]==_0x243634(_0x27b095._0x6c2231)){if(_0x4b444a[_0x243634(_0x27b095._0x366e70)]===_0x243634(_0x27b095._0x4aafe2)){if(_0x4b444a[_0x243634(0x1e6)](_0xdd2658,-(0xe2*0xf+-0x1859*-0x1+-0x2596))||_0x4b444a[_0x243634(_0x27b095._0x527bce)](_0xdd2658[_0x243634(0x141)],_0x4b444a['\x6e\x5a\x49\x75\x44'])){if(_0x4b444a[_0x243634(0x3ed)]===_0x4b444a['\x50\x6e\x50\x4d\x6b']){const _0x39e096={};_0x39e096[_0x243634(_0x27b095._0x439e0d)+'\x74']=_0x4b444a[_0x243634(0x2f0)],_0x39e096[_0x243634(0x37d)]=_0x4b444a[_0x243634(0x1a3)];const _0x35df47={};_0x35df47[_0x243634(0x15a)]=0x1,_0x35df47[_0x243634(_0x27b095._0x1700f2)]=_0x39e096;const _0x173a87={};_0x173a87['\x64\x69\x73\x70\x6c\x61\x79\x54\x65\x78'+'\x74']=_0x243634(_0x27b095._0x41af0d)+_0x243634(0x108)+_0x243634(_0x27b095._0x104790),_0x173a87[_0x243634(0x37d)]=_0x4b444a[_0x243634(_0x27b095._0x3d5da0)];const _0x122d78={};_0x122d78['\x69\x6e\x64\x65\x78']=0x2,_0x122d78['\x75\x72\x6c\x42\x75\x74\x74\x6f\x6e']=_0x173a87;const _0x5ea57f=[_0x35df47,_0x122d78],_0x4a9f5c={};_0x4a9f5c[_0x243634(_0x27b095._0x44acbb)]=_0xdd2658['\x77\x65\x6c\x6e\x6f\x74\x65'],_0x4a9f5c['\x66\x6f\x6f\x74\x65\x72']=footerTXT,_0x4a9f5c[_0x243634(_0x27b095._0x31afcb)+'\x74\x74\x6f\x6e\x73']=_0x5ea57f,_0x4a9f5c[_0x243634(_0x27b095._0x5aae3e)]={},_0x4a9f5c[_0x243634(_0x27b095._0x5aae3e)][_0x243634(_0x27b095._0x1c2ef1)]=_0xdd2658[_0x243634(_0x27b095._0x246f45)];const _0xb8f6f3=_0x4a9f5c;return await _0x3867b1['\x73\x65\x6e\x64\x4d\x65\x73\x73\x61\x67'+'\x65'](_0x4fd162['\x69\x64'],_0xb8f6f3);}else _0x278861='\x2e';}}else _0x2be0b2[_0x243634(_0x27b095._0x5d8390)](_0x25c0bc[_0x243634(_0x27b095._0x366d82)+'\x4e']),_0x34ea1e[_0x243634(0x3e1)](_0x4b444a[_0x243634(0x186)],[_0x56360c,_0x457d9b,_0x3d908c,_0x15133e,_0x1d98b4,_0x3fe3f3,_0x1dd9ab,_0x204ecf,_0x3da184,_0x2804cb,_0x99fae4,_0xce353c,_0x208bce]);}if(_0x4b444a[_0x243634(0x11b)](_0x4fd162[_0x243634(_0x27b095._0x3df3a6)],_0x4b444a[_0x243634(_0x27b095._0x2e100b)])){if(_0x4b444a['\x4f\x6b\x43\x74\x4e'](_0x4b444a['\x62\x4f\x6d\x49\x43'],'\x51\x65\x76\x76\x42')){if(_0x4b444a[_0x243634(0x1e6)](_0x11b7ac,-(0xf8c+0x19*0x17b+-0x3e*0xd9))||_0x11b7ac[_0x243634(0x257)]!==_0x4b444a[_0x243634(_0x27b095._0x1a1446)]){if(_0x4b444a[_0x243634(0x143)](_0x4b444a[_0x243634(0x213)],_0x4b444a['\x61\x4a\x53\x51\x4b']))_0xbdef0e[_0x243634(0x38e)](_0x4b444a[_0x243634(_0x27b095._0x323b69)]);else{const _0x8bac4b={};_0x8bac4b['\x64\x69\x73\x70\x6c\x61\x79\x54\x65\x78'+'\x74']=_0x4b444a[_0x243634(_0x27b095._0x5a0b79)],_0x8bac4b[_0x243634(0x37d)]=_0x4b444a['\x74\x77\x59\x58\x5a'];const _0x5e51db={};_0x5e51db['\x69\x6e\x64\x65\x78']=0x1,_0x5e51db[_0x243634(_0x27b095._0x1ffe7e)]=_0x8bac4b;const _0x453e4b={};_0x453e4b[_0x243634(_0x27b095._0x439e0d)+'\x74']=_0x4b444a[_0x243634(0x243)],_0x453e4b['\x75\x72\x6c']='\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77'+_0x243634(_0x27b095._0x31a920)+_0x243634(0x1fd)+_0x243634(_0x27b095._0x3766c2)+_0x243634(_0x27b095._0xba67ee)+'\x64\x6e\x31\x35\x76\x51';const _0x53f1a3={};_0x53f1a3[_0x243634(_0x27b095._0x12b621)]=0x2,_0x53f1a3[_0x243634(_0x27b095._0x2a1c63)]=_0x453e4b;const _0x26da69=[_0x5e51db,_0x53f1a3],_0x1d9999={};_0x1d9999[_0x243634(_0x27b095._0x1c4441)]=_0x11b7ac[_0x243634(0x257)],_0x1d9999[_0x243634(_0x27b095._0x3159e7)]=footerTXT,_0x1d9999[_0x243634(0x365)+_0x243634(0x122)]=_0x26da69,_0x1d9999[_0x243634(_0x27b095._0x5e3ae9)]={},_0x1d9999[_0x243634(_0x27b095._0x5e3ae9)][_0x243634(_0x27b095._0x1c2ef1)]=_0x11b7ac[_0x243634(0x3ae)];const _0x27def7=_0x1d9999;return await _0x3867b1[_0x243634(0x1e4)+'\x65'](_0x4fd162['\x69\x64'],_0x27def7);}}}else{const _0x4b1ab8={};_0x4b1ab8[_0x243634(_0x27b095._0x889718)]=_0x417c3c,_0x4b1ab8[_0x243634(_0x27b095._0x3159e7)]=_0x828a3,_0x4b1ab8[_0x243634(0x365)+_0x243634(_0x27b095._0x264c96)]=_0x4a4812,_0x4367a2=_0x4b1ab8;}}}),_0x3867b1['\x65\x76']['\x6f\x6e'](_0x4b444a['\x77\x49\x47\x73\x67'],async _0x57907b=>{const _0x309901={_0x216a36:0x3b8,_0x221cd1:0x3a3,_0x4af469:0x181,_0xb24839:0x2db,_0xeadee6:0x1f3,_0x11b012:0x24b,_0x15aec0:0x111,_0x45b3b4:0x1b6,_0x5b9a61:0x1ee,_0x53ba02:0x184,_0x18bffb:0x358,_0x141c3e:0x310,_0x2e7c48:0xf5,_0xa3c5af:0x3ab,_0x491a24:0x136,_0x38afb4:0x130,_0x23286d:0x3a3,_0x15f07d:0x3a3,_0x3e4cd1:0x136,_0x3ae279:0x130,_0x2e32ee:0x3a3,_0x3415c5:0x1cf,_0x295704:0x3cf,_0x3e43c4:0xd7,_0x341c35:0x1cf,_0x172a06:0x3a3,_0x401e13:0xf2,_0x4f6af2:0x3a3,_0x3a12c1:0x3a3,_0x3be5de:0x396,_0x1f5936:0x22a,_0x539369:0x234,_0x167a32:0x130,_0x41c7b3:0x38c,_0x4ed272:0x319,_0x145f58:0x38c,_0x2242ce:0x1e4},_0x15ec7e={_0x1369c1:0xcf,_0x3fd610:0x35d,_0x416fd2:0x316,_0xd7b92:0x23e,_0x3e71e9:0x37d,_0xc7552f:0x180,_0x208e0b:0x1cb,_0xa1b1c6:0xca,_0x107540:0x181,_0x4dca2f:0xcf,_0x1ac536:0x224,_0x3608ed:0x39e,_0x10568b:0x1e4,_0x165402:0xe6,_0x198ed3:0x2a0},_0x42e2b7={_0x252e50:0x37d,_0xbf1a89:0x2a4},_0x731a8b={_0x4fa120:0x25b,_0x57d3c6:0x1b3,_0xd19359:0x31a},_0x1dc59c={_0x4b277e:0x2fc},_0x3b6cc0={_0x496457:0x1d1},_0xb89970={_0x5c2c65:0x140},_0x11e7eb={_0x52b337:0x36a},_0x17cdc8=_0xd97d1a,_0x4e1bab={'\x74\x6d\x78\x4c\x4e':function(_0x2203c0,_0x2abbaa){return _0x2203c0===_0x2abbaa;},'\x73\x43\x55\x6c\x6d':function(_0x510766,_0x35ae41){return _0x510766!==_0x35ae41;},'\x65\x41\x4e\x73\x4e':_0x17cdc8(0x13c),'\x54\x46\x76\x71\x53':_0x17cdc8(_0x5a8e6a._0x39cd8d),'\x68\x6b\x75\x4e\x46':'\x61\x46\x55\x7a\x4e','\x50\x49\x66\x55\x4b':function(_0x493b2a,_0x45874b){return _0x493b2a===_0x45874b;},'\x49\x76\x45\x61\x73':function(_0x9defcc,_0xd9ff7f){const _0x54a412=_0x17cdc8;return _0x4b444a[_0x54a412(_0x11e7eb._0x52b337)](_0x9defcc,_0xd9ff7f);},'\x67\x65\x69\x68\x59':function(_0x3e73f9,_0x4bd3de){return _0x3e73f9(_0x4bd3de);},'\x6e\x58\x74\x71\x6f':_0x4b444a[_0x17cdc8(0x27a)],'\x6c\x46\x66\x79\x78':function(_0x4fe3f9,_0x248d5f){const _0x30cdff=_0x17cdc8;return _0x4b444a[_0x30cdff(_0x53407e._0x333086)](_0x4fe3f9,_0x248d5f);},'\x63\x76\x55\x75\x4f':function(_0x23a17b,_0x3566cc){const _0x55d1b3=_0x17cdc8;return _0x4b444a[_0x55d1b3(0x288)](_0x23a17b,_0x3566cc);},'\x57\x67\x6d\x61\x41':function(_0x2c858e){const _0x5a7b5a=_0x17cdc8;return _0x4b444a[_0x5a7b5a(_0xb89970._0x5c2c65)](_0x2c858e);},'\x46\x44\x6f\x52\x6a':_0x4b444a[_0x17cdc8(_0x5a8e6a._0x2b0756)],'\x75\x5a\x42\x6f\x42':_0x4b444a[_0x17cdc8(0x15e)],'\x4d\x77\x6d\x6f\x76':function(_0x67f52e,_0x106bcc){const _0x133263=_0x17cdc8;return _0x4b444a[_0x133263(_0x3b6cc0._0x496457)](_0x67f52e,_0x106bcc);},'\x67\x55\x6e\x72\x74':function(_0xd59336,_0x481f89){return _0xd59336(_0x481f89);},'\x51\x64\x4c\x6d\x64':function(_0x3e78e,_0xd85954){const _0x212198=_0x17cdc8;return _0x4b444a[_0x212198(_0x1dc59c._0x4b277e)](_0x3e78e,_0xd85954);},'\x4f\x4c\x56\x75\x78':_0x4b444a[_0x17cdc8(0x21a)],'\x6d\x49\x6e\x59\x56':function(_0x49742f,_0x45b3f0){return _0x49742f==_0x45b3f0;},'\x55\x4d\x6a\x7a\x6a':_0x4b444a[_0x17cdc8(_0x5a8e6a._0x317984)],'\x49\x6b\x42\x55\x72':_0x4b444a[_0x17cdc8(_0x5a8e6a._0x4501d2)],'\x71\x74\x59\x47\x55':_0x17cdc8(0x2d7),'\x41\x51\x6c\x58\x4a':function(_0x4c131a,_0x454207){return _0x4c131a==_0x454207;},'\x4a\x57\x73\x6d\x52':_0x4b444a[_0x17cdc8(_0x5a8e6a._0x19cdc5)]};if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0xdd8aa3)]!==_0x4b444a[_0x17cdc8(0xfc)])try{const _0x1890c3=JSON[_0x17cdc8(_0x5a8e6a._0x24d726)](JSON[_0x17cdc8(_0x5a8e6a._0x10e9ff)](_0x57907b))['\x6d\x65\x73\x73\x61\x67\x65\x73'][-0xbc5+0x1830+0x121*-0xb];if(!_0x1890c3[_0x17cdc8(_0x5a8e6a._0x1047aa)]||_0x1890c3['\x6d\x65\x73\x73\x61\x67\x65'][_0x17cdc8(0x3b4)+_0x17cdc8(_0x5a8e6a._0xee1f79)])return;if(_0x1890c3[_0x17cdc8(0xd0)][_0x17cdc8(_0x5a8e6a._0x30dde2)]==_0x4b444a[_0x17cdc8(_0x5a8e6a._0x34fc91)])return;const _0x47ced2=JSON[_0x17cdc8(_0x5a8e6a._0x19c4e0)](_0x1890c3[_0x17cdc8(_0x5a8e6a._0x1047aa)]),_0x157815=_0x1890c3['\x6b\x65\x79'][_0x17cdc8(_0x5a8e6a._0x30dde2)],_0x1f5bcb=Object[_0x17cdc8(_0x5a8e6a._0x2f44ee)](_0x1890c3[_0x17cdc8(0x39f)])[0x1*0xbf5+-0x185f+-0xe*-0xe3],_0x457af5=_0x4b444a['\x75\x45\x4b\x68\x56'];let _0x5ecf60='\x68\x74\x74\x70\x73\x3a\x2f\x2f\x72\x61'+_0x17cdc8(0x24d)+_0x17cdc8(0x107)+_0x17cdc8(0x21b)+'\x6d\x64\x61\x2f\x51\x75\x65\x65\x6e\x41'+_0x17cdc8(0x34d)+_0x17cdc8(_0x5a8e6a._0x48d070)+'\x6e';const _0xf01fd0=await got(_0x5ecf60),_0x2164a7=JSON[_0x17cdc8(0x1f3)](_0xf01fd0[_0x17cdc8(0x2c0)]),_0x46314f=_0x2164a7['\x64\x61\x74\x61']['\x4d\x61\x6e\x6f\x6a\x5f\x4d\x75\x6c\x74'+_0x17cdc8(0x2e9)]['\x62\x61\x6e\x6e\x65\x64\x5f\x75\x73\x65'+'\x72'],_0x1656d7=_0x2164a7[_0x17cdc8(0x2b0)]['\x51\x75\x65\x65\x6e\x5f\x41\x6d\x64\x69']['\x62\x61\x6e\x6e\x65\x64\x5f\x75\x73\x65'+'\x72'],_0x2f1bab=CryptoJS[_0x17cdc8(0x17a)]['\x64\x65\x63\x72\x79\x70\x74'](_0x46314f,_0x457af5),_0x4fea5c=CryptoJS['\x41\x45\x53'][_0x17cdc8(0x3c4)](_0x1656d7,_0x457af5),_0xca0bd4=_0x2f1bab[_0x17cdc8(0x384)](CryptoJS[_0x17cdc8(_0x5a8e6a._0x8a2710)][_0x17cdc8(_0x5a8e6a._0x562872)]),_0x404406=_0x4fea5c[_0x17cdc8(0x384)](CryptoJS[_0x17cdc8(_0x5a8e6a._0x8a2710)][_0x17cdc8(0x305)]);var _0x171078=_0xca0bd4[_0x17cdc8(0x11c)]('\x2c'),_0x2c7ef7=_0x404406[_0x17cdc8(_0x5a8e6a._0x10c97b)]('\x2c');const _0xe66b03=_0x2164a7[_0x17cdc8(0x2b0)][_0x17cdc8(0x2d2)+_0x17cdc8(_0x5a8e6a._0x352677)]['\x62\x61\x6e\x6e\x65\x64\x5f\x67\x72\x6f'+'\x75\x70'],_0x13a447=_0x2164a7[_0x17cdc8(_0x5a8e6a._0x2ec32d)][_0x17cdc8(0x211)][_0x17cdc8(_0x5a8e6a._0x194c89)+'\x75\x70'],_0x40ad10=_0x562538=>{const _0x1aef14=_0x17cdc8,_0xd20a25={};_0xd20a25[_0x1aef14(_0x731a8b._0x4fa120)]=_0x562538;const _0x2f41cb={};_0x2f41cb[_0x1aef14(_0x731a8b._0x57d3c6)]=_0x457c0b===![]?_0x57907b[_0x1aef14(_0x731a8b._0xd19359)][-0x8b3+-0x152*-0x8+-0x1dd]:'',_0x3867b1[_0x1aef14(0x1e4)+'\x65'](_0x157815,_0xd20a25,_0x2f41cb);},_0x5347c7=(_0x4f11bb,_0xad8588,_0x5687a2)=>{const _0x1747a6=_0x17cdc8,_0x4f7243={};_0x4f7243[_0x1747a6(_0x42e2b7._0x252e50)]=_0x4f11bb;const _0x965551={};_0x965551['\x61\x75\x64\x69\x6f']=_0x4f7243,_0x965551[_0x1747a6(0x38b)]=_0xad8588,_0x965551[_0x1747a6(_0x42e2b7._0xbf1a89)]=_0x5687a2,_0x3867b1[_0x1747a6(0x1e4)+'\x65'](_0x157815,_0x965551,{'\x71\x75\x6f\x74\x65\x64':_0x4e1bab[_0x1747a6(0xe6)](_0x457c0b,![])?_0x57907b[_0x1747a6(0x31a)][-0x60d+-0xaa0+0x10ad*0x1]:''});},_0x2ec917=(_0x13b5a3,_0x58b256,_0x515bca,_0x2bb2dc)=>{const _0x5c951e={_0x5c3403:0xd8,_0x5e61ea:0x1e3,_0x4179a6:0x19b,_0xf9c627:0x278,_0x2d0cd1:0x205,_0x597e38:0x314},_0x1eddc0=_0x17cdc8,_0x4661f2={};_0x4661f2[_0x1eddc0(_0x15ec7e._0x1369c1)]=_0x1eddc0(0x25f)+_0x1eddc0(0x223)+_0x1eddc0(0x3a1)+_0x1eddc0(_0x15ec7e._0x3fd610);const _0x49f13a=_0x4661f2;var _0x19c263='';if(_0x2bb2dc){if(_0x4e1bab[_0x1eddc0(0x3b7)](_0x4e1bab[_0x1eddc0(_0x15ec7e._0x416fd2)],_0x4e1bab[_0x1eddc0(_0x15ec7e._0xd7b92)])){const _0x37c593={};_0x37c593[_0x1eddc0(_0x15ec7e._0x3e71e9)]=_0x2bb2dc;const _0x9a3248={};_0x9a3248[_0x1eddc0(_0x15ec7e._0xc7552f)]=_0x37c593,_0x9a3248['\x63\x61\x70\x74\x69\x6f\x6e']=_0x58b256,_0x9a3248['\x66\x6f\x6f\x74\x65\x72']=footerTXT,_0x9a3248[_0x1eddc0(_0x15ec7e._0x208e0b)]=_0x13b5a3,_0x9a3248[_0x1eddc0(0x39e)]=0x4,_0x19c263=_0x9a3248;}else try{_0x474af2[_0x1eddc0(0x33a)+_0x1eddc0(_0x15ec7e._0xa1b1c6)](_0x5cc70e['\x69\x64'])[_0x1eddc0(0x36e)](_0x2affe2=>{const _0x351ead=_0x1eddc0;_0x37b720(_0x351ead(_0x5c951e._0x5c3403)+_0x351ead(0x2d9)+_0x351ead(_0x5c951e._0x5e61ea)+_0x351ead(_0x5c951e._0x4179a6)+'\x20'+_0x2966e4['\x61\x63\x74\x69\x6f\x6e']+(_0x351ead(_0x5c951e._0xf9c627)+_0x351ead(0x2f9))+_0x2affe2[_0x351ead(_0x5c951e._0x2d0cd1)]+_0x351ead(_0x5c951e._0x597e38)+_0x535d4b['\x69\x64']+(_0x351ead(0x35e)+_0x351ead(0xf7))+_0x148c22[_0x351ead(0x38f)+'\x74\x73'][0x12b*-0x7+-0xa5b+0x1288]);});}catch(_0x55eb0b){return;}}else{if(!_0x2bb2dc){if(_0x4e1bab['\x73\x43\x55\x6c\x6d'](_0x4e1bab['\x68\x6b\x75\x4e\x46'],_0x4e1bab['\x68\x6b\x75\x4e\x46']))_0x4487bd[_0x1eddc0(_0x15ec7e._0x107540)](_0x49f13a[_0x1eddc0(_0x15ec7e._0x4dca2f)]),_0x3d64b7();else{const _0x5adf48={};_0x5adf48[_0x1eddc0(0x25b)]=_0x58b256,_0x5adf48[_0x1eddc0(_0x15ec7e._0x1ac536)]=footerTXT,_0x5adf48[_0x1eddc0(0x1cb)]=_0x13b5a3,_0x5adf48[_0x1eddc0(_0x15ec7e._0x3608ed)]=0x1,_0x19c263=_0x5adf48;}}}_0x3867b1[_0x1eddc0(_0x15ec7e._0x10568b)+'\x65'](_0x157815,_0x19c263,{'\x71\x75\x6f\x74\x65\x64':_0x4e1bab[_0x1eddc0(_0x15ec7e._0x165402)](_0x515bca,!![])?_0x4e1bab[_0x1eddc0(_0x15ec7e._0x198ed3)](_0x457c0b,![])?_0x57907b[_0x1eddc0(0x31a)][0x102b*-0x2+-0x1*0xffd+0x3053]:'':''});},_0x1e06d0=(_0x2e1106,_0x4666d2,_0x200e32,_0xcc6221)=>{const _0x27d380=_0x17cdc8;if(_0x4b444a['\x4f\x6b\x43\x74\x4e'](_0x27d380(0x104),_0x4b444a[_0x27d380(_0x309901._0x216a36)]))_0xa402be[_0x27d380(_0x309901._0x221cd1)]=_0x4dbd59['\x63\x72\x65\x64\x73'];else{var _0x5af297='';if(_0xcc6221){const _0x4d772a={};_0x4d772a[_0x27d380(0x37d)]=_0xcc6221;const _0x2401e8={};_0x2401e8[_0x27d380(0x26e)]=_0x4666d2,_0x2401e8['\x66\x6f\x6f\x74\x65\x72']=footerTXT,_0x2401e8['\x74\x65\x6d\x70\x6c\x61\x74\x65\x42\x75'+_0x27d380(0x122)]=_0x2e1106,_0x2401e8[_0x27d380(0x180)]=_0x4d772a,_0x5af297=_0x2401e8;}else{if(!_0xcc6221){if(_0x4b444a[_0x27d380(0x1e6)](_0x4b444a[_0x27d380(0x2b3)],_0x4b444a['\x67\x4e\x6b\x49\x47'])){const _0x5068ce={};_0x5068ce[_0x27d380(0x25b)]=_0x4666d2,_0x5068ce[_0x27d380(0x224)]=footerTXT,_0x5068ce['\x74\x65\x6d\x70\x6c\x61\x74\x65\x42\x75'+_0x27d380(0x122)]=_0x2e1106,_0x5af297=_0x5068ce;}else _0x4eb3f9[_0x27d380(_0x309901._0x4af469)](_0x5104dc['\x77\x61\x43\x6f\x6e\x49\x6d\x70\x6f\x72'+'\x74']),_0x2068da={'\x63\x72\x65\x64\x73':{'\x6e\x6f\x69\x73\x65\x4b\x65\x79':_0x1982fa[_0x27d380(0x1f3)](_0x24d695[_0x27d380(_0x309901._0xb24839)]),'\x73\x69\x67\x6e\x65\x64\x49\x64\x65\x6e\x74\x69\x74\x79\x4b\x65\x79':_0xff23c9[_0x27d380(_0x309901._0xeadee6)](_0x4cb4d7[_0x27d380(_0x309901._0x11b012)+_0x27d380(_0x309901._0x15aec0)]),'\x73\x69\x67\x6e\x65\x64\x50\x72\x65\x4b\x65\x79':_0x476b24[_0x27d380(0x1f3)](_0x571818[_0x27d380(_0x309901._0x45b3b4)+'\x65\x79']),'\x72\x65\x67\x69\x73\x74\x72\x61\x74\x69\x6f\x6e\x49\x64':_0x4e1bab[_0x27d380(0x1a6)](_0x1ba46d,_0x4120a2['\x72\x65\x67\x69\x73\x74\x72\x61\x74\x69'+_0x27d380(0x202)]),'\x61\x64\x76\x53\x65\x63\x72\x65\x74\x4b\x65\x79':_0x4751c5['\x61\x64\x76\x73\x65\x63\x72\x65\x74\x6b'+'\x65\x79'],'\x6e\x65\x78\x74\x50\x72\x65\x4b\x65\x79\x49\x64':_0xaccaae(_0x57b92a[_0x27d380(_0x309901._0x5b9a61)+'\x69\x64']),'\x66\x69\x72\x73\x74\x55\x6e\x75\x70\x6c\x6f\x61\x64\x65\x64\x50\x72\x65\x4b\x65\x79\x49\x64':_0x4e1bab[_0x27d380(0x191)](_0x53d504,_0x5adfa1[_0x27d380(0x21d)+_0x27d380(_0x309901._0x53ba02)+_0x27d380(0x327)]),'\x73\x65\x72\x76\x65\x72\x48\x61\x73\x50\x72\x65\x4b\x65\x79\x73':![],'\x61\x63\x63\x6f\x75\x6e\x74':_0x34a3cf[_0x27d380(_0x309901._0xeadee6)](_0x66ee66[_0x27d380(_0x309901._0x18bffb)]),'\x6d\x65':_0x4486da[_0x27d380(0x1f3)](_0x5ff79['\x6d\x65']),'\x73\x69\x67\x6e\x61\x6c\x49\x64\x65\x6e\x74\x69\x74\x69\x65\x73':_0x39adbf[_0x27d380(0x1f3)](_0xd69a5b[_0x27d380(_0x309901._0x141c3e)+_0x27d380(0x38c)]),'\x6c\x61\x73\x74\x41\x63\x63\x6f\x75\x6e\x74\x53\x79\x6e\x63\x54\x69\x6d\x65\x73\x74\x61\x6d\x70':0x0,'\x6d\x79\x41\x70\x70\x53\x74\x61\x74\x65\x4b\x65\x79\x49\x64':_0x4472f7[_0x27d380(0x272)+_0x27d380(_0x309901._0x2e7c48)]},'\x6b\x65\x79\x73':_0x56c189[_0x27d380(_0x309901._0xa3c5af)]},_0x159514[_0x27d380(_0x309901._0x221cd1)][_0x27d380(_0x309901._0x491a24)]['\x70\x72\x69\x76\x61\x74\x65']=_0x95a945[_0x27d380(_0x309901._0x38afb4)](_0x3d74ca[_0x27d380(_0x309901._0x23286d)]['\x6e\x6f\x69\x73\x65\x4b\x65\x79'][_0x27d380(0xd7)]),_0x332665[_0x27d380(_0x309901._0x15f07d)][_0x27d380(_0x309901._0x3e4cd1)]['\x70\x75\x62\x6c\x69\x63']=_0x917758[_0x27d380(_0x309901._0x3ae279)](_0x133a29[_0x27d380(0x3a3)]['\x6e\x6f\x69\x73\x65\x4b\x65\x79']['\x70\x75\x62\x6c\x69\x63']),_0x2d5c79[_0x27d380(_0x309901._0x2e32ee)][_0x27d380(_0x309901._0x3415c5)+_0x27d380(_0x309901._0x295704)][_0x27d380(_0x309901._0x3e43c4)]=_0xf8068d['\x66\x72\x6f\x6d'](_0x26c140['\x63\x72\x65\x64\x73'][_0x27d380(0x1cf)+_0x27d380(_0x309901._0x295704)]['\x70\x72\x69\x76\x61\x74\x65']),_0x1834ed['\x63\x72\x65\x64\x73'][_0x27d380(_0x309901._0x341c35)+_0x27d380(0x3cf)][_0x27d380(0xf2)]=_0x269abf[_0x27d380(0x130)](_0x588ac4[_0x27d380(_0x309901._0x172a06)][_0x27d380(0x1cf)+_0x27d380(0x3cf)][_0x27d380(_0x309901._0x401e13)]),_0x24af66[_0x27d380(_0x309901._0x4f6af2)][_0x27d380(0x396)+'\x65\x79'][_0x27d380(0x22a)][_0x27d380(_0x309901._0x3e43c4)]=_0x123276[_0x27d380(0x130)](_0x4bd02d['\x63\x72\x65\x64\x73'][_0x27d380(0x396)+'\x65\x79'][_0x27d380(0x22a)][_0x27d380(0xd7)]),_0xd9d2f[_0x27d380(0x3a3)][_0x27d380(0x396)+'\x65\x79']['\x6b\x65\x79\x50\x61\x69\x72']['\x70\x75\x62\x6c\x69\x63']=_0x41353f[_0x27d380(_0x309901._0x3ae279)](_0xcfba89[_0x27d380(_0x309901._0x3a12c1)][_0x27d380(_0x309901._0x3be5de)+'\x65\x79'][_0x27d380(_0x309901._0x1f5936)][_0x27d380(_0x309901._0x401e13)]),_0x2054ab[_0x27d380(_0x309901._0x3a12c1)]['\x73\x69\x67\x6e\x65\x64\x50\x72\x65\x4b'+'\x65\x79'][_0x27d380(_0x309901._0x539369)]=_0x581953[_0x27d380(_0x309901._0x167a32)](_0x261a10[_0x27d380(0x3a3)][_0x27d380(_0x309901._0x3be5de)+'\x65\x79'][_0x27d380(0x234)]),_0x1214e2['\x63\x72\x65\x64\x73'][_0x27d380(0x319)+_0x27d380(_0x309901._0x41c7b3)][-0x213d*0x1+0x161a+0xb23]['\x69\x64\x65\x6e\x74\x69\x66\x69\x65\x72'+_0x27d380(0x324)]=_0x325c1b['\x66\x72\x6f\x6d'](_0x17b649[_0x27d380(0x3a3)][_0x27d380(_0x309901._0x4ed272)+_0x27d380(_0x309901._0x145f58)][-0x4ca+0x1738+-0x2*0x937]['\x69\x64\x65\x6e\x74\x69\x66\x69\x65\x72'+_0x27d380(0x324)]);}}_0x3867b1[_0x27d380(_0x309901._0x2242ce)+'\x65'](_0x157815,_0x5af297,{'\x71\x75\x6f\x74\x65\x64':_0x200e32===!![]?_0x4b444a[_0x27d380(0x203)](_0x457c0b,![])?_0x57907b[_0x27d380(0x31a)][-0xec*-0x2a+-0x19*-0x122+0x430a*-0x1]:'':''});}},_0x2c2a89=(_0x53a255,_0x1a1658)=>{const _0x2c89a5=_0x17cdc8;var _0x58b475='';_0x4b444a[_0x2c89a5(0x178)](_0x53a255['\x62\x75\x74\x74\x6f\x6e\x54\x58\x54'],_0x2c89a5(0x190))?_0x58b475=_0x4b444a['\x4c\x6d\x4a\x6a\x54']:_0x58b475=_0x53a255['\x62\x75\x74\x74\x6f\x6e\x54\x58\x54'];const _0x8034db={};_0x8034db[_0x2c89a5(0x25b)]=_0x53a255[_0x2c89a5(0x25b)],_0x8034db[_0x2c89a5(_0x430600._0x5acb39)]=footerTXT,_0x8034db[_0x2c89a5(_0x430600._0x1b090d)]=_0x53a255['\x74\x69\x74\x6c\x65'],_0x8034db[_0x2c89a5(0x147)]=_0x58b475,_0x8034db[_0x2c89a5(_0x430600._0x3212d4)]=_0x1a1658;const _0x4f65b2=_0x8034db;_0x3867b1[_0x2c89a5(0x1e4)+'\x65'](_0x157815,_0x4f65b2,{'\x71\x75\x6f\x74\x65\x64':_0x4b444a[_0x2c89a5(_0x430600._0xb0cd62)](_0x457c0b,![])?_0x57907b[_0x2c89a5(_0x430600._0x8697c)][-0x614+-0x227d+0x2891*0x1]:''});},_0x5681ff=(_0x385ca6,_0x582181)=>{const _0x4a7a65=_0x17cdc8;if(_0x4b444a['\x6f\x4b\x64\x6e\x5a'](_0x4b444a[_0x4a7a65(_0x5e9ac8._0x46137f)],_0x4b444a[_0x4a7a65(0x1d9)])){const _0x5b5d5f={};_0x5b5d5f[_0x4a7a65(0x25b)]=_0x385ca6,_0x5b5d5f[_0x4a7a65(0xd0)]=_0x582181['\x6b\x65\x79'];const _0x523dca={};_0x523dca[_0x4a7a65(0x1f7)]=_0x5b5d5f;const _0x21b2dd=_0x523dca;_0x3867b1['\x73\x65\x6e\x64\x4d\x65\x73\x73\x61\x67'+'\x65'](_0x157815,_0x21b2dd);}else{if(_0xf6eafe[_0x4a7a65(_0x5e9ac8._0x3f912e)](_0x4e1bab[_0x4a7a65(_0x5e9ac8._0x13cf5c)])){let {command:_0x35a2fd}=_0x4e1bab[_0x4a7a65(0x24c)](_0x5b7ccd,_0x4e1bab[_0x4a7a65(_0x5e9ac8._0x942791)]('\x2e'+_0x43049e,_0x170695)),_0x1c78ae=_0x4e1bab[_0x4a7a65(0x33b)](_0x35a2fd);const _0x29e276=_0x1c78ae[_0x4a7a65(_0x5e9ac8._0x3d32f5)];for(let _0x404b69 of _0x4c6c27[_0x4a7a65(_0x5e9ac8._0x5d95e2)](_0x29e276)){const _0x7e2eba=_0x29e276[_0x404b69];_0x554883[_0x7e2eba[_0x4a7a65(0x31d)]]=_0x1c78ae[_0x4a7a65(0x229)],_0x1e2724[_0x7e2eba[_0x4a7a65(0x31d)]]=_0x7e2eba[_0x4a7a65(0x1f7)];}}}},_0x42dd7e=_0x43af7c=>{const _0x3a0fcf=_0x17cdc8;admins=[];for(let _0x2298ec of _0x43af7c){if(_0x3a0fcf(0x261)!==_0x4b444a[_0x3a0fcf(_0x1b15db._0x4e9ffd)]){let _0xec2d11=new _0x2bb54e[(_0x3a0fcf(0x130))](_0x35e4a2['\x72\x65\x70\x6c\x61\x63\x65']('\x64\x61\x74\x61\x3a\x69\x6d\x61\x67\x65'+_0x3a0fcf(_0x1b15db._0x3022d7)+'\x34\x2c',''),_0x4e1bab['\x46\x44\x6f\x52\x6a']);_0x2804f6(_0xec2d11)[_0x3a0fcf(_0x1b15db._0x44774f)](-0x3*-0x458+0x70b+-0x1193*0x1,0x2298+0x2209+0xab*-0x63)['\x74\x6f\x46\x69\x6c\x65'](_0x4e1bab[_0x3a0fcf(0x1aa)]);}else _0x2298ec['\x61\x64\x6d\x69\x6e']==_0x3a0fcf(_0x1b15db._0x390a49)||_0x4b444a[_0x3a0fcf(0x1e9)](_0x2298ec[_0x3a0fcf(_0x1b15db._0x37ce25)],_0x4b444a[_0x3a0fcf(0x1ef)])?admins[_0x3a0fcf(0x22c)](_0x2298ec['\x69\x64']):'';}return admins;};let _0x199c07=_0x3867b1[_0x17cdc8(_0x5a8e6a._0x280587)]['\x69\x64'];_0x199c07=_0x4b444a[_0x17cdc8(0x2a1)](_0x199c07[_0x17cdc8(_0x5a8e6a._0x5d6d63)](-0x213b+0x280+0x1ebb,_0x199c07['\x73\x65\x61\x72\x63\x68']('\x3a')),_0x199c07[_0x17cdc8(_0x5a8e6a._0x5d6d63)](_0x199c07[_0x17cdc8(_0x5a8e6a._0x2e386b)]('\x40')));let _0x23df29=_0x1f5bcb===_0x4b444a[_0x17cdc8(_0x5a8e6a._0x202f02)]&&_0x1890c3['\x6d\x65\x73\x73\x61\x67\x65'][_0x17cdc8(0x347)+'\x6f\x6e'][_0x17cdc8(0x1f2)](prefix)?_0x1890c3['\x6d\x65\x73\x73\x61\x67\x65'][_0x17cdc8(0x347)+'\x6f\x6e']:_0x1f5bcb==_0x4b444a[_0x17cdc8(0x291)]&&_0x1890c3[_0x17cdc8(_0x5a8e6a._0x5cf7c5)][_0x17cdc8(_0x5a8e6a._0x186809)+'\x67\x65'][_0x17cdc8(0x26e)]&&_0x1890c3[_0x17cdc8(0x39f)][_0x17cdc8(0x113)+'\x67\x65']['\x63\x61\x70\x74\x69\x6f\x6e'][_0x17cdc8(0x1f2)](prefix)?_0x1890c3[_0x17cdc8(_0x5a8e6a._0x5cf7c5)][_0x17cdc8(0x113)+'\x67\x65'][_0x17cdc8(0x26e)]:_0x1f5bcb==_0x17cdc8(0x3cb)+'\x67\x65'&&_0x1890c3[_0x17cdc8(0x39f)]['\x76\x69\x64\x65\x6f\x4d\x65\x73\x73\x61'+'\x67\x65'][_0x17cdc8(0x26e)]&&_0x1890c3['\x6d\x65\x73\x73\x61\x67\x65'][_0x17cdc8(_0x5a8e6a._0x25ff01)+'\x67\x65']['\x63\x61\x70\x74\x69\x6f\x6e']['\x73\x74\x61\x72\x74\x73\x57\x69\x74\x68'](prefix)?_0x1890c3[_0x17cdc8(0x39f)][_0x17cdc8(0x3cb)+'\x67\x65']['\x63\x61\x70\x74\x69\x6f\x6e']:_0x4b444a[_0x17cdc8(_0x5a8e6a._0x502ee7)](_0x1f5bcb,_0x17cdc8(_0x5a8e6a._0x2bd700)+_0x17cdc8(_0x5a8e6a._0x28af6a))&&_0x1890c3[_0x17cdc8(_0x5a8e6a._0x1047aa)]['\x65\x78\x74\x65\x6e\x64\x65\x64\x54\x65'+'\x78\x74\x4d\x65\x73\x73\x61\x67\x65'][_0x17cdc8(_0x5a8e6a._0x5e2bff)]&&_0x1890c3[_0x17cdc8(0x39f)][_0x17cdc8(0x233)+_0x17cdc8(_0x5a8e6a._0x28af6a)][_0x17cdc8(_0x5a8e6a._0x153573)]['\x73\x74\x61\x72\x74\x73\x57\x69\x74\x68'](prefix)?_0x1890c3[_0x17cdc8(0x39f)]['\x65\x78\x74\x65\x6e\x64\x65\x64\x54\x65'+_0x17cdc8(_0x5a8e6a._0x28af6a)][_0x17cdc8(_0x5a8e6a._0x153573)]:_0x4b444a[_0x17cdc8(0x371)](_0x1f5bcb,_0x4b444a['\x56\x65\x53\x64\x77'])?_0x1890c3['\x6d\x65\x73\x73\x61\x67\x65'][_0x17cdc8(_0x5a8e6a._0x32e629)+'\x70\x6f\x6e\x73\x65\x4d\x65\x73\x73\x61'+'\x67\x65'][_0x17cdc8(0x1b8)+'\x74\x74\x6f\x6e\x49\x64']:_0x4b444a[_0x17cdc8(0x18a)](_0x1f5bcb,_0x4b444a[_0x17cdc8(_0x5a8e6a._0x48d92a)])?_0x1890c3[_0x17cdc8(0x39f)][_0x17cdc8(0x365)+_0x17cdc8(0xd9)+_0x17cdc8(_0x5a8e6a._0x2b30bb)][_0x17cdc8(0x1c9)]:_0x4b444a[_0x17cdc8(0x1e9)](_0x1f5bcb,_0x4b444a[_0x17cdc8(_0x5a8e6a._0x48a03f)])?_0x1890c3['\x6d\x65\x73\x73\x61\x67\x65']['\x6c\x69\x73\x74\x52\x65\x73\x70\x6f\x6e'+_0x17cdc8(0x2e5)][_0x17cdc8(_0x5a8e6a._0x521af5)+'\x63\x74\x52\x65\x70\x6c\x79'][_0x17cdc8(0x3db)+_0x17cdc8(_0x5a8e6a._0x162ae3)]:_0x4b444a['\x72\x65\x44\x48\x4e'](_0x1f5bcb,_0x4b444a[_0x17cdc8(0x33d)])?_0x1890c3[_0x17cdc8(0x39f)][_0x17cdc8(0x2b9)+_0x17cdc8(0x10a)+'\x67\x65']?.[_0x17cdc8(_0x5a8e6a._0x2f521d)+'\x74\x74\x6f\x6e\x49\x64']||_0x1890c3[_0x17cdc8(0x39f)][_0x17cdc8(_0x5a8e6a._0x3fc579)+'\x73\x65\x4d\x65\x73\x73\x61\x67\x65']?.[_0x17cdc8(0x18c)+_0x17cdc8(0x2b8)]['\x73\x65\x6c\x65\x63\x74\x65\x64\x52\x6f'+_0x17cdc8(0x273)]||_0x1890c3[_0x17cdc8(_0x5a8e6a._0x2549f7)]:'';if(_0x4b444a[_0x17cdc8(0x3bc)](_0x23df29[0xf88+0x1639+-0x25c0],'\x20'))_0x23df29=_0x23df29[0x1c3d+-0x1e96+-0x259*-0x1]+_0x23df29[_0x17cdc8(0x29e)](0x14ac+0x51b*0x1+-0x19c5);const _0x417c83=_0x23df29[_0x17cdc8(_0x5a8e6a._0x24ea55)]()['\x73\x70\x6c\x69\x74'](/ +/)[_0x17cdc8(0x29e)](-0x2e3*0x9+-0x5*0x44f+0x2f87)[_0x17cdc8(_0x5a8e6a._0x428404)]('\x20'),_0x4b5e74=_0x23df29[_0x17cdc8(_0x5a8e6a._0x5d6d63)](0xa*0x191+-0xcf2*-0x1+-0x1c9b)[_0x17cdc8(0x168)]()[_0x17cdc8(_0x5a8e6a._0x10c97b)](/ +/)[_0x17cdc8(_0x5a8e6a._0x58bbf2)]()[_0x17cdc8(0xfb)+'\x65'](),_0x51ecd6=_0x23df29[_0x17cdc8(_0x5a8e6a._0x3bc6f5)]()[_0x17cdc8(_0x5a8e6a._0x10c97b)](/ +/)[_0x17cdc8(0x29e)](0x23b2+-0x611+-0x18*0x13c),_0x1a11a9=_0x23df29[_0x17cdc8(0x1f2)](prefix),_0x52516d=_0x157815[_0x17cdc8(_0x5a8e6a._0x513767)](_0x4b444a['\x52\x75\x54\x79\x57']),_0x457c0b=_0x57907b[_0x17cdc8(0x31a)][0x1*-0xfe+0x234b+-0x224d*0x1][_0x17cdc8(_0x5a8e6a._0x3f257f)][_0x17cdc8(_0x5a8e6a._0x5c9b2d)],_0x307b6c=getDevice(_0x57907b['\x6d\x65\x73\x73\x61\x67\x65\x73'][-0xd17+-0x11fc+-0x2b*-0xb9][_0x17cdc8(0xd0)]['\x69\x64']);let _0x5a67a5;_0x57907b[_0x17cdc8(0x31a)][0xfd6+0x517*0x4+-0x2432]['\x6d\x65\x73\x73\x61\x67\x65']['\x68\x61\x73\x4f\x77\x6e\x50\x72\x6f\x70'+'\x65\x72\x74\x79'](_0x4b444a[_0x17cdc8(_0x5a8e6a._0x553230)])&&_0x57907b['\x6d\x65\x73\x73\x61\x67\x65\x73'][0xf2e+-0x1*0x1f9f+-0x17*-0xb7][_0x17cdc8(0x39f)]['\x65\x78\x74\x65\x6e\x64\x65\x64\x54\x65'+_0x17cdc8(0x375)]['\x68\x61\x73\x4f\x77\x6e\x50\x72\x6f\x70'+_0x17cdc8(0xef)](_0x4b444a[_0x17cdc8(_0x5a8e6a._0x56c8de)])===!![]&&_0x57907b[_0x17cdc8(_0x5a8e6a._0x5ef2f1)][0x2*0x1c5+0x2c5+0x1*-0x64f][_0x17cdc8(_0x5a8e6a._0x1047aa)][_0x17cdc8(_0x5a8e6a._0x2bd700)+_0x17cdc8(0x375)][_0x17cdc8(_0x5a8e6a._0x398cb8)+'\x6f'][_0x17cdc8(_0x5a8e6a._0x24cece)+_0x17cdc8(0xef)](_0x4b444a[_0x17cdc8(0x189)])?_0x5a67a5=_0x57907b[_0x17cdc8(_0x5a8e6a._0x5ef2f1)][0x10ab+0x401+0xe*-0x17a][_0x17cdc8(0x39f)][_0x17cdc8(0x233)+_0x17cdc8(_0x5a8e6a._0x319f91)][_0x17cdc8(0x246)+'\x6f']['\x71\x75\x6f\x74\x65\x64\x4d\x65\x73\x73'+'\x61\x67\x65']:_0x5a67a5=![];const _0x66deba=_0x4b444a['\x71\x63\x41\x74\x74'](_0x5a67a5,![])?_0x57907b[_0x17cdc8(_0x5a8e6a._0x5ef2f1)][0xfe*0x9+-0x3e7+-0x507][_0x17cdc8(0x39f)][_0x17cdc8(_0x5a8e6a._0x2bd700)+_0x17cdc8(_0x5a8e6a._0x560e2b)][_0x17cdc8(_0x5a8e6a._0x398cb8)+'\x6f'][_0x17cdc8(0x127)+_0x17cdc8(_0x5a8e6a._0x313c0b)]:![];if(!_0x1a11a9)return;if(_0x57907b['\x6d\x65\x73\x73\x61\x67\x65\x73'][-0x577+0x8*0x71+-0x1ef*-0x1]['\x6b\x65\x79'][_0x17cdc8(0x2fd)][_0x17cdc8(_0x5a8e6a._0x1bea6f)](_0x4b444a[_0x17cdc8(_0x5a8e6a._0x380b45)])?_0x171078[_0x17cdc8(0x3c0)](_0x57907b[_0x17cdc8(_0x5a8e6a._0x47eb2a)][0x2660+0xb48+-0x31a8][_0x17cdc8(_0x5a8e6a._0x3f257f)][_0x17cdc8(0x38f)+'\x74'][_0x17cdc8(_0x5a8e6a._0x5a7ec7)]('\x40')[0x1d*0x6d+0x2*0x4ff+0x1*-0x1657]):_0x171078['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x57907b[_0x17cdc8(0x31a)][-0x145a+-0x26a2+0x3afc][_0x17cdc8(_0x5a8e6a._0x43a7e3)][_0x17cdc8(_0x5a8e6a._0x30dde2)][_0x17cdc8(0x11c)]('\x40')[-0x14*0x1c9+0x5d5*0x5+-0x19*-0x43])){const _0x42c7df={};_0x42c7df['\x74\x65\x78\x74']='\u26a0\ufe0f\x20\x2a\x44\x65\x76\x65\x6c\x6f\x70'+_0x17cdc8(_0x5a8e6a._0xf40d22)+_0x17cdc8(0x128)+_0x17cdc8(0x3ad)+'\x20\x51\x75\x65\x65\x6e\x20\x41\x6d\x64'+'\x69\x20\x61\x6e\x64\x20\x4d\x61\x6e\x6f'+_0x17cdc8(0x1c3);const _0x55f6d0={};_0x55f6d0[_0x17cdc8(0x1b3)]=_0x57907b[_0x17cdc8(0x31a)][0x354+-0x72c+0x3d8],_0x3867b1[_0x17cdc8(0x1e4)+'\x65'](_0x157815,_0x42c7df,_0x55f6d0);return;}if(_0x57907b['\x6d\x65\x73\x73\x61\x67\x65\x73'][-0x1698+0x7f*-0x41+-0x1*-0x36d7][_0x17cdc8(0xd0)][_0x17cdc8(_0x5a8e6a._0x30dde2)]['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x4b444a[_0x17cdc8(_0x5a8e6a._0x380b45)])?_0x2c7ef7[_0x17cdc8(_0x5a8e6a._0xf59a89)](_0x57907b[_0x17cdc8(0x31a)][-0x65c+0x14d0*0x1+-0x4*0x39d][_0x17cdc8(_0x5a8e6a._0x475af4)]['\x70\x61\x72\x74\x69\x63\x69\x70\x61\x6e'+'\x74']['\x73\x70\x6c\x69\x74']('\x40')[0x1bb2*-0x1+-0x30b*0x5+0x2ae9]):_0x2c7ef7[_0x17cdc8(_0x5a8e6a._0xf59a89)](_0x57907b[_0x17cdc8(_0x5a8e6a._0x5ef2f1)][-0x2311*-0x1+-0x183c+-0xad5]['\x6b\x65\x79']['\x72\x65\x6d\x6f\x74\x65\x4a\x69\x64'][_0x17cdc8(0x11c)]('\x40')[0x1b27*-0x1+-0x4*-0x1da+-0x3*-0x695])){const _0x455ea8={};_0x455ea8[_0x17cdc8(_0x5a8e6a._0x5e1f81)]=_0x4b444a['\x7a\x46\x6c\x58\x6b'];const _0x4b8232={};_0x4b8232[_0x17cdc8(0x1b3)]=_0x57907b[_0x17cdc8(0x31a)][0x2*-0xeb9+0x2b*0x3d+0x3d7*0x5],_0x3867b1['\x73\x65\x6e\x64\x4d\x65\x73\x73\x61\x67'+'\x65'](_0x157815,_0x455ea8,_0x4b8232);return;}if(_0x57907b[_0x17cdc8(_0x5a8e6a._0x5ef2f1)][-0x18c6+-0x11ac+0x2a72][_0x17cdc8(_0x5a8e6a._0x393e34)][_0x17cdc8(0x2fd)]['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x4b444a[_0x17cdc8(0x16e)])){if(_0xe66b03[_0x17cdc8(_0x5a8e6a._0xf59a89)](_0x57907b['\x6d\x65\x73\x73\x61\x67\x65\x73'][0xfb*0x16+-0xee8+-0x2*0x355][_0x17cdc8(_0x5a8e6a._0x9ad875)][_0x17cdc8(_0x5a8e6a._0x30dde2)][_0x17cdc8(0x11c)]('\x40')[-0xffe+0x13b5*-0x1+-0x23b3*-0x1])||_0x13a447[_0x17cdc8(_0x5a8e6a._0x59a13c)](_0x57907b[_0x17cdc8(0x31a)][0x1c01+0x1a*0xf4+0x34c9*-0x1][_0x17cdc8(0xd0)]['\x72\x65\x6d\x6f\x74\x65\x4a\x69\x64'][_0x17cdc8(0x11c)]('\x40')[0x24f3+-0x177b+-0xd78])){if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0x55e9f4)]===_0x4b444a[_0x17cdc8(_0x5a8e6a._0x27e3ee)]){if(_0x113c8b[_0x17cdc8(_0x5a8e6a._0xec56d)](_0x17cdc8(0x300))){let {command:_0xb13b39}=_0x4e1bab[_0x17cdc8(_0x5a8e6a._0x4a882b)](_0x443432,_0x4e1bab[_0x17cdc8(0x343)]('\x2e'+_0x292e1c,_0x1ab7ad)),_0x4e69e6=_0xb13b39();const _0x304b53=_0x4e69e6[_0x17cdc8(_0x5a8e6a._0x2941b8)];for(let _0x48befe of _0x420f32[_0x17cdc8(_0x5a8e6a._0x2f44ee)](_0x304b53)){const _0x5a0cd7=_0x304b53[_0x48befe];_0x11a1a5[_0x5a0cd7[_0x17cdc8(0x31d)]]=_0x4e69e6[_0x17cdc8(0x229)],_0x454ce1[_0x5a0cd7[_0x17cdc8(_0x5a8e6a._0x1e2497)]]=_0x5a0cd7[_0x17cdc8(_0x5a8e6a._0x1c6558)];}}}else{const _0x56c9ec={};_0x56c9ec['\x74\x65\x78\x74']=_0x4b444a[_0x17cdc8(_0x5a8e6a._0x3515e4)];const _0x9c0094={};_0x9c0094['\x71\x75\x6f\x74\x65\x64']=_0x57907b[_0x17cdc8(_0x5a8e6a._0x5ef2f1)][0x76*0x4b+-0x2538+0x2a6],_0x3867b1[_0x17cdc8(_0x5a8e6a._0x7067aa)+'\x65'](_0x157815,_0x56c9ec,_0x9c0094);return;}}}const _0x243e59=()=>{const _0x2425d2=_0x17cdc8;if(_0x4b444a[_0x2425d2(0x172)](_0x4b444a[_0x2425d2(_0x59ab13._0x1e7225)],_0x4b444a[_0x2425d2(0x36c)])){if(_0x4b444a['\x69\x7a\x48\x51\x6a'](vars[_0x2425d2(0x3d7)],_0x2425d2(_0x59ab13._0x15e65d))){if(_0x4b444a[_0x2425d2(_0x59ab13._0x5b0f7c)](_0x4b444a[_0x2425d2(0x14b)],_0x2425d2(0x126)))_0x3e8b38[_0x2425d2(_0x59ab13._0x8878d3)](_0x4e1bab[_0x2425d2(0x1aa)],_0x591e21,function(_0x5a3770){if(_0x5a3770)throw _0x5a3770;});else{const _0x157ca6={};_0x157ca6[_0x2425d2(0x2fd)]=_0x157815,_0x157ca6['\x69\x64']=_0x57907b['\x6d\x65\x73\x73\x61\x67\x65\x73'][-0xb7+0x1d9a+-0x1d*0xff][_0x2425d2(0xd0)]['\x69\x64'],_0x157ca6['\x70\x61\x72\x74\x69\x63\x69\x70\x61\x6e'+'\x74']=_0x52516d?_0x57907b[_0x2425d2(_0x59ab13._0x236b3f)][-0x14*-0x193+-0x18d1+-0x6ab]['\x6b\x65\x79'][_0x2425d2(0x38f)+'\x74']:undefined;const _0x5067f2=_0x157ca6;_0x3867b1[_0x2425d2(_0x59ab13._0x186569)+'\x65\x73']([_0x5067f2]);}}}else{let _0x3f47f3=_0x4e1bab[_0x2425d2(_0x59ab13._0x414f29)](_0x483394,_0x5ed599['\x69\x64']);_0x4e1bab[_0x2425d2(0x24c)](_0x2ac5c9,_0x530ceb['\x69\x64']);const _0x10fe9e={};return _0x10fe9e[_0x2425d2(0x347)+'\x6f\x6e']=_0x3f47f3,_0x10fe9e;}},_0x662146=_0x52516d?await _0x3867b1[_0x17cdc8(0x33a)+_0x17cdc8(_0x5a8e6a._0x5b6b2f)](_0x157815):'';let _0x396964=_0x52516d?_0x1890c3[_0x17cdc8(0xd0)]['\x70\x61\x72\x74\x69\x63\x69\x70\x61\x6e'+'\x74']:_0x57907b[_0x17cdc8(_0x5a8e6a._0x5ef2f1)][0x3fe*-0x5+-0x19d0+0x2dc6][_0x17cdc8(0xd0)]['\x72\x65\x6d\x6f\x74\x65\x4a\x69\x64'];const _0xf43b62=_0x396964[_0x17cdc8(_0x5a8e6a._0x2d1dd4)]('\x3a')?_0x396964[_0x17cdc8(_0x5a8e6a._0x229ef3)]('\x3a')[-0x1da0+-0x1a67+-0x7*-0x801]:_0x396964[_0x17cdc8(0x11c)]('\x40')[0x196d+0x3*0x1cf+-0x2ce*0xb];if(_0x1890c3[_0x17cdc8(_0x5a8e6a._0x4f936a)]['\x66\x72\x6f\x6d\x4d\x65'])_0x396964=_0x199c07;const _0x421b01=_0x396964['\x69\x6e\x63\x6c\x75\x64\x65\x73']('\x3a')?_0x4b444a[_0x17cdc8(0x1d1)](_0x4b444a['\x61\x4e\x56\x68\x6e'](_0x396964[_0x17cdc8(_0x5a8e6a._0x4243a7)](-0x2*-0x219+-0x2*-0x12e5+0x14fe*-0x2,_0x396964[_0x17cdc8(_0x5a8e6a._0x2e386b)]('\x3a')),'\x40'),_0x396964[_0x17cdc8(_0x5a8e6a._0x229ef3)]('\x40')[0x1d1b*0x1+-0xab*0x2b+0x1*-0x61]):_0x396964;let _0x3d7383=await getBanJids(_0x396964);if(_0x3d7383==0x133b*-0x2+-0x152a+0x3ba1)return;if(_0x52516d){if(_0x17cdc8(0x19c)===_0x4b444a[_0x17cdc8(0xff)]){const _0x46a797={};_0x46a797[_0x17cdc8(0x37d)]=_0x5d8267;const _0x57edde={};_0x57edde[_0x17cdc8(0x26e)]=_0x57e463,_0x57edde[_0x17cdc8(0x224)]=_0x333d8d,_0x57edde[_0x17cdc8(_0x5a8e6a._0x3ac86d)+_0x17cdc8(_0x5a8e6a._0x47497c)]=_0x390bf8,_0x57edde['\x69\x6d\x61\x67\x65']=_0x46a797,_0x48bf74=_0x57edde;}else{let _0x740ddf=await _0x4b444a['\x6d\x76\x6d\x61\x7a'](getBanJids,_0x157815);if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0x26427a)](_0x740ddf,-0xa5a+-0x2*0xe63+0x2721))return;}}const _0x40187b=_0x52516d?_0x662146['\x73\x75\x62\x6a\x65\x63\x74']:'',_0x62e259=_0x52516d?_0x662146['\x64\x65\x73\x63']:'',_0x1729a8=_0x52516d?_0x662146[_0x17cdc8(_0x5a8e6a._0x18577d)+'\x74\x73']:'',_0x415ebf=_0x52516d?_0x4b444a[_0x17cdc8(0x2fc)](_0x42dd7e,_0x1729a8):'',_0x1349de=_0x415ebf['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x199c07)||![],_0x338719=_0x415ebf[_0x17cdc8(0x3c0)](_0x421b01)||![],_0x3138c5=_0x1f5bcb==='\x69\x6d\x61\x67\x65\x4d\x65\x73\x73\x61'+'\x67\x65'||_0x4b444a[_0x17cdc8(_0x5a8e6a._0x468e17)](_0x1f5bcb,_0x4b444a['\x58\x54\x50\x48\x72']),_0x5c813b=_0x4b444a[_0x17cdc8(0x137)](_0x1f5bcb,_0x4b444a[_0x17cdc8(_0x5a8e6a._0x4925f4)])&&_0x47ced2[_0x17cdc8(0x3c0)](_0x4b444a[_0x17cdc8(_0x5a8e6a._0x1c8ebb)]),_0x1b1c9e=_0x4b444a[_0x17cdc8(0x2e2)](_0x1f5bcb,_0x4b444a[_0x17cdc8(_0x5a8e6a._0x553230)])&&_0x47ced2['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x4b444a[_0x17cdc8(_0x5a8e6a._0x20b31a)]),_0xf34061=_0x4b444a[_0x17cdc8(_0x5a8e6a._0x6815cc)](_0x1f5bcb,_0x4b444a[_0x17cdc8(_0x5a8e6a._0x553230)])&&_0x47ced2[_0x17cdc8(_0x5a8e6a._0x2d1dd4)](_0x17cdc8(_0x5a8e6a._0x2ccc2d)+_0x17cdc8(_0x5a8e6a._0x4bafd6)),_0x2961c4=_0x4b444a['\x52\x70\x45\x63\x76'](_0x1f5bcb,_0x17cdc8(_0x5a8e6a._0x2bd700)+_0x17cdc8(0x375))&&_0x47ced2[_0x17cdc8(0x3c0)](_0x4b444a['\x78\x6c\x74\x61\x79']);_0x4b444a[_0x17cdc8(_0x5a8e6a._0xccf475)](vars[_0x17cdc8(_0x5a8e6a._0x11a13b)+'\x45\x53'],_0x4b444a['\x65\x74\x66\x4c\x6f'])&&console[_0x17cdc8(0x181)]('\x5b\x43\x4f\x4d\x4d\x41\x4e\x44\x3a\x20'+_0x4b5e74+_0x17cdc8(0x15f)+_0x57907b[_0x17cdc8(_0x5a8e6a._0x460320)][0x1e7c+-0x7ce*-0x3+-0x35e6*0x1][_0x17cdc8(0x2be)]+(_0x17cdc8(_0x5a8e6a._0x38b9d9)+'\x20')+_0xf43b62+_0x17cdc8(0x188)+_0x40187b+'\x5d');if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0x3513a5)](vars[_0x17cdc8(_0x5a8e6a._0x5b77dc)+'\x45\x53'],_0x17cdc8(0x3de))){let _0x422ba1=_0x4b444a[_0x17cdc8(0x18a)](_0x40187b,'')?_0x4b444a[_0x17cdc8(_0x5a8e6a._0x31a0da)]:_0x40187b;_0x209654(_0x17cdc8(0x346)+'\x20\x55\x73\x61\x67\x65\x2a\x0a\x0a\u2023'+'\x20\x43\x4f\x4d\x4d\x41\x4e\x44\x3a\x20'+_0x4b5e74+(_0x17cdc8(_0x5a8e6a._0x58f1f0)+'\x3a\x20')+_0xf43b62+_0x17cdc8(0x3e6)+_0x57907b[_0x17cdc8(_0x5a8e6a._0x5ef2f1)][-0x1bfd+-0x296*-0x6+0xc79][_0x17cdc8(0x2be)]+(_0x17cdc8(0x1db)+'\x41\x4d\x45\x3a\x20')+_0x422ba1);}let _0x5d74dc=[];if(_0x62e259){let _0x1261fa=_0x62e259[_0x17cdc8(0x384)]()['\x73\x70\x6c\x69\x74']('\x0a')[-0x1e7f+0x18d7+0x5a8];_0x5d74dc=_0x1261fa[_0x17cdc8(0x11c)]('\x2c');}if(_0x4b444a['\x71\x63\x41\x74\x74'](_0x4b5e74,'')){if(_0x5d74dc[_0x17cdc8(_0x5a8e6a._0xf59a89)](_0x4b5e74)){if(_0x4b444a['\x7a\x4f\x48\x6a\x58']===_0x4b444a['\x50\x7a\x63\x6d\x75']){const _0x2d8493={};_0x2d8493[_0x17cdc8(0x25b)]=_0x2830b0,_0xdc9e28[_0x17cdc8(_0x5a8e6a._0x2df648)+'\x65'](_0x4f6bc5,_0x2d8493,{'\x71\x75\x6f\x74\x65\x64':_0x4b444a['\x6c\x55\x53\x68\x53'](_0x586aa8,![])?_0x413582[_0x17cdc8(0x31a)][-0x3*-0x549+0x7*0x1f7+-0x1*0x1d9c]:''});}else{_0x40ad10(Lang[_0x17cdc8(_0x5a8e6a._0x2627db)+'\x47\x72\x70\x44\x65\x73\x63']);return;}}}const _0x3f6075={};_0x3f6075[_0x17cdc8(0x349)]=prefix,_0x3f6075[_0x17cdc8(0x152)]=_0x417c83,_0x3f6075[_0x17cdc8(_0x5a8e6a._0x2e5bee)]=_0x396964,_0x3f6075[_0x17cdc8(_0x5a8e6a._0x132b90)+_0x17cdc8(_0x5a8e6a._0x2c1e7f)]=_0x66deba,_0x3f6075[_0x17cdc8(_0x5a8e6a._0x1c693a)+'\x62\x73']=allowedNumbs,_0x3f6075['\x66\x6f\x6f\x74\x65\x72\x54\x58\x54']=footerTXT,_0x3f6075['\x72\x65\x70\x6c\x79']=_0x40ad10,_0x3f6075[_0x17cdc8(_0x5a8e6a._0x4d0cad)+'\x73\x67']=_0x5347c7,_0x3f6075[_0x17cdc8(0x27b)+_0x17cdc8(0xf0)]=_0x2ec917,_0x3f6075[_0x17cdc8(_0x5a8e6a._0x5859e7)+'\x74\x65']=_0x1e06d0,_0x3f6075['\x73\x65\x6e\x64\x4c\x69\x73\x74\x4d\x73'+'\x67']=_0x2c2a89,_0x3f6075[_0x17cdc8(_0x5a8e6a._0x1c6558)]=_0x5681ff,_0x3f6075[_0x17cdc8(_0x5a8e6a._0x4d92b5)]=_0x209654,_0x3f6075[_0x17cdc8(_0x5a8e6a._0xe079fa)]=_0x421b01,_0x3f6075['\x63\x6f\x6d\x6d\x61\x6e\x64']=_0x4b5e74,_0x3f6075[_0x17cdc8(0x33a)+_0x17cdc8(0xca)]=_0x662146,_0x3f6075[_0x17cdc8(0x3ee)]=_0x52516d,_0x3f6075[_0x17cdc8(_0x5a8e6a._0x306d84)+'\x69\x6e']=_0x338719,_0x3f6075[_0x17cdc8(_0x5a8e6a._0x356a2c)+'\x41\x64\x6d\x69\x6e']=_0x1349de,_0x3f6075[_0x17cdc8(_0x5a8e6a._0x1bee46)]=_0x3138c5,_0x3f6075['\x69\x73\x54\x61\x67\x67\x65\x64\x49\x6d'+_0x17cdc8(0x2bc)]=_0x5c813b,_0x3f6075[_0x17cdc8(_0x5a8e6a._0x389bc8)+_0x17cdc8(0x1d4)]=_0x1b1c9e,_0x3f6075[_0x17cdc8(0x2c7)+'\x69\x63\x6b\x65\x72']=_0xf34061,_0x3f6075[_0x17cdc8(_0x5a8e6a._0x481cff)+_0x17cdc8(0x2b2)]=_0x2961c4,_0x3f6075[_0x17cdc8(0xd5)+'\x69\x64']=_0x199c07,_0x3f6075[_0x17cdc8(0x381)]=_0x307b6c,_0x3f6075[_0x17cdc8(_0x5a8e6a._0x4e2e1f)]=_0x5a67a5;const _0x3e24ae=_0x3f6075;if(commandsPrimary[_0x4b5e74]){if(_0x4b444a[_0x17cdc8(0x34f)](vars[_0x17cdc8(_0x5a8e6a._0x37fdd3)],_0x17cdc8(_0x5a8e6a._0x3f0c40))){_0x4b444a['\x5a\x4e\x50\x53\x58'](_0x243e59);reactionPrimary[_0x4b5e74]&&_0x457c0b==![]&&await _0x4b444a[_0x17cdc8(0x244)](_0x5681ff,reactionPrimary[_0x4b5e74],_0x57907b['\x6d\x65\x73\x73\x61\x67\x65\x73'][-0x1a4b+0x1*-0x1538+0x2f83]);commandsPrimary[_0x4b5e74](_0x3867b1,_0x57907b['\x6d\x65\x73\x73\x61\x67\x65\x73'][0xed5+-0x1ef1*-0x1+0x9*-0x516],_0x157815,_0x51ecd6,_0x3e24ae,_0x457c0b);if(_0x4b444a['\x72\x65\x44\x48\x4e'](_0x457c0b,!![])){if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0xf613a7)](_0x4b444a[_0x17cdc8(_0x5a8e6a._0x3c3204)],_0x4b444a[_0x17cdc8(_0x5a8e6a._0x30f4d1)])){const _0x5d2b33={};_0x5d2b33[_0x17cdc8(0x275)]=_0x57907b[_0x17cdc8(0x31a)][0x148e+0x34f+-0x17dd][_0x17cdc8(0xd0)],await _0x3867b1[_0x17cdc8(0x1e4)+'\x65'](_0x157815,_0x5d2b33);}else{const _0x4d158f={};_0x4d158f['\x74\x65\x78\x74']=_0x15800b,_0x396ffb['\x73\x65\x6e\x64\x4d\x65\x73\x73\x61\x67'+'\x65'](_0x1d1327['\x4c\x4f\x47\x5f\x4a\x49\x44'],_0x4d158f);}}return;}else{if(_0x4b444a['\x6b\x5a\x6f\x74\x67'](vars[_0x17cdc8(0x345)],_0x17cdc8(_0x5a8e6a._0x377f5b))){if(allowedNumbs[_0x17cdc8(0x3c0)](_0xf43b62)||_0x4b444a[_0x17cdc8(0x26d)](_0x457c0b,!![])||MOD[_0x17cdc8(0x3c0)](_0xf43b62)){_0x4b444a['\x5a\x4e\x50\x53\x58'](_0x243e59);reactionPrimary[_0x4b5e74]&&_0x4b444a[_0x17cdc8(_0x5a8e6a._0x745125)](_0x457c0b,![])&&(_0x4b444a[_0x17cdc8(_0x5a8e6a._0x278a61)](_0x4b444a[_0x17cdc8(_0x5a8e6a._0x265534)],_0x4b444a[_0x17cdc8(0x17b)])?_0x4e1bab[_0x17cdc8(0x1be)](_0x5ce45e,_0x17cdc8(_0x5a8e6a._0x179a0b)+_0x17cdc8(_0x5a8e6a._0x3ed5ff)+'\x20\x55\x70\x64\x61\x74\x65\x73\x2a\x0a'+_0x17cdc8(_0x5a8e6a._0x55013a)+'\x20'+_0x2f1ebc[_0x17cdc8(_0x5a8e6a._0x33beb6)]+(_0x17cdc8(_0x5a8e6a._0x44523d)+'\x4e\x61\x6d\x65\x3a\x20')+_0x2c72bc['\x73\x75\x62\x6a\x65\x63\x74']+_0x17cdc8(0x314)+_0x4883d9['\x69\x64']+(_0x17cdc8(0x35e)+'\x69\x70\x61\x6e\x74\x73\x3a\x20')+_0x4c3edc[_0x17cdc8(_0x5a8e6a._0x18577d)+'\x74\x73'][0x3*0x65d+0xad5+-0x77b*0x4]):await _0x5681ff(reactionPrimary[_0x4b5e74],_0x57907b[_0x17cdc8(0x31a)][-0x1*0x2253+-0x1*0x3be+0x2611]));commandsPrimary[_0x4b5e74](_0x3867b1,_0x57907b[_0x17cdc8(0x31a)][-0x1d2a+0x3*-0x6d2+0x31a0],_0x157815,_0x51ecd6,_0x3e24ae,_0x457c0b);if(_0x4b444a[_0x17cdc8(0x3eb)](_0x457c0b,!![])){const _0x2bc404={};_0x2bc404['\x64\x65\x6c\x65\x74\x65']=_0x57907b[_0x17cdc8(0x31a)][-0x20*-0x11+-0x509*0x2+0x1*0x7f2][_0x17cdc8(0xd0)],await _0x3867b1[_0x17cdc8(0x1e4)+'\x65'](_0x157815,_0x2bc404);}return;}else return;}}}if(commandsPrivate[_0x4b5e74]){if(allowedNumbs['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0xf43b62)||_0x4b444a[_0x17cdc8(_0x5a8e6a._0x15bcc1)](_0x457c0b,!![])||MOD[_0x17cdc8(0x3c0)](_0xf43b62))_0x4b444a[_0x17cdc8(_0x5a8e6a._0xffebc0)](_0x243e59),reactionPrivate[_0x4b5e74]&&_0x4b444a[_0x17cdc8(_0x5a8e6a._0x55dde4)](_0x457c0b,![])&&await _0x4b444a['\x45\x4c\x67\x47\x78'](_0x5681ff,reactionPrivate[_0x4b5e74],_0x57907b['\x6d\x65\x73\x73\x61\x67\x65\x73'][-0xac*-0xd+-0x2033+0x1777]),commandsPrivate[_0x4b5e74](_0x3867b1,_0x57907b[_0x17cdc8(_0x5a8e6a._0x460320)][0x13d1+-0x1a20+0x64f],_0x157815,_0x51ecd6,_0x3e24ae,_0x457c0b);else{if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0x40a650)](vars[_0x17cdc8(_0x5a8e6a._0x37fdd3)],_0x17cdc8(_0x5a8e6a._0x3ffe00))){if(_0x4b444a['\x41\x58\x63\x43\x69']!==_0x4b444a[_0x17cdc8(0x37e)]){let {command:_0x2abe22}=_0x4b444a['\x52\x67\x71\x4f\x67'](_0x4d7939,_0x4b444a[_0x17cdc8(_0x5a8e6a._0x14cf3b)](_0x4b444a[_0x17cdc8(0x288)]('\x2e',_0x3ff317),_0x1293de)),_0x5e3f4f=_0x4b444a[_0x17cdc8(0x140)](_0x2abe22);const _0x5dac0a=_0x5e3f4f[_0x17cdc8(0x1a9)];for(let _0x290972 of _0x34fec9['\x6b\x65\x79\x73'](_0x5dac0a)){const _0x138faf=_0x5dac0a[_0x290972];_0x27e07d[_0x138faf['\x63\x6d\x64']]=_0x5e3f4f[_0x17cdc8(_0x5a8e6a._0x3bed11)],_0x35cfa0[_0x138faf[_0x17cdc8(_0x5a8e6a._0x1e2497)]]=_0x138faf[_0x17cdc8(_0x5a8e6a._0x1c6558)];}}else{_0x4b444a[_0x17cdc8(0x140)](_0x243e59);const _0x2413c5={};_0x2413c5[_0x17cdc8(0x25b)]=Lang['\x6f\x77\x6e\x65\x72\x43\x4d\x44\x6f\x6e'+'\x6c\x79'],await _0x3867b1[_0x17cdc8(0x1e4)+'\x65'](_0x157815,_0x2413c5,{'\x71\x75\x6f\x74\x65\x64':_0x4b444a[_0x17cdc8(_0x5a8e6a._0x468e17)](_0x457c0b,![])?_0x57907b[_0x17cdc8(0x31a)][-0x961+0x994+-0x33*0x1]:''});}}}if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0x502ee7)](_0x457c0b,!![])){const _0x55456b={};_0x55456b[_0x17cdc8(_0x5a8e6a._0x1d8c05)]=_0x57907b[_0x17cdc8(0x31a)][0x1df2*0x1+0x17f7+-0x35e9][_0x17cdc8(0xd0)],await _0x3867b1[_0x17cdc8(_0x5a8e6a._0x276fb7)+'\x65'](_0x157815,_0x55456b);}return;}if(commandsAdmin[_0x4b5e74]){if(!_0x52516d){if(allowedNumbs[_0x17cdc8(0x3c0)](_0xf43b62)||_0x4b444a[_0x17cdc8(_0x5a8e6a._0x110dc3)](_0x457c0b,!![])||MOD[_0x17cdc8(_0x5a8e6a._0xf59a89)](_0xf43b62)){_0x4b444a[_0x17cdc8(_0x5a8e6a._0x58e2f4)](_0x243e59);const _0x1e04a6={};_0x1e04a6['\x74\x65\x78\x74']=Lang['\x67\x72\x70\x43\x4d\x44\x6f\x6e\x6c\x79'];const _0xe73dac={};_0xe73dac[_0x17cdc8(_0x5a8e6a._0x526841)]=_0x457c0b===![]?_0x57907b['\x6d\x65\x73\x73\x61\x67\x65\x73'][-0x2708+0x1a1+0x2567]:'',await _0x3867b1[_0x17cdc8(_0x5a8e6a._0x276fb7)+'\x65'](_0x157815,_0x1e04a6,_0xe73dac);if(_0x457c0b==!![]){const _0xa2889={};_0xa2889['\x64\x65\x6c\x65\x74\x65']=_0x57907b[_0x17cdc8(_0x5a8e6a._0x460320)][-0x2*0xc74+-0x2443+0x1*0x3d2b][_0x17cdc8(_0x5a8e6a._0x393e34)],await _0x3867b1['\x73\x65\x6e\x64\x4d\x65\x73\x73\x61\x67'+'\x65'](_0x157815,_0xa2889);}return;}}else{if(!_0x338719){if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0x3f7f5d)](_0x4b444a['\x71\x79\x58\x71\x66'],_0x4b444a['\x71\x79\x58\x71\x66'])){const _0x105f49={_0x5894e4:0x276,_0x3f29e1:0x149,_0x57169c:0x3a0},_0x42c53e={'\x6d\x53\x41\x6b\x4f':_0x4e1bab['\x4f\x4c\x56\x75\x78'],'\x74\x6c\x71\x7a\x53':_0x4e1bab[_0x17cdc8(0x27c)],'\x4a\x6b\x50\x62\x64':function(_0x278eb9,_0x86ac5a){return _0x278eb9(_0x86ac5a);},'\x69\x73\x41\x68\x57':_0x4e1bab['\x75\x5a\x42\x6f\x42']};_0xb1c4cb[_0x17cdc8(_0x5a8e6a._0x13fc2e)](_0x233237)['\x74\x68\x65\x6e'](_0x1a5f33=>{const _0x4d5bbd=_0x17cdc8;let _0x803e4a=new _0x74dc49['\x66\x72\x6f\x6d'](_0x1a5f33[_0x4d5bbd(_0x105f49._0x5894e4)](_0x42c53e[_0x4d5bbd(_0x105f49._0x3f29e1)],''),_0x42c53e['\x74\x6c\x71\x7a\x53']);_0x42c53e[_0x4d5bbd(0xe2)](_0x10bebe,_0x803e4a)['\x72\x65\x73\x69\x7a\x65'](0x4*0x731+0xa*0x78+-0x1ef4,0x21b5+0xb4c*0x2+-0x35cd)[_0x4d5bbd(_0x105f49._0x57169c)](_0x42c53e['\x69\x73\x41\x68\x57']);});}else{if(_0x4b444a[_0x17cdc8(0x160)](vars[_0x17cdc8(0x345)],_0x4b444a[_0x17cdc8(0x1cd)])&&!allowedNumbs[_0x17cdc8(_0x5a8e6a._0x59a13c)](_0xf43b62)){if(_0x4b444a['\x5a\x71\x56\x45\x57']('\x4c\x63\x54\x62\x59',_0x4b444a['\x77\x47\x50\x77\x74'])){_0x4b444a[_0x17cdc8(0x140)](_0x243e59);const _0xf5b6ed={};_0xf5b6ed['\x74\x65\x78\x74']=Lang[_0x17cdc8(_0x5a8e6a._0x4b2913)],await _0x3867b1[_0x17cdc8(_0x5a8e6a._0x2df648)+'\x65'](_0x157815,_0xf5b6ed,{'\x71\x75\x6f\x74\x65\x64':_0x4b444a['\x68\x50\x6f\x4a\x55'](_0x457c0b,![])?_0x57907b['\x6d\x65\x73\x73\x61\x67\x65\x73'][0x14c3+0xd*0x27+-0x16be]:''});return;}else{if(_0x4e1bab[_0x17cdc8(0x38d)](_0x5e61ab['\x52\x45\x41\x44\x5f\x4b\x45\x59'],_0x17cdc8(_0x5a8e6a._0x5a8da3))){const _0x27974d={};_0x27974d[_0x17cdc8(_0x5a8e6a._0x30dde2)]=_0x4e7543,_0x27974d['\x69\x64']=_0x147a87[_0x17cdc8(_0x5a8e6a._0x12b6d4)][0x1*-0x7f4+0x13e3+-0xbef]['\x6b\x65\x79']['\x69\x64'],_0x27974d[_0x17cdc8(_0x5a8e6a._0x34c6a1)+'\x74']=_0x56c5dd?_0x47b98d[_0x17cdc8(0x31a)][-0xc9d*-0x1+0x161*0x12+-0x256f][_0x17cdc8(_0x5a8e6a._0x42fc2a)][_0x17cdc8(0x38f)+'\x74']:_0x11a6a6;const _0x44b894=_0x27974d;_0x1b280a['\x72\x65\x61\x64\x4d\x65\x73\x73\x61\x67'+'\x65\x73']([_0x44b894]);}}}}}if(!_0x1349de){_0x243e59();const _0x1c374e={};_0x1c374e[_0x17cdc8(0x25b)]=Lang[_0x17cdc8(_0x5a8e6a._0x2bfcc1)],await _0x3867b1[_0x17cdc8(_0x5a8e6a._0x1fd6e5)+'\x65'](_0x157815,_0x1c374e,{'\x71\x75\x6f\x74\x65\x64':_0x4b444a[_0x17cdc8(0x2e6)](_0x457c0b,![])?_0x57907b[_0x17cdc8(_0x5a8e6a._0x460320)][-0x6*0x43f+-0x752*-0x4+0x1e7*-0x2]:''});if(_0x4b444a['\x79\x46\x4d\x49\x56'](_0x457c0b,!![])){const _0x36ee7f={};_0x36ee7f[_0x17cdc8(_0x5a8e6a._0x556b8d)]=_0x57907b['\x6d\x65\x73\x73\x61\x67\x65\x73'][0x1003+0x27b*0x6+-0x1ee5][_0x17cdc8(0xd0)],await _0x3867b1[_0x17cdc8(_0x5a8e6a._0x1fd6e5)+'\x65'](_0x157815,_0x36ee7f);}return;}if(_0x338719||allowedNumbs[_0x17cdc8(_0x5a8e6a._0x1bea6f)](_0xf43b62)){_0x243e59();if(reactionAdmin[_0x4b5e74]&&_0x4b444a[_0x17cdc8(_0x5a8e6a._0x325aed)](_0x457c0b,![])){if(_0x4b444a[_0x17cdc8(0x216)](_0x4b444a[_0x17cdc8(0x321)],_0x4b444a[_0x17cdc8(0x110)])){const _0x7f6a95=_0x19a77[_0x4b09ea];_0x412c93[_0x7f6a95[_0x17cdc8(_0x5a8e6a._0x1e2497)]]=_0x44bb6d[_0x17cdc8(0x229)],_0x21a55d[_0x7f6a95['\x63\x6d\x64']]=_0x7f6a95[_0x17cdc8(_0x5a8e6a._0x1c6558)];}else await _0x4b444a[_0x17cdc8(_0x5a8e6a._0x2e6ec9)](_0x5681ff,reactionAdmin[_0x4b5e74],_0x57907b[_0x17cdc8(0x31a)][0x223e+-0x1eed+0x351*-0x1]);}commandsAdmin[_0x4b5e74](_0x3867b1,_0x57907b[_0x17cdc8(_0x5a8e6a._0x4a8e27)][-0x6c9+0x3*-0x89f+0x2a*0xc7],_0x157815,_0x51ecd6,_0x3e24ae,_0x457c0b);if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0x205df1)](_0x457c0b,!![])){if(_0x4b444a[_0x17cdc8(0x393)]!==_0x17cdc8(_0x5a8e6a._0x925d9c)){const _0x564228={};_0x564228[_0x17cdc8(_0x5a8e6a._0x34310e)]=_0x57907b[_0x17cdc8(0x31a)][0x1fc7+-0x259a*-0x1+0x4561*-0x1][_0x17cdc8(_0x5a8e6a._0x38c056)],await _0x3867b1[_0x17cdc8(0x1e4)+'\x65'](_0x157815,_0x564228);}else{const _0x77e5c2={};_0x77e5c2[_0x17cdc8(_0x5a8e6a._0x4f012c)]=_0x47eeba;const _0x461ef8={};_0x461ef8['\x69\x6d\x61\x67\x65']=_0x77e5c2,_0x461ef8[_0x17cdc8(_0x5a8e6a._0x4a795f)]=_0x10a40e,_0x461ef8[_0x17cdc8(0x224)]=_0x467c78,_0x461ef8['\x62\x75\x74\x74\x6f\x6e\x73']=_0x2d7713,_0x461ef8[_0x17cdc8(0x39e)]=0x4,_0xdcdb0f=_0x461ef8;}}return;}}}if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0x9ee4b1)](_0x57907b[_0x17cdc8(0x31a)][0x235*0x9+0xae*0x2a+-0x51*0x99][_0x17cdc8(0x39f)]['\x63\x6f\x6e\x76\x65\x72\x73\x61\x74\x69'+'\x6f\x6e'],'\x2e')){if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0x566a70)](_0x4b444a[_0x17cdc8(_0x5a8e6a._0x121a90)],_0x4b444a[_0x17cdc8(_0x5a8e6a._0x121a90)])){const _0x342136={};_0x342136[_0x17cdc8(_0x5a8e6a._0x4f012c)]='\x68\x74\x74\x70\x73\x3a\x2f\x2f\x69\x2e'+_0x17cdc8(0x1c5)+'\x57\x77\x73\x5a\x2f\x32\x30\x32\x32\x30'+_0x17cdc8(0x1ac)+_0x17cdc8(_0x5a8e6a._0x532cdf),_0x4f2f8c[_0x17cdc8(0x1e4)+'\x65'](_0x4e1bab[_0x17cdc8(_0x5a8e6a._0x166515)],{'\x69\x6d\x61\x67\x65':_0x342136,'\x63\x61\x70\x74\x69\x6f\x6e':_0x4e1bab[_0x17cdc8(_0x5a8e6a._0x5c32c6)]});}else return;}if(_0x57907b[_0x17cdc8(_0x5a8e6a._0x216289)][0xa*-0x193+0x1283+0x2c5*-0x1][_0x17cdc8(0x39f)]['\x68\x61\x73\x4f\x77\x6e\x50\x72\x6f\x70'+_0x17cdc8(0xef)](_0x4b444a[_0x17cdc8(_0x5a8e6a._0x553230)])&&_0x4b444a['\x70\x58\x41\x63\x41'](_0x57907b[_0x17cdc8(0x31a)][0x1*-0xbf8+-0x1*-0x2197+-0x3*0x735][_0x17cdc8(_0x5a8e6a._0x1047aa)]['\x65\x78\x74\x65\x6e\x64\x65\x64\x54\x65'+_0x17cdc8(_0x5a8e6a._0x560e2b)]['\x68\x61\x73\x4f\x77\x6e\x50\x72\x6f\x70'+_0x17cdc8(0xef)](_0x4b444a[_0x17cdc8(_0x5a8e6a._0x54a7fc)]),!![])){if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0xe8b498)](_0x4b444a[_0x17cdc8(0x2bd)],_0x4b444a['\x77\x68\x41\x66\x47'])){if(_0x298caf['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x39d3e9)){_0x4e1bab[_0x17cdc8(_0x5a8e6a._0xaa4096)](_0x3b234d,_0x5d6a8b[_0x17cdc8(_0x5a8e6a._0x4813c3)+'\x47\x72\x70\x44\x65\x73\x63']);return;}}else{if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0x210131)](_0x57907b[_0x17cdc8(_0x5a8e6a._0x12b6d4)][0x1*-0x253f+0x40*-0x5e+0x3cbf*0x1][_0x17cdc8(0x39f)][_0x17cdc8(0x233)+'\x78\x74\x4d\x65\x73\x73\x61\x67\x65'][_0x17cdc8(0x25b)],'\x2e'))return;}}if(!commandsPrimary[_0x4b5e74]||!commandsPrivate[_0x4b5e74]||!commandsAdmin[_0x4b5e74]){if(_0x4b444a[_0x17cdc8(0x1e6)](_0x4b444a['\x78\x70\x55\x6a\x43'],_0x17cdc8(0x344))){if(_0x4b444a[_0x17cdc8(0x18a)](vars[_0x17cdc8(0x345)],'\x70\x75\x62\x6c\x69\x63')){if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0x18d16b)](_0x4b444a[_0x17cdc8(0x39a)],_0x17cdc8(0x12e))){_0x4b444a[_0x17cdc8(_0x5a8e6a._0x385198)](_0x5681ff,'\u274c',_0x57907b[_0x17cdc8(0x31a)][-0x2f*-0x7f+0x7e*-0xe+-0x106d]);return;}else{_0x4365e2(_0x5c3425[_0x17cdc8(_0x5a8e6a._0xd06146)+_0x17cdc8(0x3d3)]);return;}}else{if(_0x4b444a['\x79\x46\x4d\x49\x56'](vars['\x57\x4f\x52\x4b\x54\x59\x50\x45'],_0x17cdc8(_0x5a8e6a._0x2a9ba3))){if(allowedNumbs['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0xf43b62)||_0x457c0b==!![]||MOD[_0x17cdc8(_0x5a8e6a._0x412d5c)](_0xf43b62)){if(_0x4b444a[_0x17cdc8(_0x5a8e6a._0x99e8a3)]('\x64\x68\x5a\x71\x4d',_0x17cdc8(0x200))){_0x4b444a[_0x17cdc8(_0x5a8e6a._0x1edf0c)](_0x5681ff,'\u274c',_0x57907b[_0x17cdc8(_0x5a8e6a._0x12b6d4)][-0x3*0xb23+0x136a+-0xdff*-0x1]);return;}else{_0x478534=[];for(let _0x2a4fc8 of _0x1e3ab0){_0x4e1bab[_0x17cdc8(0x38d)](_0x2a4fc8[_0x17cdc8(0x2d7)],_0x4e1bab['\x71\x74\x59\x47\x55'])||_0x4e1bab['\x41\x51\x6c\x58\x4a'](_0x2a4fc8[_0x17cdc8(_0x5a8e6a._0x87ad64)],_0x4e1bab['\x4a\x57\x73\x6d\x52'])?_0x4100c6['\x70\x75\x73\x68'](_0x2a4fc8['\x69\x64']):'';}return _0x25f84a;}}}}}else{const _0x339cd1={};_0x339cd1[_0x17cdc8(_0x5a8e6a._0x4362fb)]=_0x5a6d18,_0x339cd1[_0x17cdc8(0x224)]=_0x1228a5,_0x339cd1[_0x17cdc8(_0x5a8e6a._0xdd5312)]=_0x12176c,_0x339cd1[_0x17cdc8(0x39e)]=0x1,_0x340dbc=_0x339cd1;}}}catch(_0x453c95){console['\x6c\x6f\x67'](_0x453c95);return;}else{_0xbc2711('\u274c',_0x3cc15c[_0x17cdc8(_0x5a8e6a._0x460320)][-0x5*0x300+-0xc0*0x8+-0x2a*-0x80]);return;}}),_0x3867b1['\x65\x76']['\x6f\x6e'](_0x4b444a[_0xd97d1a(_0x1f3737._0x3f59d0)],_0x170bc2=>{const _0x49dde0={_0x318152:0x28d,_0x10c34c:0x16a,_0x1b34a9:0x107,_0x5ced28:0x21b,_0x21bc99:0x1ae,_0x24153b:0x1f3,_0x3018c6:0x2c0,_0x1b4ae1:0x2e9,_0x11a7f8:0xfd,_0xe42569:0x3c4,_0x2e04aa:0x3c4,_0x991c1a:0x384,_0x58e1a9:0x182,_0x561c1a:0x305,_0x1b0354:0x305,_0x3e3483:0x20c,_0x29af76:0x1ec,_0x4f2c9c:0x2e0,_0x2ad252:0x181,_0x16f3a0:0x11c,_0x237680:0x2ba,_0x49c608:0xf8,_0x277a95:0x301,_0xba74f1:0x2eb,_0x26ef38:0x359,_0x132c00:0x2d0,_0x1ecef2:0x2c0,_0x39fe64:0x276,_0x259728:0x195},_0x58a7a8={_0x30ec36:0x3b1,_0x4f0406:0x37d,_0x396fc2:0x365,_0x17be1f:0x122,_0x26663f:0x1b9},_0x542113={_0x2fbc59:0x1da},_0x42db65={_0x58035b:0x1e6},_0x4c4fdc=_0xd97d1a,_0x4c8190={'\x44\x4d\x4e\x47\x65':_0x4b444a['\x79\x50\x61\x6b\x75'],'\x58\x53\x4d\x48\x77':_0x4b444a[_0x4c4fdc(_0x2bda40._0x42d8c5)],'\x49\x41\x74\x76\x41':function(_0x4f7632,_0x3aa07f){return _0x4b444a['\x6c\x4c\x78\x74\x45'](_0x4f7632,_0x3aa07f);},'\x76\x67\x6b\x67\x6e':_0x4b444a['\x66\x6c\x75\x44\x4d'],'\x73\x58\x4d\x64\x52':_0x4b444a[_0x4c4fdc(_0x2bda40._0xbd72bf)],'\x57\x51\x63\x43\x41':_0x4b444a[_0x4c4fdc(_0x2bda40._0x14ce2d)],'\x6b\x61\x7a\x79\x6a':_0x4c4fdc(0x12a),'\x41\x41\x4c\x59\x53':_0x4b444a['\x78\x58\x6e\x54\x78'],'\x44\x65\x4b\x6c\x63':_0x4b444a[_0x4c4fdc(_0x2bda40._0x5ddfa1)],'\x57\x47\x42\x6b\x4a':_0x4b444a['\x51\x4f\x79\x77\x6a'],'\x6b\x78\x57\x6e\x61':'\u26a0\ufe0f\x20\x2a\x44\x65\x76\x65\x6c\x6f\x70'+_0x4c4fdc(0x1e1)+_0x4c4fdc(_0x2bda40._0x56d538)+_0x4c4fdc(0x2b5)+_0x4c4fdc(_0x2bda40._0xfab2cc)+_0x4c4fdc(0x230)+_0x4c4fdc(_0x2bda40._0x438884)+_0x4c4fdc(_0x2bda40._0x2d34b1),'\x6e\x4e\x4e\x73\x6e':function(_0x2d4ac5,_0x56674a){const _0x1809ad=_0x4c4fdc;return _0x4b444a[_0x1809ad(0x1ad)](_0x2d4ac5,_0x56674a);},'\x74\x4b\x47\x67\x76':_0x4b444a[_0x4c4fdc(0x3e5)],'\x51\x51\x58\x46\x65':_0x4b444a['\x45\x6a\x59\x55\x59'],'\x70\x45\x4e\x66\x47':_0x4c4fdc(_0x2bda40._0x494fc5),'\x49\x62\x4f\x71\x56':function(_0x170471,_0x5072c4){const _0x305f54=_0x4c4fdc;return _0x4b444a[_0x305f54(0x3c6)](_0x170471,_0x5072c4);},'\x4c\x41\x74\x49\x67':'\x62\x64\x49\x46\x76','\x61\x47\x6a\x47\x72':function(_0x3b1a70,_0x2aa48c){const _0x336707=_0x4c4fdc;return _0x4b444a[_0x336707(_0x42db65._0x58035b)](_0x3b1a70,_0x2aa48c);},'\x53\x6a\x4f\x4c\x47':_0x4b444a[_0x4c4fdc(_0x2bda40._0x4817a8)],'\x4b\x72\x69\x54\x6c':_0x4c4fdc(0x2f6),'\x64\x54\x54\x49\x5a':_0x4c4fdc(_0x2bda40._0x36a5bb)+_0x4c4fdc(_0x2bda40._0x30d0a7)+_0x4c4fdc(0x222),'\x56\x49\x4d\x61\x6a':function(_0x527aae,_0x235f9b,_0x33a83f){const _0x4fdef1=_0x4c4fdc;return _0x4b444a[_0x4fdef1(_0x542113._0x2fbc59)](_0x527aae,_0x235f9b,_0x33a83f);},'\x45\x49\x75\x6c\x61':_0x4b444a[_0x4c4fdc(_0x2bda40._0x2681cc)],'\x6f\x55\x4d\x44\x61':_0x4b444a['\x5a\x55\x77\x53\x66'],'\x4d\x4a\x48\x4d\x71':_0x4c4fdc(0x125)+_0x4c4fdc(0x1ba)+_0x4c4fdc(_0x2bda40._0xca57ae),'\x56\x76\x59\x70\x6a':function(_0x4d4e89,_0x38dbd5){return _0x4b444a['\x65\x6a\x45\x51\x67'](_0x4d4e89,_0x38dbd5);},'\x47\x45\x73\x74\x6e':_0x4b444a['\x69\x76\x46\x53\x78'],'\x6f\x62\x73\x6f\x76':_0x4b444a[_0x4c4fdc(_0x2bda40._0x5cf2bc)]};if(_0x4b444a['\x4a\x5a\x58\x52\x56'](_0x4b444a[_0x4c4fdc(0x3b9)],_0x4c4fdc(_0x2bda40._0x5b213d))){const {connection:_0x20f6e7,lastDisconnect:_0x4dac33,qr:_0xd2f32c}=_0x170bc2;_0xd2f32c&&QRCode[_0x4c4fdc(_0x2bda40._0x58dec7)](_0xd2f32c)[_0x4c4fdc(0x36e)](_0x37bbf6=>{const _0x536e6e=_0x4c4fdc;let _0x88ce3f=new Buffer['\x66\x72\x6f\x6d'](_0x37bbf6['\x72\x65\x70\x6c\x61\x63\x65'](_0x4b444a[_0x536e6e(_0x3cf9e._0x295648)],''),_0x4b444a['\x66\x41\x70\x62\x52']);sharp(_0x88ce3f)[_0x536e6e(_0x3cf9e._0x36538f)](-0x37e+0x12f*0x7+0x1*-0x24b,0x7d5*-0x1+0xf*0x255+-0x18a6)['\x74\x6f\x46\x69\x6c\x65'](_0x536e6e(_0x3cf9e._0x2b9b4b)+'\x69\x6d\x61\x67\x65\x2e\x70\x6e\x67');});if(_0x4b444a[_0x4c4fdc(0x355)](_0x20f6e7,_0x4b444a[_0x4c4fdc(0xc8)])){const {Boom:_0x167c87}=_0x4b444a[_0x4c4fdc(0x1c4)](require,_0x4b444a['\x48\x4f\x4c\x7a\x58']);console['\x6c\x6f\x67'](_0x4b444a[_0x4c4fdc(0x24a)]);let _0x251b23=new _0x167c87(_0x4dac33?.[_0x4c4fdc(_0x2bda40._0xbbfe82)])?.[_0x4c4fdc(_0x2bda40._0x5b627f)][_0x4c4fdc(0x159)];if(_0x4b444a[_0x4c4fdc(_0x2bda40._0x317083)](_0x251b23,DisconnectReason[_0x4c4fdc(_0x2bda40._0x3753fb)]))console['\x6c\x6f\x67'](_0x4c4fdc(0x3ca)+'\x6e\x20\x46\x69\x6c\x65\x2c\x20\x50\x6c'+_0x4c4fdc(0x1de)+_0x4c4fdc(0x33c)+_0x4c4fdc(0x3e3)+'\x67\x61\x69\x6e'),_0x4b444a[_0x4c4fdc(_0x2bda40._0x56424c)](QueenAmdi);else{if(_0x4b444a[_0x4c4fdc(_0x2bda40._0x5557ea)](_0x251b23,DisconnectReason[_0x4c4fdc(_0x2bda40._0x25d956)+_0x4c4fdc(_0x2bda40._0x10a2fe)]))console[_0x4c4fdc(0x181)](_0x4c4fdc(0x25f)+_0x4c4fdc(_0x2bda40._0x4cee19)+'\x65\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6e'+'\x67\x2e\x2e\x2e\x2e'),_0x4b444a['\x5a\x4e\x50\x53\x58'](QueenAmdi);else{if(_0x4b444a[_0x4c4fdc(_0x2bda40._0x537ec9)](_0x251b23,DisconnectReason[_0x4c4fdc(_0x2bda40._0x286b8c)+_0x4c4fdc(_0x2bda40._0x16d309)]))console[_0x4c4fdc(_0x2bda40._0x2d4361)](_0x4b444a[_0x4c4fdc(_0x2bda40._0x51f321)]),_0x4b444a[_0x4c4fdc(0x337)](QueenAmdi);else{if(_0x251b23===DisconnectReason[_0x4c4fdc(_0x2bda40._0x357d97)+'\x52\x65\x70\x6c\x61\x63\x65\x64'])console[_0x4c4fdc(0x181)](_0x4b444a['\x4a\x45\x44\x49\x54']),_0x4b444a[_0x4c4fdc(0x337)](QueenAmdi);else{if(_0x251b23===DisconnectReason['\x6c\x6f\x67\x67\x65\x64\x4f\x75\x74'])console['\x6c\x6f\x67'](_0x4c4fdc(0xe8)+'\x67\x65\x64\x20\x4f\x75\x74\x2c\x20\x50'+_0x4c4fdc(0x32a)+_0x4c4fdc(0x3f2)+_0x4c4fdc(_0x2bda40._0x175f96)),_0x4b444a['\x57\x6a\x6b\x75\x64'](QueenAmdi);else{if(_0x4b444a['\x79\x4e\x54\x62\x79'](_0x251b23,DisconnectReason[_0x4c4fdc(_0x2bda40._0xca1f65)+_0x4c4fdc(0x2dd)]))_0x4b444a[_0x4c4fdc(0xea)](_0x4b444a[_0x4c4fdc(_0x2bda40._0x234855)],_0x4b444a[_0x4c4fdc(0x3cc)])?_0x25be2b[_0x4c4fdc(0x38e)](_0x4b444a[_0x4c4fdc(_0x2bda40._0x3f9dc7)](_0x4b444a[_0x4c4fdc(0x10d)]('\x2e',_0x81addb),_0x5601ca)):(console[_0x4c4fdc(_0x2bda40._0x2d4361)](_0x4b444a[_0x4c4fdc(0x295)]),QueenAmdi());else _0x4b444a['\x52\x52\x44\x70\x49'](_0x251b23,DisconnectReason[_0x4c4fdc(_0x2bda40._0x44a802)])?(console[_0x4c4fdc(_0x2bda40._0x2d4361)](_0x4b444a[_0x4c4fdc(0x2c6)]),QueenAmdi()):_0x4b444a['\x50\x6b\x45\x4f\x67'](_0x4b444a[_0x4c4fdc(_0x2bda40._0x3ec1c)],_0x4c4fdc(0x35a))?_0x4b444a[_0x4c4fdc(_0x2bda40._0x1bd8d3)](QueenAmdi):_0x3deb91=_0x4c2d92[_0x4c4fdc(0x20f)];}}}}}}if(_0x20f6e7===_0x4b444a[_0x4c4fdc(_0x2bda40._0x4c9528)]){console['\x6c\x6f\x67'](_0x4b444a[_0x4c4fdc(0x17c)]),_0x4b444a[_0x4c4fdc(0x279)](updateLogin),((async()=>{const _0x2b8d8b={_0xc2b826:0x385,_0x2d234f:0x195,_0x225428:0x384},_0x540203={_0x5cb46a:0x30e,_0x58f789:0xed,_0x18d256:0x25c,_0x4b300b:0x31a},_0x252fc5={_0x12ab7b:0x3b1},_0x3ddb18=_0x4c4fdc,_0x4c470d={'\x56\x70\x53\x62\x4e':_0x4c8190[_0x3ddb18(0x226)],'\x59\x79\x6c\x7a\x50':_0x4c8190[_0x3ddb18(0x1f9)],'\x52\x4d\x49\x58\x7a':_0x4c8190['\x41\x41\x4c\x59\x53'],'\x68\x67\x47\x61\x44':_0x4c8190[_0x3ddb18(_0x49dde0._0x318152)],'\x44\x4c\x64\x6d\x61':function(_0x158b55,_0xeb4e3){return _0x158b55+_0xeb4e3;},'\x58\x49\x61\x70\x75':function(_0x4f76f3,_0x430225){const _0xd887d6=_0x3ddb18;return _0x4c8190[_0xd887d6(0x385)](_0x4f76f3,_0x430225);},'\x79\x4d\x53\x65\x6d':_0x4c8190[_0x3ddb18(_0x49dde0._0x10c34c)],'\x62\x78\x57\x73\x6a':_0x4c8190['\x6b\x78\x57\x6e\x61'],'\x4c\x51\x4e\x42\x42':function(_0x1954fc,_0x5400ad){return _0x4c8190['\x6e\x4e\x4e\x73\x6e'](_0x1954fc,_0x5400ad);},'\x79\x71\x47\x62\x75':_0x4c8190[_0x3ddb18(0x1bc)],'\x54\x67\x78\x71\x76':_0x4c8190[_0x3ddb18(0x27d)]},_0x1679a7=_0x4c8190['\x70\x45\x4e\x66\x47'];let _0x493db3=_0x3ddb18(0x340)+'\x77\x2e\x67\x69\x74\x68\x75\x62\x75\x73'+_0x3ddb18(_0x49dde0._0x1b34a9)+_0x3ddb18(_0x49dde0._0x5ced28)+_0x3ddb18(_0x49dde0._0x21bc99)+_0x3ddb18(0x34d)+_0x3ddb18(0x3ba)+'\x6e';const _0x473361=await _0x4c8190[_0x3ddb18(0x2c5)](got,_0x493db3),_0x4a2581=JSON[_0x3ddb18(_0x49dde0._0x24153b)](_0x473361[_0x3ddb18(_0x49dde0._0x3018c6)]),_0x1b0e7b=_0x4a2581['\x64\x61\x74\x61'][_0x3ddb18(0x2d2)+_0x3ddb18(_0x49dde0._0x1b4ae1)]['\x62\x61\x6e\x6e\x65\x64\x5f\x75\x73\x65'+'\x72'],_0x2189b8=_0x4a2581[_0x3ddb18(0x2b0)][_0x3ddb18(0x211)][_0x3ddb18(_0x49dde0._0x11a7f8)+'\x72'],_0x52d6df=CryptoJS[_0x3ddb18(0x17a)][_0x3ddb18(_0x49dde0._0xe42569)](_0x1b0e7b,_0x1679a7),_0x9fab07=CryptoJS['\x41\x45\x53'][_0x3ddb18(_0x49dde0._0x2e04aa)](_0x2189b8,_0x1679a7),_0x412e08=_0x52d6df[_0x3ddb18(_0x49dde0._0x991c1a)](CryptoJS[_0x3ddb18(_0x49dde0._0x58e1a9)][_0x3ddb18(_0x49dde0._0x561c1a)]),_0x477416=_0x9fab07[_0x3ddb18(0x384)](CryptoJS[_0x3ddb18(0x182)][_0x3ddb18(_0x49dde0._0x1b0354)]);var _0xfb89e9=_0x412e08[_0x3ddb18(0x11c)]('\x2c'),_0x44e5b3=_0x477416[_0x3ddb18(0x11c)]('\x2c');if(_0xfb89e9[_0x3ddb18(0x3c0)](_0x3867b1[_0x3ddb18(_0x49dde0._0x3e3483)]['\x69\x64'][_0x3ddb18(0x11c)]('\x40')[-0x71*0xf+-0x16+0x1*0x6b5])){if(_0x4c8190[_0x3ddb18(_0x49dde0._0x29af76)]===_0x4c8190[_0x3ddb18(0x1ec)]){process[_0x3ddb18(_0x49dde0._0x4f2c9c)](0x14dd+0x30b*0x7+0x101*-0x2a);;}else try{_0x3a500f[_0x3ddb18(0x38e)](_0x4c8190[_0x3ddb18(0xdb)]);}catch(_0x11d265){_0x154249[_0x3ddb18(_0x49dde0._0x2ad252)](_0x4c8190['\x58\x53\x4d\x48\x77']);}}if(_0x44e5b3[_0x3ddb18(0x3c0)](_0x3867b1[_0x3ddb18(_0x49dde0._0x3e3483)]['\x69\x64'][_0x3ddb18(_0x49dde0._0x16f3a0)]('\x40')[-0xe*-0x197+0x223f+-0x3881])){if(_0x4c8190[_0x3ddb18(0x30a)](_0x4c8190[_0x3ddb18(0x2c8)],_0x4c8190['\x4b\x72\x69\x54\x6c'])){process[_0x3ddb18(0x2e0)](0x9*-0x389+-0x1326+0x32f7);;}else(_0x55fd51[_0x3ddb18(_0x49dde0._0x237680)](_0x4c470d[_0x3ddb18(0xee)])||_0x115bdc[_0x3ddb18(_0x49dde0._0x237680)](_0x4c470d[_0x3ddb18(0x331)])||_0x2da032[_0x3ddb18(0x2ba)](_0x3ddb18(0x1d0))||_0x337a1f[_0x3ddb18(0x2ba)](_0x4c470d['\x52\x4d\x49\x58\x7a'])||_0x12255e['\x65\x6e\x64\x73\x57\x69\x74\x68'](_0x3ddb18(0x2d3))||_0x2b1f36[_0x3ddb18(_0x49dde0._0x237680)](_0x4c470d[_0x3ddb18(0x2aa)])||_0x5d9936['\x65\x6e\x64\x73\x57\x69\x74\x68'](_0x3ddb18(0x212)))&&_0x418b64['\x75\x6e\x6c\x69\x6e\x6b\x53\x79\x6e\x63'](_0x4c470d[_0x3ddb18(_0x49dde0._0x49c608)]('\x2e',_0x566551)+_0x4bd298);}let _0x555542=_0x3ddb18(0x19a)+_0x3ddb18(0x388)+_0x3ddb18(_0x49dde0._0x277a95)+_0x3ddb18(0x35c)+_0x3ddb18(0x15c)+_0x3ddb18(_0x49dde0._0xba74f1)+_0x3ddb18(_0x49dde0._0x26ef38)+_0x3ddb18(_0x49dde0._0x132c00)+'\x77\x2f';const _0x3fdbbe=await got(_0x555542),_0x51e0c8=JSON[_0x3ddb18(0x1f3)](_0x3fdbbe[_0x3ddb18(_0x49dde0._0x1ecef2)]),_0x9f6b24=_0x51e0c8[_0x3ddb18(0x11d)+'\x64'];let _0x441007=new Buffer[(_0x3ddb18(0x130))](_0x9f6b24[_0x3ddb18(_0x49dde0._0x39fe64)](_0x4c8190['\x64\x54\x54\x49\x5a'],''),'\x62\x61\x73\x65\x36\x34');fs[_0x3ddb18(0x250)](_0x4c8190[_0x3ddb18(_0x49dde0._0x259728)],_0x441007,function(_0x3c4521){const _0x2ff88c={_0x16d27f:0x3b1},_0x53df50=_0x3ddb18,_0x4be945={'\x54\x56\x50\x64\x42':function(_0x402d40,_0x2087cc){const _0x512262=_0xd829;return _0x4c470d[_0x512262(_0x2ff88c._0x16d27f)](_0x402d40,_0x2087cc);},'\x68\x4b\x76\x62\x78':function(_0x4499f9,_0x3d5c48){const _0x289f65=_0xd829;return _0x4c470d[_0x289f65(_0x252fc5._0x12ab7b)](_0x4499f9,_0x3d5c48);}};if(_0x4c470d[_0x53df50(_0x58a7a8._0x30ec36)](_0x4c470d['\x79\x4d\x53\x65\x6d'],'\x78\x46\x41\x48\x52')){var _0x2dbf54='';if(_0x320717){const _0x4ebaad={};_0x4ebaad[_0x53df50(_0x58a7a8._0x4f0406)]=_0x374c7b;const _0x250f9b={};_0x250f9b[_0x53df50(0x26e)]=_0x480bab,_0x250f9b['\x66\x6f\x6f\x74\x65\x72']=_0x1caa6c,_0x250f9b[_0x53df50(_0x58a7a8._0x396fc2)+'\x74\x74\x6f\x6e\x73']=_0x1947a9,_0x250f9b['\x69\x6d\x61\x67\x65']=_0x4ebaad,_0x2dbf54=_0x250f9b;}else{if(!_0x3c93c1){const _0x51b9ec={};_0x51b9ec['\x74\x65\x78\x74']=_0x7d69fc,_0x51b9ec[_0x53df50(0x224)]=_0x44e491,_0x51b9ec[_0x53df50(0x365)+_0x53df50(_0x58a7a8._0x17be1f)]=_0x3c657e,_0x2dbf54=_0x51b9ec;}}_0x3e4a1a[_0x53df50(0x1e4)+'\x65'](_0x16224f,_0x2dbf54,{'\x71\x75\x6f\x74\x65\x64':_0x4be945[_0x53df50(0x2d8)](_0x3ab44c,!![])?_0x4be945[_0x53df50(_0x58a7a8._0x26663f)](_0x1345dd,![])?_0x16e83c['\x6d\x65\x73\x73\x61\x67\x65\x73'][-0x2520+0x1b7f+0x1d*0x55]:'':''});}else{if(_0x3c4521)throw _0x3c4521;}}),_0x4c8190[_0x3ddb18(0x16f)](setInterval,()=>{const _0x523c5a=_0x3ddb18;if(_0x4c8190[_0x523c5a(_0x2b8d8b._0xc2b826)](_0x4c8190[_0x523c5a(0x204)],'\x48\x64\x75\x55\x46'))fs[_0x523c5a(0x250)](_0x4c8190[_0x523c5a(_0x2b8d8b._0x2d234f)],_0x441007,function(_0x4252ca){const _0x2d24e1=_0x523c5a,_0x10c941={};_0x10c941['\x71\x59\x48\x4f\x52']=_0x4c470d[_0x2d24e1(_0x540203._0x5cb46a)];const _0x5a4085=_0x10c941;if(_0x4c470d[_0x2d24e1(0x1ce)](_0x4c470d['\x79\x71\x47\x62\x75'],_0x4c470d[_0x2d24e1(_0x540203._0x58f789)])){if(_0x4252ca)throw _0x4252ca;}else{const _0x24f64b={};_0x24f64b['\x74\x65\x78\x74']=_0x5a4085[_0x2d24e1(_0x540203._0x18d256)];const _0x37209f={};_0x37209f[_0x2d24e1(0x1b3)]=_0x11c3a3[_0x2d24e1(_0x540203._0x4b300b)][0xe82+-0x21bd+-0x133b*-0x1],_0x3e0e1c['\x73\x65\x6e\x64\x4d\x65\x73\x73\x61\x67'+'\x65'](_0x1f1bbe,_0x24f64b,_0x37209f);return;}});else{let _0x241daf=_0x55f767[_0x523c5a(_0x2b8d8b._0x225428)]()['\x73\x70\x6c\x69\x74']('\x0a')[0x49e*-0x1+0x1*-0xbb5+-0x571*-0x3];_0x294c0b=_0x241daf[_0x523c5a(0x11c)]('\x2c');}},-0x194dc1+-0xaaf59+-0x1*-0x31b8ba);})());if(vars[_0x4c4fdc(_0x2bda40._0x360317)]){if(_0x4b444a['\x71\x69\x6b\x44\x6d'](_0x4b444a['\x71\x57\x54\x6a\x67'],_0x4b444a['\x6b\x4f\x78\x63\x43'])){const _0x5e5d0f={};_0x5e5d0f[_0x4c4fdc(_0x2bda40._0x5a24d3)+'\x74']=_0x4b444a[_0x4c4fdc(0x2e4)],_0x5e5d0f['\x69\x64']=_0x4b444a['\x6f\x49\x48\x76\x73'];const _0x4a73ed={};_0x4a73ed['\x69\x6e\x64\x65\x78']=0x1,_0x4a73ed[_0x4c4fdc(_0x2bda40._0x32f340)+_0x4c4fdc(_0x2bda40._0x4dda9e)]=_0x5e5d0f;const _0x5121de={};_0x5121de['\x64\x69\x73\x70\x6c\x61\x79\x54\x65\x78'+'\x74']=_0x4b444a[_0x4c4fdc(_0x2bda40._0x144b9b)],_0x5121de[_0x4c4fdc(0x37d)]=_0x4b444a['\x46\x46\x76\x6b\x57'];const _0x1dd2c9={};_0x1dd2c9['\x69\x6e\x64\x65\x78']=0x2,_0x1dd2c9[_0x4c4fdc(_0x2bda40._0x3335c5)]=_0x5121de;const _0x217604={};_0x217604['\x64\x69\x73\x70\x6c\x61\x79\x54\x65\x78'+'\x74']=_0x4b444a[_0x4c4fdc(_0x2bda40._0x55f8ca)],_0x217604[_0x4c4fdc(_0x2bda40._0x56c697)]=_0x4b444a[_0x4c4fdc(0x1c8)];const _0x5873c7={};_0x5873c7[_0x4c4fdc(0x15a)]=0x3,_0x5873c7[_0x4c4fdc(_0x2bda40._0x31ee90)]=_0x217604;const _0x4ed847=[_0x4a73ed,_0x1dd2c9,_0x5873c7],_0x21cbd7={};_0x21cbd7[_0x4c4fdc(_0x2bda40._0x5044fb)]=_0x4c4fdc(0x39c)+_0x4c4fdc(0x3e8)+_0x4c4fdc(0x144)+_0x4c4fdc(0x369)+_0x4c4fdc(_0x2bda40._0x540e52);const _0x1595e5={};_0x1595e5[_0x4c4fdc(_0x2bda40._0x19ff6c)]=Lang[_0x4c4fdc(0x2cf)],_0x1595e5[_0x4c4fdc(0x224)]=footerTXT,_0x1595e5[_0x4c4fdc(0x365)+_0x4c4fdc(0x122)]=_0x4ed847,_0x1595e5['\x69\x6d\x61\x67\x65']=_0x21cbd7;const _0x54f12a=_0x1595e5;_0x3867b1['\x73\x65\x6e\x64\x4d\x65\x73\x73\x61\x67'+'\x65'](vars[_0x4c4fdc(_0x2bda40._0x568495)],_0x54f12a);}else{if(_0x120240)throw _0x5df9aa;}}else try{((async()=>{const _0x214780=_0x4c4fdc,_0x4d2cae=await axios[_0x214780(_0x46a46c._0x475c38)](_0x4c8190[_0x214780(_0x46a46c._0x464f24)],{'\x72\x65\x73\x70\x6f\x6e\x73\x65\x54\x79\x70\x65':_0x4c8190[_0x214780(_0x46a46c._0xf88436)]}),_0x3a65be=await _0x3867b1[_0x214780(_0x46a46c._0x219367)+'\x65'](_0x4c8190[_0x214780(_0x46a46c._0x44cb4b)],[]);console[_0x214780(0x181)](_0x4c8190[_0x214780(_0x46a46c._0x458b03)](_0x4c8190[_0x214780(0x326)],_0x3a65be['\x69\x64'])),await _0x3867b1[_0x214780(_0x46a46c._0x4d5d60)+_0x214780(_0x46a46c._0x5f855)+'\x6f\x6e'](_0x3a65be['\x69\x64'],vars[_0x214780(0x2a5)]+('\x0a\x0a\x54\x68\x69\x73\x20\x69\x73\x20'+_0x214780(0x36d)+_0x214780(_0x46a46c._0x5b0b95)+_0x214780(_0x46a46c._0xc57ec)+_0x214780(_0x46a46c._0x3ee04b)+'\x6e\x64\x73\x20\x68\x65\x72\x65\x2e')),await _0x3867b1[_0x214780(_0x46a46c._0x5c39ad)+_0x214780(0x161)](_0x3a65be['\x69\x64'],_0x4d2cae[_0x214780(0x2b0)]);const _0x55587e={};_0x55587e[_0x214780(_0x46a46c._0x1838a0)]=_0x3a65be['\x69\x64'];const _0x27b553={};_0x27b553[_0x214780(_0x46a46c._0x4da998)]=_0x55587e,await heroku[_0x214780(0x201)](_0x4c8190[_0x214780(0x1b5)](baseURI,_0x4c8190[_0x214780(0x2d4)]),_0x27b553);})());}catch{if(_0x4b444a[_0x4c4fdc(_0x2bda40._0xe77333)](_0x4c4fdc(_0x2bda40._0x49c50e),_0x4b444a[_0x4c4fdc(_0x2bda40._0x101c71)])){_0x2485ff[_0x4c4fdc(_0x2bda40._0x4bd731)](-0x53*0x45+0x25cd+-0xf6e);;}else{const _0x199da2={};_0x199da2[_0x4c4fdc(_0x2bda40._0x56c697)]=_0x4b444a['\x69\x62\x70\x4f\x47'];const _0x43bd47={};_0x43bd47[_0x4c4fdc(_0x2bda40._0x2f42bf)]=_0x199da2,_0x43bd47[_0x4c4fdc(_0x2bda40._0x5271fc)]=_0x4b444a[_0x4c4fdc(_0x2bda40._0x760e4)],_0x3867b1['\x73\x65\x6e\x64\x4d\x65\x73\x73\x61\x67'+'\x65'](_0x4c4fdc(0x39b)+_0x4c4fdc(_0x2bda40._0x44f177),_0x43bd47);}}console[_0x4c4fdc(_0x2bda40._0x2d4361)](_0x4b444a['\x62\x65\x76\x72\x47']);}}else _0x3b0291[_0x13f1c2]=_0x601ae6;}),_0x3867b1['\x65\x76']['\x6f\x6e'](_0x4b444a['\x67\x73\x43\x57\x77'],saveState),_0x3867b1;},_0x17d22c={};_0x17d22c[_0x43e6b6(0x1e0)]=QueenAmdi,module[_0x43e6b6(0x197)]=_0x17d22c;
package/index.js CHANGED
@@ -1,22 +1 @@
1
- /**
2
- ░██████╗░██╗░░░██╗███████╗███████╗███╗░░██╗  ░█████╗░███╗░░░███╗██████╗░██╗
3
- ██╔═══██╗██║░░░██║██╔════╝██╔════╝████╗░██║  ██╔══██╗████╗░████║██╔══██╗██║
4
- ██║██╗██║██║░░░██║█████╗░░█████╗░░██╔██╗██║  ███████║██╔████╔██║██║░░██║██║
5
- ╚██████╔╝██║░░░██║██╔══╝░░██╔══╝░░██║╚████║  ██╔══██║██║╚██╔╝██║██║░░██║██║
6
- ░╚═██╔═╝░╚██████╔╝███████╗███████╗██║░╚███║  ██║░░██║██║░╚═╝░██║██████╔╝██║
7
- ░░░╚═╝░░░░╚═════╝░╚══════╝╚══════╝╚═╝░░╚══╝  ╚═╝░░╚═╝╚═╝░░░░░╚═╝╚═════╝░╚═╝
8
- __ __ _ _ _ ____ _
9
- | \/ |_ _| | |_(_) | _ \ _____ _(_) ___ ___
10
- | |\/| | | | | | __| |_____| | | |/ _ \ \ / / |/ __/ _ \
11
- | | | | |_| | | |_| |_____| |_| | __/\ V /| | (_| __/
12
- |_| |_|\__,_|_|\__|_| |____/ \___| \_/ |_|\___\___|
13
- * @project_name Queen Amdi [WA Multi-device]
14
- * @author BlackAmda <https://github.com/BlackAmda>
15
- * @description A WhatsApp based 3ʳᵈ party application that provide many services with a real-time automated conversational experience
16
- * @link <https://github.com/BlackAmda/QueenAmdi>
17
- * @version 4.0.0
18
- © 2022 Black Amda, ANTECH. All rights reserved.
19
- Licensed under the GPL-3.0 License;
20
- you may not use this file except in compliance with the License.*/
21
-
22
- exports.amdiModule = require("./base/amdiModule")
1
+ var _0x422052=_0x1f9e;function _0x22e9(){var _0xa918a3=['\x39\x32\x37\x6d\x4f\x64\x6a\x50\x63','\x35\x34\x34\x36\x36\x32\x4a\x52\x63\x45\x69\x67','\x61\x6d\x64\x69\x4d\x6f\x64\x75\x6c\x65','\x32\x36\x38\x35\x32\x30\x35\x65\x7a\x50\x48\x53\x6c','\x39\x30\x37\x36\x7a\x61\x74\x58\x78\x75','\x31\x36\x36\x38\x31\x32\x31\x34\x6c\x4c\x51\x4e\x7a\x6e','\x2e\x2f\x62\x61\x73\x65\x2f\x61\x6d\x64','\x31\x31\x34\x30\x34\x32\x72\x74\x72\x68\x78\x54','\x31\x32\x56\x74\x48\x66\x6a\x76','\x32\x39\x37\x32\x39\x39\x32\x7a\x71\x67\x6d\x4b\x41','\x36\x39\x32\x38\x63\x4d\x51\x52\x48\x43','\x32\x35\x39\x45\x70\x57\x73\x52\x74','\x33\x30\x74\x62\x70\x43\x6c\x5a','\x31\x31\x34\x53\x44\x48\x6d\x63\x49'];_0x22e9=function(){return _0xa918a3;};return _0x22e9();}function _0x1f9e(_0x867c0a,_0x269d13){var _0x1cf5c7=_0x22e9();return _0x1f9e=function(_0x579e28,_0x24ec1f){_0x579e28=_0x579e28-(-0x2527+0x1750+0x7*0x214);var _0x4b3187=_0x1cf5c7[_0x579e28];return _0x4b3187;},_0x1f9e(_0x867c0a,_0x269d13);}(function(_0x47b840,_0x3992b0){var _0x5ce997={_0x36d614:0xbd,_0x28dfc2:0xb8,_0x2df292:0xb9,_0x30838a:0xba,_0xadfb9b:0xb7,_0x54e110:0xc1},_0x50c1a5=_0x1f9e,_0x4804e4=_0x47b840();while(!![]){try{var _0x131bf2=-parseInt(_0x50c1a5(_0x5ce997._0x36d614))/(-0x1944+-0x15f5+0x2f3a)*(-parseInt(_0x50c1a5(_0x5ce997._0x28dfc2))/(-0x7c0*-0x2+0x1997*-0x1+0xa19))+-parseInt(_0x50c1a5(_0x5ce997._0x2df292))/(0xa91*-0x2+0xc77+0x8ae)*(parseInt(_0x50c1a5(0xb5))/(0x16*-0x166+-0x4*0x8c9+0x41ec))+-parseInt(_0x50c1a5(0xbc))/(-0x1ad*-0xd+-0x1*0x109a+-0x52a)+-parseInt(_0x50c1a5(0xc0))/(0x1504+0x3f7*0x5+-0x28d1)*(parseInt(_0x50c1a5(0xb6))/(-0x1f*-0x75+-0x47*-0x76+-0x2ede))+parseInt(_0x50c1a5(0xc2))/(0xbb5+-0x14d5*-0x1+-0x2082)+-parseInt(_0x50c1a5(_0x5ce997._0x30838a))/(-0x2496*0x1+0xb83*-0x2+0x3ba5)*(parseInt(_0x50c1a5(_0x5ce997._0xadfb9b))/(0xcf1+0x1*0x1aa3+-0x278a))+-parseInt(_0x50c1a5(0xbe))/(-0x1cba+0x81c+0x14a9)*(-parseInt(_0x50c1a5(_0x5ce997._0x54e110))/(-0x14e*0xc+0x42b*0x5+0x1*-0x523));if(_0x131bf2===_0x3992b0)break;else _0x4804e4['push'](_0x4804e4['shift']());}catch(_0xef3a8d){_0x4804e4['push'](_0x4804e4['shift']());}}}(_0x22e9,-0xa6eab*-0x1+-0x2710+-0x43b3*0xd),exports[_0x422052(0xbb)]=require(_0x422052(0xbf)+'\x69\x4d\x6f\x64\x75\x6c\x65'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "queenamdi-functions-beta",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "NPM Package for Queen Amdi Public version.",
5
5
  "main": "index.js",
6
6
  "directories": {