├── plugins ├── sql │ ├── Jsl │ ├── plugin.js │ ├── greetings.js │ └── filters.js └── lib │ ├── lang │ ├── Jsl │ ├── ml.json │ └── en.json │ ├── lang.js │ ├── saveMessage.js │ ├── yt.js │ ├── scheduler.js │ └── utils.js ├── heroku.yml ├── events.js ├── package.json ├── README.md ├── main.js ├── config.js ├── app.json ├── qr.json └── bot.js /plugins/sql/Jsl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/lib/lang/Jsl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- 1 | build: 2 | docker: 3 | worker: /Kaztro/Dockerfile 4 | run: 5 | worker: npm start 6 | -------------------------------------------------------------------------------- /plugins/lib/lang.js: -------------------------------------------------------------------------------- 1 | const {LANGUAGE,VERSION} = require('../../config'); 2 | const {existsSync,readFileSync} = require('fs'); 3 | var json = existsSync(__dirname+'/lang/' + LANGUAGE + '.json') ? JSON.parse(readFileSync(__dirname+'/lang/' + LANGUAGE + '.json')) : JSON.parse(readFileSync(__dirname+'/lang/en.json')); 4 | console.log("KAZTRO "+VERSION) 5 | function getString(file) { return json['STRINGS'][file]; } 6 | module.exports = {language: json, getString: getString } 7 | -------------------------------------------------------------------------------- /plugins/sql/plugin.js: -------------------------------------------------------------------------------- 1 | /* Copyright (C) 2020 Yusuf Usta. 2 | 3 | Licensed under the GPL-3.0 License; 4 | you may not use this file except in compliance with the License. 5 | 6 | WhatsAsena - Yusuf Usta 7 | */ 8 | 9 | const config = require('../../config'); 10 | const { DataTypes } = require('sequelize'); 11 | 12 | const PluginDB = config.DATABASE.define('Plugin', { 13 | name: { 14 | type: DataTypes.STRING, 15 | allowNull: false 16 | }, 17 | url: { 18 | type: DataTypes.TEXT, 19 | allowNull: false 20 | } 21 | }); 22 | 23 | async function installPlugin(adres, file) { 24 | var Plugin = await PluginDB.findAll({ 25 | where: {url: adres} 26 | }); 27 | 28 | if (Plugin.length >= 1) { 29 | return false; 30 | } else { 31 | return await PluginDB.create({ url: adres, name: file }); 32 | } 33 | } 34 | module.exports = { PluginDB: PluginDB, installPlugin: installPlugin }; -------------------------------------------------------------------------------- /plugins/sql/greetings.js: -------------------------------------------------------------------------------- 1 | /* Copyright (C) 2020 Yusuf Usta. 2 | 3 | Licensed under the GPL-3.0 License; 4 | you may not use this file except in compliance with the License. 5 | 6 | WhatsAsena - Yusuf Usta 7 | */ 8 | 9 | const config = require('../../config'); 10 | const { DataTypes } = require('sequelize'); 11 | 12 | const GreetingsDB = config.DATABASE.define('Greeting', { 13 | chat: { 14 | type: DataTypes.STRING, 15 | allowNull: false 16 | }, 17 | type: { 18 | type: DataTypes.STRING, 19 | allowNull: false 20 | }, 21 | message: { 22 | type: DataTypes.TEXT, 23 | allowNull: false 24 | } 25 | }); 26 | 27 | async function getMessage(jid = null, tip = 'welcome') { 28 | var Msg = await GreetingsDB.findAll({ 29 | where: { 30 | chat: jid, 31 | type: tip 32 | } 33 | }); 34 | 35 | if (Msg.length < 1) { 36 | return false; 37 | } else { 38 | return Msg[0].dataValues; 39 | } 40 | } 41 | 42 | async function setMessage(jid = null, tip = 'welcome', text = null) { 43 | var Msg = await GreetingsDB.findAll({ 44 | where: { 45 | chat: jid, 46 | type: tip 47 | } 48 | }); 49 | 50 | if (Msg.length < 1) { 51 | return await GreetingsDB.create({ chat: jid, type: tip, message:text }); 52 | } else { 53 | return await Msg[0].update({ chat: jid, type: tip, message:text }); 54 | } 55 | } 56 | 57 | async function deleteMessage(jid = null, tip = 'welcome') { 58 | var Msg = await GreetingsDB.findAll({ 59 | where: { 60 | chat: jid, 61 | type: tip 62 | } 63 | }); 64 | 65 | return await Msg[0].destroy(); 66 | } 67 | 68 | module.exports = { 69 | GreetingsDB: GreetingsDB, 70 | getMessage: getMessage, 71 | setMessage: setMessage, 72 | deleteMessage: deleteMessage 73 | }; -------------------------------------------------------------------------------- /plugins/sql/filters.js: -------------------------------------------------------------------------------- 1 | /* Copyright (C) 2020 Yusuf Usta. 2 | 3 | Licensed under the GPL-3.0 License; 4 | you may not use this file except in compliance with the License. 5 | 6 | WhatsAsena - Yusuf Usta 7 | */ 8 | 9 | const config = require('../../config'); 10 | const { DataTypes } = require('sequelize'); 11 | 12 | const FiltersDB = config.DATABASE.define('filter', { 13 | chat: { 14 | type: DataTypes.STRING, 15 | allowNull: false 16 | }, 17 | pattern: { 18 | type: DataTypes.TEXT, 19 | allowNull: false 20 | }, 21 | text: { 22 | type: DataTypes.TEXT, 23 | allowNull: false 24 | }, 25 | regex: { 26 | type: DataTypes.BOOLEAN, allowNull: false, defaultValue: false 27 | } 28 | }); 29 | 30 | async function getFilter(jid = null, filter = null) { 31 | var Wher = {chat: jid}; 32 | if (filter !== null) Wher.push({pattern: filter}); 33 | var Msg = await FiltersDB.findAll({ 34 | where: Wher 35 | }); 36 | 37 | if (Msg.length < 1) { 38 | return false; 39 | } else { 40 | return Msg; 41 | } 42 | } 43 | 44 | 45 | async function setFilter(jid = null, filter = null, tex = null, regx = false) { 46 | var Msg = await FiltersDB.findAll({ 47 | where: { 48 | chat: jid, 49 | pattern: filter 50 | } 51 | }); 52 | 53 | if (Msg.length < 1) { 54 | return await FiltersDB.create({ chat: jid, pattern: filter, text: tex, regex: regx }); 55 | } else { 56 | return await Msg[0].update({ chat: jid, pattern: filter, text: tex, regex: regx }); 57 | } 58 | } 59 | 60 | async function deleteFilter(jid = null, filter) { 61 | var Msg = await FiltersDB.findAll({ 62 | where: { 63 | chat: jid, 64 | pattern: filter 65 | } 66 | }); 67 | if (Msg.length < 1) { 68 | return false; 69 | } else { 70 | return await Msg[0].destroy(); 71 | } 72 | } 73 | 74 | module.exports = { 75 | FiltersDB: FiltersDB, 76 | getFilter: getFilter, 77 | setFilter: setFilter, 78 | deleteFilter: deleteFilter 79 | }; -------------------------------------------------------------------------------- /events.js: -------------------------------------------------------------------------------- 1 | /* Copyright (C) 2020 Yusuf Usta. 2 | 3 | Licensed under the GPL-3.0 License; 4 | you may not use this file except in compliance with the License. 5 | 6 | WhatsAsena - Yusuf Usta 7 | */ 8 | 9 | // Komutları burada tutacağız. 10 | var config = require('./config'); 11 | var Commands = []; 12 | var skl11; 13 | if (config.HANDLERS == 'false') skl11 = '^' 14 | else skl11 = config.HANDLERS 15 | var sk; 16 | if (!skl11.startsWith('^[') && !skl11 === '^') sk = '^[' + skl11 + ']' 17 | else sk = skl11 18 | function addCommand(info, func) { 19 | // Basit bir fonksiyon, komut eklemek için. 20 | var types = ['photo', 'image', 'text','button', 'message']; 21 | 22 | var infos = { 23 | fromMe: info['fromMe'] === undefined ? true : info['fromMe'], // Or Sudo 24 | onlyGroup: info['onlyGroup'] === undefined ? false : info['onlyGroup'], 25 | onlyPinned: info['onlyPinned'] === undefined ? false : info['onlyPinned'], 26 | onlyPm: info['onlyPm'] === undefined ? false : info['onlyPm'], 27 | deleteCommand: info['deleteCommand'] === undefined ? true : info['deleteCommand'], 28 | desc: info['desc'] === undefined ? '' : info['desc'], 29 | usage: info['usage'] === undefined ? '' : info['usage'], 30 | dontAddCommandList: info['dontAddCommandList'] === undefined ? false : info['dontAddCommandList'], 31 | warn: info['warn'] === undefined ? '' : info['warn'], 32 | function: func 33 | }; 34 | 35 | if (info['on'] === undefined && info['pattern'] === undefined) { 36 | infos.on = 'message'; 37 | infos.fromMe = false; 38 | } else if (info['on'] !== undefined && types.includes(info['on'])) { 39 | infos.on = info['on']; 40 | 41 | if (info['pattern'] !== undefined) { 42 | infos.pattern = new RegExp((info['handler'] === undefined || info['handler'] === true ? sk : '') + info.pattern, (info['flags'] !== undefined ? info['flags'] : '')); 43 | } 44 | } else { 45 | infos.pattern = new RegExp((info['handler'] === undefined || info['handler'] === true ? sk : '') + info.pattern, (info['flags'] !== undefined ? info['flags'] : '')); 46 | } 47 | 48 | Commands.push(infos); 49 | return infos; 50 | } 51 | 52 | module.exports = { 53 | addCommand: addCommand, 54 | commands: Commands 55 | } 56 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kaztro_ser", 3 | "version": "7.3.6", 4 | "description": "Kaztroser is a Modified Version of WhatsAsena, Made By Aj-fx.", 5 | "main": "./Kaztro_ser/bot.js", 6 | "scripts": { 7 | "start": "supervisor -s bot.js" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/Aj-fx/kaztro_ser.git" 12 | }, 13 | "keywords": [ 14 | "whatsapp", 15 | "bot", 16 | "ai", 17 | "asena", 18 | "WhatsAsena" 19 | ], 20 | "author": "Aj-fx", 21 | "developer": "@Aj-fx", 22 | "license": "GPL-3.0-or-later", 23 | "bugs": { 24 | "url": "https://github.com/Aj-fx/Kaztro_ser/issues" 25 | }, 26 | "homepage": "https://github.com/Aj-fx/Kaztro_ser#readme", 27 | "dependencies": { 28 | "@adiwajshing/baileys": "^4.0.1", 29 | "@adiwajshing/keyed-db": "^0.2.4", 30 | "@lh2020/speedtest-net": "^2.1.1", 31 | "abu-bot": "2.4.0", 32 | "textmaker-thiccy": "1.2.1", 33 | "browser-id3-writer": "^4.4.0", 34 | "playstore-scraper": "^1.0.0", 35 | "axios": "^0.21.1", 36 | "googlethis": "^1.0.7", 37 | "audiobuffer-to-wav": "1.0.0", 38 | "chalk": "^4.1.0", 39 | "coffeehouse": "^2.0.0", 40 | "cwebp": "^2.0.5", 41 | "search-engine-client": "^1.2.6", 42 | "deepai": "^1.0.17", 43 | "cwebp-bin": "^6.1.1", 44 | "tinyurl": "^1.1.7", 45 | "dotenv": "^8.2.0", 46 | "tiktok-scraper": "1.4.20", 47 | "request": "2.88.2", 48 | "exchange-rates-api": "^1.0.2", 49 | "fluent-ffmpeg": "^2.1.2", 50 | "form-data": "^4.0.0", 51 | "fs-extra": "^9.1.0", 52 | "g-i-s": "^2.1.6", 53 | "google-translate-tts": "^0.3.0", 54 | "got": "^11.8.2", 55 | "heroku-client": "^3.1.0", 56 | "jimp": "0.16.0", 57 | "js-ffmpeg": "0.0.33", 58 | "jsdom": "^16.5.1", 59 | "langs": "^2.0.0", 60 | "languagedetect": "^2.0.0", 61 | "meme-maker": "^2.1.2", 62 | "mongodb": "^3.6.3", 63 | "node-fetch": "^2.6.1", 64 | "node-tesseract-ocr": "^2.0.0", 65 | "pg": "^8.5.1", 66 | "raganork-bot": "2.0.0", 67 | "sequelize": "^6.5.1", 68 | "simple-git": "^2.37.0", 69 | "sozlukjs": "^1.1.0", 70 | "spotify-web-api-node": "^5.0.0", 71 | "sqlite3": "5.0.0", 72 | "solenolyrics": "^5.0.0", 73 | "pino": "^7.0.5", 74 | "qrcode-terminal": "^0.12.0", 75 | "translatte": "^3.0.0", 76 | "wikijs": "^6.0.1", 77 | "yt-search": "^2.7.4", 78 | "ytdl-core": "^4.8.3" 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## [![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Lemon+milk&color=F70000&lines=𝐖𝐄𝐋𝐂𝐎𝐌+𝐓𝐎+𝐀𝐉-𝐅𝐗+𝐖𝐀+𝐁𝐎𝐓+𝐑𝐄𝐏𝐎;𝐂𝐑𝐄𝐀𝐓𝐄𝐃+𝐁𝐘+𝐀𝐉-𝐅𝐗)](https://git.io/typing-svg) 2 | 3 |

4 | 5 |

6 |

7 | 8 |

9 |

10 | ᴘʀᴏᴊᴇᴄᴛ ᴍᴏᴅɪғɪᴇᴅ ʙʏᴀͥᴊͭᴀᷤʏᴀͫɴͤ 11 |
12 | 🆁🅴🆂🅴🆁🆅🅴🅳 13 |
14 |

15 | 16 | 17 | ### `SIMPLE SETUP` 18 | 19 |

20 | 21 |

22 | Error 23 | 24 |

25 | 26 |

27 | 29 | 30 | 31 | 32 |

33 | 34 | ## `𝗖𝗢𝗡𝗧𝗔𝗖𝗧 𝗢𝗪𝗡𝗘𝗥` 35 | YouTube 36 | Instagram 37 | Whatsapp 38 | 39 | ## ⚠︎Thanks To⚠︎ 40 | * [`Ajfx`](https://github.com/Aj-fx) 41 | * [`Abuser`](https://github.com/Afx-abu) 42 | * [`Amalser`](https://github.com/Amal-ser) 43 | * [`JulieMwol`](https://github.com/farhan-dqz-Julie) 44 | * [`Afnan PLK`](https://github.com/afnanplk) 45 | * [`Alien Alfa`](https://github.com/Alien-Alfa) 46 | 47 | [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/Aj-fx/Aj_fx_) 48 | 49 | 50 | [![Run on Repl.it](https://repl.it/badge/github/quiec/whatsAlfa)](https://replit.com/@Aj-fx/Kaztroser?v=1) 51 | 52 | 53 | -------------------------------------------------------------------------------- /plugins/lib/saveMessage.js: -------------------------------------------------------------------------------- 1 | const _0x5d4b2f=_0x5175;(function(_0x3c585a,_0x14c728){const _0x3e346f=_0x5175,_0x4cbb7b=_0x3c585a();while(!![]){try{const _0x41731c=parseInt(_0x3e346f(0x136))/0x1+parseInt(_0x3e346f(0x14e))/0x2+-parseInt(_0x3e346f(0x152))/0x3+-parseInt(_0x3e346f(0x135))/0x4+parseInt(_0x3e346f(0x13b))/0x5+-parseInt(_0x3e346f(0x13f))/0x6+parseInt(_0x3e346f(0x140))/0x7;if(_0x41731c===_0x14c728)break;else _0x4cbb7b['push'](_0x4cbb7b['shift']());}catch(_0x2feada){_0x4cbb7b['push'](_0x4cbb7b['shift']());}}}(_0x8c73,0x54298));function _0x5175(_0x4abe79,_0x5d290e){const _0x8c731d=_0x8c73();return _0x5175=function(_0x517558,_0x4a64e8){_0x517558=_0x517558-0x135;let _0x3a7d9c=_0x8c731d[_0x517558];return _0x3a7d9c;},_0x5175(_0x4abe79,_0x5d290e);}const {downloadContentFromMessage}=require('@adiwajshi'+_0x5d4b2f(0x150)),fs=require('fs'),{filecheck}=require('abu-bot');async function saveMessage(_0x24b1eb){const _0x643295=_0x5d4b2f;if(_0x24b1eb[_0x643295(0x148)][_0x643295(0x143)+_0x643295(0x153)][_0x643295(0x13e)+_0x643295(0x151)](_0x643295(0x138)+'ge')){const _0x45621e=await downloadContentFromMessage(_0x24b1eb['data']['quotedMess'+_0x643295(0x153)][_0x643295(0x138)+'ge'],_0x643295(0x13c));let _0x1e31ab=Buffer['from']([]);for await(const _0x412695 of _0x45621e){_0x1e31ab=Buffer[_0x643295(0x14c)]([_0x1e31ab,_0x412695]);}return await fs[_0x643295(0x145)+_0x643295(0x14b)](_0x643295(0x146)+_0x643295(0x141),_0x1e31ab),_0x643295(0x146)+'p.jpeg';}if(_0x24b1eb[_0x643295(0x148)][_0x643295(0x143)+_0x643295(0x153)][_0x643295(0x13e)+_0x643295(0x151)](_0x643295(0x14a)+_0x643295(0x149))){const _0xc74932=await downloadContentFromMessage(_0x24b1eb[_0x643295(0x148)][_0x643295(0x143)+'age'][_0x643295(0x14a)+'sage'],_0x643295(0x144));let _0x189dbc=Buffer['from']([]);for await(const _0x556124 of _0xc74932){_0x189dbc=Buffer[_0x643295(0x14c)]([_0x189dbc,_0x556124]);}return await fs['writeFileS'+'ync'](_0x643295(0x146)+'p.webp',_0x189dbc),_0x643295(0x146)+_0x643295(0x142);}if(_0x24b1eb[_0x643295(0x148)][_0x643295(0x143)+_0x643295(0x153)]['hasOwnProp'+_0x643295(0x151)]('videoMessa'+'ge')){const _0x565fe0=await downloadContentFromMessage(_0x24b1eb[_0x643295(0x148)][_0x643295(0x143)+_0x643295(0x153)]['videoMessa'+'ge'],_0x643295(0x147));let _0x22962e=Buffer['from']([]);for await(const _0x37f754 of _0x565fe0){_0x22962e=Buffer['concat']([_0x22962e,_0x37f754]);}return await fs[_0x643295(0x145)+_0x643295(0x14b)](_0x643295(0x146)+_0x643295(0x14d),_0x22962e),_0x643295(0x146)+_0x643295(0x14d);}if(_0x24b1eb[_0x643295(0x148)][_0x643295(0x143)+_0x643295(0x153)]['hasOwnProp'+_0x643295(0x151)](_0x643295(0x137)+'ge')){const _0xc9dd9a=await downloadContentFromMessage(_0x24b1eb[_0x643295(0x148)][_0x643295(0x143)+_0x643295(0x153)][_0x643295(0x137)+'ge'],'audio');let _0x5650f5=Buffer[_0x643295(0x139)]([]);for await(const _0x4c853f of _0xc9dd9a){_0x5650f5=Buffer[_0x643295(0x14c)]([_0x5650f5,_0x4c853f]);}return await fs[_0x643295(0x145)+'ync'](_0x643295(0x146)+_0x643295(0x13a),_0x5650f5),_0x643295(0x146)+_0x643295(0x13a);}}module[_0x5d4b2f(0x14f)]={'saveMessage':saveMessage};function _0x8c73(){const _0x2e51de=['p.mp4','941990JdQTSk','exports','ng/baileys','erty','1832142oyEgBC','age','2163204mxprRU','149691YUHyoy','audioMessa','imageMessa','from','p.mp3','88260subeYN','image','abu-b','hasOwnProp','1214634WzJjvx','7422408KxHLhh','p.jpeg','p.webp','quotedMess','sticker','writeFileS','./temp/tem','video','data','sage','stickerMes','ync','concat'];_0x8c73=function(){return _0x2e51de;};return _0x8c73();} 2 | -------------------------------------------------------------------------------- /plugins/lib/yt.js: -------------------------------------------------------------------------------- 1 | const _0x2468f1=_0x3cd0;(function(_0x7c049,_0x27648a){const _0x374a0d=_0x3cd0,_0x2f2834=_0x7c049();while(!![]){try{const _0x3119ec=parseInt(_0x374a0d(0x1da))/0x1+parseInt(_0x374a0d(0x1bf))/0x2+-parseInt(_0x374a0d(0x1c5))/0x3+parseInt(_0x374a0d(0x1c0))/0x4+-parseInt(_0x374a0d(0x1ce))/0x5*(parseInt(_0x374a0d(0x1cc))/0x6)+parseInt(_0x374a0d(0x1cd))/0x7+-parseInt(_0x374a0d(0x1bc))/0x8;if(_0x3119ec===_0x27648a)break;else _0x2f2834['push'](_0x2f2834['shift']());}catch(_0x4916a0){_0x2f2834['push'](_0x2f2834['shift']());}}}(_0x7f10,0xec64e));function _0x7f10(){const _0x436470=['en-US,en;q=0.9','0\x20Byte','table','parentElement','en136','/analyze/ajax','exec','test','innerHTML','video','https://youtu.be/','14105304DVqzAf','src','round','1574986JuBuax','4981192VNJDnE','exports','audio','fromEntries','POST','4461300FlPnnF','id4','en61','360p','nextSibling','log','128kbps','24900MxlbOl','13370420kxVREJ','530EqYsLm','json','application/x-www-form-urlencoded;\x20charset=UTF-8','pow','entries','jsdom','replace','kbps','mp4','*/*','img','match','715582XyxfyB','td\x20>\x20a[href=\x22#\x22]','querySelector','en154','floor','trim','node-fetch','en60','result','filter','body','youtube','endsWith','mp3','http://app.y2mate.com/download'];_0x7f10=function(){return _0x436470;};return _0x7f10();}function _0x3cd0(_0x2f243e,_0x524c6c){const _0x7f1072=_0x7f10();return _0x3cd0=function(_0x3cd0ce,_0x424e41){_0x3cd0ce=_0x3cd0ce-0x1bb;let _0x1b5c13=_0x7f1072[_0x3cd0ce];return _0x1b5c13;},_0x3cd0(_0x2f243e,_0x524c6c);}let fetch=require(_0x2468f1(0x1e0)),{JSDOM}=require(_0x2468f1(0x1d3));function post(_0x3883a4,_0x4880a9){const _0x409dfc=_0x2468f1;return fetch(_0x3883a4,{'method':_0x409dfc(0x1c4),'headers':{'accept':_0x409dfc(0x1d7),'accept-language':_0x409dfc(0x1e9),'content-type':_0x409dfc(0x1d0)},'body':new URLSearchParams(Object[_0x409dfc(0x1d2)](_0x4880a9))});}const ytIdRegex=/(?:youtube\.com\/\S*(?:(?:\/e(?:mbed))?\/|watch\?(?:\S*?&?v\=))|youtu\.be\/)([a-zA-Z0-9_-]{6,11})/;async function yt(_0x2df8ca,_0x3865a1,_0xd440da,_0x1efd17,_0x24775e='en68'){const _0x420749=_0x2468f1;let _0x5ebc27=ytIdRegex[_0x420749(0x1ef)](_0x2df8ca);_0x2df8ca=_0x420749(0x1bb)+_0x5ebc27[0x1];let _0x23da39=await post('https://www.y2mate.com/mates/'+_0x24775e+_0x420749(0x1ee),{'url':_0x2df8ca,'q_auto':0x0,'ajax':0x1});function _0x3c47e8(_0x20b6eb){const _0xda95c1=_0x420749;var _0x47bc58=['Bytes','KB','MB','GB','TB'];if(_0x20b6eb==0x0)return _0xda95c1(0x1ea);var _0x3610a3=parseInt(Math[_0xda95c1(0x1de)](Math[_0xda95c1(0x1ca)](_0x20b6eb)/Math['log'](0x400)));return Math[_0xda95c1(0x1be)](_0x20b6eb/Math[_0xda95c1(0x1d1)](0x400,_0x3610a3),0x2)+'\x20'+_0x47bc58[_0x3610a3];}let _0x4f930f=await _0x23da39['json'](),{document:_0x45be36}=new JSDOM(_0x4f930f['result'])['window'],_0x199ed0=_0x45be36['querySelectorAll'](_0x420749(0x1eb)),_0x3936b2=_0x199ed0[{'mp4':0x0,'mp3':0x1}[_0xd440da]||0x0],_0x124c78;switch(_0xd440da){case _0x420749(0x1d6):_0x124c78=Object[_0x420749(0x1c3)]([..._0x3936b2['querySelectorAll'](_0x420749(0x1db))][_0x420749(0x1e3)](_0x19211e=>!/\.3gp/[_0x420749(0x1f0)](_0x19211e[_0x420749(0x1f1)]))['map'](_0x557f3d=>[_0x557f3d[_0x420749(0x1f1)][_0x420749(0x1d9)](/.*?(?=\()/)[0x0][_0x420749(0x1df)](),_0x557f3d[_0x420749(0x1ec)]['nextSibling'][_0x420749(0x1c9)][_0x420749(0x1f1)]]));break;case _0x420749(0x1e7):_0x124c78={'128kbps':_0x3936b2[_0x420749(0x1dc)]('td\x20>\x20a[href=\x22#\x22]')[_0x420749(0x1ec)][_0x420749(0x1c9)][_0x420749(0x1c9)][_0x420749(0x1f1)]};break;default:_0x124c78={};}let _0x5b42c5=_0x124c78[_0x3865a1],_0xff383f=/var k__id = "(.*?)"/[_0x420749(0x1ef)](_0x45be36[_0x420749(0x1e4)]['innerHTML'])||['',''],_0x149b29=_0x45be36['querySelector'](_0x420749(0x1d8))[_0x420749(0x1bd)],_0xd96520=_0x45be36['querySelector']('b')[_0x420749(0x1f1)],_0x20f7b3=await post('https://www.y2mate.com/mates/'+_0x24775e+'/convert',{'type':_0x420749(0x1e5),'_id':_0xff383f[0x1],'v_id':_0x5ebc27[0x1],'ajax':'1','token':'','ftype':_0xd440da,'fquality':_0x1efd17}),_0x3307d7=await _0x20f7b3[_0x420749(0x1cf)](),_0x4aaa8e=/{const _0x3e0f1a=_0x3cd0;var _0x3d1668=[_0x3e0f1a(0x1dd),'en136',_0x3e0f1a(0x1c6),_0x3e0f1a(0x1e1),_0x3e0f1a(0x1c7),'en68'],_0x288637=_0x3ec754===_0x3e0f1a(0x1f2)?_0x3e0f1a(0x1d6):_0x3e0f1a(0x1e7),_0x3cf925=_0x3ec754===_0x3e0f1a(0x1c2)?_0x3e0f1a(0x1cb):_0x1359fc,_0x9b53d0=_0x3cf925[_0x3e0f1a(0x1e6)]('p')?'p':_0x3e0f1a(0x1d5);for(let _0xa673bc of _0x3d1668){var {dl_link:_0x226e7e,thumb:_0x45c6c6,title:_0x3a9374,size:_0x19f591,available:_0x142eed}=await yt(_0x3e0f1a(0x1bb)+_0x525d58,_0x3cf925,_0x288637,_0x3cf925['replace'](_0x9b53d0,''),_0xa673bc);if(_0x226e7e!==_0x3e0f1a(0x1e8))return _0x4774f6({'url':_0x226e7e,'title':_0x3a9374,'thumbnail':_0x45c6c6,'size':_0x19f591,'available':_0x142eed});}});}module[_0x2468f1(0x1c1)]={'yt':yt,'ytIdRegex':ytIdRegex,'downloadYT':downloadYT,'servers':[_0x2468f1(0x1dd),_0x2468f1(0x1ed),'id4',_0x2468f1(0x1e1),_0x2468f1(0x1c7),'en68']}; -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | var _0x1a3e50=_0x29a2;(function(_0x2dd275,_0x43a2b4){var _0x15e9d6=_0x29a2,_0x415554=_0x2dd275();while(!![]){try{var _0x3f7983=parseInt(_0x15e9d6(0x1bc))/0x1+-parseInt(_0x15e9d6(0x1b6))/0x2+-parseInt(_0x15e9d6(0x20c))/0x3+parseInt(_0x15e9d6(0x1ea))/0x4*(parseInt(_0x15e9d6(0x200))/0x5)+parseInt(_0x15e9d6(0x203))/0x6+parseInt(_0x15e9d6(0x1f0))/0x7+-parseInt(_0x15e9d6(0x1b0))/0x8*(-parseInt(_0x15e9d6(0x1a3))/0x9);if(_0x3f7983===_0x43a2b4)break;else _0x415554['push'](_0x415554['shift']());}catch(_0x155f1a){_0x415554['push'](_0x415554['shift']());}}}(_0x5ae6,0x4bb8b));function _0x1b06(_0x4801af,_0x53c807){var _0x330234=_0x3d7a();return _0x1b06=function(_0x402f9d,_0x1cae92){_0x402f9d=_0x402f9d-0x1e5;var _0x4595a5=_0x330234[_0x402f9d];return _0x4595a5;},_0x1b06(_0x4801af,_0x53c807);}var _0xbd8ced=_0x1b06;(function(_0x24a424,_0x1d5644){var _0x2228dc=_0x29a2,_0x3f9f47=_0x1b06,_0x5331ec=_0x24a424();while(!![]){try{var _0x5d6680=-parseInt(_0x3f9f47(0x1f7))/0x1*(-parseInt(_0x3f9f47(0x1e7))/0x2)+-parseInt(_0x3f9f47(0x227))/0x3*(parseInt(_0x3f9f47(0x1f2))/0x4)+-parseInt(_0x3f9f47(0x228))/0x5*(parseInt(_0x3f9f47(0x230))/0x6)+-parseInt(_0x3f9f47(0x220))/0x7*(-parseInt(_0x3f9f47(0x209))/0x8)+parseInt(_0x3f9f47(0x221))/0x9+parseInt(_0x3f9f47(0x22d))/0xa+-parseInt(_0x3f9f47(0x225))/0xb;if(_0x5d6680===_0x1d5644)break;else _0x5331ec[_0x2228dc(0x1e4)+'h'](_0x5331ec[_0x2228dc(0x1de)+'ft']());}catch(_0x4a65c6){_0x5331ec['pus'+'h'](_0x5331ec[_0x2228dc(0x1de)+'ft']());}}}(_0x3d7a,0x286c2));function _0x52dd(_0x4cdf06,_0x4d38ba){var _0x5ddf3a=_0x56c8();return _0x52dd=function(_0x1b015c,_0x1c51ed){_0x1b015c=_0x1b015c-0xf4;var _0x3e1f60=_0x5ddf3a[_0x1b015c];return _0x3e1f60;},_0x52dd(_0x4cdf06,_0x4d38ba);}function _0x3d7a(){var _0x5b2c73=_0x29a2,_0x363eaa=['rk-',_0x5b2c73(0x1de),_0x5b2c73(0x1e4),_0x5b2c73(0x1cc),_0x5b2c73(0x1ae)+_0x5b2c73(0x1a8)+_0x5b2c73(0x1e5)+'LO',_0x5b2c73(0x1f5)+_0x5b2c73(0x1fe)+_0x5b2c73(0x207)+_0x5b2c73(0x1f7)+'E','use','ano',_0x5b2c73(0x205),_0x5b2c73(0x1f8)+'485'+'8jX'+'cUZ'+'U',_0x5b2c73(0x1bf),_0x5b2c73(0x202)+_0x5b2c73(0x1d2)+'hx','494'+_0x5b2c73(0x1d5)+_0x5b2c73(0x1e2)+'E','seT',_0x5b2c73(0x1eb),_0x5b2c73(0x1ac),'63w',_0x5b2c73(0x1b1)+_0x5b2c73(0x1e9)+_0x5b2c73(0x1ee)+_0x5b2c73(0x1b7)+'o',_0x5b2c73(0x201),_0x5b2c73(0x1fa),_0x5b2c73(0x1e0)+_0x5b2c73(0x1bb)+_0x5b2c73(0x1c5),_0x5b2c73(0x1ed),_0x5b2c73(0x1e8),_0x5b2c73(0x209),_0x5b2c73(0x1d7),_0x5b2c73(0x1c7),_0x5b2c73(0x20e),_0x5b2c73(0x1df),_0x5b2c73(0x1ff),'ete',_0x5b2c73(0x20d),_0x5b2c73(0x1e7)+_0x5b2c73(0x1a9)+'Wo',_0x5b2c73(0x1af),'cfK',_0x5b2c73(0x1c2),_0x5b2c73(0x20a),_0x5b2c73(0x1ca),_0x5b2c73(0x1e1),_0x5b2c73(0x1dc),'ort',_0x5b2c73(0x20b),_0x5b2c73(0x1d6),_0x5b2c73(0x1c9)+_0x5b2c73(0x1d1)+'YXs'+'nq',_0x5b2c73(0x1ce),_0x5b2c73(0x1d0),_0x5b2c73(0x20f),'spl',_0x5b2c73(0x208)+_0x5b2c73(0x1b9)+_0x5b2c73(0x1f6)+'g','gth',_0x5b2c73(0x1f2),_0x5b2c73(0x1ef),_0x5b2c73(0x1fd),_0x5b2c73(0x1c8),_0x5b2c73(0x1d8),_0x5b2c73(0x1c1),'6OD',_0x5b2c73(0x1f9),_0x5b2c73(0x1d3),_0x5b2c73(0x1d9),_0x5b2c73(0x1b2),_0x5b2c73(0x1f4),_0x5b2c73(0x1c3),_0x5b2c73(0x1ad),_0x5b2c73(0x206),_0x5b2c73(0x1f3),'112'+_0x5b2c73(0x1a6)+_0x5b2c73(0x1b8),_0x5b2c73(0x1f1),_0x5b2c73(0x1da),'DLE',_0x5b2c73(0x1db),_0x5b2c73(0x1c4),_0x5b2c73(0x1d4),_0x5b2c73(0x1e6),_0x5b2c73(0x1e3),_0x5b2c73(0x1ba),'onl',_0x5b2c73(0x1be),_0x5b2c73(0x1aa),_0x5b2c73(0x1fb),'des','6qt',_0x5b2c73(0x1a4),_0x5b2c73(0x1cf),_0x5b2c73(0x1ec)];return _0x3d7a=function(){return _0x363eaa;},_0x3d7a();}var _0x5b773a=_0x52dd;function _0x5ae6(){var _0x2494d8=['ate','up_','161','12429HYAVpf','but','gxx','zAn','964','64l','bbG','fro','xYr','ima','257','689','991','488rbOptS','282','ter','sag','mMe','len','165420vRQyax','whP','oMH','7Ba','inc','qXA','216361gwpJdw','126','yPi','man','82P','don','dle','ist','dCo','MVq','del','bot','upd','287','nne','onf','rNc','989','yGr','CAh','113','48v','DzW','pat','FLC','0xp','rag','whD','pho','2uE','Rvt','war','176','96Z','shi','586','228','gro','AiB','lud','pus','hNs','HAN','34j','NGp','195','3060zfHHIZ','Com','usa','mes','0BP','rrC','850080qDmxvA','exp','ton','han','./c','275','ewg','ZXO','532','shK','oup','fal','QHb','0pq','014','tAd','1000PZxyJF','mma','78L','1167840xQhPDP','spl','454','yPm','8nC','872','tes','tex','876','1130451iVtaiF','5BF','10p'];_0x5ae6=function(){return _0x2494d8;};return _0x5ae6();}(function(_0x39cd2c,_0x2a9aa7){var _0x3f08f3=_0x29a2,_0x11cfec=_0x1b06,_0x4cbfaa=_0x52dd,_0x12b35c=_0x39cd2c();while(!![]){try{var _0x3def60=parseInt(_0x4cbfaa(0x10f))/0x1+-parseInt(_0x4cbfaa(0xfb))/0x2*(-parseInt(_0x4cbfaa(0x103))/0x3)+parseInt(_0x4cbfaa(0xf8))/0x4+-parseInt(_0x4cbfaa(0x116))/0x5*(parseInt(_0x4cbfaa(0x123))/0x6)+parseInt(_0x4cbfaa(0xf9))/0x7*(parseInt(_0x4cbfaa(0x128))/0x8)+-parseInt(_0x4cbfaa(0x119))/0x9*(-parseInt(_0x4cbfaa(0x104))/0xa)+-parseInt(_0x4cbfaa(0x112))/0xb;if(_0x3def60===_0x2a9aa7)break;else _0x12b35c[_0x11cfec(0x21e)+'h'](_0x12b35c[_0x11cfec(0x21d)+'ft']());}catch(_0x1f96e7){_0x12b35c[_0x11cfec(0x21e)+'h'](_0x12b35c[_0x3f08f3(0x1de)+'ft']());}}}(_0x56c8,0xd2c4a));function _0x29a2(_0x38a8e8,_0x4d2e03){var _0x5ae6d4=_0x5ae6();return _0x29a2=function(_0x29a22b,_0x447cb7){_0x29a22b=_0x29a22b-0x1a3;var _0x4f947d=_0x5ae6d4[_0x29a22b];return _0x4f947d;},_0x29a2(_0x38a8e8,_0x4d2e03);}var config=require(_0x5b773a(0x102)+_0x5b773a(0xf5)+'ig'),raganork=require(_0xbd8ced(0x1f1)+_0x5b773a(0x127)+_0x5b773a(0x107)+_0x5b773a(0x10c)),Commands=[],skl11;if(config[_0x5b773a(0x12c)+'DLE'+'RS']==_0x5b773a(0x126)+'se')skl11='^';else skl11=config[_0x5b773a(0x12c)+_0x5b773a(0xff)+'RS'];var sk;if(config[_0xbd8ced(0x210)+_0xbd8ced(0x20c)+'RS'][_0x5b773a(0x111)+'it']('')[_0x1a3e50(0x1b5)+_0x5b773a(0xfe)]>0x1&&config[_0x5b773a(0x12c)+_0x5b773a(0xff)+'RS'][_0x5b773a(0x111)+'it']('')[0x0]===config[_0xbd8ced(0x210)+'DLE'+'RS'][_0xbd8ced(0x1f6)+'it']('')[0x1])sk=config[_0x5b773a(0x12c)+_0x5b773a(0xff)+'RS'];else{if(/[-!$%^&*()_+|~=`{}\[\]:";'<>?,.\/]/[_0x5b773a(0x11f)+'t'](skl11)&&skl11!=='^')sk='^['+skl11+']';else sk=skl11;}function _0x56c8(){var _0x3f3643=_0x1a3e50,_0x4468c7=_0xbd8ced,_0x3b8b9f=[_0x4468c7(0x20e),_0x4468c7(0x235),'pat',_0x4468c7(0x22f),_0x3f3643(0x1bd)+_0x4468c7(0x224)+_0x4468c7(0x21f)+_0x4468c7(0x20b),'del',_0x3f3643(0x204),_0x4468c7(0x206)+_0x3f3643(0x1a7)+_0x3f3643(0x1dd)+_0x3f3643(0x1a5)+'Jk',_0x4468c7(0x22e),_0x4468c7(0x208),_0x4468c7(0x207),_0x4468c7(0x1e6)+_0x4468c7(0x1fa)+'n','ndL',_0x4468c7(0x222),_0x4468c7(0x1f4)+_0x4468c7(0x1f0)+_0x3f3643(0x1c0)+_0x4468c7(0x21a)+'QZ',_0x4468c7(0x1e5),_0x4468c7(0x20d),_0x4468c7(0x1fc),_0x4468c7(0x21b),_0x4468c7(0x238),_0x4468c7(0x233),_0x4468c7(0x1eb),_0x4468c7(0x1f9),_0x4468c7(0x215),'659'+_0x4468c7(0x1e8)+_0x4468c7(0x1fb)+_0x4468c7(0x229)+'I',_0x4468c7(0x214),_0x4468c7(0x1ed),_0x4468c7(0x216),_0x4468c7(0x223),_0x4468c7(0x1f4)+_0x3f3643(0x211)+_0x4468c7(0x1ff)+_0x4468c7(0x232)+'T',_0x4468c7(0x203),_0x4468c7(0x1f3),_0x4468c7(0x219),_0x4468c7(0x210),_0x4468c7(0x1ec),_0x3f3643(0x1e4),_0x4468c7(0x205),_0x3f3643(0x1cb),_0x4468c7(0x1ea),_0x3f3643(0x1eb),_0x4468c7(0x237)+_0x3f3643(0x1cd)+_0x4468c7(0x202)+_0x3f3643(0x1ab)+'f',_0x4468c7(0x22c)+_0x3f3643(0x1fc)+'Dl',_0x4468c7(0x1fe),_0x4468c7(0x1ee)+'134'+_0x4468c7(0x1e9)+_0x4468c7(0x20f),_0x4468c7(0x231),_0x4468c7(0x213),_0x4468c7(0x1f8),_0x4468c7(0x20c),_0x3f3643(0x1b4),_0x4468c7(0x217),_0x4468c7(0x204),_0x4468c7(0x218)+_0x4468c7(0x234)+'P',_0x4468c7(0x236)+_0x4468c7(0x200)+'ka',_0x4468c7(0x1f5),_0x4468c7(0x226),_0x4468c7(0x21c),_0x4468c7(0x1fd),_0x3f3643(0x210),_0x3f3643(0x1b3)];return _0x56c8=function(){return _0x3b8b9f;},_0x56c8();}function Module(_0x5a0d9a,_0x30ced1){var _0xbdadea=_0x1a3e50,_0x1313f3=_0xbd8ced,_0x444819=_0x5b773a,_0x19479f=[_0x444819(0x108)+'to',_0x1313f3(0x22b)+'ge',_0x444819(0x120)+'t',_0x444819(0x12b)+_0x444819(0x121),_0x444819(0x125)+_0x444819(0x109)+_0x444819(0x11c)+_0x444819(0x105),_0x444819(0xfc)+_0x444819(0x10a)+'e'],_0x4d0e08={'fromMe':_0x5a0d9a[_0x444819(0x122)+_0xbdadea(0x1b4)]===undefined?!![]:_0x5a0d9a[_0x1313f3(0x215)+_0x444819(0x100)],'onlyGroup':_0x5a0d9a[_0x1313f3(0x213)+_0x444819(0x12a)+_0x444819(0x10e)]===undefined?![]:_0x5a0d9a[_0x444819(0xfd)+_0x444819(0x12a)+_0xbdadea(0x1fa)],'onlyPinned':_0x5a0d9a[_0x444819(0xfd)+_0x444819(0x124)+_0x444819(0x12d)+'d']===undefined?![]:_0x5a0d9a[_0x444819(0xfd)+_0x444819(0x124)+_0x444819(0x12d)+'d'],'onlyPm':_0x5a0d9a[_0x444819(0xfd)+_0x444819(0x115)]===undefined?![]:_0x5a0d9a[_0x1313f3(0x213)+_0x1313f3(0x207)],'deleteCommand':_0x5a0d9a[_0x444819(0x110)+_0x444819(0x11a)+_0x444819(0xf7)+_0x444819(0x106)+'d']===undefined?!![]:_0x5a0d9a[_0xbdadea(0x1c6)+_0x444819(0x11a)+_0x1313f3(0x22a)+_0x444819(0x106)+'d'],'desc':_0x5a0d9a[_0x444819(0x101)+'c']===undefined?'':_0x5a0d9a[_0x1313f3(0x217)+'c'],'usage':_0x5a0d9a[_0x444819(0x11d)+'ge']===undefined?'':_0x5a0d9a[_0x444819(0x11d)+'ge'],'dontAddCommandList':_0x5a0d9a[_0x444819(0xfa)+_0x444819(0x11e)+_0x444819(0x10b)+_0x444819(0x113)+_0x444819(0x117)+_0x444819(0xf4)]===undefined?![]:_0x5a0d9a[_0x444819(0xfa)+_0x444819(0x11e)+_0x444819(0x10b)+_0x444819(0x113)+_0x444819(0x117)+_0x444819(0xf4)],'warn':_0x5a0d9a[_0x444819(0x11b)+'n']===undefined?'':_0x5a0d9a[_0x444819(0x11b)+'n'],'use':_0x5a0d9a[_0x444819(0x118)]===undefined?'':_0x5a0d9a[_0x444819(0x118)],'function':_0x30ced1};if(_0x5a0d9a['on']===undefined&&_0x5a0d9a[_0xbdadea(0x1d3)+_0x444819(0x129)+'n']===undefined)_0x4d0e08['on']=_0x444819(0xfc)+_0x444819(0x10a)+'e',_0x4d0e08[_0x444819(0x122)+_0x444819(0x100)]=![];else _0x5a0d9a['on']!==undefined&&_0x19479f[_0x1313f3(0x212)+_0x1313f3(0x211)+'es'](_0x5a0d9a['on'])?(_0x4d0e08['on']=_0x5a0d9a['on'],_0x5a0d9a[_0x1313f3(0x201)+'ter'+'n']!==undefined&&(_0x4d0e08[_0x444819(0x10d)+_0x1313f3(0x203)+'n']=new RegExp((_0x5a0d9a[_0x444819(0x114)+_0xbdadea(0x1c2)+'r']===undefined||_0x5a0d9a[_0x444819(0x114)+_0x444819(0xf6)+'r']===!![]?sk:'')+_0x5a0d9a[_0x444819(0x10d)+_0x444819(0x129)+'n'],'s'))):_0x4d0e08[_0x444819(0x10d)+_0x444819(0x129)+'n']=new RegExp((_0x5a0d9a[_0x444819(0x114)+_0x444819(0xf6)+'r']===undefined||_0x5a0d9a[_0x444819(0x114)+_0x444819(0xf6)+'r']===!![]?sk:'')+_0x5a0d9a[_0x444819(0x10d)+_0x1313f3(0x203)+'n'],'s');return Commands[_0x444819(0x12e)+'h'](_0x4d0e08),_0x4d0e08;}module[_0xbd8ced(0x20a)+_0xbd8ced(0x1ef)+'s']={'Module':Module,'commands':Commands}; 2 | -------------------------------------------------------------------------------- /plugins/lib/lang/ml.json: -------------------------------------------------------------------------------- 1 | { 2 | "STRINGS": { 3 | "converters": { 4 | "STICKER_DESC":"Sticker create cheyyan", 5 | "STICKER_NEED_REPLY":"_Photo/video kk reply aayi ayakk!_", 6 | "MP3_DESC":"Video/Audio mp3 format convert cheyyum", 7 | "MP3_NEED_REPLY:":"_Reply cheyy. audio/video_", 8 | "BASS_DESC:":"Audio il bass boost cheyyum. .bass 20", 9 | "BASS_NEED_REPLY:":"_Audio evide mister?_", 10 | "PHOTO_DESC":"Sticker photo aakki therum", 11 | "PHOTO_NEED_REPLY":"_Animated allatha oru stickerinu reply chey_" 12 | }, 13 | "external_plugin": { 14 | "INSTALL_DESC": "Plugins install cheyyum", 15 | "NEED_URL": "Oru url venam. like, .install https://gist.git....", 16 | "INVALID_URL": "Ee url invalid aanu!", 17 | "INVALID_PLUGIN": "_Plugin il error und!_\n", 18 | "INSTALLED": "Ee plugin install akki => {} ✅", 19 | "PLUGIN_DESC": "Currently install akiya plugins kanikkum", 20 | "INSTALLED_PLUGINS": "Install cheytha plugins:\n", 21 | "NO_PLUGIN": "Oru plugins um install cheythittilla!", 22 | "REMOVE_DESC": "Removes plugin.", 23 | "NEED_PLUGIN": "Oru name thaa. like: .remove news", 24 | "PLUGIN_NOT_FOUND": "Angane oru plugin nee install akiyittilla", 25 | "DELETED": "{} plugin remove cheyth. Venenkil restart cheytho" 26 | }, 27 | "group": { 28 | "KICK_DESC": "Groupilnn alkare remove cheyyum.", 29 | "NOT_ADMIN": "Ayn njan admin alla :(", 30 | "ISADMIN": "Ee user oru admin aanu", 31 | "KICKED": "Ok bye !", 32 | "NEED_USER": "Aare?", 33 | "ADD_DESC": "Group lekk alkare add cheyyum", 34 | "ADDED": "add cheyth!", 35 | "ALREADY_PROMOTED": "Person aadhyame admin aanu", 36 | "PROMOTED": "Admin akki!", 37 | "PROMOTE_DESC": "Group admin aakkum", 38 | "LEAVING": "Njan left avatte. Bye!", 39 | "LEAVE_DESC": "Groupilnn left adikkum.", 40 | "DEMOTE_DESC": "Admin sthaanam remove cheyyum", 41 | "ALREADY_NOT_ADMIN": "Iyaal admin onnum alla!", 42 | "DEMOTED": ", admin position remove cheyth!", 43 | "MUTE_DESC": "Group admins only akkum", 44 | "MUTED": "Group admins only akki!", 45 | "UNMUTE_DESC": "Group open akkum", 46 | "UNMUTED": "Group opened.", 47 | "REVOKE_DESC": "Group link reset akkum.", 48 | "REVOKED": "Group link reset akki!", 49 | "TAGALL_DESC": "Groupile ellareyum tag cheyyum.", 50 | "INVITE_DESC": "Group link eduth tharum.", 51 | "INVITE": "Invite link:", 52 | "JID_DESC": "Chat/user jid eduth therum.", 53 | "GROUP_COMMAND": "Ith oru group command aanu.", 54 | "WARNING": " ⚠️ WARNING ⚠️", 55 | "USER": "*Member:* ```{}```", 56 | "REMAINING": "*Sheshikunna warns:* ```{}```", 57 | "REASON": "*Kaaranam:* ```{}```", 58 | "WARN_RESET": "_Mm, {} warnings und ini ninak_ _{}_ 😁", 59 | "WARN_OVER": "_Ninte njan maximum warnings thannu, {} Kicked_" 60 | }, 61 | "media": { 62 | "TRIM_DESC": "Video or Audio cut cheyyum", 63 | "TRIM_USE": ".trim 60;120", 64 | "TRIM_NEED": "*Angane alla*.\n *.trim 10;30*", 65 | "AVMIX_DESC": "Video um audio um merge cheyyum", 66 | "AVMIX_NEED_FILES": "*Audio/video reply cheyy!*", 67 | "AVMIX_AUDIO_ADDED": "*Audio save cheyth!*", 68 | "AVMIX_VIDEO_ADDED": "*Video save cheyth!*", 69 | "TRIM_VIDEO_NEED": "*Angane alla!* \n*.trim 5,10*\n*.trim 1:05,1:20*", 70 | "TRIM_NEED_REPLY": "*Audio or video reply cheyy!*" 71 | }, 72 | "afk": { 73 | "AFK_DESC": "It makes you AFK - Away From Keyboard.", 74 | "IM_AFK": "I'm AFK now!", 75 | "IM_AFK_NOMD": "I'm AFK now!", 76 | "REASON": "Reason", 77 | "LAST_SEEN": "Last Seen", 78 | "IM_NOT_AFK": "I am not AFK anymore!", 79 | "AFK_TEXT": "My owner is not here at the moment.", 80 | "AFK_TEXT_NOMD": "I'm a bot!", 81 | "HOUR": "hour", 82 | "MINUTE": "minute", 83 | "SECOND": "second" 84 | }, 85 | "heroku": { 86 | "RESTART_DESC": "Restarts the bot", 87 | "RESTART_MSG": "Restarting...", 88 | "SHUTDOWN_DESC": "Shutdown Bot", 89 | "SHUTDOWN_MSG": "Shutting down... ❌", 90 | "DYNO_DESC": "Check heroku dyno usage", 91 | "DYNO_TOTAL": "Total Quota", 92 | "DYNO_USED": "Quota used", 93 | "PERCENTAGE": "Percentage", 94 | "DYNO_LEFT": "Remaining", 95 | "SETVAR_DESC": "Set heroku config var", 96 | "SET_SUCCESS": "Successfully set _{} ➜ {}", 97 | "KEY_VAL_MISSING": "Either Key or Value is missing", 98 | "INVALID": "Invalid key:value format", 99 | "GETVAR_DESC": "Get heroku config var", 100 | "DELVAR_DESC": "Delete heroku config var", 101 | "DEL_SUCCESS": "{} successfully deleted", 102 | "ALLVAR_DESC":"Gives all your heroku config vars", 103 | "ALL_VARS":"All your config vars", 104 | "NOT_FOUND": "No results found for this key" 105 | }, 106 | "filters": { 107 | "FILTER_DESC": "Auto reply set cheyyum.", 108 | "NO_FILTER": "_Ithil filters onnum illa!_", 109 | "FILTERS": "_Ee chatil set cheytha filters_:", 110 | "NEED_REPLY": "_Angane alla_!*\n*Example:", 111 | "FILTERED": "_{}_ *filter set cheyth!*", 112 | "STOP_DESC": "Add akiya filter remove cheyyum.", 113 | "NEED_FILTER": "_Angane alla!_*\n*Example:", 114 | "ALREADY_NO_FILTER": "❌ _Angane oru filter illalo 🤦‍♂️ Onnukoodi think cheyy!_", 115 | "DELETED": "✅ _Mm, filter delete cheyth!_" 116 | }, 117 | "greetings": { 118 | "WELCOME_DESC": "Groupil welcome message set akkan.", 119 | "NOT_SET_WELCOME": "Welcome message set cheythitilla. .welcome use cheyth set chey", 120 | "WELCOME_ALREADY_SETTED": "*✅ Welcome message already set aanu!*\n*Message:* ", 121 | "NEED_WELCOME_TEXT": "You must write a message to set up the welcome message.*\n*Example:* _.welcome WELCOME!", 122 | "WELCOME_DELETED": "*✅ Welcome message delete akki*", 123 | "WELCOME_SETTED": "*Welcome message enable cheyth ✅*", 124 | "GOODBYE_DESC": "Sets the goodbye message. If you leave blank, it show's the goodbye message.", 125 | "NOT_SET_GOODBYE": "You didn't set a goodbye message!*\n*To set:* _.goodbye Your Goodbye Message", 126 | "GOODBYE_ALREADY_SETTED": "✅ Goodbye message has been set!*\n*Message:* ", 127 | "NEED_GOODBYE_TEXT": "You must write a message to set up the goodbye message.*\n*Example:* _.goodbye Goodbye!", 128 | "GOODBYE_DELETED": "✅ Goodbye message has been deleted successfully!", 129 | "GOODBYE_SETTED": "✅ Goodbye message has been setted successfully!" 130 | }, 131 | "memes": { 132 | "MEMES_DESC": "Photo memes you replied to.", 133 | "NEED_REPLY": "Reply to a photo!", 134 | "DOWNLOADING": "Making meme..." 135 | }, 136 | "ocr": { 137 | "OCR_DESC": "Reads the text on the photo you have replied.", 138 | "NEED_REPLY": "Reply to a photo!", 139 | "DOWNLOADING": "Media is downloading & reading...", 140 | "ERROR": "I couldn't read this :/_\n*Error:*_{}", 141 | "RESULT": "Language:* _{}_\n*Here is what I read:* _{}" 142 | }, 143 | "profile": { 144 | "KICKME_DESC": "Leaves from group.", 145 | "KICKME": "Leaving from the group...", 146 | "PP_DESC": "Sets profile photo.", 147 | "NEED_PHOTO": "Reply to a photo", 148 | "PPING": "Setting profile photo...", 149 | "BLOCK_DESC": "Blocks user.", 150 | "UNBLOCK_DESC": "Unblocks user.", 151 | "BLOCKED": "Blocked!", 152 | "UNBLOCKED": "Unblocked!", 153 | "NEED_USER": "Give me a user!", 154 | "JID_DESC": "Gives user's JID." 155 | }, 156 | "scrapers": { 157 | "TRANSLATE_DESC": "Text message google transalte cheyyum", 158 | "TRANSLATE_USAGE": ".trt en ml (English malayalam akkan)", 159 | "NEED_REPLY": "*Oru message reply chey!*", 160 | "TRANSLATE_ERROR": "❌ An error occured while translating!", 161 | "TTS_DESC": "Text voice ayi ayakkum.", 162 | "TTS_NEED_REPLY": "*Text evide?*", 163 | "TTS_ERROR": "*Tts engine error ayi!*", 164 | "SONG_DESC": "YouTube il nnu songs download akkum.", 165 | "NEED_TEXT_SONG": "*Eth song aa vende?* \neg: .song Arabic Kuthu", 166 | "NO_RESULT": "*Results onnum illa!*", 167 | "UPLOADING_SONG": "Downloading and uploading", 168 | "VIDEO_DESC": "Youtubeinnu video download akkum.", 169 | "NEED_VIDEO": "*YouTube link evide?*", 170 | "DOWNLOADING_VIDEO": "Downloading", 171 | "UPLOADING_VIDEO": "Uploading", 172 | "DLANG_DESC": "Reply cheytha messageinte language kandupidikkum.", 173 | "DLANG_CLOSER": "Closest result:", 174 | "DLANG_LANG": "Language:", 175 | "DLANG_SIMI": "Similarity:", 176 | "DLANG_OTHER": "Vere languages", 177 | "DLANG_INPUT": "Kodutha text:", 178 | "YTS_DESC": "YouTube il search cheyyum.", 179 | "NEED_WORDS": "*Enthenkilum input thaa!*", 180 | "NOT_FOUND": "*Not found*", 181 | "SEARCHING": "Searching", 182 | "WIKI_DESC": "Searches query on Wikipedia.", 183 | "IMG_DESC": "Google il photos search cheyyum.", 184 | "IMG": "*{} photo download cheyyunnu for ```{}```*", 185 | "MATCHING_SONGS": "Youtube il ninnu kittiya matching songs", 186 | "YTS_RESULTS": "Youtube il nnu kittiya results", 187 | "YTV_DESC": "YouTUbe video quality nokki download akkum" 188 | }, 189 | "sticker": { 190 | "STICKER_DESC": "Sticker indakkum.", 191 | "NEED_REPLY": "Photo|video kk reply aayi ayakk" 192 | }, 193 | "system_stats": { 194 | "ALIVE_DESC": "Checks if the bot is working or not", 195 | "SYSD_DESC": "Shows the system properties." 196 | }, 197 | "tagall": { 198 | "TAGALL_DESC": "Mentions everyone in the group.", 199 | "ADMIN": "I'm not an admin" 200 | }, 201 | "updater": { 202 | "UPDATER_DESC": "Checks for bot updates.", 203 | "UPDATE": "Already up to date", 204 | "UPDATE_START_DESC": "Updates bot.", 205 | "UPDATING": "Build started", 206 | "INVALID_HEROKU": "Heroku app name or API key invalid!", 207 | "UPDATED": "Build finished", 208 | "AFTER_UPDATE": "Restarting" 209 | }, 210 | "ping": { 211 | "PING_DESC": "Measures your ping.", 212 | "URL": "Shorten the long link." 213 | }, 214 | "instagram": { 215 | "NEED_WORD": "Please enter username of any instagram account.", 216 | "USAGE": ".insta ", 217 | "DESC": "Fetches user informations from instagram", 218 | "LOADING": "Fetching user data.. please wait.", 219 | "USERNAME": "Username", 220 | "NAME": "Name", 221 | "BIO": "Biography", 222 | "FOLLOWERS": "Followers", 223 | "FOLLOWS": "Follows", 224 | "ACCOUNT": "Account privacy", 225 | "PUBLIC": "Public", 226 | "HIDDEN": "Hidden", 227 | "NOT_FOUND": "User not found: " 228 | } 229 | 230 | } 231 | } 232 | -------------------------------------------------------------------------------- /plugins/lib/lang/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "STRINGS": { 3 | "converters": { 4 | "STICKER_DESC":"Creates stickers. Reply to media.", 5 | "STICKER_NEED_REPLY":"_Reply to a photo or a short video!_", 6 | "MP3_DESC":"Converts replied media to mp3 format", 7 | "MP3_NEED_REPLY:":"_Reply to an audio or video!_", 8 | "BASS_DESC:":"Bass boosts audio. .bass 20", 9 | "BASS_NEED_REPLY:":"_Reply to an audio!_", 10 | "PHOTO_DESC":"Converts non animated stickers to photo", 11 | "PHOTO_NEED_REPLY":"_Reply to a non animated sticker!_" 12 | }, 13 | "external_plugin": { 14 | "INSTALL_DESC": "Installs external plugins.", 15 | "NEED_URL": "_Need a URL! Ex:_ .install https://gist.git....", 16 | "INVALID_URL": "_Invalid url!_", 17 | "INVALID_PLUGIN": "_Error in plugin!_\n", 18 | "INSTALLED": "_Installed {} ✅_", 19 | "PLUGIN_DESC": "Shows the plugins that you have installed.", 20 | "INSTALLED_PLUGINS": "_Total external plugins:_\n", 21 | "NO_PLUGIN": "_No plugin found!_", 22 | "REMOVE_DESC": "Removes plugin.", 23 | "NEED_PLUGIN": "_Please give a plugin name! Ex: .remove news_", 24 | "PLUGIN_NOT_FOUND": "Maybe you have installed such a plugin, or maybe not. But it sure isn't right now.", 25 | "DELETED": "_Deleted {}!_" 26 | }, 27 | "group": { 28 | "KICK_DESC": "Kicks participants from group.", 29 | "NOT_ADMIN": "I'm not an admin", 30 | "ISADMIN": "Participant is an admin", 31 | "KICKED": "_Kicked!_", 32 | "NEED_USER": "_Need a participant_", 33 | "ADD_DESC": "Adds members to the group.", 34 | "ADDED": "_added to the group_", 35 | "ALREADY_PROMOTED": "_Person is already an admin_", 36 | "PROMOTED": "_is now as admin!_", 37 | "PROMOTE_DESC": "Makes any person an admin.", 38 | "LEAVE_DESC": "Leaves from group.", 39 | "DEMOTE_DESC": "Removes the person from admin position.", 40 | "ALREADY_NOT_ADMIN": "Person is not an admin to demote", 41 | "DEMOTED": " _is no longer an admin!_", 42 | "MUTE_DESC": "Mutes group chat. Only the admins can send messages.", 43 | "MUTED": "_Group muted!_", 44 | "UNMUTE_DESC": "Unmutes the group chat allowing all participants to send messages", 45 | "UNMUTED": "_Group unmuted!_", 46 | "REVOKE_DESC": "Resets the group's invitation link.", 47 | "REVOKED": "_Group link reset!_", 48 | "TAGALL_DESC": "Tags all members of the group.", 49 | "INVITE_DESC": "Provides the group's invitation link.", 50 | "INVITE": "_Invite link:_", 51 | "JID_DESC": "Gives jid of chat/user.", 52 | "GROUP_COMMAND": "_Group command!_", 53 | "WARN_DESC": "Gives warning. Kicks member if limit is over", 54 | "WARNING": " ⚠️ WARNING ⚠️", 55 | "USER": "*User:* ```{}```", 56 | "REMAINING": "*Remaining:* ```{}```", 57 | "REASON": "*Reason:* ```{}```", 58 | "WARN_RESET": "_Reset warns, {} remaining for_ _{}_", 59 | "WARN_OVER": "_Max warns reached, {} Kicked_" 60 | }, 61 | "afk": { 62 | "AFK_DESC": "It makes you AFK - Away From Keyboard.", 63 | "IM_AFK": "I'm AFK now!", 64 | "IM_AFK_NOMD": "I'm AFK now!", 65 | "REASON": "Reason", 66 | "LAST_SEEN": "Last Seen", 67 | "IM_NOT_AFK": "I am not AFK anymore!", 68 | "AFK_TEXT": "My owner is not here at the moment.", 69 | "AFK_TEXT_NOMD": "I'm a bot!", 70 | "HOUR": "hour", 71 | "MINUTE": "minute", 72 | "SECOND": "second" 73 | }, 74 | "media": { 75 | "TRIM_DESC": "Trims audio or video with given seconds", 76 | "TRIM_USE": ".trim 60,120", 77 | "TRIM_NEED": "_Wrong format!:_.\n _.trim 10,30_", 78 | "TRIM_VIDEO_NEED": "_Wrong format!_ \n_.trim 5,10_\n_.trim 1:05,1:20_", 79 | "TRIM_NEED_REPLY": "_Reply to an audio or video_", 80 | "AVMIX_DESC": "_Mixes audio & video_", 81 | "AVMIX_NEED_FILES": "_Reply to audio and video to merge!_", 82 | "AVMIX_AUDIO_ADDED": "_Saved audio_", 83 | "AVMIX_VIDEO_ADDED": "_Saved video_" 84 | }, 85 | "heroku": { 86 | "RESTART_DESC": "Restarts bot", 87 | "RESTART_MSG": "_Restarting!_", 88 | "SHUTDOWN_DESC": "Shutdown Bot", 89 | "SHUTDOWN_MSG": "_Shutting down ❌_", 90 | "DYNO_DESC": "Checks heroku dyno usage", 91 | "DYNO_TOTAL": "Total Quota", 92 | "DYNO_USED": "Quota used", 93 | "PERCENTAGE": "Percentage", 94 | "DYNO_LEFT": "Remaining", 95 | "SETVAR_DESC": "Sets heroku config var", 96 | "SET_SUCCESS": "_Set {}_ ➜ {}", 97 | "KEY_VAL_MISSING":"_Invalid format!_\n_Ex_: *setvar LANGUAGE:manglish*", 98 | "INVALID": "_Invalid format!_\n_Ex_: *setvar LANGUAGE:manglish*", 99 | "GETVAR_DESC": "Gets heroku config var", 100 | "DELVAR_DESC": "Deletes heroku config var", 101 | "DEL_SUCCESS": "{} _successfully deleted!_", 102 | "ALLVAR_DESC":"Gives all your heroku config vars", 103 | "ALL_VARS":"_Heroku config vars:_", 104 | "NOT_FOUND": "_Not found!_" 105 | }, 106 | "filters": { 107 | "FILTER_DESC": "Sets auto reply filter. If someone sends your filter, it replies. If you just type .filter, it shows your filter list.", 108 | "NO_FILTER": "_No filters found!_", 109 | "FILTERS": "_🔎 Total filters in this chat:_", 110 | "NEED_REPLY": "_Wrong format!_\n_Example:", 111 | "FILTERED": "_Set_ {} _to filter!_", 112 | "STOP_DESC": "Removes the filter you added previously.", 113 | "NEED_FILTER": "_Need a filter!_\n_Example:", 114 | "ALREADY_NO_FILTER": "_No such filter found!_", 115 | "DELETED": "_Deleted filter!_" 116 | }, 117 | "greetings": { 118 | "WELCOME_DESC": "It sets the welcome message. If you leave it blank it shows the welcome message.", 119 | "NOT_SET_WELCOME": "_No welcome messages set! Check wiki: https://github.com/Afx-Abu/abu-plugin-list", 120 | "WELCOME_ALREADY_SETTED": "_Already set!_\n", 121 | "NEED_WELCOME_TEXT": "_Need a message._", 122 | "WELCOME_DELETED": "_Welcome disabled!_", 123 | "WELCOME_SETTED": "_Welcome enabled!_", 124 | "GOODBYE_DESC": "Sets the goodbye message. If you leave blank, it show's the goodbye message.", 125 | "NOT_SET_GOODBYE": "You didn't set a goodbye message!_\n_To set:_ _.goodbye Your Goodbye Message", 126 | "GOODBYE_ALREADY_SETTED": "✅ Goodbye message has been set!_\n_Message:_ ", 127 | "NEED_GOODBYE_TEXT": "You must write a message to set up the goodbye message._\n_Example:_ _.goodbye Goodbye!", 128 | "GOODBYE_DELETED": "✅ Goodbye message has been deleted successfully!", 129 | "GOODBYE_SETTED": "✅ Goodbye message has been setted successfully!" 130 | }, 131 | "memes": { 132 | "MEMES_DESC": "Photo memes you replied to.", 133 | "NEED_REPLY": "Reply to a photo!", 134 | "DOWNLOADING": "Making meme..." 135 | }, 136 | "ocr": { 137 | "OCR_DESC": "Reads the text on the photo you have replied.", 138 | "NEED_REPLY": "Reply to a photo!", 139 | "DOWNLOADING": "Media is downloading & reading...", 140 | "ERROR": "I couldn't read this :/_\n_Error:__{}", 141 | "RESULT": "Language:_ _{}_\n_Here is what I read:_ _{}" 142 | }, 143 | "profile": { 144 | "KICKME_DESC": "Leaves from group.", 145 | "KICKME": "Leaving from the group...", 146 | "PP_DESC": "Sets profile photo.", 147 | "NEED_PHOTO": "Reply to a photo", 148 | "PPING": "Setting profile photo...", 149 | "BLOCK_DESC": "Blocks user.", 150 | "UNBLOCK_DESC": "Unblocks user.", 151 | "BLOCKED": "Blocked!", 152 | "UNBLOCKED": "Unblocked!", 153 | "NEED_USER": "Give me a user!", 154 | "JID_DESC": "Gives user's JID." 155 | }, 156 | "scrapers": { 157 | "TRANSLATE_DESC": "It translates replied msg with Google Translate", 158 | "TRANSLATE_USAGE": ".trt en ml (From English to Malayalam)", 159 | "NEED_REPLY": "Please reply to any message!", 160 | "TRANSLATE_ERROR": "❌ An error occured while translating!", 161 | "TTS_DESC": "Converts text to speech using google tts.", 162 | "TTS_NEED_REPLY": "Need text!", 163 | "TTS_ERROR": "Failed to convert to speech. Please check your requested params!", 164 | "SONG_DESC": "Downloads songs from youtube (list).", 165 | "NEED_TEXT_SONG": "Which song? \neg: .song Arabic Kuthu", 166 | "NO_RESULT": "Not found", 167 | "UPLOADING_SONG": "Downloading and uploading", 168 | "VIDEO_DESC": "Downloads video from YouTube.", 169 | "NEED_VIDEO": "Where's the link?", 170 | "DOWNLOADING_VIDEO": "Downloading", 171 | "UPLOADING_VIDEO": "Uploading", 172 | "DLANG_DESC": "Guess the language of replied message.", 173 | "DLANG_CLOSER": "Closest result:", 174 | "DLANG_LANG": "Language:", 175 | "DLANG_SIMI": "Similarity:", 176 | "DLANG_OTHER": "Other languages", 177 | "DLANG_INPUT": "Processed text:", 178 | "YT_DESC": "Searches on YouTube.", 179 | "NEED_WORDS": "Need some query", 180 | "NOT_FOUND": "Not found", 181 | "SEARCHING": "Searching", 182 | "WIKI_DESC": "Searches query on Wikipedia.", 183 | "IMG_DESC": "Searches for images on Google.", 184 | "IMG": "Uploading {} results for {}", 185 | "MATCHING_SONGS": "Matching songs from YouTube", 186 | "YTS_DESC": "Select videos in youtube", 187 | "YTS_RESULTS": "Search results from YouTube", 188 | "YTV_DESC": "Select & download yt videos in available quality formats" 189 | }, 190 | "sticker": { 191 | "STICKER_DESC": "Creates stickers. Reply to media.", 192 | "NEED_REPLY": "Reply to a photo or short video" 193 | }, 194 | "system_stats": { 195 | "ALIVE_DESC": "Checks if the bot is working or not", 196 | "SYSD_DESC": "Shows the system properties." 197 | }, 198 | "tagall": { 199 | "TAGALL_DESC": "Mentions everyone in the group.", 200 | "ADMIN": "I'm not an admin" 201 | }, 202 | "updater": { 203 | "UPDATER_DESC": "Checks for bot updates.", 204 | "UPDATE": "Already up to date", 205 | "UPDATE_START_DESC": "Updates bot.", 206 | "UPDATING": "_Build started_", 207 | "INVALID_HEROKU": "Heroku app name or API key invalid!", 208 | "UPDATED": "Build finished", 209 | "AFTER_UPDATE": "Restarting" 210 | }, 211 | "ping": { 212 | "PING_DESC": "Measures your ping.", 213 | "URL": "Shorten the long link." 214 | }, 215 | "instagram": { 216 | "NEED_WORD": "Please enter username of any instagram account.", 217 | "USAGE": ".insta ", 218 | "DESC": "Fetches user informations from instagram", 219 | "LOADING": "Fetching user data.. please wait.", 220 | "USERNAME": "Username", 221 | "NAME": "Name", 222 | "BIO": "Biography", 223 | "FOLLOWERS": "Followers", 224 | "FOLLOWS": "Follows", 225 | "ACCOUNT": "Account privacy", 226 | "PUBLIC": "Public", 227 | "HIDDEN": "Hidden", 228 | "NOT_FOUND": "User not found: " 229 | } 230 | 231 | } 232 | } 233 | -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | const _0x398e75=_0x5099;(function(_0xc148ab,_0xe44bb9){const _0x495b23=_0x5099,_0x4f8658=_0xc148ab();while(!![]){try{const _0x509e08=parseInt(_0x495b23(0x17a))/0x1+-parseInt(_0x495b23(0x130))/0x2+-parseInt(_0x495b23(0x139))/0x3*(-parseInt(_0x495b23(0x136))/0x4)+parseInt(_0x495b23(0x16b))/0x5*(parseInt(_0x495b23(0x13b))/0x6)+parseInt(_0x495b23(0x179))/0x7+parseInt(_0x495b23(0x174))/0x8*(parseInt(_0x495b23(0x19b))/0x9)+parseInt(_0x495b23(0x18f))/0xa*(-parseInt(_0x495b23(0x190))/0xb);if(_0x509e08===_0xe44bb9)break;else _0x4f8658['push'](_0x4f8658['shift']());}catch(_0x46cbcd){_0x4f8658['push'](_0x4f8658['shift']());}}}(_0x248a,0xca156));function _0x248a(){const _0x2ca3be=['ALL_NAME','DIALOGUE','AUTO_BİO','ANTİ_LİNK','V_HEADER','config.env','DISABLE_JID_BGM_FILTER','sqlite','HEROKU_API_KEY','ᴋᴀᴢᴛʀᴏsᴇʀ','ALL_IMG','NUMBER','GAN_IMAGE','30HGgOiu','Note\x20this','*YOUR\x20HEADER\x20HERE*','config','toUpperCase','918281440156,0','BGM_FILTER','BGM_DURATION','WORK_TYPE','6606768ceGWQw','https://i.imgur.com/nErXUGj.mp4','MUTE_MESSAGE','envYOUTUBE_LINK','NO_ONLINE','415415vtqvof','895567CUksDp','sequelize','DATABASE_URL','INSTAGRAM','C_CODE','DEMOTE_MESSAGE','SONGU','SONGD','envGIT_LINK','TAG_HEADER','HANDLERS','FAKE_REMOVE','919072790587,0','➠ᴜsᴇ\x20ʜᴇᴀᴅᴘʜᴏɴᴇs..☊','SED_CAPTION','+918281440156','existsSync','env','NO_LOG','v7.3.6','https://i.hizliresim.com/loUtAb.jpg','5279950eJYHCC','44QbzDSZ','SUDO','PROMOTE_MESSAGE','TAG_REPLY','ALL_CAPTION','SEND_READ','https://instagram.com/ajayan_007?utm_medium=copy_link','DEPLOYER','LANGUAGE','./bot.db','ALIVE_MESSAGE','18pcvTfF','ʏᴇs/ɴᴏ','false','LG_LOGO','CMD_LIST','BOT_NAME','OWNER_NAME','AUDIO_CAPTION','GIF_BYE','ADD_MESSAGE','HEROKU','AFK_MESSAGE','KAZTROSER_CODE','true','🤩\x20All\x20The\x20Dreams\x20Like\x20Twinkle\x20Stars\x20🤩','https://t.me/remasterplugin','AUTO_STICKER','167502Wuvleg','dotenv','GIT_BUTTON','UNMUTE_MESSAGE','HEROKU_APP_NAME','THERI_LIST','181028vdhhRK','https://youtube.com/channel/UCqFyvZP5Ipc-RFfX3QFMS0w','CHANGE_BGM_TO','3mcZdGE','TEYMELA6DMC4XB5YM3SPTTQWUUIBKURG','371604ITUkUv','BAN_MESSAGE','VERIFIED','REMOVE_BG_API_KEY','KICKME_MESSAGE','905511384572-1621015274','^[.!;]','STANDBY_MODE','one','*ᴍᴀᴅᴇ\x20ʙʏ\x20ᴋᴀᴢᴛʀᴏsᴇʀ*','BLOCK_MESSAGE','https://i.imgur.com/KUaX2XT.jpeg','siya/💙/🌟/🥀/🐾','https://i.imgur.com/svROV4L.jpeg','WEL_GIF','UNBLOCK_MESSAGE','CHAT_BOT','GIT_LINK','𝐎𝐖𝐍𝐄𝐑/𝐆𝐈𝐓','default','LOGO_NAME','ALIVE_BUTTON','39999600','BLOCK_CHAT','DEBUG','https://chat.whatsapp.com/EdukdzFc6suJNCs62aJB3f','INSTA_PASSWORD','afnanplk','master','WELCOME','DISABLE_STICKER','919072790587-1635775355','off','918281440156@s.whatsapp.net','INBO_BLOCK'];_0x248a=function(){return _0x2ca3be;};return _0x248a();}const {Sequelize}=require(_0x398e75(0x17b)),fs=require('fs');if(fs[_0x398e75(0x18a)](_0x398e75(0x163)))require(_0x398e75(0x131))[_0x398e75(0x16e)]({'path':'./config.env'});function convertToBool(_0x5be82a,_0x3bd906=_0x398e75(0x12c)){return _0x5be82a===_0x3bd906?!![]:![];}function _0x5099(_0x309213,_0x10f564){const _0x248ae8=_0x248a();return _0x5099=function(_0x509908,_0x3ed640){_0x509908=_0x509908-0x123;let _0x325d8f=_0x248ae8[_0x509908];return _0x325d8f;},_0x5099(_0x309213,_0x10f564);}DATABASE_URL=process[_0x398e75(0x18b)]['DATABASE_URL']===undefined?_0x398e75(0x199):process[_0x398e75(0x18b)][_0x398e75(0x17c)],DEBUG=process[_0x398e75(0x18b)][_0x398e75(0x153)]===undefined?![]:convertToBool(process['env'][_0x398e75(0x153)]),module['exports']={'VERSION':_0x398e75(0x18d),'CHANNEL':_0x398e75(0x12e),'SESSION':process['env'][_0x398e75(0x12b)]===undefined?'':process[_0x398e75(0x18b)][_0x398e75(0x12b)],'ANTİLİNK':process[_0x398e75(0x18b)][_0x398e75(0x161)]===undefined?'false':process['env'][_0x398e75(0x161)],'AUTOBİO':process[_0x398e75(0x18b)][_0x398e75(0x160)]===undefined?_0x398e75(0x19d):process[_0x398e75(0x18b)]['AUTO_BİO'],'STANDPLK':process[_0x398e75(0x18b)][_0x398e75(0x142)]===undefined?_0x398e75(0x15b):process[_0x398e75(0x18b)][_0x398e75(0x142)],'FAKE':process[_0x398e75(0x18b)]['FAKE_REMOVE']===undefined?'false':process[_0x398e75(0x18b)][_0x398e75(0x185)],'GANSTYLE':process['env'][_0x398e75(0x16a)]===undefined?_0x398e75(0x18e):process[_0x398e75(0x18b)]['GAN_IMAGE'],'LANG':process[_0x398e75(0x18b)][_0x398e75(0x198)]===undefined?'TR':process[_0x398e75(0x18b)][_0x398e75(0x198)][_0x398e75(0x16f)](),'ALIVEMSG':process[_0x398e75(0x18b)][_0x398e75(0x19a)]===undefined?'default':process[_0x398e75(0x18b)][_0x398e75(0x19a)],'AFN':process[_0x398e75(0x18b)][_0x398e75(0x194)]===undefined?_0x398e75(0x144):process[_0x398e75(0x18b)][_0x398e75(0x194)],'KICKMEMSG':process[_0x398e75(0x18b)][_0x398e75(0x13f)]===undefined?_0x398e75(0x14e):process['env'][_0x398e75(0x13f)],'BLOCKCHAT':process[_0x398e75(0x18b)][_0x398e75(0x152)]===undefined?![]:process[_0x398e75(0x18b)][_0x398e75(0x152)],'WELCOME':process[_0x398e75(0x18b)][_0x398e75(0x158)]===undefined?'pp':process['env'][_0x398e75(0x158)],'OWNER':process[_0x398e75(0x18b)]['OWNER_NAME']===undefined?_0x398e75(0x14e):process[_0x398e75(0x18b)][_0x398e75(0x125)],'PHONE':process[_0x398e75(0x18b)]['NUMBER']===undefined?_0x398e75(0x189):process['env'][_0x398e75(0x169)],'OA_NAME':process[_0x398e75(0x18b)][_0x398e75(0x197)]===undefined?'ᴀᴊғx':process[_0x398e75(0x18b)][_0x398e75(0x197)],'ALL':process[_0x398e75(0x18b)][_0x398e75(0x194)]===undefined?_0x398e75(0x144):process[_0x398e75(0x18b)]['ALL_CAPTION'],'LG_LOGO':process['env'][_0x398e75(0x19e)]===undefined?_0x398e75(0x146):process[_0x398e75(0x18b)][_0x398e75(0x19e)],'INSTA':process['env'][_0x398e75(0x17d)]===undefined?_0x398e75(0x196):process[_0x398e75(0x18b)][_0x398e75(0x17d)],'GROUP':process[_0x398e75(0x18b)]['GROUP_LINK']===undefined?_0x398e75(0x154):process['envGROUP_LINK'],'YT':process[_0x398e75(0x18b)]['YOUTUBE_LINK']===undefined?_0x398e75(0x137):process[_0x398e75(0x177)],'GIT':process['env'][_0x398e75(0x14c)]===undefined?'https://github.com/Aj-fx/Kaztro_ser':process[_0x398e75(0x182)],'LOGO_NAME':process[_0x398e75(0x18b)][_0x398e75(0x14f)]===undefined?_0x398e75(0x167):process[_0x398e75(0x18b)][_0x398e75(0x14f)],'CODE':process[_0x398e75(0x18b)][_0x398e75(0x17e)]===undefined?'91':process[_0x398e75(0x18b)][_0x398e75(0x17e)],'BTNAME':process[_0x398e75(0x18b)][_0x398e75(0x15e)]===undefined?_0x398e75(0x167):process[_0x398e75(0x18b)]['ALL_NAME'],'MENTION':process[_0x398e75(0x18b)][_0x398e75(0x193)]===undefined?_0x398e75(0x15c):process[_0x398e75(0x18b)][_0x398e75(0x193)],'ADDMSG':process[_0x398e75(0x18b)][_0x398e75(0x128)]===undefined?_0x398e75(0x14e):process[_0x398e75(0x18b)][_0x398e75(0x128)],'PLKS':process[_0x398e75(0x18b)][_0x398e75(0x135)]===undefined?![]:process['env'][_0x398e75(0x135)],'AFPLK':process[_0x398e75(0x18b)][_0x398e75(0x155)]===undefined?![]:process['env'][_0x398e75(0x155)],'MUTEMSG':process['env'][_0x398e75(0x176)]===undefined?_0x398e75(0x14e):process[_0x398e75(0x18b)][_0x398e75(0x176)],'BGMFILTER':process[_0x398e75(0x18b)][_0x398e75(0x171)]===undefined?![]:convertToBool(process[_0x398e75(0x18b)][_0x398e75(0x171)]),'INBO':process[_0x398e75(0x18b)][_0x398e75(0x15d)]===undefined?_0x398e75(0x19d):process[_0x398e75(0x18b)]['INBO_BLOCK'],'INBO1':process['env']['INBO_BLOCK']===undefined?_0x398e75(0x12c):process['env']['INBO_BLOCK'],'DISBGM':process[_0x398e75(0x18b)][_0x398e75(0x164)]===undefined?![]:process[_0x398e75(0x18b)][_0x398e75(0x164)],'STICKERP':process[_0x398e75(0x18b)][_0x398e75(0x12f)]===undefined?!![]:convertToBool(process[_0x398e75(0x18b)][_0x398e75(0x12f)]),'DISSTICKER':process[_0x398e75(0x18b)][_0x398e75(0x159)]===undefined?![]:process[_0x398e75(0x18b)]['DISABLE_STICKER'],'BOT':process[_0x398e75(0x18b)][_0x398e75(0x124)]===undefined?'⊢‒‒‒\x20⋈\x20ᴋᴀᴢᴛʀᴏsᴇʀ\x20⋈\x20‒‒‒⊣':process[_0x398e75(0x18b)][_0x398e75(0x124)],'KAZTRO_SER':process['env'][_0x398e75(0x150)]===undefined?_0x398e75(0x14d):process[_0x398e75(0x18b)][_0x398e75(0x150)],'NOLOG':process['env'][_0x398e75(0x18c)]===undefined?_0x398e75(0x12c):process[_0x398e75(0x18b)][_0x398e75(0x18c)],'THERI_KICK':process[_0x398e75(0x18b)]['THERI_KICK']===undefined?'false':process[_0x398e75(0x18b)]['THERI_KICK'],'SONGD':process[_0x398e75(0x18b)][_0x398e75(0x181)]===undefined?'➠ᴅᴏᴡɴʟᴏᴀᴅɪɴɢ\x20ꜱᴏɴɢ..♬\x20':process['env'][_0x398e75(0x181)],'SONGU':process[_0x398e75(0x18b)][_0x398e75(0x180)]===undefined?_0x398e75(0x187):process[_0x398e75(0x18b)][_0x398e75(0x180)],'CHATBOT':process[_0x398e75(0x18b)][_0x398e75(0x14b)]===undefined?'false':process[_0x398e75(0x18b)]['CHAT_BOT'],'AJ_FX':process[_0x398e75(0x18b)][_0x398e75(0x132)]===undefined?_0x398e75(0x19c):process['env']['GIT_BUTTON'],'SAID':process[_0x398e75(0x18b)][_0x398e75(0x172)]===undefined?_0x398e75(0x151):process[_0x398e75(0x18b)]['BGM_DURATION'],'BLOCKMSG':process[_0x398e75(0x18b)]['BLOCK_MESSAGE']===undefined?'default':process['env'][_0x398e75(0x145)],'UNBLOCKMSG':process[_0x398e75(0x18b)]['UNBLOCK_MESSAGE']===undefined?'default':process[_0x398e75(0x18b)][_0x398e75(0x14a)],'SED':process[_0x398e75(0x18b)][_0x398e75(0x188)]===undefined?'*ᴍᴀᴅᴇ\x20ʙʏ\x20ᴋᴀᴢᴛʀᴏsᴇʀ*':process[_0x398e75(0x18b)][_0x398e75(0x188)],'UNMUTEMSG':process['env'][_0x398e75(0x133)]===undefined?_0x398e75(0x14e):process[_0x398e75(0x18b)]['UNMUTE_MESSAGE'],'GEAR':process['env'][_0x398e75(0x138)]===undefined?_0x398e75(0x143):process['env']['CHANGE_BGM_TO'],'WORKTYPE':process['env'][_0x398e75(0x173)]===undefined?'public':process[_0x398e75(0x18b)][_0x398e75(0x173)],'PROMOTEMSG':process['env'][_0x398e75(0x192)]===undefined?'default':process[_0x398e75(0x18b)][_0x398e75(0x192)],'DEMOTEMSG':process[_0x398e75(0x18b)][_0x398e75(0x17f)]===undefined?_0x398e75(0x14e):process[_0x398e75(0x18b)][_0x398e75(0x17f)],'PLK':process[_0x398e75(0x18b)][_0x398e75(0x125)]===undefined?'default':process[_0x398e75(0x18b)]['OWNER_NAME'],'BOTSK':process['env'][_0x398e75(0x124)]===undefined?_0x398e75(0x167):process[_0x398e75(0x18b)]['BOT_NAME'],'LOGOSK':process[_0x398e75(0x18b)][_0x398e75(0x168)]===undefined?_0x398e75(0x148):process[_0x398e75(0x18b)]['ALL_IMG'],'SKDL':process[_0x398e75(0x18b)][_0x398e75(0x15f)]===undefined?_0x398e75(0x12d):process[_0x398e75(0x18b)]['DIALOGUE'],'JID':process[_0x398e75(0x18b)][_0x398e75(0x13d)]===undefined?'0@s.whatsapp.net':process['env']['VERIFIED'],'SKV':process[_0x398e75(0x18b)][_0x398e75(0x162)]===undefined?_0x398e75(0x16d):process[_0x398e75(0x18b)][_0x398e75(0x162)],'BANMSG':process[_0x398e75(0x18b)][_0x398e75(0x13c)]===undefined?_0x398e75(0x14e):process[_0x398e75(0x18b)][_0x398e75(0x13c)],'NOLOG':process[_0x398e75(0x18b)]['FIX_ERROR']===undefined?'on':process[_0x398e75(0x18b)]['FIX_ERROR'],'AFKMSG':process[_0x398e75(0x18b)][_0x398e75(0x12a)]===undefined?'default':process['env']['AFK_MESSAGE'],'ALLEMOJI':process[_0x398e75(0x18b)][_0x398e75(0x123)]===undefined?_0x398e75(0x147):process[_0x398e75(0x18b)]['CMD_LIST'],'WEL_GIF':process[_0x398e75(0x18b)][_0x398e75(0x149)]===undefined?_0x398e75(0x175):process[_0x398e75(0x18b)][_0x398e75(0x149)],'GIF_BYE':process[_0x398e75(0x18b)][_0x398e75(0x127)]===undefined?'https://i.imgur.com/Z1jCYGN.mp4':process['env']['GIF_BYE'],'BC':process['env'][_0x398e75(0x126)]===undefined?'ꪶ͢ɪͥᴛͭsᷤ\x20͢ᴍͫᴇͤᡃ⃝ᴋᴀᴢᴛʀᴏsᴇʀ࿐⁩':process[_0x398e75(0x18b)][_0x398e75(0x126)],'HANDLERS':process[_0x398e75(0x18b)][_0x398e75(0x184)]===undefined?_0x398e75(0x141):process[_0x398e75(0x18b)][_0x398e75(0x184)],'TAGPLK':process[_0x398e75(0x18b)][_0x398e75(0x183)]===undefined?_0x398e75(0x16c):process[_0x398e75(0x18b)][_0x398e75(0x183)],'SEND_READ':process[_0x398e75(0x18b)][_0x398e75(0x195)]===undefined?![]:convertToBool(process['env'][_0x398e75(0x195)]),'YAK':process[_0x398e75(0x18b)]['YAK']===undefined?'918281440156,0':process[_0x398e75(0x18b)]['YAK'],'BRANCH':_0x398e75(0x157),'HEROKU':{'HEROKU':process[_0x398e75(0x18b)][_0x398e75(0x129)]===undefined?![]:convertToBool(process[_0x398e75(0x18b)][_0x398e75(0x129)]),'API_KEY':process[_0x398e75(0x18b)][_0x398e75(0x166)]===undefined?'':process[_0x398e75(0x18b)][_0x398e75(0x166)],'APP_NAME':process[_0x398e75(0x18b)][_0x398e75(0x134)]===undefined?'':process['env']['HEROKU_APP_NAME']},'DATABASE_URL':DATABASE_URL,'DATABASE':DATABASE_URL===_0x398e75(0x199)?new Sequelize({'dialect':_0x398e75(0x165),'storage':DATABASE_URL,'logging':DEBUG}):new Sequelize(DATABASE_URL,{'dialectOptions':{'ssl':{'require':!![],'rejectUnauthorized':![]}},'logging':DEBUG}),'RBG_API_KEY':process['env']['REMOVE_BG_API_KEY']===undefined?![]:process['env'][_0x398e75(0x13e)],'NO_ONLINE':process[_0x398e75(0x18b)][_0x398e75(0x178)]===undefined?!![]:convertToBool(process[_0x398e75(0x18b)][_0x398e75(0x178)]),'SUDO':process[_0x398e75(0x18b)][_0x398e75(0x191)]===undefined?_0x398e75(0x170):process[_0x398e75(0x18b)][_0x398e75(0x191)],'DEBUG':DEBUG,'WITAI_API':_0x398e75(0x13a),'BOTCREATOR':_0x398e75(0x156),'MAHN':_0x398e75(0x186),'SUPPORT':_0x398e75(0x15a),'SUPPORT2':'905511384572-1617736751','SUPPORT3':_0x398e75(0x140)}; 2 | -------------------------------------------------------------------------------- /plugins/lib/scheduler.js: -------------------------------------------------------------------------------- 1 | (function(_0x1415c0,_0xbf4aad){var _0x189a5b=_0x4e56,_0x5005d6=_0x1415c0();while(!![]){try{var _0x16ba4d=-parseInt(_0x189a5b(0x1c1))/0x1*(parseInt(_0x189a5b(0x1ba))/0x2)+-parseInt(_0x189a5b(0x1cb))/0x3+-parseInt(_0x189a5b(0x1d1))/0x4+-parseInt(_0x189a5b(0x1ce))/0x5+parseInt(_0x189a5b(0x1b1))/0x6+parseInt(_0x189a5b(0x1f9))/0x7+parseInt(_0x189a5b(0x201))/0x8*(parseInt(_0x189a5b(0x18b))/0x9);if(_0x16ba4d===_0xbf4aad)break;else _0x5005d6['push'](_0x5005d6['shift']());}catch(_0x56b7ba){_0x5005d6['push'](_0x5005d6['shift']());}}}(_0x1c0e,0x4a8a2));var _0x5bfd2d=_0x3eb9;(function(_0x8961c,_0x596f02){var _0x1823fb=_0x4e56,_0x611137=_0x3eb9,_0x1437e3=_0x8961c();while(!![]){try{var _0x466b32=-parseInt(_0x611137(0x164))/0x1*(-parseInt(_0x611137(0x160))/0x2)+-parseInt(_0x611137(0x159))/0x3+parseInt(_0x611137(0x167))/0x4+-parseInt(_0x611137(0x11a))/0x5*(-parseInt(_0x611137(0x137))/0x6)+parseInt(_0x611137(0x120))/0x7*(parseInt(_0x611137(0x151))/0x8)+parseInt(_0x611137(0x16b))/0x9+-parseInt(_0x611137(0x157))/0xa*(parseInt(_0x611137(0x163))/0xb);if(_0x466b32===_0x596f02)break;else _0x1437e3['pus'+'h'](_0x1437e3[_0x1823fb(0x1b0)+'ft']());}catch(_0x21f1dc){_0x1437e3['pus'+'h'](_0x1437e3['shi'+'ft']());}}}(_0xe724,0xefd30));var _0x4874c6=_0x44d7;(function(_0x5f31e2,_0x5a491a){var _0xc48599=_0x4e56,_0x4dc075=_0x3eb9,_0x462719=_0x44d7,_0xb6c34e=_0x5f31e2();while(!![]){try{var _0xe125dc=-parseInt(_0x462719(0x133))/0x1*(parseInt(_0x462719(0x148))/0x2)+-parseInt(_0x462719(0x141))/0x3+-parseInt(_0x462719(0x147))/0x4+parseInt(_0x462719(0x10d))/0x5*(parseInt(_0x462719(0x11e))/0x6)+parseInt(_0x462719(0x142))/0x7+parseInt(_0x462719(0x111))/0x8+parseInt(_0x462719(0x14c))/0x9*(-parseInt(_0x462719(0x13d))/0xa);if(_0xe125dc===_0x5a491a)break;else _0xb6c34e[_0x4dc075(0x12f)+'h'](_0xb6c34e[_0x4dc075(0x15d)+'ft']());}catch(_0x579c4a){_0xb6c34e[_0xc48599(0x1b9)+'h'](_0xb6c34e[_0x4dc075(0x15d)+'ft']());}}}(_0x39fc,0xa1f4a));var _0x43d9f4=_0x573a;function _0xe724(){var _0x378304=_0x4e56,_0x1b4bb1=[_0x378304(0x1da),_0x378304(0x1f4),_0x378304(0x1fd),_0x378304(0x1de),_0x378304(0x1d4),_0x378304(0x192),_0x378304(0x1d0),_0x378304(0x1e0),_0x378304(0x1c7),_0x378304(0x1e4)+'Cia'+'QN',_0x378304(0x1ec),_0x378304(0x1f5),_0x378304(0x1bb),_0x378304(0x1cf),_0x378304(0x194),'42z'+_0x378304(0x1c2)+'kM',_0x378304(0x1e3),_0x378304(0x190),_0x378304(0x1fb),'ING',_0x378304(0x191),'des',_0x378304(0x198),_0x378304(0x1b3),_0x378304(0x19c),_0x378304(0x1b4),_0x378304(0x1f2),_0x378304(0x1c4),_0x378304(0x1f3),_0x378304(0x1e2),_0x378304(0x1b9),_0x378304(0x1b5),'cre',_0x378304(0x1b7),'sti',_0x378304(0x1ef),_0x378304(0x1a1),_0x378304(0x18d),_0x378304(0x1b2)+_0x378304(0x1bf)+_0x378304(0x1ac)+_0x378304(0x1e9)+'N',_0x378304(0x197),'con',_0x378304(0x203),_0x378304(0x1a7),_0x378304(0x1eb),'356',_0x378304(0x1c5),'0yO','oun',_0x378304(0x1a8),_0x378304(0x1a5),_0x378304(0x1a9),'27U',_0x378304(0x1bc),_0x378304(0x1c8),'3xb',_0x378304(0x1bd),_0x378304(0x1dd),_0x378304(0x1dc),_0x378304(0x1c6),_0x378304(0x1ab),'444',_0x378304(0x1e7),'KCz',_0x378304(0x202),_0x378304(0x1f8)+_0x378304(0x19f)+'2sv'+_0x378304(0x1fc)+'W',_0x378304(0x1cc),_0x378304(0x1d6),_0x378304(0x1be),_0x378304(0x1f1),'ate','367'+_0x378304(0x1d7)+_0x378304(0x1fa)+_0x378304(0x1aa)+'lF',_0x378304(0x1f7),_0x378304(0x1ca)+_0x378304(0x18a)+'1Bx'+_0x378304(0x1ea)+'s',_0x378304(0x19b),_0x378304(0x1b6),_0x378304(0x1ed),'shi',_0x378304(0x1e8),_0x378304(0x19a),'26s'+_0x378304(0x1db)+'sz',_0x378304(0x1ee),_0x378304(0x1e5),'11W'+_0x378304(0x1e1)+'ZS',_0x378304(0x1d9)+_0x378304(0x18c)+_0x378304(0x195)+_0x378304(0x196),_0x378304(0x199),_0x378304(0x1d2),'362'+_0x378304(0x1f6)+_0x378304(0x1d5)+_0x378304(0x18f)+'I',_0x378304(0x1f0),'def',_0x378304(0x1cd),_0x378304(0x1c9)+'760'+_0x378304(0x204)+_0x378304(0x19d)+'I',_0x378304(0x1ae),_0x378304(0x1af)];return _0xe724=function(){return _0x1b4bb1;},_0xe724();}function _0x39fc(){var _0x5adce7=_0x4e56,_0x15155=_0x3eb9,_0x35bc62=[_0x15155(0x15f),_0x15155(0x130),_0x15155(0x15d),_0x15155(0x156),_0x5adce7(0x1ad),_0x15155(0x123),_0x5adce7(0x200),_0x15155(0x149),_0x15155(0x126),_0x15155(0x15e),_0x15155(0x153),_0x15155(0x11b),_0x5adce7(0x1ff),_0x5adce7(0x1df),_0x5adce7(0x1b9),_0x15155(0x166)+_0x15155(0x170)+_0x15155(0x118)+'rX',_0x15155(0x11f),_0x15155(0x171),_0x5adce7(0x1a2),_0x15155(0x15a),_0x15155(0x119),_0x15155(0x134),_0x15155(0x150),_0x15155(0x128),_0x15155(0x140),'174'+_0x15155(0x154)+_0x15155(0x15c)+_0x15155(0x13b)+'q',_0x15155(0x155),_0x15155(0x129),_0x15155(0x13c),_0x15155(0x12d)+'938'+_0x15155(0x147)+_0x15155(0x16c)+'A',_0x15155(0x13d)+_0x5adce7(0x1a6)+_0x15155(0x125)+_0x15155(0x148)+'T',_0x15155(0x143),_0x15155(0x162),_0x15155(0x158),_0x15155(0x141),_0x15155(0x135)+_0x15155(0x152)+_0x15155(0x13f)+_0x15155(0x11d)+'w',_0x15155(0x11c)+_0x15155(0x14b)+'q',_0x5adce7(0x193),_0x15155(0x133),_0x15155(0x124),_0x15155(0x144)+_0x15155(0x174)+'Qc',_0x15155(0x13e),_0x5adce7(0x1c3),_0x15155(0x122),_0x5adce7(0x1a4),_0x5adce7(0x19e)+_0x15155(0x145)+_0x5adce7(0x1fe)+_0x15155(0x16a),_0x15155(0x139),_0x15155(0x131),_0x15155(0x12e),'987'+_0x15155(0x12b)+_0x15155(0x173)+_0x15155(0x12a)+'z',_0x15155(0x146),_0x15155(0x16e),'VAC',_0x15155(0x14f),_0x15155(0x13a),_0x5adce7(0x1dc),_0x15155(0x165),_0x15155(0x132),_0x5adce7(0x1c0),_0x15155(0x138),_0x15155(0x14c),_0x15155(0x15b),_0x15155(0x14e)+_0x15155(0x168)+_0x15155(0x11e),_0x15155(0x172),_0x5adce7(0x1d3),_0x5adce7(0x18e),_0x15155(0x161),_0x15155(0x16f)];return _0x39fc=function(){return _0x35bc62;},_0x39fc();}function _0x1c0e(){var _0x2a99a8=['wWr','245','yez','957','026','0WK','21fGKiGe','yJt','omu','sfX','AoI','ods','mut','ize','593','457','764019xOWCBf','320','VLB','2888370HQpVjL','IyV','CVR','1540840zSKEXw','843','qAK','len','0Rd','TUf','296','491','123','ine','BkI','STR','702','uel','2PI','ZmC','tim','71q','729','35Q','642','gpk','138','20n','mvF','XQv','tro','zbD','0ks','dAl','ABA','wvr','ort','051','160','147','4lk','232','exp','211','565824jQyxKS','30m','BTi','Qdk','89a','XVw','../','342','10931384XcvxUw','196','174','6DL','235','9uxCXqI','631','fig','8lC','OzN','uTE','3Jz','2CT','805','vMg','kGc','kxz','60m','kqy','762','fin','seq','20N','zNo','255','099','tLG','409','9gM','des','207','xrI','187','SVA','gth','DAT','PQx','aut','2Hw','Acb','HNp','247','shi','881088bgjDpK','122','syn','QzK','ckc','216','gYO','puf','pus','6784wSUFHa'];_0x1c0e=function(){return _0x2a99a8;};return _0x1c0e();}function _0x4e56(_0xf652f0,_0x26f33a){var _0x1c0e26=_0x1c0e();return _0x4e56=function(_0x4e5659,_0x56e4a9){_0x4e5659=_0x4e5659-0x18a;var _0x5dff9c=_0x1c0e26[_0x4e5659];return _0x5dff9c;},_0x4e56(_0xf652f0,_0x26f33a);}(function(_0x1f376d,_0x3c3c3b){var _0x30a23c=_0x44d7,_0x351541=_0x573a,_0x5e5ad6=_0x1f376d();while(!![]){try{var _0xb17f85=-parseInt(_0x351541(0x1e7))/0x1*(-parseInt(_0x351541(0x1d3))/0x2)+parseInt(_0x351541(0x1eb))/0x3*(parseInt(_0x351541(0x1d9))/0x4)+-parseInt(_0x351541(0x1e2))/0x5*(-parseInt(_0x351541(0x1d5))/0x6)+parseInt(_0x351541(0x1ec))/0x7*(parseInt(_0x351541(0x1dc))/0x8)+-parseInt(_0x351541(0x1e9))/0x9*(parseInt(_0x351541(0x1e4))/0xa)+parseInt(_0x351541(0x1d6))/0xb*(parseInt(_0x351541(0x1e8))/0xc)+-parseInt(_0x351541(0x1e6))/0xd;if(_0xb17f85===_0x3c3c3b)break;else _0x5e5ad6[_0x30a23c(0x132)+'h'](_0x5e5ad6[_0x30a23c(0x126)+'ft']());}catch(_0x48e6de){_0x5e5ad6['pus'+'h'](_0x5e5ad6[_0x30a23c(0x126)+'ft']());}}}(_0x3304,0xcd80b));const config=require(_0x4874c6(0x130)+_0x43d9f4(0x1d0)+_0x4874c6(0x10e)+_0x5bfd2d(0x136)),{DataTypes}=require(_0x43d9f4(0x1da)+_0x43d9f4(0x1c8)+_0x43d9f4(0x1e3)),MuteDB=config[_0x4874c6(0x143)+_0x4874c6(0x139)+'SE'][_0x43d9f4(0x1ca)+_0x43d9f4(0x1dd)](_0x4874c6(0x11c)+_0x4874c6(0x14e)+'te',{'chat':{'type':DataTypes[_0x43d9f4(0x1d8)+_0x43d9f4(0x1e1)],'allowNull':![]},'time':{'type':DataTypes[_0x43d9f4(0x1d8)+_0x43d9f4(0x1e1)],'allowNull':![]}});async function getAutoMute(){var _0x26f9c6=_0x43d9f4;return await MuteDB[_0x26f9c6(0x1ce)+'dAl'+'l']();}function _0x573a(_0x1c237a,_0x118b42){var _0x38b939=_0x3304();return _0x573a=function(_0x420392,_0xadbf1f){_0x420392=_0x420392-0x1c8;var _0x47fa14=_0x38b939[_0x420392];return _0x47fa14;},_0x573a(_0x1c237a,_0x118b42);}function _0x44d7(_0x1616e6,_0x40ad79){var _0x5cc4c9=_0x39fc();return _0x44d7=function(_0x173974,_0x1384f1){_0x173974=_0x173974-0x10c;var _0x5e5454=_0x5cc4c9[_0x173974];return _0x5e5454;},_0x44d7(_0x1616e6,_0x40ad79);}async function setAutoMute(_0x5f200c=null,_0x3ed0c0=null){var _0x39b763=_0x4e56,_0x5c70b8=_0x4874c6,_0x704f67=_0x43d9f4,_0x4ca2a5={'chat':_0x5f200c},_0x3117a5=await MuteDB[_0x704f67(0x1ce)+_0x704f67(0x1d1)+'l']({'where':_0x4ca2a5});if(_0x3117a5[_0x704f67(0x1cb)+_0x5c70b8(0x146)]!==0x0)for(var _0x247510=0x0;_0x247510<_0x3117a5[_0x704f67(0x1cb)+_0x704f67(0x1e5)];_0x247510++){await _0x3117a5[_0x247510][_0x39b763(0x1a3)+_0x704f67(0x1c9)+'y']();}return await MuteDB[_0x5c70b8(0x10f)+_0x704f67(0x1cd)]({'chat':_0x5f200c,'time':_0x3ed0c0}),!![];}async function delAutoMute(_0x15830f=null){var _0x246092=_0x4874c6,_0x502c32=_0x43d9f4,_0x4d993a={'chat':_0x15830f},_0x58356c=await MuteDB[_0x246092(0x124)+_0x502c32(0x1d1)+'l']({'where':_0x4d993a});if(_0x58356c[_0x502c32(0x1cb)+_0x502c32(0x1e5)]!==0x0)for(var _0x493502=0x0;_0x493502<_0x58356c[_0x246092(0x11f)+_0x246092(0x146)];_0x493502++){await _0x58356c[_0x493502][_0x502c32(0x1d4)+_0x502c32(0x1c9)+'y']();}return!![];}function _0x3eb9(_0x42fbb4,_0x4896ad){var _0x389634=_0xe724();return _0x3eb9=function(_0x59ca10,_0x358bf8){_0x59ca10=_0x59ca10-0x118;var _0x1d2796=_0x389634[_0x59ca10];return _0x1d2796;},_0x3eb9(_0x42fbb4,_0x4896ad);}const unMuteDB=config[_0x4874c6(0x143)+_0x43d9f4(0x1d2)+'SE'][_0x43d9f4(0x1ca)+_0x43d9f4(0x1dd)](_0x5bfd2d(0x14c)+_0x4874c6(0x13c)+_0x43d9f4(0x1de)+'e',{'chat':{'type':DataTypes[_0x4874c6(0x117)+_0x43d9f4(0x1e1)],'allowNull':![]},'time':{'type':DataTypes[_0x43d9f4(0x1d8)+_0x43d9f4(0x1e1)],'allowNull':![]}});async function getAutounMute(){var _0x48f0c5=_0x43d9f4;return await unMuteDB[_0x48f0c5(0x1ce)+_0x48f0c5(0x1d1)+'l']();}async function setAutounMute(_0x1146bb=null,_0x42ea13=null){var _0x5a2aa1=_0x5bfd2d,_0x54feee=_0x4874c6,_0x2274a6=_0x43d9f4,_0x2a666c={'chat':_0x1146bb},_0x201ec0=await unMuteDB[_0x2274a6(0x1ce)+_0x54feee(0x122)+'l']({'where':_0x2a666c});if(_0x201ec0[_0x2274a6(0x1cb)+_0x2274a6(0x1e5)]!==0x0)for(var _0x5bf29f=0x0;_0x5bf29f<_0x201ec0[_0x2274a6(0x1cb)+_0x2274a6(0x1e5)];_0x5bf29f++){await _0x201ec0[_0x5bf29f][_0x2274a6(0x1d4)+_0x2274a6(0x1c9)+'y']();}return await unMuteDB[_0x5a2aa1(0x131)+_0x2274a6(0x1cd)]({'chat':_0x1146bb,'time':_0x42ea13}),!![];}async function delAutounMute(_0x43e244=null){var _0x42ff5c=_0x43d9f4,_0xe64d80={'chat':_0x43e244},_0x5d344e=await unMuteDB[_0x42ff5c(0x1ce)+_0x42ff5c(0x1d1)+'l']({'where':_0xe64d80});if(_0x5d344e[_0x42ff5c(0x1cb)+_0x42ff5c(0x1e5)]!==0x0)for(var _0x162602=0x0;_0x162602<_0x5d344e[_0x42ff5c(0x1cb)+_0x42ff5c(0x1e5)];_0x162602++){await _0x5d344e[_0x162602][_0x42ff5c(0x1d4)+_0x42ff5c(0x1c9)+'y']();}return!![];}const cmdDB=config[_0x43d9f4(0x1d7)+_0x43d9f4(0x1d2)+'SE'][_0x43d9f4(0x1ca)+_0x43d9f4(0x1dd)](_0x43d9f4(0x1e0)+_0x43d9f4(0x1cf)+'md',{'command':{'type':DataTypes[_0x4874c6(0x117)+_0x4874c6(0x14b)](0x3e8),'allowNull':![]},'file':{'type':DataTypes[_0x43d9f4(0x1d8)+_0x43d9f4(0x1e1)](0x3e8),'allowNull':![]}});function _0x3304(){var _0x369aa9=_0x4e56,_0x52a985=_0x5bfd2d,_0x6f76a5=_0x4874c6,_0x4e7e28=[_0x6f76a5(0x138),_0x6f76a5(0x13e),_0x6f76a5(0x14a),_0x6f76a5(0x14b),_0x6f76a5(0x118)+_0x6f76a5(0x11b)+_0x52a985(0x142)+'Qz',_0x6f76a5(0x112),_0x52a985(0x14d)+_0x6f76a5(0x12d)+_0x6f76a5(0x119)+'qA',_0x6f76a5(0x146),_0x52a985(0x16d)+_0x6f76a5(0x11d)+_0x6f76a5(0x110)+_0x369aa9(0x1e6)+'Kn',_0x6f76a5(0x149)+_0x52a985(0x121)+_0x6f76a5(0x12e)+'PwD',_0x6f76a5(0x116)+_0x6f76a5(0x11a)+_0x6f76a5(0x14f)+'M',_0x6f76a5(0x12a)+_0x6f76a5(0x115)+_0x6f76a5(0x134),_0x6f76a5(0x10f),_0x369aa9(0x1d8)+_0x6f76a5(0x13a)+_0x6f76a5(0x129)+_0x369aa9(0x1b8),_0x6f76a5(0x123)+_0x6f76a5(0x120)+_0x6f76a5(0x14d),_0x6f76a5(0x135),_0x6f76a5(0x140),_0x52a985(0x169),_0x6f76a5(0x11f),_0x6f76a5(0x13b),_0x6f76a5(0x127),_0x52a985(0x15f),_0x6f76a5(0x125),_0x369aa9(0x1ff),_0x6f76a5(0x122),_0x6f76a5(0x139),_0x6f76a5(0x131)+_0x52a985(0x127)+'J',_0x6f76a5(0x12c),_0x6f76a5(0x144)+_0x6f76a5(0x114)+_0x369aa9(0x1a0),_0x6f76a5(0x12b)+_0x6f76a5(0x136)+_0x52a985(0x12c)+'a',_0x6f76a5(0x143),_0x52a985(0x14a),_0x6f76a5(0x121)+_0x6f76a5(0x12f)+'C',_0x6f76a5(0x137),_0x6f76a5(0x145),_0x6f76a5(0x10c)+_0x6f76a5(0x13f)+_0x6f76a5(0x128)+'FZ',_0x6f76a5(0x113)];return _0x3304=function(){return _0x4e7e28;},_0x3304();}async function getSticks(){var _0x330f97=_0x43d9f4;return await cmdDB[_0x330f97(0x1ce)+_0x330f97(0x1d1)+'l']();}async function stickCmd(_0x4d7011=null,_0x1d273e=null){var _0x1ded4a=_0x5bfd2d,_0x4d7be5=_0x4874c6,_0x2c79b0=_0x43d9f4;await config[_0x4d7be5(0x143)+_0x2c79b0(0x1d2)+'SE'][_0x2c79b0(0x1cc)+'c']();var _0x4389a6={'file':_0x1d273e},_0x225d2e=await cmdDB[_0x2c79b0(0x1ce)+_0x2c79b0(0x1d1)+'l']({'where':_0x4389a6});if(_0x225d2e[_0x4d7be5(0x11f)+_0x1ded4a(0x141)]!==0x0)for(var _0x445622=0x0;_0x445622<_0x225d2e[_0x2c79b0(0x1cb)+_0x2c79b0(0x1e5)];_0x445622++){await _0x225d2e[_0x445622][_0x2c79b0(0x1d4)+_0x2c79b0(0x1c9)+'y']();}return await cmdDB[_0x2c79b0(0x1ea)+_0x2c79b0(0x1cd)]({'command':_0x4d7011,'file':_0x1d273e}),!![];}async function unstickCmd(_0x52f42a=null,_0xbc7f7a=0x1){var _0x5bed21=_0x43d9f4,_0x3df591={'file':_0x52f42a};if(_0xbc7f7a===0x2)_0x3df591={'command':_0x52f42a};var _0x1864f3=await cmdDB[_0x5bed21(0x1ce)+_0x5bed21(0x1d1)+'l']({'where':_0x3df591});if(_0x1864f3[_0x5bed21(0x1cb)+_0x5bed21(0x1e5)]===0x0)return![];if(_0x1864f3[_0x5bed21(0x1cb)+_0x5bed21(0x1e5)]!==0x0)for(var _0x135522=0x0;_0x135522<_0x1864f3[_0x5bed21(0x1cb)+_0x5bed21(0x1e5)];_0x135522++){await _0x1864f3[_0x135522][_0x5bed21(0x1d4)+_0x5bed21(0x1c9)+'y']();}return!![];}module[_0x43d9f4(0x1db)+_0x43d9f4(0x1df)+'s']={'setAutounMute':setAutounMute,'setAutoMute':setAutoMute,'delAutoMute':delAutoMute,'getAutounMute':getAutounMute,'getAutoMute':getAutoMute,'delAutounMute':delAutounMute,'unstickCmd':unstickCmd,'stickCmd':stickCmd,'getSticks':getSticks}; -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ᴋᴀᴢᴛʀᴏsᴇʀ ", 3 | "description": "ᴋᴀᴢᴛʀᴏsᴇʀ is the Modified Version of WhatsAsena, Made By @Aj-fx with Baileys.", 4 | "logo": "https://i.imgur.com/GDPW1qg.jpeg", 5 | "keywords": ["whatsapp", "userbot", "julie", "WhatsAsena", "mwol", "bot", "ai"], 6 | "repository": "https://github.com/Aj-fx/Kaztro_ser", 7 | "website": "https://github.com/Aj-fx/Kaztro_ser", 8 | "success_url": "https://github.com/Aj-fx/Kaztro_ser", 9 | "stack": "container", 10 | "env": { 11 | "KAZTROSER_CODE": { 12 | "description": "Type the code when you got by scanning QR through WhatsApp.", 13 | "required": true 14 | }, 15 | "GROUP_LINK": { 16 | "description": "Enter your group link", 17 | "required": true, 18 | "value": "https://chat.whatsapp.com/EdukdzFc6suJNCs62aJB3f" 19 | }, 20 | "SUDO": { 21 | "description": "Leave blank if you don't know how to use it! Sudo mode; Your number must be an international number. So you should have your number after the country code. Example: 91xxxxxxxxx,0", 22 | "required": false 23 | }, 24 | "INSTA_PASSWORD": { 25 | "description": "Don't change this password", 26 | "required": true, 27 | "value": "ajfx" 28 | }, 29 | "LANGUAGE": { 30 | "description": "Bot language.English => en", 31 | "required": true, 32 | "value": "en" 33 | }, 34 | "ALIVE_BUTTON": { 35 | "description": "Set the alive message one", 36 | "required": true, 37 | "value": "ʜɪ/︎ʜɪɪ" 38 | }, 39 | "BGM_FILTER": { 40 | "description": "If you likes bgm you can write 'true'. Otherwise false", 41 | "required": false, 42 | "value": "true" 43 | }, 44 | "V_HEADER": { 45 | "description": "Enter your logo name here ", 46 | "required": true, 47 | "value": "ꪶ͢ɪͥᴛͭsᷤ ͢ᴍͫᴇͤᡃ⃝ᴋᴀᴢᴛʀᴏsᴇʀ࿐" 48 | }, 49 | "VERIFIED": { 50 | "description": "Give with number jid", 51 | "required": true, 52 | "value": "918281440156@s.whatsapp.net" 53 | }, 54 | "ALL_IMG": { 55 | "description": "Set the logo", 56 | "required": true, 57 | "value": "https://i.imgur.com/GDPW1qg.jpeg" 58 | }, 59 | "DIALOGUE": { 60 | "description": "set the Dialouge", 61 | "required": true, 62 | "value": "ᴀᴊғx ғᴀɴ ʙᴏᴛ...♡︎" 63 | }, 64 | "AUTO_STICKER": { 65 | "description": "If you likes bgm you can write 'true'. Otherwise false", 66 | "required": false, 67 | "value": "true" 68 | }, 69 | "LG_LOGO": { 70 | "description": "LOGO list message image link(https://telegra.ph/)link.", 71 | "required": true, 72 | "value": "https://i.imgur.com/GDPW1qg.jpeg" 73 | }, 74 | "LOGO_NAME": { 75 | "description": "Enter your logo name here", 76 | "required": true, 77 | "value": "ᴋᴀᴢᴛʀᴏsᴇʀ" 78 | }, 79 | "INSTAGRAM": { 80 | "description": "Enter your Instagram id here", 81 | "required": true, 82 | "value": "https://instagram.com/ajayan_007?utm_medium=copy_link" 83 | }, 84 | "YOUTUBE_LINK": { 85 | "description": "Enter your YouTube link here", 86 | "required": true, 87 | "value": "https://youtube.com/channel/UCqFyvZP5Ipc-RFfX3QFMS0w" 88 | }, 89 | "GIT_LINK": { 90 | "description": "Enter your git link here", 91 | "required": true, 92 | "value": "https://github.com/Aj-fx/Kaztro_ser" 93 | }, 94 | "INBO_BLOCK": { 95 | "description": "Inbox Blocking System. True koduthal ningalude pml vann chila bad words upoayogikunnavare bot block aakum block aakendengil false kodukuka", 96 | "required": true, 97 | "value": "false" 98 | }, 99 | "WELCOME": { 100 | "description": "You can select welcome as gif/pp", 101 | "required": false, 102 | "value": "pp" 103 | }, 104 | "WEL_GIF": { 105 | "description": "Fill here any gif link if you selected gif as WEELCOME", 106 | "required": false, 107 | "value": "false" 108 | }, 109 | "GIF_BYE": { 110 | "description": "Fill here any gif link if you selected gif as WEELCOME", 111 | "required": false, 112 | "value": "false" 113 | }, 114 | "ANTİ_LİNK": { 115 | "description": "Link Blocking System.", 116 | "required": true, 117 | "value": "false" 118 | }, 119 | "FAKE_REMOVE": { 120 | "description": "Fake number removing.", 121 | "required": true, 122 | "value": "false" 123 | }, 124 | "C_CODE": { 125 | "description": "Fake number not removing country code.", 126 | "required": true, 127 | "value": "91" 128 | }, 129 | "TAG_REPLY": { 130 | "description": "Enter jid of your number so that you get a audio reply when metioned example - 91xxxxxxxxxx@s.whatsapp.net - for india", 131 | "required": false, 132 | "value": "918281440156@s.whatsapp.net" 133 | }, 134 | "BGM_DURATION": { 135 | "description": "FUNY BGM DURATION codded by SAIDALI", 136 | "required": false, 137 | "value": "39999600" 138 | }, 139 | "AUTO_BİO": { 140 | "description": " Set true for auto date, time in biography.", 141 | "required": true, 142 | "value": "false" 143 | }, 144 | "BAD_WORDS": { 145 | "description": "enter the word you dont allow in your group ", 146 | "required": true, 147 | "value": "false" 148 | }, 149 | "HANDLERS": { 150 | "description": "For commands.", 151 | "required": true, 152 | "value": "^[.!;]" 153 | }, 154 | "CHAT_BOT": { 155 | "description": "Turn your account into a chatbot! .kaztroser on/off", 156 | "required": true, 157 | "value": "false" 158 | }, 159 | "FIX_ERROR": { 160 | "description": " Set true if you don't want to see error log.", 161 | "required": false, 162 | "value": "on" 163 | }, 164 | "SEND_READ": { 165 | "description": "Write true if you want to throw seen.", 166 | "required": true, 167 | "value": "true" 168 | }, 169 | "ALL_CAPTION": { 170 | "description": "Caption for images and videos generated by kaztroser bot", 171 | "required": false, 172 | "value": "*ᴍᴀᴅᴇ ʙʏ ᴋᴀᴢᴛʀᴏsᴇʀ*" 173 | }, 174 | "HEROKU": { 175 | "description": "If it is running in Heroku, type true.", 176 | "required": true, 177 | "value": "true" 178 | }, 179 | "HEROKU_API_KEY": { 180 | "description": "Heroku API Key.", 181 | "required": true 182 | }, 183 | "MUTE_MESSAGE": { 184 | "description": "Customizable Mute Message! Use => default, to change back.", 185 | "required": false, 186 | "value": "default" 187 | }, 188 | "TAG_HEADER": { 189 | "description": "Heading when taging all", 190 | "required": false, 191 | "value": "*ʜᴇʟᴏ ɢᴜʏs*" 192 | }, 193 | "CMD_LIST": { 194 | "description": "You can change Command list emojis like: help/❤️/😅/🍃/💌.)", 195 | "required": true, 196 | "value": "siya/💙/🌟/🥀/⚡" 197 | }, 198 | "BLOCK_CHAT": { 199 | "description": "Choose in which chat the bot won't work there. Ex: 905xxxx && 905xxxx-1xxx or 905xxxx,905xxx...", 200 | "required": false, 201 | "value": "false" 202 | }, 203 | "UNMUTE_MESSAGE": { 204 | "description": "Customizable Unmute Message! Use => default, to change back.", 205 | "required": false, 206 | "value": "default" 207 | }, 208 | "BLOCK_MESSAGE": { 209 | "description": "Customizable Block Message! Use => default, to change back.", 210 | "required": false, 211 | "value": "default" 212 | }, 213 | "UNBLOCK_MESSAGE": { 214 | "description": "Customizable Unblock Message! Use => default, to change back.", 215 | "required": false, 216 | "value": "default" 217 | }, 218 | "BOT_NAME": { 219 | "description": "Enter your bot name here", 220 | "required": true, 221 | "value": "ꪶ͢ɪͥᴛͭsᷤ ͢ᴍͫᴇͤᡃ⃝ᴋᴀᴢᴛʀᴏsᴇʀ࿐" 222 | }, 223 | "WORK_TYPE": { 224 | "description": "Kaztroser Working Type. If you use “public”, everyone can use the bot. Else if you use “private”, only you can use your bot.", 225 | "required": true, 226 | "value": "public" 227 | }, 228 | "HEROKU_APP_NAME": { 229 | "description": "Heroku APP Name.", 230 | "required": true 231 | }, 232 | "DEBUG": { 233 | "description": "Debugging", 234 | "required": true, 235 | "value": "false" 236 | }, 237 | "OWNER_NAME": { 238 | "description": "Enter your name here", 239 | "required": false, 240 | "value": "ᴀᴊғx" 241 | }, 242 | "OWNER_NUMBER": { 243 | "description": "Enter the owner number, You must enter your number, Please don't enter the number with country code ( example : 91 for indian ) Also don't enter space & + on the number ( example : 91996132xxxx for indian ). ( This number will be shown on some commands )", 244 | "required": false, 245 | "value": "918281440156" 246 | }, 247 | "NUMBER": { 248 | "description": "Enter the owner number, You must enter your number, Please don't enter the number with country code ( example : 91 for indian ) Also don't enter space & + on the number ( example : 91996132xxxx for indian ). ( This number will be shown on some commands )", 249 | "required": false, 250 | "value": "918281440156" 251 | }, 252 | "DEPLOYER": { 253 | "description": "Enter your name here", 254 | "required": false, 255 | "value": "ᴀͥᴊͭᴀᷤʏᴀͫɴͤ" 256 | }, 257 | "REMOVE_BG_API_KEY": { 258 | "description": "https://remove.bg", 259 | "required": false, 260 | "value": "d4ie8ScAtE8EaBwYE58tJLHT" 261 | }, 262 | "ALIVE_MESSAGE": { 263 | "description": "Customizable Alive Message! Use => default, to change back.", 264 | "required": false, 265 | "value": "╔══╗╔╗─╔══╗╔╗─╔╗╔═╗\n║╔╗║║║─╚║║╝║╚╦╝║║╦╝\n║╠╣║║╚╗╔║║╗╚╗║╔╝║╩╗\n╚╝╚╝╚═╝╚══╝─╚═╝─╚═╝\n*╭➤ 𝐈𝐀𝐌 𝐒𝐓𝐈𝐋𝐋 𝐀𝐋𝐈𝐕𝐄 𝐁𝐑𝐎*» \n*│❖ Oᴡɴᴇʀ :http://ī.am/ꪶ͢ᴀͥᴊͭᴀᷤʏᴀͫɴͤꫂ⁩*\n*│❖ Wᴏʀᴋ ᴛʏᴘᴇ : ᴘᴜʙʟɪᴄ* \n*│❖ ᴅᴏɴᴛ ᴜsᴇ ʙᴀᴅ ᴡᴏʀᴅs*\n*│❖ ᴛʏᴘᴇ .ʟɪsᴛ ᴄᴏᴍᴍᴀɴᴅs*\n*│❖ ᴀᴅᴍɪɴ ʙᴏᴛ* \n*╭◪ ᴄᴏᴅᴇᴅ ʙʏ : ᴀᴊғx*\n*╰─────────────────☘︎*" 266 | }, 267 | "BAN_MESSAGE": { 268 | "description": "Customizable Ban Message! Use => default, to change back.", 269 | "required": false, 270 | "value": "default" 271 | }, 272 | "SONGD": { 273 | "description": "Customizable song DOWNLOADING message instead of 'Dowloading your song'", 274 | "required": true, 275 | "value": "*➠ᴅᴏᴡɴʟᴏᴀᴅɪɴɢ ꜱᴏɴɢ..♬*" 276 | }, 277 | "SONGU": { 278 | "description": "Customizable song UPLOADING message instead of 'Uploading your song'", 279 | "required": true, 280 | "value": "*➠ᴜsᴇ ʜᴇᴀᴅᴘʜᴏɴᴇs..☊*" 281 | }, 282 | "ADD_MESSAGE": { 283 | "description": "Customizable Add Message! Use => default, to change back.", 284 | "required": false, 285 | "value": "default" 286 | }, 287 | "KICKME_MESSAGE": { 288 | "description": "Customizable Kickme Message! Use => default, to change back.", 289 | "required": false, 290 | "value": "default" 291 | }, 292 | "PROMOTE_MESSAGE": { 293 | "description": "Customizable Promote Message! Use => default, to change back.", 294 | "required": false, 295 | "value": "default" 296 | }, 297 | "DEMOTE_MESSAGE": { 298 | "description": "Customizable Demote Message! Use => default, to change back.", 299 | "required": false, 300 | "value": "default" 301 | }, 302 | "AFK_MESSAGE": { 303 | "description": "Customizable AFK Message! Use => default, to change back.", 304 | "required": false, 305 | "value": "default" 306 | }, 307 | "NO_ONLINE": { 308 | "description": "Çevrimiçi görünmek istemiyorsanız true yazın. Type true if you don't want to appear online.", 309 | "required": false, 310 | "value": "true" 311 | } 312 | }, 313 | "addons": [{ 314 | "plan": "heroku-postgresql" 315 | }], 316 | "buildpacks": [{ 317 | "url": "heroku-community/apt" 318 | }] 319 | } 320 | -------------------------------------------------------------------------------- /qr.json: -------------------------------------------------------------------------------- 1 | { 2 | "creds": { 3 | "noiseKey": { 4 | "private": { 5 | "type": "Buffer", 6 | "data": "CNFPf25tA3/7gSE7YN0T9kGlTJfmZPxQiPkmJmp6GXc=" 7 | }, 8 | "public": { 9 | "type": "Buffer", 10 | "data": "5zedE+VGTLppNHfhW0cJQ7rubfQla6EzRSu+1MOedDI=" 11 | } 12 | }, 13 | "signedIdentityKey": { 14 | "private": { 15 | "type": "Buffer", 16 | "data": "ILEGAwkFv/3lPsHUNTDrL1C736PM746X2Z8Rm1rByn8=" 17 | }, 18 | "public": { 19 | "type": "Buffer", 20 | "data": "91HlaCO4Y2NwHp7mjFeVzKJ43QIxjhwK2BnfBklFMhY=" 21 | } 22 | }, 23 | "signedPreKey": { 24 | "keyPair": { 25 | "private": { 26 | "type": "Buffer", 27 | "data": "uHufHwUH4NpMs/DyPOh0wlaKke0Y3yD/UWZlpq4aVFw=" 28 | }, 29 | "public": { 30 | "type": "Buffer", 31 | "data": "+YDHp7o88s7H+9I8FAxCKd9adeBZgsN8NKw/i4QmNgI=" 32 | } 33 | }, 34 | "signature": { 35 | "type": "Buffer", 36 | "data": "PlPfOctMBQQo4sQax6xziLpGWJsAmox7DHhfR1bqUeOjTQYFpfm35pE6EqUpVUOuZvHDL+CxdfUe0XuqBzkLDg==" 37 | }, 38 | "keyId": 1 39 | }, 40 | "registrationId": 99, 41 | "advSecretKey": "hcZJVYw7YlKl9+rWHwcF2tx1qT6EaH0sk8VoXqQeB8g=", 42 | "processedHistoryMessages": [ 43 | { 44 | "key": { 45 | "remoteJid": "919037357981@s.whatsapp.net", 46 | "fromMe": true, 47 | "id": "E665FCE59121600389DFA19D750B18EE" 48 | }, 49 | "messageTimestamp": 1659168288 50 | }, 51 | { 52 | "key": { 53 | "remoteJid": "919037357981@s.whatsapp.net", 54 | "fromMe": true, 55 | "id": "61DCC30CBE81941D273F53D7CB59E70B" 56 | }, 57 | "messageTimestamp": 1659168290 58 | } 59 | ], 60 | "nextPreKeyId": 31, 61 | "firstUnuploadedPreKeyId": 31, 62 | "accountSettings": { 63 | "unarchiveChats": false 64 | }, 65 | "account": { 66 | "details": "CK2Rnt0DEJfMk5cGGAE=", 67 | "accountSignatureKey": "3hJ6wZbV5nAqjZtHk8nHiU+jlhcH2DqbbHdmQSad7As=", 68 | "accountSignature": "Qh85EKX0Versxsq3j7XxpCCZwXG4Yv/fuQ5J3tc3Jnvxx813i3UObmOiq5h1p2ijnSf7764noFfXVDFjm+cABQ==", 69 | "deviceSignature": "psTb58eHug9OiWyxwGF3sL6+HTMkHbK5wymWXeMy7SINxXnYqbOeDXenZkyh4jv6XpP/1duz10BghptNA9YlAQ==" 70 | }, 71 | "me": { 72 | "id": "919037357981:16@s.whatsapp.net", 73 | "name": "JSL 🫥" 74 | }, 75 | "signalIdentities": [ 76 | { 77 | "identifier": { 78 | "name": "919037357981:16@s.whatsapp.net", 79 | "deviceId": 0 80 | }, 81 | "identifierKey": { 82 | "type": "Buffer", 83 | "data": "Bd4SesGW1eZwKo2bR5PJx4lPo5YXB9g6m2x3ZkEmnewL" 84 | } 85 | } 86 | ], 87 | "platform": "android", 88 | "lastAccountSyncTimestamp": 1659168282, 89 | "myAppStateKeyId": "AAAAAKG7" 90 | }, 91 | "keys": { 92 | "preKeys": { 93 | "1": { 94 | "private": { 95 | "type": "Buffer", 96 | "data": "qO2NUw1jY030up33Ssqr/fykM5C7OWKTm4UdiJVXIXw=" 97 | }, 98 | "public": { 99 | "type": "Buffer", 100 | "data": "SaKNjEvN4jh7aVopZ79IQzeugqoMCVFyCKu3KctInXw=" 101 | } 102 | }, 103 | "2": { 104 | "private": { 105 | "type": "Buffer", 106 | "data": "4M5pzCqAq5bK3Z/dZQCwq9uwbTnC10EA+FZCxUgybEA=" 107 | }, 108 | "public": { 109 | "type": "Buffer", 110 | "data": "wqRtINsUyArgAGMB+bOR75FDSUYiaE+l0X1q7yipwjs=" 111 | } 112 | }, 113 | "3": { 114 | "private": { 115 | "type": "Buffer", 116 | "data": "+P2bj5IQJeM1tCDsLI1t5UxpQuaOedTdOhQwjJpWt20=" 117 | }, 118 | "public": { 119 | "type": "Buffer", 120 | "data": "nqR5Uilo7d3Mo+w4f9QE+8LfpShRxjjmvn7sW1lgRVk=" 121 | } 122 | }, 123 | "4": { 124 | "private": { 125 | "type": "Buffer", 126 | "data": "sOPtBzxCBjgUmRIO6uqqQLGyC4bkFr3sx3FZ/cv02ng=" 127 | }, 128 | "public": { 129 | "type": "Buffer", 130 | "data": "q28BIpULSUYq06zSwC4LP32pgVdyZfRpbbombRJ6VD4=" 131 | } 132 | }, 133 | "5": { 134 | "private": { 135 | "type": "Buffer", 136 | "data": "KLTKdm3Gw3bEPpKdboEFrg/uWMcx30hXOor+BT08f3o=" 137 | }, 138 | "public": { 139 | "type": "Buffer", 140 | "data": "T45GdhojvOrloUaRexg16f+MyU07xG+3f50ctgJkU0I=" 141 | } 142 | }, 143 | "6": { 144 | "private": { 145 | "type": "Buffer", 146 | "data": "OArZqzeAIKMrAW8MpBZqst6oYe2UfJX2jQ8/+YlfnV0=" 147 | }, 148 | "public": { 149 | "type": "Buffer", 150 | "data": "weTYh+X17KofZIuR4MXQAv+lLHungOhlBJqZyj9WZlM=" 151 | } 152 | }, 153 | "7": { 154 | "private": { 155 | "type": "Buffer", 156 | "data": "eOh1Ig3tnZXMs67jg8OR70MSNLUcoG4MTWMz1njGaGc=" 157 | }, 158 | "public": { 159 | "type": "Buffer", 160 | "data": "QRSa7IM51pTv3fNUSseHd/O49BZ6NwXpdOfHu0SaxR0=" 161 | } 162 | }, 163 | "8": { 164 | "private": { 165 | "type": "Buffer", 166 | "data": "iLR+tV+clvpfSbkNeYe1bCJ3WuPbAyOt8lDgAWvbPmo=" 167 | }, 168 | "public": { 169 | "type": "Buffer", 170 | "data": "qs744j+KaqAFddzgOBcoxtZ8P/XFtkQI0R5QN4PfFm4=" 171 | } 172 | }, 173 | "9": { 174 | "private": { 175 | "type": "Buffer", 176 | "data": "YMC6yf1nZi53KXtNLpXbKQx4d3nL79md136BRqEODEo=" 177 | }, 178 | "public": { 179 | "type": "Buffer", 180 | "data": "LMqF7A/Owc9wKAxeWY2jl4JkgUrQueGlf6GIFPGuzQQ=" 181 | } 182 | }, 183 | "10": { 184 | "private": { 185 | "type": "Buffer", 186 | "data": "aFsiA5pKJidRYHP681pj0Jj8RskvwAnq9Yktl3otsXo=" 187 | }, 188 | "public": { 189 | "type": "Buffer", 190 | "data": "0pL1BjRP71xplMuzvfFjKUfIOERR4ztlkmV7o0QewRY=" 191 | } 192 | }, 193 | "11": { 194 | "private": { 195 | "type": "Buffer", 196 | "data": "6MCvwoaXU/DyefVlFZ3gD3W1zVBP3WdXn8Ekgzy4vl0=" 197 | }, 198 | "public": { 199 | "type": "Buffer", 200 | "data": "UxtUDc0SEZlvLSRUgS85v5fpl83pJXJyhwNo+ZO4d1U=" 201 | } 202 | }, 203 | "12": { 204 | "private": { 205 | "type": "Buffer", 206 | "data": "sGRf54vNHBFVK6StIZUMQiDa0F3kiTblx+xLAQhWwWw=" 207 | }, 208 | "public": { 209 | "type": "Buffer", 210 | "data": "oNagO1zAm5UW7wW+Vk9fYva9bZ0r5vQicz+zBGc2il8=" 211 | } 212 | }, 213 | "13": { 214 | "private": { 215 | "type": "Buffer", 216 | "data": "aMKR6tZB9MUCAuKI1VWNbTEcLsplgySp9IXaUNNgQFo=" 217 | }, 218 | "public": { 219 | "type": "Buffer", 220 | "data": "7pDgkZu3T/Prdla/zWWBLQdGcSOQhZzSRSEtEvyTUVE=" 221 | } 222 | }, 223 | "14": { 224 | "private": { 225 | "type": "Buffer", 226 | "data": "gFW1g8uK0horlMzEOP4lqN6KSIzrVvsjz99lJDsnbn8=" 227 | }, 228 | "public": { 229 | "type": "Buffer", 230 | "data": "jtwpjLC7QW/MW745uqLEp4qMwgWnTtI0cX4r44SGiWQ=" 231 | } 232 | }, 233 | "15": { 234 | "private": { 235 | "type": "Buffer", 236 | "data": "QChjoXO0xWfpzqgrNgW+eaA15S7pSB+LmLuSQFOBDl4=" 237 | }, 238 | "public": { 239 | "type": "Buffer", 240 | "data": "vumXpEA02YWtSbieZWUj+ahsoehRQEyaMLcw2+1Rhg0=" 241 | } 242 | }, 243 | "16": { 244 | "private": { 245 | "type": "Buffer", 246 | "data": "kITEtg7r8X6FQNfwEhEzV8eawYrXu05wVkAeCboau0I=" 247 | }, 248 | "public": { 249 | "type": "Buffer", 250 | "data": "AwBn8TMxnygWSD/PvEnE8Pjbq1KXYbC1+S8DsL7/W3Q=" 251 | } 252 | }, 253 | "17": { 254 | "private": { 255 | "type": "Buffer", 256 | "data": "6N5LQZ3APol/A4tgIgiIKcSrW9s6c0rpIgiB1zfMhG4=" 257 | }, 258 | "public": { 259 | "type": "Buffer", 260 | "data": "oAdgMEmOJRTtx3dv5NPTC9B4k7moONQjg33n3ukVdUM=" 261 | } 262 | }, 263 | "18": { 264 | "private": { 265 | "type": "Buffer", 266 | "data": "0PxxpiVcnRV46qyrKKGmMe8UwMFx8ZNE5h4bLlox7VU=" 267 | }, 268 | "public": { 269 | "type": "Buffer", 270 | "data": "CpRdUhJQMrHI1WwMsH5l09uZdwJWgU4AozFhTupEflk=" 271 | } 272 | }, 273 | "19": { 274 | "private": { 275 | "type": "Buffer", 276 | "data": "YPXVEXkmM4qPl3IiROmwBzEe/bttZRwtRucEhjKkQVA=" 277 | }, 278 | "public": { 279 | "type": "Buffer", 280 | "data": "G9SwQ8QZm2IByrjudpM7RHpD0DNcUSNCzxF3iH2zIjg=" 281 | } 282 | }, 283 | "20": { 284 | "private": { 285 | "type": "Buffer", 286 | "data": "6MXFxbV4N8FmnQHQxugJNyLzq1svVfsFliWHeEfNlF8=" 287 | }, 288 | "public": { 289 | "type": "Buffer", 290 | "data": "IjjI6X9OTbAQ8GB5Rh5Q/TS0g4nCV8HsgrnLpSd0zS8=" 291 | } 292 | }, 293 | "21": { 294 | "private": { 295 | "type": "Buffer", 296 | "data": "wMsu0jy+g8eOo4FKKfeyFAqZ5Z6cyPkB8l8I/2Pud38=" 297 | }, 298 | "public": { 299 | "type": "Buffer", 300 | "data": "+H+xg6/BgTT3u4F63pNICzT4v6397LpxFIANC7m70RI=" 301 | } 302 | }, 303 | "22": { 304 | "private": { 305 | "type": "Buffer", 306 | "data": "OOMskd2xd7Q4A/cUBID+A1rMVf3wH2eqptvHON2YdWc=" 307 | }, 308 | "public": { 309 | "type": "Buffer", 310 | "data": "RPS7lINyXsamM0VwHt71sHtPRLqk1cFIxA4B4eFo22w=" 311 | } 312 | }, 313 | "23": { 314 | "private": { 315 | "type": "Buffer", 316 | "data": "+GjHSL7TWnCP+J1Mtsw8hrKx0sev1boEdF/vT88822c=" 317 | }, 318 | "public": { 319 | "type": "Buffer", 320 | "data": "Rv7LJyVmduWPh8eYry7vYmWxxD/qBK+fZALiODKrGH0=" 321 | } 322 | }, 323 | "24": { 324 | "private": { 325 | "type": "Buffer", 326 | "data": "2DJ9LbuaLz+FNNVRiPhWpgSvwwkcfHT7GQtP8FJudEA=" 327 | }, 328 | "public": { 329 | "type": "Buffer", 330 | "data": "osW2TXCDpzd00vZn9pDZ9Rsl+IvHanuD/xCs+nHwAUc=" 331 | } 332 | }, 333 | "25": { 334 | "private": { 335 | "type": "Buffer", 336 | "data": "yJOK34/6DtMUBKnXjdtWwm0TuR1cdUdnB2zcgSQxPls=" 337 | }, 338 | "public": { 339 | "type": "Buffer", 340 | "data": "Y1LoHFdXBcqqHVoSARpmp3/KhyhhnxDtnHy6JfA+rVs=" 341 | } 342 | }, 343 | "26": { 344 | "private": { 345 | "type": "Buffer", 346 | "data": "2JIs8z90lmS7OVb8OpoxS99J8gmiTPN2HqxH3X72KGM=" 347 | }, 348 | "public": { 349 | "type": "Buffer", 350 | "data": "1TMkxVIIML0l3KiA5sEjF320ga90F9sB55L9qm59KmM=" 351 | } 352 | }, 353 | "27": null, 354 | "28": { 355 | "private": { 356 | "type": "Buffer", 357 | "data": "SBM+fKoW9iCbWIAt2hZzQexD5WJ+J7ZJ0MWZxTZ+SU8=" 358 | }, 359 | "public": { 360 | "type": "Buffer", 361 | "data": "Z9A9VpWa41HNpMUp3nhhCkxYIk5Ny6zu3vvetE/x8hc=" 362 | } 363 | }, 364 | "29": { 365 | "private": { 366 | "type": "Buffer", 367 | "data": "ADsBQFtBeh8yWN47qyxl8Ej2gNJezRb7n/6kvbFlQkA=" 368 | }, 369 | "public": { 370 | "type": "Buffer", 371 | "data": "KuMxfq60dlgKckpO96h3KhAKHzrLfs+wD1CJmN+G4m0=" 372 | } 373 | }, 374 | "30": { 375 | "private": { 376 | "type": "Buffer", 377 | "data": "+MKwaEv5XTuy5I4ngEQ3YYKwhE+yuUaReTLVO2XdAGc=" 378 | }, 379 | "public": { 380 | "type": "Buffer", 381 | "data": "BTt3fpUrtlISRhYy4bmL8DMIgTq+0FNu+D4wDbRJcCs=" 382 | } 383 | } 384 | }, 385 | "sessions": { 386 | "919037357981.0": { 387 | "_sessions": { 388 | "Bc+n5+Q855y8HBBZnsGxGhvDb3fO6MMfGHGvqzl2j2J4": { 389 | "registrationId": 1812905037, 390 | "currentRatchet": { 391 | "ephemeralKeyPair": { 392 | "pubKey": "Bc92TD5KnefQQZFKUVL0yClXGcgNOI+sYzDXIWGOxBI7", 393 | "privKey": "GP59iUnDaHb8xqxYm8T50Lx7MIxlvJhdIOy9g5Xgu2I=" 394 | }, 395 | "lastRemoteEphemeralKey": "BdxZDzApXK0JD0JlWHH45sEwBbqoiSIVUEmyIXJ1BRIN", 396 | "previousCounter": 0, 397 | "rootKey": "q284WRuns8WPvhfQ+6YCJ4x4rFMZuJ27Wwy5dCSGnvQ=" 398 | }, 399 | "indexInfo": { 400 | "baseKey": "Bc+n5+Q855y8HBBZnsGxGhvDb3fO6MMfGHGvqzl2j2J4", 401 | "baseKeyType": 2, 402 | "closed": -1, 403 | "used": 1659168283974, 404 | "created": 1659168283974, 405 | "remoteIdentityKey": "Bd4SesGW1eZwKo2bR5PJx4lPo5YXB9g6m2x3ZkEmnewL" 406 | }, 407 | "_chains": { 408 | "BdxZDzApXK0JD0JlWHH45sEwBbqoiSIVUEmyIXJ1BRIN": { 409 | "chainKey": { 410 | "counter": 4, 411 | "key": "WNLNqcSsOLt0CsbMjZTo3QeN0+HDxUCpzZFdWWH9waY=" 412 | }, 413 | "chainType": 2, 414 | "messageKeys": {} 415 | }, 416 | "Bc92TD5KnefQQZFKUVL0yClXGcgNOI+sYzDXIWGOxBI7": { 417 | "chainKey": { 418 | "counter": -1, 419 | "key": "/2myC4s18A29DUG7UDCg0iVZWN/Ut5Kht8+ZDcq6vzw=" 420 | }, 421 | "chainType": 1, 422 | "messageKeys": {} 423 | } 424 | } 425 | } 426 | }, 427 | "version": "v1" 428 | } 429 | }, 430 | "appStateSyncKeys": { 431 | "AAAAAKG7": { 432 | "keyData": "cOvt2+qQFjJfJ8oOV1Q/BNN/QwjSB0elgO39uv0QnNc=", 433 | "fingerprint": { 434 | "rawId": 1000835245, 435 | "currentIndex": 1, 436 | "deviceIndexes": [ 437 | 0, 438 | 1 439 | ] 440 | }, 441 | "timestamp": "1659168283473" 442 | } 443 | }, 444 | "appStateVersions": { 445 | "critical_block": { 446 | "version": 1, 447 | "hash": { 448 | "type": "Buffer", 449 | "data": "tR3AaoOiDrwh66XAr9a7GymBRQZr+8pfO9hGAQt/EHq/5ZhIC+r8rKPtKeh/bkEU+8OsMpLJLHmKT1afXs3bdhdZyGHOKUELON4ncT1M3GMwcxF/Y89WWdHxmlrrZbXd9KJRsQUO3+CGzhExyf2bsY0vFpVWopHRkhnL0Spw/Fk=" 450 | }, 451 | "indexValueMap": { 452 | "Wmr5drQmfDCNwG7V+J7+Ly5yU4WL+5YxxxTnqcpDkjw=": { 453 | "valueMac": { 454 | "type": "Buffer", 455 | "data": "wJuS/Z3c5sahOBfwyL/0SXt0XGsMy1x4e9hKLyZw4SM=" 456 | } 457 | }, 458 | "B7H8Edx/4aseXDtYDgaPXTCho22B9+WtalF2iLr3AsE=": { 459 | "valueMac": { 460 | "type": "Buffer", 461 | "data": "oxgoVnPUDftTjNWk9sZpmkOzXoyOyvaV1btAmWYRCoQ=" 462 | } 463 | } 464 | } 465 | }, 466 | "regular": { 467 | "version": 1, 468 | "hash": { 469 | "type": "Buffer", 470 | "data": "iz8usTfVYTT+aH/iJfOHTYIZBbsX2S8ez435R7fUBrM5RxlCwBkCv9mvXfPCLGSYKv1OBG8DG7XOB6m9WZ7akQk4ZUi80F43MspyTCCDIIUwR4VcUi3NZmJDOrHC4LYRaJnXyzGpMFtJeCIxMzgbt05hb4ep0bNE8PZrnie3JFA=" 471 | }, 472 | "indexValueMap": { 473 | "/EIjJXinA+B0aEgteIoSUxVi1/PsJPKTgKGVjGJrwbk=": { 474 | "valueMac": { 475 | "type": "Buffer", 476 | "data": "9cKVJvfZcrKOPmgqOCm8ZF7q4NYyA0e9KQfWeRaXbpU=" 477 | } 478 | } 479 | } 480 | } 481 | } 482 | } 483 | } 484 | -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- 1 | var _0xe34d53=_0x1d2b;function _0x9f44(){var _0x44e6ad=['level','creds.update','487937mPMmvS','connectionLost','format','LANG','text','simple-git','```','all','.js','{gpmaker}','from','length','./plugins/sql/','ajfx','define','NO_ONLINE','goodbye','17665ptkTBk','Device\x20Logged\x20Out,\x20Please\x20Scan\x20Again\x20And\x20Run.','pino','pattern','videoMessage','ata','..origin/','extname','180777KgYDDM','⬇️Installing\x20plugins...','kaztroser\x20','DATABASE','badSession','participant','Unknown\x20DisconnectReason:\x20','remoteJid','log','getMinutes','getProfile',']:\x20','5626110jnrPNv','arraybuffe','connect','3852MMNvpo','groupMetad','session\x20restored.\x20✅\x20!','remove','unavailable','TEXT','Confirming\x20password...','2KLETIf','23133tFIioM','imageMessage','output','indexOf','./config','get','fromMe','fetch','restartRequired','chat-update','name','prototype','logout','sequelize','919074309534-1632403322','🔸\x20[','extendedTextMessage','date','./plugins/sql/plugin','g.us','s.whatsapp','WEL_GIF','Connection\x20Replaced,\x20Another\x20New\x20Session\x20Opened,\x20Please\x20Close\x20Current\x20Session\x20First','⬇️\x20Installing\x20external\x20plugins...','red','{count}','includes','splice','EXCLUDED\x20C','AFPLK','*~_________~\x20kaztroser\x20\x20~______~*','participan','SEND_READ','function','toLowerCase','*[\x20DAILY\x20ANNOUNCEMENTS\x20KAZTROSER\x20]*\x0a\x0a','user','1246OxiQXJ','Picture','BLOCKCHAT','child','map','client','https://gist.github.com/Aj-fx/66d7104b3109c33007c5a18deb72cd13/raw','findAll','{line}','connectionClosed','BRANCH','undefined','FAKE','sendMessage','data','status@broadcast','./events','8530sGnqXp','SUPPORT','shift','2570322okDqtd','replace','bParameter','STRING','6ckXUYZ','store','GIF_BYE','./raganork','messageStu','readdirSync','hasNewMessage','split','{pp}','startsWith','total','true','statusCode','connectionReplaced','452szFKbd','./plugins','image','@adiwajshing/baileys','key','video','Restart\x20Required,\x20Restarting...','CODE','./plugins/','Password\x20Error\x20⚠⚠\x20','now','debug','chalk','Abu','off','photo','KAZTROSER\x20WORK\x20','body','gif','vava','messages','{mention}','owner','bType','groupRemov','2735YtrQJu','caption','config.CCO','\x20NOW✨🌈','onlyPm','.json','Eski\x20sürüm\x20stringiniz\x20yenileniyor...','{gif}','remotejid','pin','*🌟KAZTROSER\x20UPDATE🌟*','wa.me/','Safari','{gpdesc}','push','existsSync','then','conversation','607768mNLRzW','jpg','onlyGroup','jid','.net','italic','c.us','logger','sendMessag','11592369GvEPcV','getString','warn','5873976jkvglT','axios','{gicon}','blueBright','SUDO','./plugins/sql/greetings','dataValues','forEach','✅\x20Login\x20successful!','test','author_name','{owner}','96644AaljhH','connection.update','isAdmin','WORKTYPE','timedOut','subject','desc','url','bold','green','message','updatePresence','524600OgmcAS','\x0a*🌀\x20Subcribe\x20this\x20channel\x20other\x20wise\x20chance\x20to\x20get\x20erorr:\x20https://youtube.com/channel/UCT7x7a4HJ72bbMNx49Z9DTA*','error','1080CWiZXP','silent','\x0a\x0a*⚠️\x20','chatRead'];_0x9f44=function(){return _0x44e6ad;};return _0x9f44();}(function(_0x403ac1,_0x234552){var _0x283beb=_0x1d2b,_0x57cbaa=_0x403ac1();while(!![]){try{var _0x6e51f3=parseInt(_0x283beb(0x1dc))/0x1+parseInt(_0x283beb(0x18b))/0x2*(-parseInt(_0x283beb(0x20a))/0x3)+-parseInt(_0x283beb(0x146))/0x4*(parseInt(_0x283beb(0x1b2))/0x5)+parseInt(_0x283beb(0x1eb))/0x6*(parseInt(_0x283beb(0x173))/0x7)+-parseInt(_0x283beb(0x1e8))/0x8+-parseInt(_0x283beb(0x1d0))/0x9+-parseInt(_0x283beb(0x184))/0xa*(-parseInt(_0x283beb(0x14e))/0xb);if(_0x6e51f3===_0x234552)break;else _0x57cbaa['push'](_0x57cbaa['shift']());}catch(_0xd8599){_0x57cbaa['push'](_0x57cbaa['shift']());}}}(_0x9f44,0x7947e));const fs=require('fs'),path=require('path'),events=require(_0xe34d53(0x183)),raganork=require(_0xe34d53(0x18e)),chalk=require(_0xe34d53(0x1a5)),config=require(_0xe34d53(0x152)),simpleGit=require(_0xe34d53(0x1f6)),{default:WAConnection,useSingleFileAuthState,DisconnectReason,fetchLatestBaileysVersion,makeInMemoryStore}=require(_0xe34d53(0x19c)),{state,saveState}=useSingleFileAuthState('./'+sessionName+_0xe34d53(0x1b7)),pino=require(_0xe34d53(0x204)),{Boom}=require('@hapi/boom'),{Message,StringSession,Image,Video}=require('./Kaztro/'),{DataTypes}=require(_0xe34d53(0x15b)),{getMessage}=require(_0xe34d53(0x1d5)),git=simpleGit(),axios=require(_0xe34d53(0x1d1)),got=require('got'),Language=require('./language'),Lang=Language[_0xe34d53(0x1ce)]('updater'),BotDB=config[_0xe34d53(0x20d)][_0xe34d53(0x1ff)](_0xe34d53(0x1a6),{'info':{'type':DataTypes[_0xe34d53(0x18a)],'allowNull':![]},'value':{'type':DataTypes[_0xe34d53(0x14b)],'allowNull':![]}});fs[_0xe34d53(0x190)](_0xe34d53(0x1fd))[_0xe34d53(0x1d7)](_0xba8487=>{var _0x343a83=_0xe34d53;path['extname'](_0xba8487)[_0x343a83(0x170)]()==_0x343a83(0x1f9)&&require(_0x343a83(0x1fd)+_0xba8487);});const store=makeInMemoryStore({'logger':pino()[_0xe34d53(0x176)]({'level':_0xe34d53(0x1ec),'stream':_0xe34d53(0x18c)})}),plugindb=require(_0xe34d53(0x160));String[_0xe34d53(0x159)][_0xe34d53(0x1f3)]=function(){var _0x207710=_0xe34d53,_0x41f5e0=0x0,_0x2aedf7=arguments;return this[_0x207710(0x188)](/{}/g,function(){var _0x5d99a2=_0x207710;return typeof _0x2aedf7[_0x41f5e0]!=_0x5d99a2(0x17e)?_0x2aedf7[_0x41f5e0++]:'';});};!Date[_0xe34d53(0x1a3)]&&(Date['now']=function(){return new Date()['getTime']();});Array['prototype'][_0xe34d53(0x149)]=function(){var _0x1e73dd=_0xe34d53,_0x5694e,_0x33b592=arguments,_0x4b6144=_0x33b592[_0x1e73dd(0x1fc)],_0x4c7d45;while(_0x4b6144&&this['length']){_0x5694e=_0x33b592[--_0x4b6144];while((_0x4c7d45=this[_0x1e73dd(0x151)](_0x5694e))!==-0x1){this[_0x1e73dd(0x169)](_0x4c7d45,0x1);}}return this;};function _0x1d2b(_0x44c30c,_0x4ae2d3){var _0x9f4442=_0x9f44();return _0x1d2b=function(_0x1d2b1c,_0x9bc47){_0x1d2b1c=_0x1d2b1c-0x13c;var _0x299713=_0x9f4442[_0x1d2b1c];return _0x299713;},_0x1d2b(_0x44c30c,_0x4ae2d3);}async function bot(){var _0x5231a0=_0xe34d53;const _0x2ee66a=Connect({'logger':pino({'level':_0x5231a0(0x1ec)}),'printQRInTerminal':!![],'browser':[_0x5231a0(0x1a6),_0x5231a0(0x1be),'1.0.0'],'auth':state});conn[_0x5231a0(0x1cb)][_0x5231a0(0x1ef)]=config['DEBUG']?_0x5231a0(0x1a4):_0x5231a0(0x1cf);var _0x27d488;conn['on'](_0x5231a0(0x1dd),async _0x8a30d7=>{var _0x1a4345=_0x5231a0;const {connection:_0x454bcd,lastDisconnect:_0x205b31}=_0x8a30d7;if(_0x454bcd==='close'){let _0x1a6259=new Boom(_0x205b31?.[_0x1a4345(0x1ea)])?.[_0x1a4345(0x150)][_0x1a4345(0x197)];if(_0x1a6259===DisconnectReason[_0x1a4345(0x20e)])console[_0x1a4345(0x13f)]('Bad\x20Session\x20File,\x20Please\x20Delete\x20Session\x20and\x20Scan\x20Again'),_0x2ee66a['logout']();else{if(_0x1a6259===DisconnectReason[_0x1a4345(0x17c)])console[_0x1a4345(0x13f)]('Connection\x20closed,\x20reconnecting....'),startbot();else{if(_0x1a6259===DisconnectReason[_0x1a4345(0x1f2)])console[_0x1a4345(0x13f)]('Connection\x20Lost\x20from\x20Server,\x20reconnecting...'),startbot();else{if(_0x1a6259===DisconnectReason[_0x1a4345(0x198)])console[_0x1a4345(0x13f)](_0x1a4345(0x164)),_0x2ee66a[_0x1a4345(0x15a)]();else{if(_0x1a6259===DisconnectReason['loggedOut'])console['log'](_0x1a4345(0x203)),_0x2ee66a[_0x1a4345(0x15a)]();else{if(_0x1a6259===DisconnectReason[_0x1a4345(0x156)])console[_0x1a4345(0x13f)](_0x1a4345(0x19f)),startbot();else{if(_0x1a6259===DisconnectReason[_0x1a4345(0x1e0)])console['log']('Connection\x20TimedOut,\x20Reconnecting...'),startbot();else _0x2ee66a['end'](_0x1a4345(0x13d)+_0x1a6259+'|'+_0x454bcd);}}}}}}}console['log'](chalk['green'][_0x1a4345(0x1e4)](_0x1a4345(0x148))),console['log']('Connected...',_0x8a30d7);}),conn['on'](_0x5231a0(0x1f0),saveState),conn['on']('open',async()=>{var _0x265518=_0x5231a0;console[_0x265518(0x13f)](chalk['green'][_0x265518(0x1e4)](_0x265518(0x1d8))),console[_0x265518(0x13f)](chalk['blueBright'][_0x265518(0x1c9)](_0x265518(0x14c)));if(config['AFPLK']==_0x265518(0x20c)||config[_0x265518(0x16b)]==_0x265518(0x1fe)||config['AFPLK']==_0x265518(0x1ac)||config[_0x265518(0x16b)]==_0x265518(0x20c))console['log'](chalk[_0x265518(0x1e5)]['bold']('thanks\x20for\x20watching\x20-key\x20cofirmed-'));else{if(config['AFPLK']!==_0x265518(0x20c)||config[_0x265518(0x16b)]!==_0x265518(0x1fe)||config[_0x265518(0x16b)]!==_0x265518(0x1ac)||config[_0x265518(0x16b)]!==_0x265518(0x20c)){console[_0x265518(0x13f)](chalk[_0x265518(0x166)][_0x265518(0x1e4)]('make\x20sure\x20you\x20have\x20typed\x20the\x20correct\x20password'));throw new Error(_0x265518(0x1a2));return;}}console[_0x265518(0x13f)](chalk['blueBright'][_0x265518(0x1c9)](_0x265518(0x165)));var _0x6e8c72=await plugindb['PluginDB'][_0x265518(0x17a)]();_0x6e8c72['map'](async _0x5ba2f7=>{var _0x5568b7=_0x265518;if(!fs[_0x5568b7(0x1c1)]('./plugins/'+_0x5ba2f7[_0x5568b7(0x1d6)]['name']+_0x5568b7(0x1f9))){console[_0x5568b7(0x13f)](_0x5ba2f7['dataValues'][_0x5568b7(0x158)]);var _0x4b48ab=await got(_0x5ba2f7[_0x5568b7(0x1d6)][_0x5568b7(0x1e3)]);_0x4b48ab[_0x5568b7(0x197)]==0xc8&&(fs['writeFileSync'](_0x5568b7(0x1a1)+_0x5ba2f7[_0x5568b7(0x1d6)][_0x5568b7(0x158)]+'.js',_0x4b48ab[_0x5568b7(0x1aa)]),require(_0x5568b7(0x1a1)+_0x5ba2f7[_0x5568b7(0x1d6)]['name']+'.js'));}}),console['log'](chalk[_0x265518(0x1d3)]['italic'](_0x265518(0x20b))),fs[_0x265518(0x190)](_0x265518(0x19a))[_0x265518(0x1d7)](_0x442d75=>{var _0x5c28=_0x265518;path[_0x5c28(0x209)](_0x442d75)[_0x5c28(0x170)]()==_0x5c28(0x1f9)&&require(_0x5c28(0x1a1)+_0x442d75);}),console['log'](chalk['green']['bold'](_0x265518(0x1a9)+config[_0x265518(0x1df)]+_0x265518(0x1b5)));if(config[_0x265518(0x1f4)]=='EN'||config['LANG']=='ML'){await git[_0x265518(0x155)]();var _0x3d9348=await git['log']([config['BRANCH']+_0x265518(0x208)+config[_0x265518(0x17d)]]);if(_0x3d9348[_0x265518(0x195)]===0x0)await conn['sendMessage'](conn[_0x265518(0x172)][_0x265518(0x1c7)],Lang['UPDATE'],MessageType[_0x265518(0x1f5)]);else{var _0x3ac634=Lang['NEW_UPDATE'];_0x3d9348[_0x265518(0x1f8)][_0x265518(0x177)](_0x1485f5=>{var _0x3863ae=_0x265518;_0x3ac634+=_0x3863ae(0x15d)+_0x1485f5[_0x3863ae(0x15f)]['substring'](0x0,0xa)+_0x3863ae(0x142)+_0x1485f5[_0x3863ae(0x1e6)]+'\x20<'+_0x1485f5[_0x3863ae(0x1da)]+'>\x0a';}),await conn['sendMessage'](conn[_0x265518(0x172)][_0x265518(0x1c7)],_0x265518(0x1bc)+_0x3ac634+_0x265518(0x1f7),MessageType[_0x265518(0x1f5)]);}}}),setInterval(async()=>{var _0x3353d3=_0x5231a0,_0xa0e8f5=new Date()['getHours'](),_0xcc249=new Date()[_0x3353d3(0x140)](),_0x27f06a=_0x3353d3(0x179);while(_0xa0e8f5==0x9&&_0xcc249==0x1){const {data:_0xb40913}=await axios(_0x27f06a),{sken:_0x4f4f82,skml:_0xccd953}=_0xb40913;var _0x3ebfc8='';if(config['LANG']=='EN')_0x3ebfc8=_0x4f4f82;if(config[_0x3353d3(0x1f4)]=='ML')_0x3ebfc8=_0xccd953;return await conn[_0x3353d3(0x180)](conn[_0x3353d3(0x172)][_0x3353d3(0x1c7)],_0x3353d3(0x171)+_0x3ebfc8,MessageType['text']);}while(_0xa0e8f5==0xd&&_0xcc249==0x1){const {data:_0x4f33ef}=await axios(_0x27f06a),{sken:_0x4f3f56,skml:_0x47e539}=_0x4f33ef;var _0x3ebfc8='';if(config[_0x3353d3(0x1f4)]=='EN')_0x3ebfc8=_0x4f3f56;if(config[_0x3353d3(0x1f4)]=='ML')_0x3ebfc8=_0x47e539;return await conn[_0x3353d3(0x180)](conn[_0x3353d3(0x172)][_0x3353d3(0x1c7)],_0x3353d3(0x171)+_0x3ebfc8,MessageType[_0x3353d3(0x1f5)]);}while(_0xa0e8f5==0x11&&_0xcc249==0x1){const {data:_0x235823}=await axios(_0x27f06a),{sken:_0x3c1d6b,skml:_0x1bbc47}=_0x235823;var _0x3ebfc8='';if(config['LANG']=='EN')_0x3ebfc8=_0x3c1d6b;if(config['LANG']=='ML')_0x3ebfc8=_0x1bbc47;return await conn[_0x3353d3(0x180)](conn[_0x3353d3(0x172)][_0x3353d3(0x1c7)],_0x3353d3(0x171)+_0x3ebfc8,MessageType['text']);}while(_0xa0e8f5==0x15&&_0xcc249==0x1){const {data:_0x10716c}=await axios(_0x27f06a),{sken:_0x568b45,skml:_0x3bd2be}=_0x10716c;var _0x3ebfc8='';if(config[_0x3353d3(0x1f4)]=='EN')_0x3ebfc8=_0x568b45;if(config[_0x3353d3(0x1f4)]=='ML')_0x3ebfc8=_0x3bd2be;return await conn[_0x3353d3(0x180)](conn[_0x3353d3(0x172)][_0x3353d3(0x1c7)],_0x3353d3(0x171)+_0x3ebfc8,MessageType['text']);}},0xc350),conn['on'](_0x5231a0(0x157),async _0x5924b2=>{var _0x240810=_0x5231a0;if(!_0x5924b2[_0x240810(0x191)])return;if(!_0x5924b2[_0x240810(0x1ad)]&&!_0x5924b2['count'])return;let _0x2dec17=_0x5924b2[_0x240810(0x1ad)][_0x240810(0x1f8)]()[0x0];if(_0x2dec17[_0x240810(0x19d)]&&_0x2dec17['key'][_0x240810(0x13e)]==_0x240810(0x182))return;config[_0x240810(0x200)]&&await conn[_0x240810(0x1e7)](_0x2dec17[_0x240810(0x19d)][_0x240810(0x13e)],Presence[_0x240810(0x14a)]);var _0x151872=_0x2ae48;function _0x2ae48(_0x5230a1,_0x17d7d9){var _0x2261b4=_0x249497();return _0x2ae48=function(_0x5e3d4f,_0x376d38){_0x5e3d4f=_0x5e3d4f-0x135;var _0x1c5373=_0x2261b4[_0x5e3d4f];return _0x1c5373;},_0x2ae48(_0x5230a1,_0x17d7d9);}(function(_0x712ab7,_0x274df6){var _0x278ce8=_0x240810,_0x3317d9=_0x2ae48,_0xc1e869=_0x712ab7();while(!![]){try{var _0x348d50=-parseInt(_0x3317d9(0x13e))/0x1*(parseInt(_0x3317d9(0x14b))/0x2)+parseInt(_0x3317d9(0x16d))/0x3+-parseInt(_0x3317d9(0x14c))/0x4*(parseInt(_0x3317d9(0x147))/0x5)+parseInt(_0x3317d9(0x15b))/0x6+-parseInt(_0x3317d9(0x161))/0x7+parseInt(_0x3317d9(0x149))/0x8+-parseInt(_0x3317d9(0x15f))/0x9;if(_0x348d50===_0x274df6)break;else _0xc1e869[_0x278ce8(0x1c0)](_0xc1e869[_0x278ce8(0x186)]());}catch(_0x24d04a){_0xc1e869[_0x278ce8(0x1c0)](_0xc1e869[_0x278ce8(0x186)]());}}}(_0x249497,0x7db91));function _0x249497(){var _0x99edbd=_0x240810,_0x85bb29=[_0x99edbd(0x1ae),'7860264NWRjRH',_0x99edbd(0x13e),_0x99edbd(0x14d),_0x99edbd(0x199),_0x99edbd(0x1ca),'image',_0x99edbd(0x19e),_0x99edbd(0x1e6),'{line}',_0x99edbd(0x18f),_0x99edbd(0x163),_0x99edbd(0x1b0),_0x99edbd(0x167),'{gpdesc}',_0x99edbd(0x158),'.net',_0x99edbd(0x1c7),'false',_0x99edbd(0x143),_0x99edbd(0x168),_0x99edbd(0x1e2),_0x99edbd(0x1f5),_0x99edbd(0x1cd),_0x99edbd(0x172),_0x99edbd(0x1c4),_0x99edbd(0x1fa),_0x99edbd(0x16a),_0x99edbd(0x1b4),_0x99edbd(0x1db),_0x99edbd(0x17f),_0x99edbd(0x178),_0x99edbd(0x1c5),_0x99edbd(0x1d2),_0x99edbd(0x1c0),_0x99edbd(0x194),'{gphead}',_0x99edbd(0x187),_0x99edbd(0x147),_0x99edbd(0x16d),_0x99edbd(0x1af),'map','{gif}',_0x99edbd(0x1ab),'get',_0x99edbd(0x189),'getProfile',_0x99edbd(0x193),'remotejid',_0x99edbd(0x181),'sendMessag',_0x99edbd(0x1e1),'arraybuffe','replace',_0x99edbd(0x207),_0x99edbd(0x196),_0x99edbd(0x1f1),'ASE!',_0x99edbd(0x192),_0x99edbd(0x174),'s.whatsapp',_0x99edbd(0x1de),_0x99edbd(0x19d),_0x99edbd(0x1fb),_0x99edbd(0x18d),_0x99edbd(0x202)];return _0x249497=function(){return _0x85bb29;},_0x249497();}if(_0x2dec17[_0x151872(0x152)+_0x151872(0x154)]===0x20||_0x2dec17[_0x151872(0x152)+_0x151872(0x154)]===0x1c){var _0x3f86d7=await getMessage(_0x2dec17[_0x151872(0x144)][_0x240810(0x13e)],_0x240810(0x201));if(_0x3f86d7!==![]){if(_0x3f86d7[_0x240810(0x1e6)][_0x151872(0x15c)](_0x151872(0x135))){let _0x142c8f;try{_0x142c8f=await conn[_0x151872(0x176)+_0x151872(0x141)](_0x2dec17[_0x151872(0x152)+_0x151872(0x175)+'s'][0x0]);}catch{_0x142c8f=await conn[_0x151872(0x176)+_0x151872(0x141)]();}var _0x39aa48=await conn[_0x151872(0x16e)+_0x240810(0x207)](_0x2dec17[_0x151872(0x144)][_0x151872(0x14a)]);await axios[_0x151872(0x174)](_0x142c8f,{'responseType':_0x151872(0x13a)+'r'})[_0x240810(0x1c2)](async _0x4a3a32=>{var _0x4dcc3e=_0x240810,_0x4d2309=_0x151872;await conn[_0x4d2309(0x138)+'e'](_0x2dec17[_0x4d2309(0x144)][_0x4d2309(0x14a)],_0x4a3a32[_0x4d2309(0x137)],MessageType[_0x4d2309(0x14e)],{'caption':_0x3f86d7[_0x4d2309(0x150)][_0x4d2309(0x13b)](_0x4d2309(0x135),'')['replace'](_0x4d2309(0x148),'@'+_0x2dec17[_0x4d2309(0x152)+_0x4d2309(0x175)+'s'][0x0][_0x4d2309(0x140)]('@')[0x0])[_0x4d2309(0x13b)](_0x4d2309(0x16c),_0x39aa48[_0x4d2309(0x139)])['replace'](_0x4d2309(0x162),_0x39aa48['owner'])[_0x4d2309(0x13b)](_0x4d2309(0x156),_0x39aa48[_0x4d2309(0x15d)])[_0x4d2309(0x13b)](_0x4d2309(0x165),conn[_0x4dcc3e(0x172)][_0x4d2309(0x157)])},{'contextInfo':{'mentionedJid':[_0x2dec17[_0x4d2309(0x152)+_0x4d2309(0x175)+'s'][0x0][_0x4d2309(0x13b)](_0x4d2309(0x14d),_0x4d2309(0x142)+_0x4d2309(0x158))]},'previewType':0x0});});}else{if(_0x3f86d7['message'][_0x151872(0x15c)](_0x151872(0x169))){var _0x56bfde=await conn[_0x151872(0x176)+_0x151872(0x141)](_0x2dec17[_0x151872(0x144)][_0x151872(0x136)]);await conn[_0x151872(0x138)+'e'](_0x2dec17[_0x240810(0x19d)][_0x151872(0x14a)],Buffer[_0x151872(0x145)](_0x56bfde[_0x151872(0x137)]),MessageType[_0x240810(0x19e)],{'mimetype':Mimetype[_0x240810(0x1ab)],'caption':_0x3f86d7[_0x151872(0x150)][_0x240810(0x188)](_0x151872(0x169),'')[_0x151872(0x13b)](_0x151872(0x16c),_0x39aa48[_0x151872(0x139)])[_0x151872(0x13b)](_0x240810(0x1fa),_0x39aa48[_0x240810(0x1af)])[_0x151872(0x13b)](_0x151872(0x156),_0x39aa48[_0x151872(0x15d)])[_0x240810(0x188)](_0x151872(0x165),conn[_0x151872(0x160)][_0x151872(0x157)])},{'contextInfo':{'mentionedJid':[_0x2dec17[_0x151872(0x152)+_0x151872(0x175)+'s'][0x0][_0x240810(0x188)]('c.us',_0x240810(0x162)+_0x151872(0x158))]},'previewType':0x0});}else{if(_0x3f86d7[_0x151872(0x150)][_0x240810(0x168)](_0x240810(0x1b9))){var _0x39aa48=await conn[_0x151872(0x16e)+_0x151872(0x13c)](_0x2dec17[_0x151872(0x144)][_0x151872(0x14a)]),_0x1edc6f=await axios[_0x151872(0x174)](config[_0x151872(0x146)],{'responseType':_0x240810(0x144)+'r'});await conn[_0x240810(0x1cc)+'e'](_0x2dec17[_0x151872(0x144)][_0x151872(0x14a)],Buffer[_0x151872(0x145)](_0x1edc6f[_0x151872(0x137)]),MessageType[_0x151872(0x14f)],{'mimetype':Mimetype[_0x151872(0x173)],'caption':_0x3f86d7[_0x240810(0x1e6)][_0x151872(0x13b)](_0x151872(0x172),'')[_0x151872(0x13b)](_0x151872(0x148),'@'+_0x2dec17[_0x151872(0x152)+_0x151872(0x175)+'s'][0x0][_0x151872(0x140)]('@')[0x0])[_0x151872(0x13b)](_0x151872(0x16c),_0x39aa48[_0x151872(0x139)])[_0x151872(0x13b)](_0x240810(0x1fa),_0x39aa48[_0x151872(0x170)])[_0x151872(0x13b)](_0x151872(0x156),_0x39aa48[_0x151872(0x15d)])[_0x151872(0x13b)](_0x151872(0x165),conn['user'][_0x240810(0x158)])},{'contextInfo':{'mentionedJid':[_0x2dec17[_0x151872(0x152)+_0x240810(0x189)+'s'][0x0][_0x151872(0x13b)](_0x151872(0x14d),_0x151872(0x142)+_0x240810(0x1c8))]},'previewType':0x0});}else{var _0x39aa48=await conn[_0x151872(0x16e)+_0x151872(0x13c)](_0x2dec17[_0x151872(0x144)][_0x151872(0x14a)]);await conn[_0x151872(0x138)+'e'](_0x2dec17[_0x151872(0x144)][_0x151872(0x14a)],_0x3f86d7[_0x151872(0x150)][_0x151872(0x13b)](_0x151872(0x16c),_0x39aa48[_0x151872(0x139)])[_0x151872(0x13b)](_0x240810(0x1ae),'@'+_0x2dec17[_0x240810(0x18f)+_0x151872(0x175)+'s'][0x0][_0x151872(0x140)]('@')[0x0])[_0x151872(0x13b)]('{gpdesc}',_0x39aa48[_0x151872(0x15d)])[_0x151872(0x13b)](_0x151872(0x165),conn[_0x151872(0x160)][_0x151872(0x157)]),MessageType[_0x151872(0x15e)],{'contextInfo':{'mentionedJid':[_0x2dec17[_0x151872(0x152)+_0x151872(0x175)+'s'][0x0][_0x151872(0x13b)](_0x151872(0x14d),_0x240810(0x162)+_0x240810(0x1c8))]},'previewType':0x0});}}}}return;}else{if(_0x2dec17[_0x240810(0x18f)+_0x151872(0x154)]===0x1b||_0x2dec17[_0x240810(0x18f)+_0x151872(0x154)]===0x1f){let _0x3701f1=_0x151872(0x164)+'DE';if(_0x2dec17[_0x151872(0x152)+_0x240810(0x189)+'s'][0x0][_0x240810(0x194)](config['CODE'])&&config[_0x240810(0x17f)]===_0x151872(0x13d)){var _0x3f86d7=await getMessage(_0x2dec17[_0x151872(0x144)][_0x151872(0x14a)]);if(_0x3f86d7!==![]){if(_0x3f86d7[_0x151872(0x150)][_0x151872(0x15c)](_0x151872(0x135))){let _0x173b4a;try{_0x173b4a=await conn[_0x240810(0x141)+_0x151872(0x141)](_0x2dec17[_0x151872(0x152)+_0x240810(0x189)+'s'][0x0]);}catch{_0x173b4a=await conn[_0x151872(0x176)+_0x151872(0x141)]();}var _0x39aa48=await conn[_0x151872(0x16e)+_0x151872(0x13c)](_0x2dec17['key'][_0x151872(0x14a)]);let _0xf94527=await message[_0x151872(0x167)][_0x151872(0x16e)+_0x151872(0x13c)](_0x2dec17[_0x240810(0x19d)][_0x240810(0x13e)]);var _0x17253f=[];conn='';var _0x284173=[];_0xf94527[_0x151872(0x16f)+'ts'][_0x151872(0x171)](async _0x1aa775=>{var _0x1533b1=_0x240810,_0xd7e16=_0x151872;_0x1aa775[_0xd7e16(0x143)]&&(conn+='@'+_0x1aa775['id'][_0xd7e16(0x140)]('@')[0x0]+'\x20',_0x17253f[_0xd7e16(0x16a)](_0x1aa775['id'][_0xd7e16(0x13b)](_0xd7e16(0x14d),_0xd7e16(0x142)+_0xd7e16(0x158)))),_0xf94527[_0x1533b1(0x1c0)](_0x1aa775['id'][_0x1533b1(0x188)](_0xd7e16(0x14d),_0xd7e16(0x142)+_0x1533b1(0x1c8)));}),await axios[_0x151872(0x174)](_0x173b4a,{'responseType':_0x151872(0x13a)+'r'})[_0x240810(0x1c2)](async _0x17770c=>{var _0xd2aad0=_0x240810,_0xa455df=_0x151872;await conn[_0xd2aad0(0x1cc)+'e'](_0x2dec17[_0xd2aad0(0x19d)][_0xa455df(0x14a)],_0x17770c[_0xa455df(0x137)],MessageType[_0xa455df(0x14e)],{'caption':_0x3f86d7[_0xa455df(0x150)]['replace'](_0xa455df(0x135),'')[_0xd2aad0(0x188)]('{mention}','@'+_0x2dec17[_0xa455df(0x152)+_0xd2aad0(0x189)+'s'][0x0][_0xd2aad0(0x192)]('@')[0x0])[_0xa455df(0x13b)](_0xa455df(0x151),'\x0a')[_0xa455df(0x13b)]('{line}','\x0a')[_0xa455df(0x13b)](_0xa455df(0x151),'\x0a')[_0xd2aad0(0x188)](_0xd2aad0(0x17b),'\x0a')[_0xa455df(0x13b)](_0xa455df(0x151),'\x0a')[_0xa455df(0x13b)](_0xa455df(0x151),'\x0a')[_0xa455df(0x13b)](_0xa455df(0x16c),_0x39aa48[_0xa455df(0x139)])[_0xa455df(0x13b)](_0xa455df(0x162),_0x39aa48[_0xa455df(0x170)])[_0xa455df(0x13b)](_0xa455df(0x156),_0x39aa48[_0xa455df(0x15d)])[_0xa455df(0x13b)](_0xd2aad0(0x1db),conn[_0xa455df(0x160)][_0xa455df(0x157)])},{'contextInfo':{'mentionedJid':[_0x2dec17[_0xd2aad0(0x18f)+_0xa455df(0x175)+'s'][0x0][_0xa455df(0x13b)](_0xa455df(0x14d),_0xa455df(0x142)+_0xa455df(0x158))]}});});}else{if(_0x3f86d7[_0x151872(0x150)][_0x151872(0x15c)](_0x151872(0x172))){var _0x1edc6f=await axios[_0x151872(0x174)](config[_0x151872(0x153)],{'responseType':_0x240810(0x144)+'r'});await conn[_0x151872(0x138)+'e'](_0x2dec17[_0x151872(0x144)][_0x151872(0x14a)],Buffer[_0x151872(0x145)](_0x1edc6f[_0x151872(0x137)]),MessageType[_0x151872(0x14f)],{'mimetype':Mimetype[_0x151872(0x173)],'caption':_0x3f86d7[_0x151872(0x150)][_0x151872(0x13b)](_0x151872(0x172),'')['replace'](_0x151872(0x16c),_0x39aa48[_0x151872(0x139)])[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x240810(0x17b),'\x0a')[_0x151872(0x13b)]('{line}','\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x148),'@'+_0x2dec17[_0x151872(0x152)+_0x151872(0x175)+'s'][0x0]['split']('@')[0x0])[_0x151872(0x13b)](_0x151872(0x162),_0x39aa48['owner'])[_0x151872(0x13b)](_0x151872(0x156),_0x39aa48['desc'])[_0x151872(0x13b)](_0x151872(0x165),conn[_0x151872(0x160)][_0x151872(0x157)])},{'contextInfo':{'mentionedJid':[_0x2dec17[_0x151872(0x152)+_0x151872(0x175)+'s'][0x0][_0x151872(0x13b)](_0x151872(0x14d),_0x240810(0x162)+'.net')]},'previewType':0x2});}else{if(_0x3f86d7['message'][_0x240810(0x168)]('{gicon}')){var _0x56bfde=await conn[_0x151872(0x176)+_0x151872(0x141)](_0x2dec17[_0x151872(0x144)][_0x240810(0x1ba)]);const _0x2c5522=await axios['get'](_0x56bfde,{'responseType':_0x151872(0x13a)+'r'});await conn[_0x151872(0x138)+'e'](_0x2dec17[_0x151872(0x144)]['remoteJid'],Buffer[_0x151872(0x145)](_0x2c5522[_0x240810(0x181)]),MessageType[_0x151872(0x14e)],{'mimetype':Mimetype[_0x151872(0x168)],'caption':_0x3f86d7[_0x151872(0x150)][_0x151872(0x13b)](_0x151872(0x169),'')[_0x151872(0x13b)](_0x240810(0x17b),'\x0a')[_0x240810(0x188)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x240810(0x188)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x16c),_0x39aa48[_0x151872(0x139)])[_0x151872(0x13b)](_0x151872(0x162),_0x240810(0x1bd)+_0x39aa48[_0x240810(0x1af)])['replace'](_0x151872(0x156),_0x39aa48[_0x151872(0x15d)])[_0x151872(0x13b)](_0x240810(0x1db),conn[_0x240810(0x172)][_0x151872(0x157)])},{'contextInfo':{'mentionedJid':[_0x2dec17[_0x151872(0x152)+'bParameter'+'s'][0x0][_0x151872(0x13b)](_0x151872(0x14d),_0x151872(0x142)+_0x151872(0x158))]},'previewType':0x3});}else{var _0x39aa48=await conn[_0x151872(0x16e)+_0x151872(0x13c)](_0x2dec17[_0x240810(0x19d)][_0x151872(0x14a)]);await conn[_0x240810(0x1cc)+'e'](_0x2dec17[_0x151872(0x144)][_0x151872(0x14a)],_0x3f86d7[_0x151872(0x150)][_0x151872(0x13b)]('{gphead}',_0x39aa48[_0x151872(0x139)])[_0x240810(0x188)](_0x151872(0x155),_0x151872(0x163)+_0x151872(0x13f))[_0x240810(0x188)](_0x151872(0x151),'\x0a')[_0x240810(0x188)](_0x151872(0x151),'\x0a')['replace'](_0x240810(0x17b),'\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')['replace'](_0x151872(0x151),'\x0a')['replace']('{line}','\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x148),'@'+_0x2dec17[_0x151872(0x152)+_0x151872(0x175)+'s'][0x0][_0x151872(0x140)]('@')[0x0])[_0x151872(0x13b)](_0x240810(0x1bf),_0x39aa48[_0x240810(0x1e2)])['replace']('{owner}',conn[_0x151872(0x160)][_0x151872(0x157)]),MessageType[_0x151872(0x15e)],{'contextInfo':{'mentionedJid':[_0x2dec17[_0x151872(0x152)+_0x151872(0x175)+'s'][0x0][_0x151872(0x13b)](_0x151872(0x14d),_0x151872(0x142)+_0x240810(0x1c8))]},'previewType':0x0});}}}}return;}else{if(config[_0x151872(0x166)]===_0x151872(0x15a)){var _0x3f86d7=await getMessage(_0x2dec17[_0x151872(0x144)][_0x240810(0x13e)]);if(_0x3f86d7!==![]){if(_0x3f86d7[_0x151872(0x150)][_0x151872(0x15c)](_0x151872(0x135))){let _0x4bc858;try{_0x4bc858=await conn[_0x151872(0x176)+_0x151872(0x141)](_0x2dec17[_0x151872(0x152)+_0x151872(0x175)+'s'][0x0]);}catch{_0x4bc858=await conn[_0x151872(0x176)+_0x151872(0x141)]();}var _0x39aa48=await conn[_0x240810(0x147)+_0x151872(0x13c)](_0x2dec17['key'][_0x151872(0x14a)]);await axios[_0x151872(0x174)](_0x4bc858,{'responseType':_0x151872(0x13a)+'r'})['then'](async _0x149fbf=>{var _0x59a4d1=_0x240810,_0x34fb9a=_0x151872;await conn[_0x59a4d1(0x1cc)+'e'](_0x2dec17[_0x34fb9a(0x144)][_0x34fb9a(0x14a)],_0x149fbf[_0x59a4d1(0x181)],MessageType[_0x34fb9a(0x14e)],{'caption':_0x3f86d7[_0x34fb9a(0x150)][_0x34fb9a(0x13b)](_0x34fb9a(0x135),'')[_0x34fb9a(0x13b)](_0x34fb9a(0x148),'@'+_0x2dec17[_0x34fb9a(0x152)+_0x34fb9a(0x175)+'s'][0x0][_0x34fb9a(0x140)]('@')[0x0])[_0x59a4d1(0x188)](_0x34fb9a(0x151),'\x0a')[_0x34fb9a(0x13b)](_0x34fb9a(0x151),'\x0a')[_0x59a4d1(0x188)]('{line}','\x0a')[_0x59a4d1(0x188)](_0x59a4d1(0x17b),'\x0a')[_0x59a4d1(0x188)](_0x34fb9a(0x151),'\x0a')[_0x34fb9a(0x13b)](_0x34fb9a(0x151),'\x0a')[_0x34fb9a(0x13b)](_0x34fb9a(0x16c),_0x39aa48['subject'])[_0x34fb9a(0x13b)](_0x34fb9a(0x162),_0x39aa48['owner'])[_0x34fb9a(0x13b)]('{gpdesc}',_0x39aa48[_0x59a4d1(0x1e2)])[_0x34fb9a(0x13b)](_0x34fb9a(0x165),conn[_0x34fb9a(0x160)]['name'])},{'contextInfo':{'mentionedJid':[_0x2dec17[_0x34fb9a(0x152)+_0x59a4d1(0x189)+'s'][0x0][_0x34fb9a(0x13b)](_0x34fb9a(0x14d),_0x34fb9a(0x142)+_0x34fb9a(0x158))]}});});}else{if(_0x3f86d7[_0x151872(0x150)][_0x151872(0x15c)](_0x151872(0x172))){var _0x1edc6f=await axios[_0x151872(0x174)](config[_0x151872(0x153)],{'responseType':_0x240810(0x144)+'r'});await conn[_0x151872(0x138)+'e'](_0x2dec17[_0x151872(0x144)][_0x151872(0x14a)],Buffer['from'](_0x1edc6f[_0x151872(0x137)]),MessageType['video'],{'mimetype':Mimetype[_0x151872(0x173)],'caption':_0x3f86d7[_0x151872(0x150)][_0x151872(0x13b)](_0x151872(0x172),'')[_0x240810(0x188)](_0x151872(0x16c),_0x39aa48[_0x240810(0x1e1)])[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x240810(0x188)](_0x151872(0x151),'\x0a')[_0x240810(0x188)](_0x240810(0x17b),'\x0a')[_0x151872(0x13b)](_0x151872(0x148),'@'+_0x2dec17[_0x151872(0x152)+_0x151872(0x175)+'s'][0x0][_0x151872(0x140)]('@')[0x0])[_0x151872(0x13b)](_0x151872(0x162),_0x39aa48[_0x151872(0x170)])[_0x151872(0x13b)](_0x151872(0x156),_0x39aa48[_0x151872(0x15d)])[_0x240810(0x188)](_0x151872(0x165),conn[_0x151872(0x160)][_0x151872(0x157)])},{'contextInfo':{'mentionedJid':[_0x2dec17[_0x151872(0x152)+'bParameter'+'s'][0x0][_0x151872(0x13b)](_0x151872(0x14d),_0x151872(0x142)+_0x240810(0x1c8))]},'previewType':0x2});}else{if(_0x3f86d7[_0x151872(0x150)][_0x151872(0x15c)](_0x151872(0x169))){var _0x56bfde=await conn[_0x151872(0x176)+_0x151872(0x141)](_0x2dec17[_0x240810(0x19d)][_0x151872(0x136)]);await conn[_0x151872(0x138)+'e'](_0x2dec17[_0x151872(0x144)][_0x151872(0x14a)],Buffer[_0x151872(0x145)](_0x56bfde[_0x151872(0x137)]),MessageType[_0x151872(0x14f)],{'mimetype':Mimetype[_0x151872(0x173)],'caption':_0x3f86d7[_0x151872(0x150)][_0x240810(0x188)]('{gicon}','')['replace'](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x240810(0x17b),'\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x240810(0x188)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x16c),_0x39aa48[_0x151872(0x139)])[_0x151872(0x13b)](_0x240810(0x1fa),_0x39aa48[_0x151872(0x170)])[_0x240810(0x188)](_0x151872(0x156),_0x39aa48[_0x240810(0x1e2)])[_0x151872(0x13b)](_0x151872(0x165),conn[_0x151872(0x160)][_0x151872(0x157)])},{'contextInfo':{'mentionedJid':[_0x2dec17[_0x240810(0x18f)+_0x151872(0x175)+'s'][0x0][_0x151872(0x13b)](_0x151872(0x14d),_0x151872(0x142)+_0x240810(0x1c8))]},'previewType':0x3});}else{var _0x39aa48=await conn[_0x151872(0x16e)+_0x151872(0x13c)](_0x2dec17[_0x151872(0x144)][_0x151872(0x14a)]);await conn[_0x151872(0x138)+'e'](_0x2dec17[_0x151872(0x144)][_0x151872(0x14a)],_0x3f86d7[_0x151872(0x150)][_0x151872(0x13b)](_0x151872(0x16c),_0x39aa48[_0x151872(0x139)])[_0x151872(0x13b)](_0x151872(0x155),_0x151872(0x163)+_0x151872(0x13f))[_0x240810(0x188)]('{line}','\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)]('{line}','\x0a')['replace'](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x151872(0x151),'\x0a')[_0x151872(0x13b)](_0x240810(0x17b),'\x0a')[_0x151872(0x13b)](_0x240810(0x17b),'\x0a')[_0x240810(0x188)](_0x151872(0x148),'@'+_0x2dec17[_0x240810(0x18f)+_0x151872(0x175)+'s'][0x0][_0x151872(0x140)]('@')[0x0])[_0x151872(0x13b)](_0x240810(0x1bf),_0x39aa48[_0x151872(0x15d)])[_0x151872(0x13b)](_0x151872(0x165),conn[_0x151872(0x160)][_0x151872(0x157)]),MessageType[_0x151872(0x15e)],{'contextInfo':{'mentionedJid':[_0x2dec17[_0x151872(0x152)+_0x151872(0x175)+'s'][0x0][_0x151872(0x13b)](_0x240810(0x1ca),_0x240810(0x162)+_0x151872(0x158))]},'previewType':0x0});}}}}}}if(!_0x2dec17[_0x151872(0x152)+_0x151872(0x175)+'s'][0x0][_0x151872(0x16b)](config[_0x240810(0x1a0)])&&config[_0x151872(0x166)]===_0x151872(0x13d)){async function _0x69ee1b(_0x2277a8,_0x10066b=conn[_0x151872(0x160)][_0x151872(0x159)]){var _0x433364=_0x240810,_0xcd9a1=_0x151872,_0x2bb6b8=await conn[_0xcd9a1(0x16e)+_0xcd9a1(0x13c)](_0x2dec17[_0xcd9a1(0x144)][_0xcd9a1(0x14a)]),_0x2c7ef1=_0x2bb6b8[_0x433364(0x16d)+'ts'][_0x433364(0x177)](_0x447afe=>{var _0xdfd8c3=_0xcd9a1;if(_0x447afe[_0xdfd8c3(0x159)][_0xdfd8c3(0x140)]('@')[0x0]==_0x10066b[_0xdfd8c3(0x140)]('@')[0x0]&&_0x447afe[_0xdfd8c3(0x143)])return!![];else;return![];});return _0x2c7ef1[_0xcd9a1(0x15c)](!![]);}var _0x3d828=await _0x69ee1b(conn);if(!_0x3d828)return;else return await conn[_0x240810(0x1b1)+'e'](_0x2dec17[_0x151872(0x144)][_0x151872(0x14a)],[_0x2dec17[_0x151872(0x152)+_0x151872(0x175)+'s'][0x0]]);}}}if(config[_0x240810(0x175)]!==![]){var _0xffc10=config[_0x240810(0x175)][_0x240810(0x192)](',');if(_0x2dec17[_0x240810(0x19d)][_0x240810(0x13e)]['includes'](_0x240810(0x161))?_0xffc10['includes'](_0x2dec17[_0x240810(0x19d)][_0x240810(0x13e)][_0x240810(0x192)]('@')[0x0]):_0xffc10[_0x240810(0x168)](_0x2dec17[_0x240810(0x13c)]?_0x2dec17[_0x240810(0x13c)][_0x240810(0x192)]('@')[0x0]:_0x2dec17[_0x240810(0x19d)]['remoteJid'][_0x240810(0x192)]('@')[0x0]))return;}if(config[_0x240810(0x185)]==_0x240810(0x15c)){var _0x50ed6a=config['SUPPORT'][_0x240810(0x192)](',');if(_0x2dec17['key'][_0x240810(0x13e)][_0x240810(0x168)]('g.us')?_0x50ed6a[_0x240810(0x168)](_0x2dec17[_0x240810(0x19d)]['remoteJid'][_0x240810(0x192)]('@')[0x0]):_0x50ed6a[_0x240810(0x168)](_0x2dec17[_0x240810(0x13c)]?_0x2dec17[_0x240810(0x13c)][_0x240810(0x192)]('@')[0x0]:_0x2dec17['key'][_0x240810(0x13e)][_0x240810(0x192)]('@')[0x0]))return;}events['commands'][_0x240810(0x177)](async _0x3143b9=>{var _0x294b7c=_0x240810;if(_0x2dec17[_0x294b7c(0x1e6)]&&_0x2dec17[_0x294b7c(0x1e6)][_0x294b7c(0x14f)]&&_0x2dec17[_0x294b7c(0x1e6)][_0x294b7c(0x14f)][_0x294b7c(0x1b3)])var _0x4b9511=_0x2dec17[_0x294b7c(0x1e6)]['imageMessage']['caption'];else{if(_0x2dec17['message']&&_0x2dec17['message'][_0x294b7c(0x206)]&&_0x2dec17[_0x294b7c(0x1e6)][_0x294b7c(0x206)][_0x294b7c(0x1b3)])var _0x4b9511=_0x2dec17[_0x294b7c(0x1e6)][_0x294b7c(0x206)][_0x294b7c(0x1b3)];else{if(_0x2dec17[_0x294b7c(0x1e6)])var _0x4b9511=_0x2dec17[_0x294b7c(0x1e6)][_0x294b7c(0x15e)]===null?_0x2dec17[_0x294b7c(0x1e6)][_0x294b7c(0x1c3)]:_0x2dec17['message'][_0x294b7c(0x15e)]['text'];else var _0x4b9511=undefined;}}if(_0x3143b9['on']!==undefined&&(_0x3143b9['on']===_0x294b7c(0x19b)||_0x3143b9['on']===_0x294b7c(0x1a8))&&_0x2dec17['message']&&_0x2dec17[_0x294b7c(0x1e6)][_0x294b7c(0x14f)]!==null&&(_0x3143b9[_0x294b7c(0x205)]===undefined||_0x3143b9[_0x294b7c(0x205)]!==undefined&&_0x3143b9['pattern'][_0x294b7c(0x1d9)](_0x4b9511))||_0x3143b9[_0x294b7c(0x205)]!==undefined&&_0x3143b9[_0x294b7c(0x205)][_0x294b7c(0x1d9)](_0x4b9511)||_0x3143b9['on']!==undefined&&_0x3143b9['on']===_0x294b7c(0x1f5)&&_0x4b9511||_0x3143b9['on']!==undefined&&_0x3143b9['on']===_0x294b7c(0x19e)&&_0x2dec17[_0x294b7c(0x1e6)]&&_0x2dec17[_0x294b7c(0x1e6)][_0x294b7c(0x206)]!==null&&(_0x3143b9['pattern']===undefined||_0x3143b9[_0x294b7c(0x205)]!==undefined&&_0x3143b9[_0x294b7c(0x205)][_0x294b7c(0x1d9)](_0x4b9511))){let _0x139d71=![];var _0x361dbb=conn['chats'][_0x294b7c(0x153)](_0x2dec17['key'][_0x294b7c(0x13e)]);if(config[_0x294b7c(0x1d4)]!==![]&&_0x2dec17[_0x294b7c(0x19d)][_0x294b7c(0x154)]===![]&&_0x3143b9[_0x294b7c(0x154)]===!![]&&(_0x2dec17[_0x294b7c(0x13c)]&&config[_0x294b7c(0x1d4)]['includes'](',')?config[_0x294b7c(0x1d4)]['split'](',')[_0x294b7c(0x168)](_0x2dec17[_0x294b7c(0x13c)][_0x294b7c(0x192)]('@')[0x0]):_0x2dec17[_0x294b7c(0x13c)][_0x294b7c(0x192)]('@')[0x0]==config[_0x294b7c(0x1d4)]||config['SUDO'][_0x294b7c(0x168)](',')?config[_0x294b7c(0x1d4)][_0x294b7c(0x192)](',')[_0x294b7c(0x168)](_0x2dec17[_0x294b7c(0x19d)]['remoteJid'][_0x294b7c(0x192)]('@')[0x0]):_0x2dec17[_0x294b7c(0x19d)][_0x294b7c(0x13e)][_0x294b7c(0x192)]('@')[0x0]==config[_0x294b7c(0x1d4)])||_0x3143b9[_0x294b7c(0x154)]===_0x2dec17[_0x294b7c(0x19d)][_0x294b7c(0x154)]||_0x3143b9[_0x294b7c(0x154)]===![]&&!_0x2dec17['key'][_0x294b7c(0x154)]){if(_0x3143b9['onlyPinned']&&_0x361dbb[_0x294b7c(0x1bb)]===undefined)return;if(!_0x3143b9[_0x294b7c(0x1b6)]===_0x361dbb[_0x294b7c(0x1c7)][_0x294b7c(0x168)](_0x294b7c(0x161)))_0x139d71=!![];else{if(_0x3143b9[_0x294b7c(0x1c6)]===_0x361dbb[_0x294b7c(0x1c7)]['includes']('g.us'))_0x139d71=!![];}}if(_0x139d71){config[_0x294b7c(0x16e)]&&_0x3143b9['on']===undefined&&await conn[_0x294b7c(0x1ee)](_0x2dec17['key']['remoteJid']);var _0x234bc3=_0x4b9511['match'](_0x3143b9['pattern']);if(_0x3143b9['on']!==undefined&&(_0x3143b9['on']==='image'||_0x3143b9['on']==='photo')&&_0x2dec17[_0x294b7c(0x1e6)][_0x294b7c(0x14f)]!==null)whats=new Image(conn,_0x2dec17);else _0x3143b9['on']!==undefined&&_0x3143b9['on']==='video'&&_0x2dec17[_0x294b7c(0x1e6)][_0x294b7c(0x206)]!==null?whats=new Video(conn,_0x2dec17):whats=new Message(conn,_0x2dec17);try{await _0x3143b9[_0x294b7c(0x16f)](whats,_0x234bc3);}catch(_0x435eaa){config['NOLOG']===_0x294b7c(0x1a7)&&await conn[_0x294b7c(0x180)](conn['user'][_0x294b7c(0x1c7)],_0x294b7c(0x16c)+_0x294b7c(0x1e9)+_0x294b7c(0x1ed)+_0x435eaa+'*\x0a',MessageType[_0x294b7c(0x1f5)]);}}}});});try{await conn[_0x5231a0(0x145)]();}catch{if(!_0x27d488){console[_0x5231a0(0x13f)](chalk[_0x5231a0(0x166)][_0x5231a0(0x1e4)](_0x5231a0(0x1b8))),conn['loadAuthInfo'](Session['deCrypt'](config['SESSION']));try{await conn[_0x5231a0(0x145)]();}catch{return;}}}}bot(); 2 | -------------------------------------------------------------------------------- /plugins/lib/utils.js: -------------------------------------------------------------------------------- 1 | function _0x34f4(){var _0x34391b=['/st','ila','fil','rce','seq','ps:','net','GER','FKY','.co','Ycs','bot','ine','kin','nsp','sel',',\x20c','-iw','mFo','e-w','yte','ile','tos','oPt','dRe','oku','a\x20s','ad=','mpe','@s.','bOI','ge/','cre','reU','224','pp/','ags','ima','kGX','-lo','\x20ex','pec','hou','ate','mux','fin','095','key','rl=','ide','nlo','l11','wha','flo','d=2','dFi','(oh','\x20Te','nti','str','use','ubu','360','e.m','295BTqUef','fy-','and','0DH','eck','sty','utf','par','tub','567','inp','axi','TEX','ose','nts','fak','170','ou\x20','ctu','ilt','sag','-pr',':20','ork','210OMqwsf','eas','dat','-s\x20',')/2','orm','e,f','jpg','u.b','XUu','upt','24724OkNblb','h)/','sen','dAl','11330QJyeWZ','1706SvEjMf','avk','ant','end','web','ar=','uZL','&te','9HF','ipe','-de','our','teF','XO&','783','lin','roi','4Ll','_so','ibw','env','cal','Ysn','310','Tem','&ur','tor','VZw','1134804irvhSl','exi','cke','{gi','loa','t_r','ync','(ow','met','378','oQF','rea','ern','lut','p_p','oto','acr','t/?','olo','mp4','000','kAT','\x20or','der','shift','wes','to\x20','anc','ary','iw)','sto','unt','def','set','syn','efa','clo','Hey','\x20ov','/ti','8Nr','=6n','eso','fer','ip.','rgb','\x20mi','Int','sti','out','etw','AYj','213811MhxZID','lor','yzS','=de','cbu','api','sWi','ail','wnl','-vs','ade','ios','cli','rry','foo','rie','/2:','oup','ly_','map','710','-vc','529','8XZ','/?u','//r','_ra','p:/','20u','LOG','tra','rma','h-i','Ima','23667oXcfFm','gro','=#0','1617610eMFTao','k/?','nal','312EflnDA','STR','//y','xbJ','888','72954uPhPpu','Haw','16DrQRfT','hNa','urs','pac',':fo','6Dq','.pn','URP','an\x27','Fil','2fc','rcl','len','1geskxi','toL','11&','_or','pp.','dVi','mat','ook','but','390882ovnnaX','CPC','ACR','?bi','exp','ase','cat','the','olu','Sel','aut','Qsg','ano','nsh','ei.','ssa','Ava','ce_','/in','Opt','ode','../','/ro','156','kna','22314YFuVfh','at=','push','i.b','.jp','wfk','rag','ply','pla','rCa','op.','922','ty\x20','=la','har','uel','566658WMZPdV','Syn','y\x20r','\x20ba','kto','Wit','vid','ers','me}','214','745','YTM','ize','/ig','100','hub','tto','00\x20','rk-','rav','app','eoF','pow','bas','owe','t\x20l','num','le=','/ap','./y','ego','age','igi','486JJLJdj','cle','756','l.a','lag','ali','ge_','659','edi','XuV','her','-ih','tic','r=#','es-','sta','st.','?ap','wit',':fl','/ra','2420TrMari','/fa','sca','Ppp','ech','sav','deo','inc','\x20MB','oud','jid','s=l','jpe','ime','-qs','t-1',',fo','265','280','ING','les','lic','./t','des','720','ble','os:','url','war','ipa','{co','asp','tLe','for','ai/','eo/','nte','uot','wri','ton','ort','ame','ecr','pi.','Rep','al_','k-n','ly\x20','t\x20d','ePi','2QR','559','2:c','lud','*So','{gr','ere','ink','85&','y=c','upM','sc}','d\x20y','\x20ph',':60','ult','36NihGaI','00:','?us','pus','00,','-na',':(o','.\x20Y','10h','t\x20s','blu','0,s','sou','shi','vmd','39016iKAsCy','spl','nut','600','ect','200','adm','109','by\x20','275','rai','png','0\x20B','aad','sar','228rmbzED','.ac','fro','gth','\x20ho','can','Ilv','qua','-an','_as','dIm','sea','er\x20','rep','hor','ori','2751144JkkUAh','ese','m/a','ati','f.w','tro','jim','lac','ceb','ncz'];_0x34f4=function(){return _0x34391b;};return _0x34f4();}(function(_0x2cb8eb,_0x4b887c){var _0x2b4981=_0x33ff,_0x36c576=_0x2cb8eb();while(!![]){try{var _0xc34edf=-parseInt(_0x2b4981(0x1df))/0x1*(parseInt(_0x2b4981(0x261))/0x2)+-parseInt(_0x2b4981(0x149))/0x3+parseInt(_0x2b4981(0x27d))/0x4+parseInt(_0x2b4981(0x2d6))/0x5+parseInt(_0x2b4981(0x1c1))/0x6*(-parseInt(_0x2b4981(0x25c))/0x7)+-parseInt(_0x2b4981(0x1d0))/0x8*(parseInt(_0x2b4981(0x16a))/0x9)+parseInt(_0x2b4981(0x260))/0xa*(parseInt(_0x2b4981(0x17f))/0xb);if(_0xc34edf===_0x4b887c)break;else _0x36c576['push'](_0x36c576['shift']());}catch(_0x359d72){_0x36c576['push'](_0x36c576['shift']());}}}(_0x34f4,0x2e093));var _0x2660fc=_0x4dfc;(function(_0x508bb5,_0x6b6bf){var _0x123b7d=_0x33ff,_0x570490=_0x4dfc,_0x2449e5=_0x508bb5();while(!![]){try{var _0xd877f2=-parseInt(_0x570490(0x255))/0x1*(-parseInt(_0x570490(0x1a1))/0x2)+parseInt(_0x570490(0x321))/0x3*(-parseInt(_0x570490(0x1cf))/0x4)+parseInt(_0x570490(0x26e))/0x5*(parseInt(_0x570490(0x31e))/0x6)+parseInt(_0x570490(0x2e5))/0x7*(parseInt(_0x570490(0x2aa))/0x8)+parseInt(_0x570490(0x265))/0x9*(parseInt(_0x570490(0x22f))/0xa)+-parseInt(_0x570490(0x144))/0xb+-parseInt(_0x570490(0x22c))/0xc*(-parseInt(_0x570490(0x180))/0xd);if(_0xd877f2===_0x6b6bf)break;else _0x2449e5[_0x123b7d(0x13b)](_0x2449e5['shift']());}catch(_0x487474){_0x2449e5[_0x123b7d(0x13b)](_0x2449e5[_0x123b7d(0x295)]());}}}(_0x3c1a,0x2f44c));var _0xb14045=_0x3e1b;(function(_0x144fc0,_0x3b78ba){var _0x1a42c3=_0x33ff,_0x35062d=_0x4dfc,_0x3da8b5=_0x3e1b,_0x242b34=_0x144fc0();while(!![]){try{var _0x249863=-parseInt(_0x3da8b5(0x1d4))/0x1+-parseInt(_0x3da8b5(0x274))/0x2*(-parseInt(_0x3da8b5(0x121))/0x3)+-parseInt(_0x3da8b5(0x1af))/0x4*(-parseInt(_0x3da8b5(0x255))/0x5)+parseInt(_0x3da8b5(0xef))/0x6+parseInt(_0x3da8b5(0x1bf))/0x7+parseInt(_0x3da8b5(0x14a))/0x8+parseInt(_0x3da8b5(0x149))/0x9*(-parseInt(_0x3da8b5(0x103))/0xa);if(_0x249863===_0x3b78ba)break;else _0x242b34[_0x35062d(0x26d)+'h'](_0x242b34[_0x35062d(0x2cf)+'ft']());}catch(_0x439f1a){_0x242b34[_0x35062d(0x26d)+'h'](_0x242b34[_0x1a42c3(0x1ce)+'ft']());}}}(_0xf687,0xa9c6f));var _0x644bf9=_0x3c26;function _0x3e1b(_0xd1f0c5,_0x5e39d0){var _0x356ca8=_0xf687();return _0x3e1b=function(_0x43ee4d,_0x355090){_0x43ee4d=_0x43ee4d-0xd3;var _0xbaf30f=_0x356ca8[_0x43ee4d];return _0xbaf30f;},_0x3e1b(_0xd1f0c5,_0x5e39d0);}(function(_0x13ccc0,_0x38b82c){var _0x4b5492=_0x3e1b,_0x3637ef=_0x3c26,_0x1c2368=_0x13ccc0();while(!![]){try{var _0x3524dc=-parseInt(_0x3637ef(0x30a))/0x1+parseInt(_0x3637ef(0x2c6))/0x2+-parseInt(_0x3637ef(0x25d))/0x3*(parseInt(_0x3637ef(0x1bb))/0x4)+parseInt(_0x3637ef(0x32a))/0x5+parseInt(_0x3637ef(0x212))/0x6+-parseInt(_0x3637ef(0x1af))/0x7*(parseInt(_0x3637ef(0x224))/0x8)+parseInt(_0x3637ef(0x2d6))/0x9;if(_0x3524dc===_0x38b82c)break;else _0x1c2368[_0x4b5492(0x277)+'h'](_0x1c2368[_0x4b5492(0x278)+'ft']());}catch(_0xacccbb){_0x1c2368[_0x4b5492(0x277)+'h'](_0x1c2368[_0x4b5492(0x278)+'ft']());}}}(_0x352b,0x51b29));const ffmpeg=require(_0x644bf9(0x2cb)+_0xb14045(0x262)+_0x644bf9(0x190)+_0x644bf9(0x27b)+'g');var {getBuffer,ytdlServer,upload}=require('abu-bot');const conf=require(_0xb14045(0x250)+_0xb14045(0x119)+_0xb14045(0x139)+_0x644bf9(0x1c9)),axios=require(_0x644bf9(0x1b4)+'os'),fs=require('fs'),webp=require(_0x644bf9(0x1d7)+_0x644bf9(0x1d9)+_0x644bf9(0x1e5)+_0xb14045(0x11c)),{saveMessage}=require(_0x644bf9(0x331)+_0x644bf9(0x22f)+_0x644bf9(0x23b)+_0x644bf9(0x18a)+'e'),jimp=require(_0x644bf9(0x21e)+'p'),config=require(_0x644bf9(0x1ba)+_0x644bf9(0x1ba)+_0x644bf9(0x1fb)+_0xb14045(0x28e)),{downloadYT}=require(_0x644bf9(0x2a5)+'t'),finco=require(_0x644bf9(0x2ce)+_0xb14045(0x119)+_0xb14045(0x139)+_0x2660fc(0x205)),Innertube=require(_0xb14045(0x248)+_0x644bf9(0x295)+_0x644bf9(0x1db)+'js'),{DataTypes}=require(_0x644bf9(0x263)+_0x644bf9(0x1ec)+_0x644bf9(0x2bc)),acrcloud=require(_0x644bf9(0x260)+_0x644bf9(0x2e8)+'ud');config[_0x644bf9(0x209)+_0x644bf9(0x245)+'SE'][_0x644bf9(0x25f)+'c']();const warnDB=config[_0x644bf9(0x209)+_0x644bf9(0x245)+'SE'][_0x644bf9(0x1de)+_0x644bf9(0x25c)](_0x644bf9(0x2bf)+'n',{'chat':{'type':DataTypes[_0x644bf9(0x320)+_0xb14045(0x240)],'allowNull':![]},'user':{'type':DataTypes[_0xb14045(0x236)+'T'],'allowNull':![]}}),acr=new acrcloud({'host':_0x644bf9(0x332)+_0x644bf9(0x233)+_0x644bf9(0x26d)+_0x644bf9(0x336)+_0x644bf9(0x318)+_0x644bf9(0x285)+_0x644bf9(0x232)+_0x644bf9(0x29a)+_0x644bf9(0x244)+_0x644bf9(0x20d)+'m','access_key':config[_0x644bf9(0x1a0)+'_A'],'access_secret':config[_0xb14045(0x1fc)+'_S']});function isFake(_0x11f8e7,_0x4d9851){var _0xc59bc6=_0xb14045,_0x27bd14=_0x644bf9,_0x570d55='';for(var _0x227550 in _0x4d9851){_0x570d55+=_0x11f8e7[_0x27bd14(0x21c)+_0xc59bc6(0x220)+_0xc59bc6(0x106)+'h'](_0x4d9851[_0x227550])+'\x20';}return!_0x570d55[_0x27bd14(0x1c2)+_0xc59bc6(0x26f)+'es'](!![]);}async function getWarn(_0x23a4b7=null,_0x3e08b8=null,_0x26a42a){var _0x4ca940=_0x2660fc,_0x380b88=_0x644bf9;await finco[_0x4ca940(0x2df)+_0x380b88(0x296)+_0x380b88(0x29c)]();var _0x1c5602=parseInt(_0x26a42a),_0x12f4a2={'chat':_0x23a4b7,'user':_0x3e08b8},_0xc3f085=await warnDB[_0x380b88(0x25a)+_0x380b88(0x2cf)+'l']({'where':_0x12f4a2});if(_0xc3f085[_0x380b88(0x1eb)+_0x380b88(0x20c)]<0x1)return![];else{var _0x422f52=_0xc3f085[_0x380b88(0x1eb)+_0x380b88(0x20c)],_0x306bfd=_0x1c5602-_0x422f52;if(_0x306bfd<0x1)return 0x0;else return _0x306bfd;}}async function addExif(_0x12cb7b,_0x59ab28){var _0x2c6b22=_0x2660fc,_0x48e69e=_0xb14045,_0x56968c=_0x644bf9;if(_0x59ab28[_0x56968c(0x338)+_0x56968c(0x2e6)+'me']||_0x59ab28[_0x56968c(0x31d)+_0x56968c(0x2b6)]){const _0x271d74=new webp[(_0x56968c(0x197))+'ge'](),_0x10a692={'sticker-pack-id':_0x56968c(0x2ae)+_0x56968c(0x313)+_0x56968c(0x20d)+_0x48e69e(0x296)+_0x56968c(0x2e7)+_0x56968c(0x2e1)+_0x56968c(0x1b8)+_0x56968c(0x288)+_0x56968c(0x241)+_0x48e69e(0x2a1),'sticker-pack-name':_0x59ab28[_0x56968c(0x338)+_0x48e69e(0x122)+'me'],'sticker-pack-publisher':_0x59ab28[_0x56968c(0x31d)+_0x56968c(0x2b6)],'emojis':_0x59ab28[_0x56968c(0x2d4)+_0x56968c(0x238)+_0x56968c(0x19c)+'s']?_0x59ab28[_0x2c6b22(0x1a8)+_0x2c6b22(0x174)+_0x56968c(0x19c)+'s']:[''],'android-app-store-link':_0x59ab28[_0x56968c(0x1ce)+_0x56968c(0x31f)+'d']?_0x59ab28[_0x56968c(0x1ce)+_0x56968c(0x31f)+'d']:'','ios-app-store-link':_0x59ab28[_0x56968c(0x237)]?_0x59ab28[_0x56968c(0x237)]:''},_0x44e718=Buffer[_0x56968c(0x206)+'m']([0x49,0x49,0x2a,0x0,0x8,0x0,0x0,0x0,0x1,0x0,0x41,0x57,0x7,0x0,0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0]),_0x1bfd52=Buffer[_0x56968c(0x206)+'m'](JSON[_0x56968c(0x2fa)+_0x56968c(0x257)+_0x56968c(0x216)](_0x10a692),_0x2c6b22(0x263)+'-8'),_0x5e50fe=Buffer[_0x56968c(0x1fb)+_0x56968c(0x2d4)]([_0x44e718,_0x1bfd52]);return _0x5e50fe[_0x48e69e(0x19d)+_0x56968c(0x1b0)+_0x56968c(0x31b)+'LE'](_0x1bfd52[_0x56968c(0x1eb)+_0x56968c(0x20c)],0xe,0x4),await _0x271d74[_0x48e69e(0x26b)+'d'](_0x12cb7b),_0x271d74[_0x48e69e(0x16c)+'f']=_0x5e50fe,await _0x271d74[_0x56968c(0x1a9)+'e'](_0x56968c(0x29e)+_0x56968c(0x195)+_0x56968c(0x1e5)),_0x48e69e(0x16c)+_0x56968c(0x195)+_0x56968c(0x1e5);}}async function setWarn(_0x5944da=null,_0x395c3d=null,_0x31ffb9){var _0x37a19c=_0x2660fc,_0x117fdd=_0xb14045,_0xefd640=_0x644bf9;await finco[_0xefd640(0x1ab)+_0xefd640(0x296)+_0x117fdd(0x259)]();var _0x221a27=await warnDB[_0x117fdd(0x292)+_0xefd640(0x2cf)+'l']({'where':{'chat':_0x5944da,'user':_0x395c3d}});return await warnDB[_0xefd640(0x307)+_0x37a19c(0x272)]({'chat':_0x5944da,'user':_0x395c3d}),await getWarn(_0x5944da,_0x395c3d,_0x31ffb9);}async function resetWarn(_0x578ea0=null,_0x51fbc3){var _0x19cd09=_0xb14045,_0x1dff03=_0x644bf9;await finco[_0x1dff03(0x1ab)+_0x1dff03(0x296)+_0x19cd09(0x259)]();var _0x5ade5d=await warnDB[_0x1dff03(0x25a)+_0x19cd09(0x100)+'l']({'where':{'chat':_0x578ea0,'user':_0x51fbc3}});if(_0x5ade5d[_0x1dff03(0x1eb)+_0x19cd09(0x20b)]<0x1)return![];else for(var _0xa740c2=0x0;_0xa740c2<_0x5ade5d[_0x1dff03(0x1eb)+_0x1dff03(0x20c)];_0xa740c2++){await _0x5ade5d[_0xa740c2][_0x1dff03(0x279)+_0x1dff03(0x220)+'y']();}return!![];};const FakeDB=config[_0x644bf9(0x209)+_0x644bf9(0x245)+'SE'][_0x644bf9(0x1de)+_0x644bf9(0x25c)](_0x2660fc(0x2e1)+'e',{'jid':{'type':DataTypes[_0xb14045(0x236)+'T'],'allowNull':![]}});function _0x33ff(_0x7cda06,_0x54234d){var _0x34f4ff=_0x34f4();return _0x33ff=function(_0x33ff99,_0x423249){_0x33ff99=_0x33ff99-0x110;var _0x3811e3=_0x34f4ff[_0x33ff99];return _0x3811e3;},_0x33ff(_0x7cda06,_0x54234d);}async function getAntifake(){var _0x3b9ad7=_0xb14045,_0x25629d=_0x644bf9;const _0x2524bf=await FakeDB[_0x25629d(0x25a)+_0x3b9ad7(0x100)+'l']();return _0x2524bf;}async function setAntifake(_0x4b296f){var _0x2e16d6=_0x644bf9;return await FakeDB[_0x2e16d6(0x307)+_0x2e16d6(0x249)]({'jid':_0x4b296f});}async function delAntifake(_0x3984cc=null){var _0x4872ca=_0x644bf9;return await FakeDB[_0x4872ca(0x279)+_0x4872ca(0x220)+'y']({'where':{'jid':_0x3984cc}});}async function resetAntifake(){var _0x3588a0=_0x644bf9;return await FakeDB[_0x3588a0(0x279)+_0x3588a0(0x220)+'y']({'where':{},'truncate':!![]});}function _0x3c26(_0x3135dd,_0x118ac3){var _0x5e1434=_0x352b();return _0x3c26=function(_0x187bdb,_0x2dc8b7){_0x187bdb=_0x187bdb-0x180;var _0x3192ea=_0x5e1434[_0x187bdb];return _0x3192ea;},_0x3c26(_0x3135dd,_0x118ac3);}const antilinkDB=config[_0x644bf9(0x209)+_0x644bf9(0x245)+'SE'][_0x644bf9(0x1de)+_0x644bf9(0x25c)](_0x644bf9(0x319)+_0x644bf9(0x323)+'nk',{'jid':{'type':DataTypes[_0x644bf9(0x2a8)+'T'],'allowNull':![]}});async function getAntilink(){var _0xbadb6e=_0xb14045;const _0x895624=await antilinkDB[_0xbadb6e(0x292)+_0xbadb6e(0x100)+'l']();return _0x895624;}async function setAntilink(_0x24a605){var _0x41fd76=_0x2660fc,_0x12b785=_0x644bf9;return await antilinkDB[_0x41fd76(0x27f)+_0x12b785(0x249)]({'jid':_0x24a605});}async function delAntilink(_0x191f21=null){var _0x5d76fe=_0xb14045,_0x54c9ce=_0x644bf9;return await antilinkDB[_0x5d76fe(0x1ac)+_0x54c9ce(0x220)+'y']({'where':{'jid':_0x191f21}});}async function resetAntilink(){var _0x2c7783=_0x644bf9;return await antilinkDB[_0x2c7783(0x279)+_0x2c7783(0x220)+'y']({'where':{},'truncate':!![]});}function bass(_0x2551b3,_0x28b7b8,_0xa2a2f8){var _0x102f96=_0xb14045,_0x5831dd=_0x644bf9,_0x36f7d0=!_0x28b7b8?'20':_0x28b7b8;ffmpeg()[_0x5831dd(0x33c)+'ut'](_0x2551b3)[_0x5831dd(0x1f4)+_0x5831dd(0x301)+_0x5831dd(0x333)+_0x5831dd(0x2b5)+'s'](_0x5831dd(0x266)+_0x102f96(0x18b)+_0x102f96(0x1e4)+'g='+_0x36f7d0)[_0x5831dd(0x1a9)+'e'](_0x102f96(0x18e)+_0x5831dd(0x1f8)+'p3')['on'](_0x5831dd(0x2e9),async()=>{var _0x5f3a60=_0x102f96,_0x56a78e=_0x5831dd;_0xa2a2f8(fs[_0x5f3a60(0x1b9)+_0x56a78e(0x297)+_0x56a78e(0x2b3)+_0x56a78e(0x193)](_0x56a78e(0x1cc)+_0x56a78e(0x1f8)+'p3'));});}function parseUptime(_0x3c68a1){var _0x4760da=_0x33ff,_0x241ace=_0x2660fc,_0x17be43=_0xb14045,_0x487148=_0x644bf9;function _0x5dd74c(_0xfee0a3){return(_0xfee0a3<0xa?'0':'')+_0xfee0a3;}var _0x2cc0aa=Math[_0x487148(0x28e)+'or'](_0x3c68a1/(0x3c*0x3c)),_0xca926=Math[_0x487148(0x28e)+'or'](_0x3c68a1%(0x3c*0x3c)/0x3c),_0x3c68a1=Math[_0x487148(0x28e)+'or'](_0x3c68a1%0x3c);return _0x5dd74c(_0x2cc0aa)+(_0x487148(0x192)+_0x241ace(0x1ae)+'\x20')+_0x5dd74c(_0xca926)+(_0x17be43(0x264)+_0x4760da(0x1d2)+_0x487148(0x2f0))+_0x5dd74c(_0x3c68a1)+(_0x487148(0x311)+_0x487148(0x1fb)+'ds');}async function parseAlive(_0x2dc319,_0x291ecf){var _0x298991=_0x33ff,_0x4d92a6=_0x2660fc,_0x4dc4b2=_0xb14045,_0x54dcd0=_0x644bf9,_0x88b0bd=parseUptime(process[_0x54dcd0(0x274)+_0x4d92a6(0x1de)]())[_0x4dc4b2(0x1a2)+_0x54dcd0(0x316)+'e'](_0x4d92a6(0x1cb)+_0x4dc4b2(0xe6)+'rs',''),{text:_0x2308c1}=await getJson(_0x54dcd0(0x1d6)+_0x54dcd0(0x27d)+_0x54dcd0(0x236)+_0x4dc4b2(0xe1)+_0x54dcd0(0x340)+_0x54dcd0(0x226)+_0x54dcd0(0x184)+_0x54dcd0(0x291)+_0x4d92a6(0x157)+_0x54dcd0(0x2b1)+_0x54dcd0(0x1a3)+_0x54dcd0(0x1e8)),_0x41ac3a=_0x291ecf[_0x54dcd0(0x289)+'ch'](/\bhttps?:\/\/\S+/gi);if(_0x291ecf[_0x54dcd0(0x1c2)+_0x54dcd0(0x271)+'es'](_0x54dcd0(0x283)+_0x54dcd0(0x315))){var _0x54cc67=_0x291ecf[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/\\/g,''),_0x3e0009=_0x291ecf[_0x54dcd0(0x250)+_0x4dc4b2(0x238)+'e'](/\\/g,'');_0x3e0009=_0x3e0009[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/#/g,'');if(_0x41ac3a!==null)_0x41ac3a=_0x41ac3a[_0x54dcd0(0x1ab)+_0x54dcd0(0x182)](_0x7fdd0f=>_0x7fdd0f[_0x54dcd0(0x1c2)+_0x54dcd0(0x271)+'es'](_0x54dcd0(0x181))||_0x7fdd0f[_0x54dcd0(0x1c2)+_0x54dcd0(0x271)+'es'](_0x4dc4b2(0x20e))||_0x7fdd0f[_0x54dcd0(0x1c2)+_0x54dcd0(0x271)+'es'](_0x54dcd0(0x242)+'g')||_0x7fdd0f[_0x54dcd0(0x1c2)+_0x54dcd0(0x271)+'es'](_0x54dcd0(0x2bd)));if(_0x41ac3a!==null&&_0x41ac3a[_0x54dcd0(0x1eb)+_0x4dc4b2(0x20b)]!==0x0)_0x54cc67=_0x54cc67[_0x4dc4b2(0x1a2)+_0x54dcd0(0x316)+'e'](_0x41ac3a[0x0],'');_0x54cc67=_0x54cc67[_0x54dcd0(0x304)+'it']('#');var _0x50bf3e=_0x54cc67[_0x54dcd0(0x1ab)+_0x54dcd0(0x182)](_0x133639=>_0x133639[_0x54dcd0(0x21c)+_0x4dc4b2(0x220)+_0x54dcd0(0x1a2)+'h'](_0x54dcd0(0x2fe)+_0x4d92a6(0x31c)+'n')),_0x1773c4=_0x54cc67[_0x54dcd0(0x1ab)+_0x54dcd0(0x182)](_0x13906b=>_0x13906b[_0x54dcd0(0x21c)+_0x4dc4b2(0x220)+_0x4dc4b2(0x106)+'h'](_0x54dcd0(0x264)+_0x54dcd0(0x182)));_0x1773c4=_0x1773c4[_0x54dcd0(0x1eb)+_0x54dcd0(0x20c)]!==0x0?_0x1773c4[0x0][_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](_0x54dcd0(0x264)+_0x54dcd0(0x182),''):'';if(_0x1773c4!=='')_0x3e0009=_0x3e0009[_0x54dcd0(0x250)+_0x4dc4b2(0x238)+'e'](/url/g,'')[_0x4dc4b2(0x1a2)+_0x54dcd0(0x316)+'e'](_0x54dcd0(0x264)+_0x54dcd0(0x182)+_0x1773c4,'');var _0x528d8c=_0x54cc67[_0x54dcd0(0x1ab)+_0x54dcd0(0x182)](_0x5e8256=>_0x5e8256[_0x54dcd0(0x21c)+_0x54dcd0(0x33e)+_0x54dcd0(0x1a2)+'h'](_0x54dcd0(0x21b))),_0x5b5db5=_0x54cc67[_0x54dcd0(0x1ab)+_0x54dcd0(0x182)](_0x5154b4=>_0x5154b4[_0x54dcd0(0x21c)+_0x4dc4b2(0x220)+_0x4dc4b2(0x106)+'h'](_0x54dcd0(0x283)+_0x54dcd0(0x315))),_0x15dd7f=_0x54cc67[_0x4d92a6(0x2df)+_0x54dcd0(0x182)](_0x2f6fed=>_0x2f6fed[_0x54dcd0(0x21c)+_0x54dcd0(0x33e)+_0x4dc4b2(0x106)+'h'](_0x54dcd0(0x329))),_0x3a4e7b=_0x54cc67[_0x54dcd0(0x1ab)+_0x54dcd0(0x182)](_0x52ef59=>_0x52ef59[_0x54dcd0(0x21c)+_0x54dcd0(0x33e)+_0x54dcd0(0x1a2)+'h'](_0x4dc4b2(0x26d)+_0x54dcd0(0x201)+'n')),_0x5716af=[];if(_0x15dd7f[_0x4dc4b2(0x158)+_0x54dcd0(0x20c)]!==0x0)for(var _0x18a7a8=0x0;_0x18a7a8<_0x15dd7f[_0x54dcd0(0x1eb)+_0x54dcd0(0x20c)];_0x18a7a8++){_0x3e0009=_0x3e0009[_0x54dcd0(0x250)+_0x4dc4b2(0x238)+'e'](_0x3a4e7b[_0x18a7a8],'')[_0x54dcd0(0x250)+_0x4dc4b2(0x238)+'e'](_0x15dd7f[_0x18a7a8][_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/url/g,''),'');if(process[_0x4d92a6(0x1c7)][_0x4d92a6(0x23b)+_0x54dcd0(0x22a)]!==undefined)console[_0x4dc4b2(0x239)](_0x3e0009);_0x5716af[_0x54dcd0(0x24d)+'h']({'urlButton':{'displayText':_0x3a4e7b[_0x18a7a8][_0x54dcd0(0x250)+_0x4d92a6(0x266)+'e'](_0x54dcd0(0x1c0)+_0x54dcd0(0x201)+'n','')[_0x54dcd0(0x250)+_0x4d92a6(0x266)+'e'](/\\/g,''),'url':_0x15dd7f[_0x18a7a8][_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/url/g,'')[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/\\/g,'')}});}if(_0x5b5db5[_0x54dcd0(0x1eb)+_0x4dc4b2(0x20b)]!==0x0)for(var _0x18a7a8=0x0;_0x18a7a8<_0x5b5db5[_0x4dc4b2(0x158)+_0x54dcd0(0x20c)];_0x18a7a8++){_0x3e0009=_0x3e0009[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](_0x5b5db5[_0x18a7a8],'');if(process[_0x54dcd0(0x1fe)][_0x54dcd0(0x1a5)+_0x4dc4b2(0x133)]!==undefined)console[_0x54dcd0(0x2e3)](_0x3e0009);_0x5716af[_0x4dc4b2(0x277)+'h']({'quickReplyButton':{'displayText':_0x5b5db5[_0x18a7a8][_0x4dc4b2(0x1a2)+_0x54dcd0(0x316)+'e'](_0x54dcd0(0x283)+_0x54dcd0(0x315),'')[_0x54dcd0(0x250)+_0x4dc4b2(0x238)+'e'](/\\/g,''),'id':_0x54dcd0(0x1b7)+'ve'+(_0x18a7a8+0x1)}});}if(_0x50bf3e[_0x4dc4b2(0x158)+_0x4dc4b2(0x20b)]!==0x0)for(var _0x18a7a8=0x0;_0x18a7a8<_0x50bf3e[_0x54dcd0(0x1eb)+_0x54dcd0(0x20c)];_0x18a7a8++){_0x3e0009=_0x3e0009[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](_0x50bf3e[_0x18a7a8],'')[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](_0x528d8c[_0x18a7a8],''),_0x5716af[_0x54dcd0(0x24d)+'h']({'callButton':{'displayText':_0x50bf3e[_0x18a7a8][_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](_0x54dcd0(0x2fe)+_0x54dcd0(0x201)+'n','')[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/\\/g,''),'phoneNumber':_0x528d8c[_0x18a7a8][_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](_0x54dcd0(0x21b),'')[_0x54dcd0(0x250)+_0x4d92a6(0x266)+'e'](/\\/g,'')}});};var _0x4130da='';_0x3e0009=_0x3e0009[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/{quote}/g,_0x2308c1)[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/{uptime}/g,_0x88b0bd)[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/{sender}/g,_0x2dc319[_0x54dcd0(0x188)+'a'][_0x54dcd0(0x24d)+_0x4dc4b2(0x2a0)+'me'])[_0x4dc4b2(0x1a2)+_0x54dcd0(0x316)+'e'](_0x54dcd0(0x31c)+'}','')[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](_0x54dcd0(0x1ee)+'f}',''),_0x41ac3a!==null&&_0x41ac3a[_0x54dcd0(0x1eb)+_0x54dcd0(0x20c)]!==0x0&&(_0x4130da=_0x41ac3a[0x0],_0x3e0009=_0x3e0009[_0x298991(0x1ec)+_0x54dcd0(0x316)+'e'](_0x41ac3a[0x0],''));if(process[_0x4dc4b2(0x1e0)][_0x54dcd0(0x1a5)+_0x54dcd0(0x22a)]!==undefined)console[_0x54dcd0(0x2e3)](_0x3e0009);if(_0x41ac3a!==null&&_0x41ac3a[_0x54dcd0(0x1eb)+_0x4dc4b2(0x20b)]!==0x0&&_0x41ac3a[0x0][_0x4dc4b2(0x227)+_0x54dcd0(0x271)+'es'](_0x4d92a6(0x2f4))){var _0x198b99=_0x291ecf[_0x54dcd0(0x1c2)+_0x54dcd0(0x271)+'es'](_0x54dcd0(0x1ee)+'f}');return await _0x2dc319[_0x54dcd0(0x2ac)+_0x4dc4b2(0x251)+_0x54dcd0(0x278)+_0x54dcd0(0x221)+_0x54dcd0(0x222)+'te'](await getBuffer(_0x4130da),_0x3e0009,_0x1773c4,_0x5716af,_0x198b99);}else{if(_0x291ecf[_0x54dcd0(0x1c2)+_0x54dcd0(0x271)+'es'](_0x4dc4b2(0x142)+'}'))try{_0x4130da=await _0x2dc319[_0x54dcd0(0x1cd)+_0x54dcd0(0x230)][_0x54dcd0(0x1d0)+_0x54dcd0(0x1ab)+_0x54dcd0(0x21f)+_0x54dcd0(0x328)+_0x54dcd0(0x33a)+'rl'](_0x2dc319[_0x54dcd0(0x2ac)+_0x4dc4b2(0x137)],_0x54dcd0(0x1cf)+'ge');}catch{_0x4130da=await _0x2dc319[_0x54dcd0(0x1cd)+_0x54dcd0(0x230)][_0x4dc4b2(0x19e)+_0x54dcd0(0x1ab)+_0x54dcd0(0x21f)+_0x4dc4b2(0xe8)+_0x54dcd0(0x33a)+'rl'](_0x2dc319[_0x4dc4b2(0x26e)],_0x54dcd0(0x1cf)+'ge');}else{if(_0x291ecf[_0x54dcd0(0x1c2)+_0x54dcd0(0x271)+'es'](_0x4dc4b2(0xd3)+_0x4dc4b2(0x254)+'}'))_0x4130da=await _0x2dc319[_0x54dcd0(0x1cd)+_0x54dcd0(0x230)][_0x4dc4b2(0x19e)+_0x54dcd0(0x1ab)+_0x54dcd0(0x21f)+_0x54dcd0(0x328)+_0x4dc4b2(0x125)+'rl'](_0x2dc319[_0x54dcd0(0x19d)],_0x54dcd0(0x1cf)+'ge');}}return await _0x2dc319[_0x54dcd0(0x2ac)+_0x4d92a6(0x1c4)+_0x54dcd0(0x247)+_0x54dcd0(0x221)+_0x54dcd0(0x222)+'te'](await getBuffer(_0x4130da),_0x3e0009,_0x1773c4,_0x5716af);}if(_0x41ac3a!==null&&(_0x41ac3a[0x0][_0x4dc4b2(0x227)+_0x54dcd0(0x271)+'es'](_0x54dcd0(0x181))||_0x41ac3a[0x0][_0x54dcd0(0x1c2)+_0x54dcd0(0x271)+'es'](_0x54dcd0(0x242)+'g')||_0x41ac3a[0x0][_0x4dc4b2(0x227)+_0x54dcd0(0x271)+'es'](_0x54dcd0(0x2ee)))){var _0x722b4a=await getBuffer(_0x41ac3a[0x0]);return await _0x2dc319[_0x4dc4b2(0x196)+_0x54dcd0(0x230)][_0x54dcd0(0x2ac)+_0x54dcd0(0x23d)+_0x54dcd0(0x262)+'ge'](_0x2dc319[_0x54dcd0(0x19d)],{'image':_0x722b4a,'caption':_0x291ecf[_0x54dcd0(0x250)+_0x4dc4b2(0x238)+'e'](/{quote}/g,_0x2308c1)[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/{uptime}/g,_0x88b0bd)[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/{sender}/g,_0x2dc319[_0x4dc4b2(0x244)+'a'][_0x54dcd0(0x24d)+_0x54dcd0(0x341)+'me'])[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](_0x41ac3a[0x0],'')[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/}/g,'')},{'quoted':_0x2dc319[_0x54dcd0(0x188)+'a']});}if(_0x41ac3a!==null&&(_0x41ac3a[0x0][_0x4d92a6(0x202)+_0x4dc4b2(0x1c1)+'th'](_0x54dcd0(0x2bd))||_0x41ac3a[0x0][_0x4dc4b2(0x110)+_0x4dc4b2(0x1c1)+'th'](_0x4dc4b2(0x1f8)))){var _0x722b4a=await getBuffer(_0x41ac3a[0x0]);return await _0x2dc319[_0x4d92a6(0x1e7)+_0x54dcd0(0x230)][_0x54dcd0(0x2ac)+_0x54dcd0(0x23d)+_0x4dc4b2(0x1fd)+'ge'](_0x2dc319[_0x54dcd0(0x19d)],{'video':_0x722b4a,'caption':_0x291ecf[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/{quote}/g,_0x2308c1)[_0x4dc4b2(0x1a2)+_0x4dc4b2(0x238)+'e'](/{uptime}/g,_0x88b0bd)[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/{sender}/g,_0x2dc319[_0x54dcd0(0x188)+'a'][_0x54dcd0(0x24d)+_0x54dcd0(0x341)+'me'])[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](_0x54dcd0(0x200)+_0x4dc4b2(0x284)+'/','')[_0x4dc4b2(0x1a2)+_0x54dcd0(0x316)+'e'](_0x41ac3a[0x0],'')[_0x54dcd0(0x250)+_0x54dcd0(0x316)+'e'](/}/g,'')},{'quoted':_0x2dc319[_0x54dcd0(0x188)+'a']});}else return await _0x2dc319[_0x54dcd0(0x2ac)+_0x54dcd0(0x31a)+_0x54dcd0(0x2f9)](_0x291ecf[_0x54dcd0(0x250)+_0x4dc4b2(0x238)+'e'](/{uptime}/g,_0x88b0bd)[_0x4dc4b2(0x1a2)+_0x54dcd0(0x316)+'e'](/{quote}/g,_0x2308c1)[_0x54dcd0(0x250)+_0x4dc4b2(0x238)+'e'](/{sender}/g,_0x2dc319[_0x54dcd0(0x188)+'a'][_0x54dcd0(0x24d)+_0x54dcd0(0x341)+'me']));}function isNumeric(_0x1bb60b){return!isNaN(parseFloat(_0x1bb60b))&&isFinite(_0x1bb60b);}async function isAdmin(_0x3504a1,_0x12ebc7=_0x3504a1[_0x644bf9(0x1cd)+_0x644bf9(0x230)][_0x644bf9(0x2c5)+'r']['id']){var _0x1c4fcc=_0x33ff,_0x32aec0=_0x2660fc,_0x2c1835=_0xb14045,_0x54a723=_0x644bf9,_0x37a409=await _0x3504a1[_0x54a723(0x1cd)+_0x54a723(0x230)][_0x32aec0(0x2fc)+_0x54a723(0x31e)+_0x54a723(0x2da)+_0x54a723(0x188)+'a'](_0x3504a1[_0x54a723(0x19d)]),_0x173bf0=_0x37a409[_0x54a723(0x2d5)+_0x2c1835(0x151)+_0x54a723(0x1ff)+_0x54a723(0x1ae)][_0x54a723(0x1ab)+_0x2c1835(0x2a2)](_0x386d43=>_0x386d43[_0x54a723(0x290)+'in']!==null)[_0x1c4fcc(0x2c4)](_0x4f78d2=>_0x4f78d2['id']),_0x46c6c9=_0x12ebc7[_0x54a723(0x304)+'it']('@')[0x0][_0x54a723(0x304)+'it'](':')[0x0];return _0x173bf0[_0x54a723(0x1ab)+_0x54a723(0x182)](_0x40927b=>_0x40927b[_0x54a723(0x1c2)+_0x54a723(0x271)+'es'](_0x46c6c9))[_0x54a723(0x1eb)+_0x54a723(0x20c)]>0x0;}function _0x4dfc(_0x320b0c,_0x159767){var _0x4968d1=_0x3c1a();return _0x4dfc=function(_0x1b64c7,_0x5cd18){_0x1b64c7=_0x1b64c7-0x143;var _0x560d91=_0x4968d1[_0x1b64c7];return _0x560d91;},_0x4dfc(_0x320b0c,_0x159767);}function _0x352b(){var _0x1a3805=_0x33ff,_0x2dfc41=_0x2660fc,_0x547ad8=_0xb14045,_0x543af2=[_0x547ad8(0x236),_0x547ad8(0x1ce),_0x547ad8(0x1c1),_0x547ad8(0x12e),_0x547ad8(0x163),_0x547ad8(0x1ea),_0x547ad8(0x1cd),_0x1a3805(0x2dc),_0x2dfc41(0x2e9),_0x547ad8(0x246),_0x2dfc41(0x28b),_0x547ad8(0xf7),_0x547ad8(0x205),_0x547ad8(0x157),_0x2dfc41(0x152),_0x2dfc41(0x306),_0x547ad8(0x13c),_0x547ad8(0xda),_0x2dfc41(0x309),_0x547ad8(0xfe),_0x547ad8(0x127),_0x547ad8(0x256),_0x2dfc41(0x206),_0x547ad8(0x15d),_0x547ad8(0xeb),_0x547ad8(0x1ae),_0x547ad8(0x276),_0x547ad8(0x248),_0x547ad8(0xf3),_0x2dfc41(0x2b6),_0x2dfc41(0x2e8)+_0x547ad8(0xe3)+_0x547ad8(0x290)+_0x547ad8(0x107)+'k',_0x2dfc41(0x1ce),_0x547ad8(0x15b),_0x547ad8(0x181),_0x547ad8(0x212),_0x547ad8(0x22c),_0x547ad8(0x128),_0x547ad8(0x11d),_0x547ad8(0x250),_0x547ad8(0x100),_0x547ad8(0x20a),_0x547ad8(0x281),_0x547ad8(0x1d1),_0x547ad8(0x135),_0x547ad8(0x1b7),_0x2dfc41(0x2fa),_0x2dfc41(0x2b7)+_0x547ad8(0x298)+_0x547ad8(0x243)+_0x2dfc41(0x274)+'b',_0x547ad8(0x207),_0x2dfc41(0x1f2),_0x547ad8(0x174),_0x547ad8(0x15c),_0x2dfc41(0x26a),_0x2dfc41(0x2a9),_0x547ad8(0x11e),_0x547ad8(0xfa),_0x547ad8(0x279),_0x547ad8(0x1cb),_0x547ad8(0x28d),_0x547ad8(0x112),_0x547ad8(0x239),_0x2dfc41(0x1dc),_0x547ad8(0xdc),_0x547ad8(0x122),_0x1a3805(0x26c),_0x547ad8(0xf0),_0x547ad8(0x110),_0x547ad8(0x16d),_0x547ad8(0x108),_0x547ad8(0xf6),_0x2dfc41(0x273),_0x2dfc41(0x254),_0x547ad8(0x117),_0x2dfc41(0x1c6),_0x2dfc41(0x2fb),_0x547ad8(0x166),_0x2dfc41(0x1b4),_0x2dfc41(0x25b),_0x547ad8(0x126),_0x547ad8(0x1da),_0x2dfc41(0x173),_0x2dfc41(0x1a9),_0x547ad8(0x1fa),_0x547ad8(0x10d),_0x2dfc41(0x170),_0x547ad8(0x188),_0x547ad8(0x182),_0x547ad8(0x295),_0x547ad8(0x173),_0x547ad8(0x253),_0x2dfc41(0x2ef),_0x547ad8(0x153),_0x2dfc41(0x28c),_0x547ad8(0x10a),_0x547ad8(0x171),_0x547ad8(0x241),_0x547ad8(0x1ee),_0x2dfc41(0x1f4),_0x547ad8(0x183),_0x2dfc41(0x2eb)+_0x547ad8(0x140)+_0x547ad8(0x156)+_0x547ad8(0x24d),_0x2dfc41(0x1cc),_0x547ad8(0x270),_0x547ad8(0x152),_0x547ad8(0x139),_0x547ad8(0x1f4),_0x547ad8(0xf5),_0x547ad8(0x223),_0x2dfc41(0x196),_0x2dfc41(0x248),_0x547ad8(0x211),_0x2dfc41(0x2ff),'lac',_0x2dfc41(0x1c4),_0x547ad8(0x237),_0x547ad8(0x19a),_0x2dfc41(0x23c),_0x547ad8(0x1bb),_0x547ad8(0x142),_0x547ad8(0x176),_0x547ad8(0xfb),_0x547ad8(0x1be),_0x547ad8(0x116),'Byt',_0x547ad8(0x19b),_0x2dfc41(0x2b3),_0x547ad8(0x210),_0x547ad8(0x1b2),_0x547ad8(0x17c),_0x547ad8(0x22b),_0x547ad8(0xe8),_0x547ad8(0x29d),_0x547ad8(0x219)+_0x547ad8(0x1e9)+_0x547ad8(0x13d)+_0x2dfc41(0x1d6),_0x1a3805(0x2cc),_0x547ad8(0x213),_0x547ad8(0x218),_0x1a3805(0x291),_0x2dfc41(0x2f2),_0x547ad8(0x189),_0x547ad8(0x1f5),_0x547ad8(0x129),_0x547ad8(0x263),_0x547ad8(0x228),_0x547ad8(0x1b3),_0x547ad8(0x208),_0x547ad8(0x1e2),_0x2dfc41(0x2d0),_0x2dfc41(0x253),_0x547ad8(0x125),_0x2dfc41(0x27e),_0x547ad8(0x261),_0x547ad8(0x1a5),_0x547ad8(0x220),_0x547ad8(0x1e7),_0x547ad8(0x267),_0x2dfc41(0x2c4),_0x547ad8(0xde),_0x2dfc41(0x2ca),'ter',_0x547ad8(0x28f),_0x547ad8(0x23c),_0x547ad8(0x104),_0x547ad8(0x266),_0x547ad8(0x1c9),_0x547ad8(0x244),_0x547ad8(0xf2),_0x2dfc41(0x2fe),_0x547ad8(0x1aa),_0x547ad8(0x29b),_0x547ad8(0x1db),_0x547ad8(0x197),_0x547ad8(0xe9),_0x2dfc41(0x2b9),_0x547ad8(0x294),_0x2dfc41(0x217),_0x547ad8(0x2a3),_0x547ad8(0x299),_0x547ad8(0x17e),_0x547ad8(0x155),_0x547ad8(0x21d),'ow-',_0x2dfc41(0x154),_0x547ad8(0x203),_0x547ad8(0x1c2),_0x547ad8(0x130),_0x547ad8(0x26e),_0x547ad8(0x217),_0x547ad8(0xd5),_0x547ad8(0x1fc),_0x1a3805(0x1ca),_0x547ad8(0x106),'ran',_0x547ad8(0x113),_0x547ad8(0xee),_0x547ad8(0xff),_0x547ad8(0x14b),_0x547ad8(0xfc),_0x547ad8(0x260),_0x547ad8(0x115),_0x547ad8(0x1e8),_0x547ad8(0x201),_0x547ad8(0x1f3),_0x547ad8(0x168),_0x2dfc41(0x18a)+_0x547ad8(0x1a7)+_0x547ad8(0x1f2),_0x2dfc41(0x1ba),_0x547ad8(0x1ef),_0x547ad8(0x297),_0x547ad8(0x222),_0x547ad8(0x1d2),_0x547ad8(0x21e),_0x547ad8(0x17a),_0x547ad8(0x21f),_0x547ad8(0x18c),'oad',_0x547ad8(0x187),_0x547ad8(0x291)+_0x547ad8(0x23b)+_0x547ad8(0x1ff)+_0x2dfc41(0x20d),_0x547ad8(0x20c),_0x547ad8(0x1c7),_0x2dfc41(0x2d6),_0x547ad8(0x2a1),_0x547ad8(0x26d),'./t',_0x547ad8(0x227),_0x547ad8(0x1dd),_0x547ad8(0x1a9),_0x547ad8(0x15a),_0x2dfc41(0x192),_0x547ad8(0x29e),_0x2dfc41(0x222),_0x1a3805(0x204),_0x547ad8(0x1a4),_0x2dfc41(0x2a3),_0x547ad8(0x18e),_0x547ad8(0x196),_0x547ad8(0x179),_0x547ad8(0x221),_0x547ad8(0x19e),_0x547ad8(0x1f8),_0x547ad8(0x29f),_0x2dfc41(0x285),_0x547ad8(0xd4),_0x547ad8(0x1c8),_0x547ad8(0x25a),_0x547ad8(0xea),_0x547ad8(0x180),_0x547ad8(0x16b),_0x547ad8(0x154),_0x547ad8(0x27b),_0x547ad8(0x23e),_0x547ad8(0x27f),_0x2dfc41(0x27b),_0x547ad8(0xd7),_0x547ad8(0x14f),_0x547ad8(0x124),_0x547ad8(0x13e),_0x547ad8(0x16e),_0x547ad8(0x234),_0x547ad8(0x1a1),_0x2dfc41(0x1af),_0x547ad8(0x24e),_0x547ad8(0x235),_0x1a3805(0x26e),_0x547ad8(0x23f),_0x2dfc41(0x2ab),_0x547ad8(0x11f),_0x547ad8(0x15f),_0x547ad8(0xd3),_0x547ad8(0x1f6),_0x547ad8(0x185),_0x547ad8(0x23a),_0x547ad8(0x25f),_0x547ad8(0x272),_0x547ad8(0x1e6),_0x547ad8(0x275),_0x547ad8(0x134),_0x1a3805(0x1bc),_0x2dfc41(0x2ad),_0x547ad8(0x1a3),_0x2dfc41(0x150),_0x547ad8(0x254),_0x547ad8(0x1b8),_0x547ad8(0x1d7),_0x2dfc41(0x1c7),_0x547ad8(0x175),_0x547ad8(0x1c3),_0x547ad8(0x268),_0x547ad8(0x251),_0x2dfc41(0x323),_0x547ad8(0x15e),_0x547ad8(0x13f),_0x2dfc41(0x1d1),_0x547ad8(0x131),_0x547ad8(0x10c),_0x547ad8(0xdd),_0x547ad8(0x151),_0x547ad8(0x283),_0x1a3805(0x1e2),_0x547ad8(0x1b1),_0x547ad8(0x29a),_0x547ad8(0x24a),_0x2dfc41(0x207),_0x547ad8(0x1b4),_0x547ad8(0x22d)+_0x547ad8(0x114)+_0x547ad8(0x1c5)+_0x547ad8(0x123)+'u',_0x2dfc41(0x1ff),_0x2dfc41(0x15a),_0x2dfc41(0x308),_0x547ad8(0x27a),_0x547ad8(0x19c),_0x547ad8(0x1d8),_0x1a3805(0x1a7),_0x547ad8(0x204),_0x547ad8(0x1f0),_0x547ad8(0x22e),_0x547ad8(0x1ca),_0x547ad8(0x1a0),_0x547ad8(0x161),_0x547ad8(0x136),_0x2dfc41(0x2f5),_0x547ad8(0xf9),_0x2dfc41(0x1f3),_0x547ad8(0x1dc)+_0x1a3805(0x2cd)+_0x547ad8(0x132)+'Jx',_0x547ad8(0x22a),_0x547ad8(0xf1),_0x1a3805(0x151),_0x547ad8(0x162),'a,p',_0x2dfc41(0x146),_0x547ad8(0x280),_0x547ad8(0x257),_0x547ad8(0x21c),'ytv',_0x547ad8(0x150),_0x547ad8(0x262),_0x547ad8(0x288),_0x547ad8(0xf8),_0x547ad8(0x1c4),_0x547ad8(0x1c6),_0x2dfc41(0x172),_0x547ad8(0x24b),_0x547ad8(0x202),_0x547ad8(0x17d),_0x547ad8(0x145),_0x547ad8(0xe2),_0x547ad8(0x233),_0x2dfc41(0x1b6),_0x547ad8(0x25c),_0x547ad8(0x1e5),_0x547ad8(0x224),_0x547ad8(0x245),_0x547ad8(0x1ed),_0x547ad8(0x148),_0x547ad8(0x27d),_0x547ad8(0x230),_0x547ad8(0x209),_0x547ad8(0x1fe),_0x2dfc41(0x2c0),_0x547ad8(0x24c),_0x547ad8(0x1f9),_0x2dfc41(0x240),_0x547ad8(0x1eb),_0x547ad8(0x21a),_0x2dfc41(0x26d),_0x547ad8(0x18f),_0x547ad8(0x198),_0x547ad8(0x1a2),_0x2dfc41(0x17d),_0x547ad8(0x1b9),_0x547ad8(0x1f1),_0x547ad8(0x193),_0x547ad8(0x1cc),_0x547ad8(0x28b),_0x547ad8(0x1fb),_0x547ad8(0x1a6),_0x547ad8(0xe5),_0x547ad8(0x292),_0x1a3805(0x1b9),_0x2dfc41(0x16a),_0x547ad8(0x12b)+_0x547ad8(0x12c)+'l',_0x547ad8(0x190),_0x2dfc41(0x1f0),_0x547ad8(0x285),_0x547ad8(0x252),_0x547ad8(0x1fd),_0x547ad8(0x1c0),_0x1a3805(0x2bf),_0x547ad8(0x289),_0x547ad8(0x273),_0x547ad8(0x186),_0x547ad8(0x200),_0x547ad8(0x19d),_0x547ad8(0x141),_0x547ad8(0xed),_0x2dfc41(0x236),_0x547ad8(0x10f),_0x547ad8(0x293),_0x547ad8(0x14e),_0x547ad8(0x170),_0x2dfc41(0x2dc),_0x2dfc41(0x193),'Dow',_0x547ad8(0x1b0),_0x547ad8(0x249),_0x547ad8(0x160),_0x547ad8(0x1d3),_0x547ad8(0x284),_0x547ad8(0x1ac),_0x2dfc41(0x1c3),_0x547ad8(0xd8),_0x2dfc41(0x1f9),_0x547ad8(0x231),_0x547ad8(0xd6),_0x547ad8(0x1e1),_0x547ad8(0x1f7),_0x2dfc41(0x1b7),_0x547ad8(0x1ab),_0x547ad8(0x12a),_0x547ad8(0x165),_0x2dfc41(0x162),_0x547ad8(0x119),_0x547ad8(0x111),_0x547ad8(0x17f),_0x2dfc41(0x17b),_0x547ad8(0x192),_0x2dfc41(0x318),_0x547ad8(0xdf),_0x547ad8(0x19f),_0x547ad8(0x1bc),_0x547ad8(0x143),_0x1a3805(0x1d6),_0x2dfc41(0x19d),_0x2dfc41(0x1a0),_0x547ad8(0x11a),_0x547ad8(0x1e3),_0x1a3805(0x241),_0x547ad8(0x1a8),_0x547ad8(0x177),_0x547ad8(0x101),_0x547ad8(0x191),_0x547ad8(0x102),_0x547ad8(0x16a),_0x547ad8(0x259),_0x547ad8(0x23d),_0x547ad8(0x16c),_0x2dfc41(0x203),_0x1a3805(0x143),_0x2dfc41(0x30d),_0x547ad8(0x24f),_0x2dfc41(0x2f8),_0x547ad8(0x1d6),_0x547ad8(0x118),_0x547ad8(0x28a),_0x1a3805(0x1be)];return _0x352b=function(){return _0x543af2;},_0x352b();}function mentionjid(_0x1a05ea){var _0x40135a=_0x644bf9;return'@'+_0x1a05ea[_0x40135a(0x304)+'it']('@')[0x0][_0x40135a(0x304)+'it'](':')[0x0]+'\x20';}async function getJson(_0x71e608){var {data:_0x5a76f0}=await axios(_0x71e608);return _0x5a76f0;}async function circle(_0x13518b){var _0x426c93=_0x2660fc,_0x11e7d5=_0xb14045,_0x5ee79e=_0x644bf9;if(!_0x13518b[_0x5ee79e(0x250)+_0x5ee79e(0x2e2)+_0x11e7d5(0x15f)+_0x5ee79e(0x18a)+'e'])return await _0x13518b[_0x5ee79e(0x2ac)+_0x11e7d5(0x16f)+_0x5ee79e(0x2f9)](_0x5ee79e(0x1c5)+_0x5ee79e(0x1b1)+_0x11e7d5(0x287)+_0x5ee79e(0x204)+_0x5ee79e(0x20a)+_0x11e7d5(0x193)+_0x5ee79e(0x2f7)+_0x5ee79e(0x2a7)+_0x11e7d5(0x18d));var _0x11cf27=await saveMessage(_0x13518b[_0x11e7d5(0x1a2)+_0x5ee79e(0x2e2)+_0x5ee79e(0x1ed)+_0x5ee79e(0x18a)+'e']);if(_0x11cf27[_0x5ee79e(0x2e9)+_0x5ee79e(0x2aa)+'th'](_0x11e7d5(0x20c)+'p'))ffmpeg(_0x11cf27)[_0x5ee79e(0x206)+_0x5ee79e(0x19a)+_0x426c93(0x2b2)+'t'](_0x11e7d5(0x20c)+_0x426c93(0x24d)+_0x5ee79e(0x2fb))[_0x5ee79e(0x1a9)+'e'](_0x11e7d5(0x1e6)+_0x5ee79e(0x301)+_0x11e7d5(0x27e)+'g')['on'](_0x5ee79e(0x2e9),async()=>{var _0x896fdc=_0x11e7d5,_0x560364=_0x5ee79e,_0x530b1e=await jimp[_0x896fdc(0x1b9)+'d'](_0x560364(0x1f4)+_0x896fdc(0x225)+_0x560364(0x1c8)+'g');_0x530b1e[_0x560364(0x2c2)+_0x896fdc(0x127)](0x1e0,0x1e0),_0x530b1e[_0x560364(0x2df)+_0x896fdc(0x194)](),_0x530b1e[_0x560364(0x327)+_0x560364(0x2dd)+_0x560364(0x272)](_0x560364(0x1cf)+_0x560364(0x1e2)+_0x560364(0x2ee),async(_0x32869d,_0x23cced)=>{var _0x1f7716=_0x33ff,_0x5be16b=_0x4dfc,_0x1a43b1=_0x896fdc,_0x10db40=_0x560364;await fs[_0x10db40(0x269)+_0x10db40(0x19b)+_0x10db40(0x2ff)+_0x10db40(0x208)+'c'](_0x10db40(0x33d)+_0x10db40(0x20a)+_0x1a43b1(0x193)+_0x10db40(0x2f2)+'g',_0x23cced),ffmpeg(_0x10db40(0x33d)+_0x10db40(0x20a)+_0x10db40(0x254)+_0x10db40(0x2f2)+'g')[_0x10db40(0x1f4)+_0x10db40(0x301)+_0x10db40(0x333)+_0x10db40(0x2b5)+'s'](['-y',_0x10db40(0x23c)+_0x10db40(0x19f)+_0x10db40(0x2b2)+_0x1a43b1(0x13a)+_0x5be16b(0x1e5)])[_0x10db40(0x2bb)+_0x10db40(0x1be)+_0x10db40(0x1dc)+_0x10db40(0x314)](_0x10db40(0x217)+_0x10db40(0x339)+_0x10db40(0x334)+_0x10db40(0x335)+_0x10db40(0x32e)+_0x10db40(0x235)+_0x5be16b(0x27d)+_0x10db40(0x32c)+_0x10db40(0x213)+_0x10db40(0x24a)+_0x10db40(0x1c3)+_0x10db40(0x268)+_0x1a43b1(0x224)+_0x10db40(0x21d)+_0x10db40(0x18c)+_0x10db40(0x2d1)+_0x10db40(0x1f3)+_0x5be16b(0x2a8)+_0x10db40(0x29b)+_0x10db40(0x191)+_0x10db40(0x307)+_0x10db40(0x24c)+_0x10db40(0x275)+_0x10db40(0x240)+_0x10db40(0x2d3)+_0x10db40(0x239)+_0x10db40(0x29f)+_0x1a43b1(0x117)+_0x1a43b1(0x109)+_0x10db40(0x183)+_0x10db40(0x1e3)+_0x10db40(0x2a3)+_0x10db40(0x2c0)+_0x10db40(0x225)+_0x10db40(0x2f3)+_0x1f7716(0x2d1)+_0x10db40(0x1e1)+_0x1a43b1(0x10b)+_0x10db40(0x2de)+_0x1a43b1(0x1e5)+_0x1a43b1(0x109)+_0x10db40(0x32e)+_0x10db40(0x22d)+_0x5be16b(0x1df)+_0x10db40(0x294)+'=1')[_0x5be16b(0x2a5)+'e'](_0x1a43b1(0xf4)+_0x10db40(0x1bc)+'p')['on'](_0x10db40(0x2e9),async()=>{var _0xb5b6e9=_0x1a43b1,_0x2f519e=_0x10db40;return await _0x13518b[_0x2f519e(0x2ac)+_0x2f519e(0x31a)+_0x2f519e(0x2f9)](fs[_0x2f519e(0x252)+_0x2f519e(0x297)+_0xb5b6e9(0xf7)+_0x2f519e(0x193)](_0x2f519e(0x2e4)+_0x2f519e(0x1bc)+'p'),_0xb5b6e9(0x216)+_0xb5b6e9(0x138)+'r');});});});else{var _0x38f4b3=await jimp[_0x5ee79e(0x252)+'d'](_0x11cf27);_0x38f4b3[_0x5ee79e(0x2c2)+_0x5ee79e(0x2bc)](0x1e0,0x1e0),_0x38f4b3[_0x5ee79e(0x2df)+_0x11e7d5(0x194)](),_0x38f4b3[_0x426c93(0x2d3)+_0x5ee79e(0x2dd)+_0x5ee79e(0x272)](_0x5ee79e(0x1cf)+_0x5ee79e(0x1e2)+_0x11e7d5(0x20e),async(_0x1e012c,_0x2b4721)=>{var _0x102ec7=_0x5ee79e;return await _0x13518b[_0x102ec7(0x2ac)+_0x102ec7(0x31a)+_0x102ec7(0x2f9)](_0x2b4721,_0x102ec7(0x1cf)+'ge');});}}async function blur(_0xe2918d,_0x3ebf9e=0x5){var _0xe0044e=_0xb14045,_0x1a775a=_0x644bf9;const _0x24a7cd=await jimp[_0x1a775a(0x252)+'d'](_0xe2918d);_0x24a7cd[_0xe0044e(0x1de)+'r'](parseInt(_0x3ebf9e));let _0x7f2f50;return _0x24a7cd[_0x1a775a(0x327)+_0x1a775a(0x2dd)+_0x1a775a(0x272)](_0x1a775a(0x1cf)+_0x1a775a(0x1e2)+_0x1a775a(0x2ee),(_0x9a7829,_0x56eeaf)=>{_0x7f2f50=_0x56eeaf;}),_0x7f2f50;}async function aadhar(_0x4ff2ca,_0xfb6253){var _0x3d9f04=_0x2660fc,_0x51b154=_0xb14045,_0x42284a=_0x644bf9,_0x2f1de3=(await upload(_0xfb6253))[_0x51b154(0x199)+'k'];return await getBuffer(_0x42284a(0x1d6)+_0x42284a(0x27d)+_0x42284a(0x20e)+_0x42284a(0x2f4)+_0x51b154(0x23f)+_0x51b154(0x1ad)+_0x3d9f04(0x159)+_0x42284a(0x1d3)+_0x42284a(0x1dd)+_0x42284a(0x19e)+_0x42284a(0x20d)+_0x42284a(0x303)+_0x3d9f04(0x2d5)+_0x51b154(0x221)+_0x42284a(0x258)+_0x42284a(0x256)+_0x42284a(0x2e0)+_0x42284a(0x1d2)+_0x3d9f04(0x2af)+_0x42284a(0x1d8)+_0x51b154(0x258)+'_by'+_0x51b154(0x178)+_0x51b154(0x22f)+_0x51b154(0x159)+_0x51b154(0x1ba)+_0x42284a(0x194)+_0x42284a(0x339)+_0x42284a(0x1b5)+_0x51b154(0x184)+_0x42284a(0x1c7)+_0x42284a(0x234)+encodeURIComponent(_0x4ff2ca)+(_0x51b154(0x144)+'l=')+_0x2f1de3);}async function chatBot(_0x5ea11a,_0x4745e7){var _0x5ee0e6=_0x2660fc,_0x6070b=_0xb14045,_0x2c3b39=_0x644bf9;if(_0x5ea11a[_0x2c3b39(0x188)+'a'][_0x6070b(0x197)][_0x2c3b39(0x206)+_0x2c3b39(0x2c1)]===!![])return;var _0x5a23ed=_0x5ea11a[_0x2c3b39(0x19d)][_0x2c3b39(0x1c2)+_0x2c3b39(0x271)+'es'](_0x2c3b39(0x1fa)+'us'),_0x5e7d12=_0x5ea11a[_0x6070b(0x1a2)+_0x2c3b39(0x2e2)+_0x5ee0e6(0x169)+_0x2c3b39(0x18a)+'e']?_0x5ea11a[_0x2c3b39(0x250)+_0x2c3b39(0x2e2)+_0x6070b(0x15f)+_0x2c3b39(0x18a)+'e'][_0x2c3b39(0x19d)][_0x6070b(0x10a)+'it']('@')[0x0]===_0x5ea11a[_0x2c3b39(0x1cd)+_0x2c3b39(0x230)][_0x2c3b39(0x2c5)+'r']['id'][_0x2c3b39(0x304)+'it'](':')[0x0]:![],_0x3a6f39=_0x5ea11a[_0x2c3b39(0x1ca)+_0x2c3b39(0x29b)+'n']!==![]&&_0x5ea11a[_0x5ee0e6(0x167)+_0x6070b(0x16a)+'n'][_0x2c3b39(0x1c2)+_0x2c3b39(0x271)+'es'](_0x5ea11a[_0x2c3b39(0x1cd)+_0x2c3b39(0x230)][_0x6070b(0x1ec)+'r']['id'][_0x2c3b39(0x304)+'it'](':')[0x0]+(_0x2c3b39(0x30d)+_0x2c3b39(0x215)+_0x2c3b39(0x29d)+_0x2c3b39(0x2b7)+_0x6070b(0x29c))),_0xbcae0f=_0x5ea11a[_0x2c3b39(0x1ed)+_0x2c3b39(0x18a)+'e'][_0x2c3b39(0x1df)+_0x2c3b39(0x280)+_0x2c3b39(0x27c)+'se']()[_0x2c3b39(0x21c)+_0x2c3b39(0x33e)+_0x2c3b39(0x1a2)+'h'](_0x6070b(0x232));if(_0x5a23ed&&(_0x5e7d12||_0x3a6f39||_0xbcae0f)){var {cnt:_0x30d200}=await getJson(_0x2c3b39(0x1d6)+_0x2c3b39(0x32b)+_0x2c3b39(0x243)+_0x2c3b39(0x1fd)+_0x2c3b39(0x21a)+_0x6070b(0x20d)+_0x6070b(0x1d5)+_0x2c3b39(0x284)+_0x2c3b39(0x327)+_0x2c3b39(0x2ed)+_0x2c3b39(0x267)+_0x2c3b39(0x312)+_0x2c3b39(0x25b)+_0x2c3b39(0x18e)+_0x2c3b39(0x1a7)+_0x2c3b39(0x309)+_0x2c3b39(0x2af)+_0x2c3b39(0x1b3)+_0x2c3b39(0x25e)+_0x2c3b39(0x1e9)+_0x2c3b39(0x186)+'='+_0x5ea11a[_0x2c3b39(0x1cd)+_0x6070b(0x262)][_0x2c3b39(0x2c5)+'r']['id']+(_0x6070b(0x21b)+'g=')+encodeURIComponent(_0x5ea11a[_0x2c3b39(0x1ed)+_0x2c3b39(0x18a)+'e']));return _0x30d200=_0x30d200[_0x5ee0e6(0x23f)+_0x2c3b39(0x316)+'e'](_0x6070b(0x24f),_0x4745e7)[_0x2c3b39(0x250)+_0x2c3b39(0x316)+'e'](_0x2c3b39(0x2d2),_0x4745e7)[_0x2c3b39(0x250)+_0x2c3b39(0x316)+'e'](_0x4745e7+(_0x2c3b39(0x1c9)+_0x2c3b39(0x322)+'am'),_0x2c3b39(0x2d7)+_0x2c3b39(0x2a6)+_0x5ee0e6(0x176)+'1'),await _0x5ea11a[_0x2c3b39(0x2ac)+_0x6070b(0x16f)+_0x2c3b39(0x2f9)](_0x30d200);}if(!_0x5a23ed){var {cnt:_0x30d200}=await getJson(_0x2c3b39(0x1d6)+_0x2c3b39(0x32b)+_0x2c3b39(0x243)+_0x6070b(0x1d7)+_0x2c3b39(0x21a)+'nsh'+_0x2c3b39(0x2a0)+_0x2c3b39(0x284)+_0x5ee0e6(0x2d3)+_0x2c3b39(0x2ed)+_0x2c3b39(0x267)+_0x2c3b39(0x312)+_0x2c3b39(0x25b)+_0x2c3b39(0x18e)+_0x2c3b39(0x1a7)+_0x2c3b39(0x309)+_0x2c3b39(0x2af)+_0x2c3b39(0x1b3)+_0x6070b(0x190)+_0x2c3b39(0x1e9)+_0x2c3b39(0x186)+'='+_0x5ea11a[_0x2c3b39(0x1cd)+_0x2c3b39(0x230)][_0x2c3b39(0x2c5)+'r']['id']+(_0x6070b(0x21b)+'g=')+encodeURIComponent(_0x5ea11a[_0x6070b(0x15f)+_0x6070b(0x164)+'e']));return _0x30d200=_0x30d200[_0x6070b(0x1a2)+_0x2c3b39(0x316)+'e'](_0x2c3b39(0x2a2),_0x4745e7)[_0x5ee0e6(0x23f)+_0x2c3b39(0x316)+'e'](_0x2c3b39(0x2d2),_0x4745e7)[_0x2c3b39(0x250)+_0x6070b(0x238)+'e'](_0x4745e7+(_0x6070b(0x232)+_0x2c3b39(0x322)+'am'),_0x2c3b39(0x2d7)+_0x2c3b39(0x2a6)+_0x2c3b39(0x2a4)+'1'),await _0x5ea11a[_0x2c3b39(0x2ac)+_0x2c3b39(0x31a)+_0x6070b(0x1fa)](_0x30d200);}};function bytesToSize(_0xd0469d){var _0x11ae87=_0xb14045,_0x128d6f=_0x644bf9,_0xf0a7b4=[_0x128d6f(0x321)+'es','KB','MB','GB','TB'];if(_0xd0469d==0x0)return _0x128d6f(0x292)+_0x128d6f(0x1d4);var _0xe390c7=parseInt(Math[_0x128d6f(0x28e)+'or'](Math[_0x128d6f(0x2e3)](_0xd0469d)/Math[_0x11ae87(0x239)](0x400)));return Math[_0x128d6f(0x26c)+'nd'](_0xd0469d/Math[_0x128d6f(0x210)](0x400,_0xe390c7),0x2)+'\x20'+_0xf0a7b4[_0xe390c7];}async function dlYT(_0x4aa4d1,_0x44ac04=_0x644bf9(0x2bb)+'eo',_0x549bf2=_0x644bf9(0x1ad)+'p'){var _0x3abd3a=_0x2660fc,_0x3b628c=_0xb14045,_0x20ac9d=_0x644bf9;const _0x27bab6={'format':_0x20ac9d(0x2bd),'quality':_0x549bf2,'type':_0x44ac04},_0x36fea9=await new Innertube({'gl':'US'});var {thumbnail:_0x5623b4,title:_0x1ccadf}=await _0x36fea9[_0x20ac9d(0x327)+_0x3abd3a(0x283)+_0x3b628c(0x11b)+'s'](_0x4aa4d1);const _0x43fb86=await _0x36fea9[_0x20ac9d(0x327)+_0x20ac9d(0x33b)+_0x20ac9d(0x2ea)+_0x20ac9d(0x257)+_0x20ac9d(0x32f)+'a'](_0x4aa4d1,_0x27bab6);function _0x2b5fd7(_0x54b92b){var _0x1d31e0=_0x3b628c,_0x1fb793=_0x20ac9d,_0x43c065=[_0x1fb793(0x321)+'es','KB','MB','GB','TB'];if(_0x54b92b==0x0)return _0x1fb793(0x292)+_0x1fb793(0x1d4);var _0x5bcee9=parseInt(Math[_0x1fb793(0x28e)+'or'](Math[_0x1d31e0(0x239)](_0x54b92b)/Math[_0x1d31e0(0x239)](0x400)));return Math[_0x1fb793(0x26c)+'nd'](_0x54b92b/Math[_0x1d31e0(0x1b5)](0x400,_0x5bcee9),0x2)+'\x20'+_0x43c065[_0x5bcee9];}var _0x10ced9={'url':_0x43fb86[_0x3abd3a(0x282)+_0x20ac9d(0x1f3)+_0x20ac9d(0x2c7)+_0x20ac9d(0x1c3)+_0x20ac9d(0x289)][_0x3b628c(0x29d)],'thumbnail':_0x5623b4[_0x20ac9d(0x329)],'title':_0x1ccadf,'size':bytesToSize(_0x43fb86[_0x20ac9d(0x270)+_0x20ac9d(0x1f3)+_0x20ac9d(0x2c7)+_0x20ac9d(0x1c3)+_0x20ac9d(0x289)][_0x3b628c(0x254)+_0x20ac9d(0x27e)+_0x20ac9d(0x196)+_0x3b628c(0x167)+'h']),'mb':_0x2b5fd7(_0x43fb86[_0x20ac9d(0x270)+_0x20ac9d(0x1f3)+_0x20ac9d(0x2c7)+_0x20ac9d(0x1c3)+_0x20ac9d(0x289)][_0x3b628c(0x254)+_0x20ac9d(0x27e)+_0x20ac9d(0x196)+_0x3abd3a(0x29d)+'h'])};return _0x10ced9;}async function sendYtQualityList(_0x45df69,_0x2bd76b){var _0x38d488=_0x2660fc,_0x28ca28=_0xb14045,_0x414462=_0x644bf9,_0x2b64c0=!_0x2bd76b[0x1][_0x414462(0x1c2)+_0x414462(0x271)+'es'](_0x414462(0x2c3)+'tu')?_0x45df69[_0x414462(0x250)+_0x414462(0x2e2)+_0x414462(0x1ed)+_0x414462(0x18a)+'e'][_0x414462(0x1ed)+_0x414462(0x18a)+'e']:_0x2bd76b[0x1];if(!_0x2b64c0)return await _0x45df69[_0x414462(0x2ac)+_0x414462(0x31a)+_0x414462(0x2f9)](_0x414462(0x28a)+_0x414462(0x276)+_0x28ca28(0x270));if(!_0x2b64c0[_0x414462(0x1c2)+_0x414462(0x271)+'es'](_0x414462(0x2c3)+'tu'))return await _0x45df69[_0x414462(0x2ac)+_0x414462(0x31a)+_0x414462(0x2f9)](_0x28ca28(0x192)+_0x414462(0x26b)+_0x28ca28(0x1d9)+_0x414462(0x30c));const _0x59c78f=/(?:http(?:s|):\/\/|)(?:(?:www\.|)youtube(?:\-nocookie|)\.com\/(?:watch\?.*(?:|\&)v=|embed|shorts\/|v\/)|youtu\.be\/)([-_0-9A-Za-z]{11})/;var _0x5ea09a=_0x59c78f[_0x414462(0x2eb)+'c'](_0x2b64c0),_0x446354=_0x45df69[_0x414462(0x1cd)+_0x28ca28(0x262)][_0x414462(0x2c5)+'r']['id'][_0x414462(0x304)+'it']('@')[0x0][_0x414462(0x304)+'it'](':')[0x0],_0x53f7db=_0x5ea09a[0x1],_0x8ad058=(await downloadYT(_0x414462(0x1d6)+_0x414462(0x27d)+_0x28ca28(0x1b2)+_0x414462(0x1f4)+_0x414462(0x2ca)+'e/'+_0x53f7db))[_0x414462(0x1a8)+_0x414462(0x1e0)+_0x28ca28(0x20a)],_0xb99813=[];for(var _0x448e87 in _0x8ad058){const _0x430f32={'format':_0x28ca28(0x256),'quality':_0x448e87,'type':_0x414462(0x2bb)+'eo'};_0xb99813[_0x414462(0x24d)+'h']({'title':_0x448e87,'description':_0x414462(0x2c4)+_0x414462(0x205)+_0x8ad058[_0x448e87],'rowId':_0x448e87+';'+_0x53f7db+';'+_0x446354+(_0x414462(0x2b9)+_0x414462(0x246))});}var {title:_0x20a7d6}=await ytdlServer(_0x28ca28(0x25a)+_0x414462(0x27d)+_0x414462(0x325)+_0x414462(0x1f4)+_0x414462(0x2ca)+'e/'+_0x53f7db);const _0xb611aa=[{'title':_0x414462(0x259)+_0x414462(0x1f3)+_0x414462(0x211)+_0x414462(0x282)+_0x414462(0x223)+_0x414462(0x302)+_0x414462(0x24b)+_0x28ca28(0x120)+_0x414462(0x2b5),'rows':_0xb99813}],_0x3cddc4={'text':_0x414462(0x28f)+_0x414462(0x1e0)+_0x414462(0x2d0)+_0x28ca28(0xdc)+_0x414462(0x1b7)+_0x38d488(0x156)+_0x28ca28(0x276)+_0x28ca28(0x229)+_0x414462(0x29b)+'ns','footer':_0x414462(0x24f)+'\x20'+_0x45df69[_0x414462(0x188)+'a'][_0x414462(0x24d)+_0x414462(0x341)+'me'],'title':_0x20a7d6,'buttonText':_0x414462(0x259)+_0x414462(0x1f3)+_0x414462(0x2e5)+_0x28ca28(0x21f)+'ty','sections':_0xb611aa};return await _0x45df69[_0x38d488(0x1e7)+_0x28ca28(0x262)][_0x414462(0x2ac)+_0x28ca28(0x25c)+_0x414462(0x262)+'ge'](_0x45df69[_0x28ca28(0x26e)],_0x3cddc4);}async function processYtv(_0x204015){var _0x8df77a=_0x2660fc,_0x73fdc8=_0xb14045,_0x57bcff=_0x644bf9;if(_0x204015[_0x8df77a(0x241)+'t']&&_0x204015[_0x73fdc8(0x1cc)+'t'][_0x57bcff(0x1c2)+_0x57bcff(0x271)+'es'](_0x204015[_0x57bcff(0x1cd)+_0x57bcff(0x230)][_0x57bcff(0x2c5)+'r']['id'][_0x57bcff(0x304)+'it']('@')[0x0][_0x57bcff(0x304)+'it'](':')[0x0])&&_0x204015[_0x57bcff(0x255)+'t'][_0x57bcff(0x1c2)+_0x57bcff(0x271)+'es'](_0x57bcff(0x22e)+'md')){var _0x7f6bfa=_0x204015[_0x57bcff(0x255)+'t'][_0x57bcff(0x304)+'it'](';'),_0x1fe5d2=_0x7f6bfa[0x0],_0x25fba=_0x7f6bfa[0x1],{url:_0x1c03f9,size:_0x655dd7,thumbnail:_0x363692,title:_0x1d6880}=await downloadYT(_0x25fba,_0x57bcff(0x2bb)+'eo',_0x1fe5d2),_0x271456=_0x655dd7,{thumbnail:_0x363692,title:_0x1d6880}=await ytdlServer(_0x57bcff(0x1d6)+_0x8df77a(0x29c)+_0x57bcff(0x325)+_0x57bcff(0x1f4)+_0x73fdc8(0x212)+'e/'+_0x25fba);if(!_0x271456[_0x57bcff(0x2e9)+_0x57bcff(0x2aa)+'th']('KB')&&parseFloat(_0x271456)>0x64){var _0x59d1b5=[{'urlButton':{'displayText':_0x57bcff(0x273)+_0x57bcff(0x20f)+'ad','url':_0x1c03f9}}];return await _0x204015[_0x57bcff(0x2ac)+_0x57bcff(0x317)+_0x57bcff(0x247)+_0x57bcff(0x221)+_0x73fdc8(0xf9)+'te'](await getBuffer(_0x363692),_0x57bcff(0x207)+_0x57bcff(0x2a9)+_0x8df77a(0x238)+_0x73fdc8(0x25d)+_0x57bcff(0x1a1)+_0x57bcff(0x2e9)+_0x57bcff(0x2f6)+_0x57bcff(0x189)+_0x73fdc8(0x18a)+_0x57bcff(0x18b)+_0x57bcff(0x1e4)+_0x73fdc8(0xe0)+_0x57bcff(0x2a1)+_0x57bcff(0x28b)+_0x57bcff(0x300)+_0x8df77a(0x211)+_0x57bcff(0x261)+_0x57bcff(0x1b9)+_0x57bcff(0x187)+_0x57bcff(0x182)+_0x8df77a(0x2bc)+_0x57bcff(0x1b1)+_0x57bcff(0x2b4)+_0x57bcff(0x231)+_0x57bcff(0x2ab)+_0x73fdc8(0x172)+_0x57bcff(0x324)+_0x73fdc8(0xfd)+_0x57bcff(0x2d9)+'*',_0x1d6880,_0x59d1b5);}return await _0x204015[_0x73fdc8(0x196)+_0x57bcff(0x230)][_0x57bcff(0x2ac)+_0x57bcff(0x23d)+_0x57bcff(0x262)+'ge'](_0x204015[_0x57bcff(0x19d)],{'video':{'url':_0x1c03f9},'mimetype':_0x73fdc8(0xfe)+_0x57bcff(0x299)+_0x73fdc8(0x256),'caption':_0x1d6880,'thumbnail':await getBuffer(_0x363692)},{'quoted':_0x204015[_0x57bcff(0x188)+'a']});}}async function getThumb(_0x38ae77){var {thumbnail:_0xf52fde}=await downloadYT(_0x38ae77),_0x546ca4=await getBuffer(_0xf52fde);return _0x546ca4;}async function rotate(_0x1f3687,_0x124bf5){return new Promise((_0x129469,_0x31c7ed)=>{var _0x55e5b2=_0x3e1b,_0x343caf=_0x3c26;ffmpeg(_0x1f3687)[_0x343caf(0x1d5)+_0x343caf(0x28c)+_0x343caf(0x278)+_0x343caf(0x1f6)+_0x343caf(0x182)](_0x343caf(0x2c8)+_0x343caf(0x305)+_0x343caf(0x1f1)+'='+_0x124bf5)[_0x343caf(0x1a9)+'e'](_0x55e5b2(0x271)+_0x343caf(0x2dc)+_0x343caf(0x214)+_0x343caf(0x251)+_0x343caf(0x1c6)+'p4')['on'](_0x343caf(0x2e9),()=>{var _0x54b69c=_0x4dfc,_0x472451=_0x55e5b2,_0x38b0e9=_0x343caf;_0x124bf5==='3'&&ffmpeg(_0x54b69c(0x24b)+_0x38b0e9(0x2dc)+_0x38b0e9(0x214)+_0x38b0e9(0x251)+_0x38b0e9(0x1c6)+'p4')[_0x38b0e9(0x1d5)+_0x38b0e9(0x28c)+_0x38b0e9(0x278)+_0x38b0e9(0x1f6)+_0x38b0e9(0x182)](_0x38b0e9(0x2c8)+_0x38b0e9(0x305)+_0x38b0e9(0x1f1)+'=2')[_0x472451(0x260)+'e'](_0x472451(0x271)+_0x38b0e9(0x2dc)+_0x38b0e9(0x26a)+_0x38b0e9(0x1f9)+_0x54b69c(0x2f4))['on'](_0x38b0e9(0x2e9),()=>{var _0x4cd278=_0x472451,_0x576a7b=_0x38b0e9;_0x129469(_0x4cd278(0x271)+_0x576a7b(0x2dc)+_0x576a7b(0x26a)+_0x576a7b(0x1f9)+_0x576a7b(0x2bd));}),_0x124bf5!=='3'&&_0x129469(_0x472451(0x271)+_0x38b0e9(0x2dc)+_0x38b0e9(0x214)+_0x38b0e9(0x251)+_0x54b69c(0x192)+'p4');});});};async function parseWelcome(_0x38842f,_0x5292a9){var _0x57c953=_0x33ff,_0x2680f4=_0x2660fc,_0x4f2357=_0xb14045,_0x145f70=_0x644bf9,_0x2c70f8=await _0x5292a9[_0x145f70(0x327)+_0x4f2357(0x233)+_0x145f70(0x18a)+'e'](_0x38842f[_0x145f70(0x19d)]);if(_0x2c70f8!==![]&&_0x38842f[_0x145f70(0x30f)+_0x145f70(0x249)]===0x1b){var _0x2a5ed4=_0x2c70f8[_0x145f70(0x1ed)+_0x145f70(0x18a)+'e'][_0x145f70(0x289)+'ch'](/\bhttps?:\/\/\S+/gi),{subject:_0x2d54fd,owner:_0x1b49a9,participants:_0xb2c223,desc:_0xb367ea}=await _0x38842f[_0x145f70(0x1cd)+_0x145f70(0x230)][_0x145f70(0x326)+_0x145f70(0x31e)+_0x145f70(0x2da)+_0x4f2357(0x244)+'a'](_0x38842f[_0x145f70(0x19d)]);if(_0x2a5ed4!==null)var _0x1dfdd6=_0x2c70f8[_0x145f70(0x1ed)+_0x145f70(0x18a)+'e'][_0x145f70(0x250)+_0x145f70(0x316)+'e'](/{mention}/g,'@'+_0x38842f[_0x145f70(0x2d5)+_0x4f2357(0x151)+_0x2680f4(0x2cc)+'nt'][0x0][_0x145f70(0x304)+'it']('@')[0x0])[_0x145f70(0x250)+_0x145f70(0x316)+'e'](/{line}/g,'\x0a')[_0x145f70(0x250)+_0x145f70(0x316)+'e'](/{pp}/g,'')[_0x4f2357(0x1a2)+_0x145f70(0x316)+'e'](/{gicon}/g,'')[_0x4f2357(0x1a2)+_0x145f70(0x316)+'e'](/{count}/g,_0xb2c223[_0x145f70(0x1eb)+_0x145f70(0x20c)])[_0x145f70(0x250)+_0x145f70(0x316)+'e'](/{group-name}/g,_0x2d54fd)[_0x2680f4(0x23f)+_0x145f70(0x316)+'e'](/{group-desc}/g,_0xb367ea)[_0x57c953(0x1ec)+_0x145f70(0x316)+'e'](_0x2a5ed4[0x0],'')[_0x145f70(0x250)+_0x145f70(0x316)+'e'](/\\/g,'')[_0x145f70(0x250)+_0x145f70(0x316)+'e'](/#/g,'');else var _0x1dfdd6=_0x2c70f8[_0x145f70(0x1ed)+_0x4f2357(0x164)+'e'][_0x145f70(0x250)+_0x145f70(0x316)+'e'](/{mention}/g,'@'+_0x38842f[_0x4f2357(0x10e)+_0x145f70(0x20a)+_0x145f70(0x1ff)+'nt'][0x0][_0x145f70(0x304)+'it']('@')[0x0])[_0x145f70(0x250)+_0x145f70(0x316)+'e'](/{line}/g,'\x0a')[_0x145f70(0x250)+_0x145f70(0x316)+'e'](/{pp}/g,'')[_0x145f70(0x250)+_0x4f2357(0x238)+'e'](/{gicon}/g,'')[_0x4f2357(0x1a2)+_0x145f70(0x316)+'e'](/{count}/g,_0xb2c223[_0x145f70(0x1eb)+_0x145f70(0x20c)])[_0x145f70(0x250)+_0x145f70(0x316)+'e'](/{group-name}/g,_0x2d54fd)[_0x145f70(0x250)+_0x145f70(0x316)+'e'](/{group-desc}/g,_0xb367ea)[_0x145f70(0x250)+_0x145f70(0x316)+'e'](/\\/g,'')[_0x145f70(0x250)+_0x2680f4(0x266)+'e'](/#/g,'');if(_0x2c70f8[_0x4f2357(0x15f)+_0x145f70(0x18a)+'e'][_0x145f70(0x1c2)+_0x4f2357(0x26f)+'es'](_0x145f70(0x283)+_0x4f2357(0xe7))){_0x1dfdd6=_0x1dfdd6[_0x2680f4(0x23f)+_0x145f70(0x316)+'e'](/#/g,'');var _0x3e120f=_0x2c70f8[_0x145f70(0x1ed)+_0x145f70(0x18a)+'e'];_0x3e120f=_0x3e120f[_0x145f70(0x250)+_0x4f2357(0x238)+'e'](_0x4f2357(0x142)+'}','')[_0x145f70(0x250)+_0x4f2357(0x238)+'e'](_0x4f2357(0x12f)+_0x145f70(0x310)+'}','')[_0x145f70(0x250)+_0x145f70(0x316)+'e'](_0x145f70(0x18f)+_0x4f2357(0x1a9)+_0x145f70(0x180)+_0x145f70(0x227),'')[_0x145f70(0x250)+_0x57c953(0x1f6)+'e'](_0x145f70(0x18f)+_0x145f70(0x1c4)+_0x4f2357(0x1cf)+_0x145f70(0x1f7),'')[_0x145f70(0x250)+_0x145f70(0x316)+'e'](_0x145f70(0x1ee)+_0x145f70(0x1fb)+'}','')[_0x145f70(0x250)+_0x145f70(0x316)+'e'](/\\/g,'');if(_0x2a5ed4!==null)_0x2a5ed4=_0x2a5ed4[_0x4f2357(0x1e8)+_0x145f70(0x182)](_0xf0413e=>_0xf0413e[_0x4f2357(0x110)+_0x4f2357(0x1c1)+'th'](_0x145f70(0x181))||_0xf0413e[_0x145f70(0x2e9)+_0x145f70(0x2aa)+'th'](_0x4f2357(0x20e))||_0xf0413e[_0x145f70(0x2e9)+_0x145f70(0x2aa)+'th'](_0x145f70(0x242)+'g')||_0xf0413e[_0x145f70(0x2e9)+_0x145f70(0x2aa)+'th'](_0x145f70(0x2bd)));if(_0x2a5ed4[_0x4f2357(0x158)+_0x145f70(0x20c)]!==0x0)_0x3e120f=_0x3e120f[_0x2680f4(0x23f)+_0x4f2357(0x238)+'e'](_0x2a5ed4[0x0],'');_0x3e120f=_0x3e120f[_0x145f70(0x304)+'it']('#');var _0x2e7ba8=_0x3e120f[_0x4f2357(0x1e8)+_0x2680f4(0x279)](_0x3dd3c2=>_0x3dd3c2[_0x4f2357(0x22e)+_0x145f70(0x33e)+_0x2680f4(0x147)+'h'](_0x145f70(0x2fe)+_0x4f2357(0x268)+'n')),_0xb518dc=_0x3e120f[_0x145f70(0x1ab)+_0x145f70(0x182)](_0x1774ab=>_0x1774ab[_0x145f70(0x21c)+_0x145f70(0x33e)+_0x145f70(0x1a2)+'h'](_0x145f70(0x264)+_0x145f70(0x182)));_0xb518dc=_0xb518dc[_0x145f70(0x1eb)+_0x4f2357(0x20b)]!==0x0?_0xb518dc[0x0][_0x145f70(0x250)+_0x4f2357(0x238)+'e'](_0x4f2357(0x269)+_0x145f70(0x182),''):'';if(_0xb518dc!=='')_0x1dfdd6=_0x1dfdd6[_0x145f70(0x250)+_0x4f2357(0x238)+'e'](/url/g,'')[_0x145f70(0x250)+_0x145f70(0x316)+'e'](_0x4f2357(0x269)+_0x4f2357(0x2a2)+_0xb518dc,'');var _0x33598d=_0x3e120f[_0x145f70(0x1ab)+_0x145f70(0x182)](_0x48ddfa=>_0x48ddfa[_0x145f70(0x21c)+_0x145f70(0x33e)+_0x145f70(0x1a2)+'h'](_0x2680f4(0x1ea))),_0x36815b=_0x3e120f[_0x145f70(0x1ab)+_0x4f2357(0x2a2)](_0x239cb3=>_0x239cb3[_0x145f70(0x21c)+_0x145f70(0x33e)+_0x4f2357(0x106)+'h'](_0x145f70(0x283)+_0x145f70(0x315))),_0xd479f0=_0x3e120f[_0x145f70(0x1ab)+_0x145f70(0x182)](_0x33a164=>_0x33a164[_0x145f70(0x21c)+_0x145f70(0x33e)+_0x4f2357(0x106)+'h'](_0x145f70(0x329))),_0x243605=_0x3e120f[_0x145f70(0x1ab)+_0x145f70(0x182)](_0x12d6ef=>_0x12d6ef[_0x145f70(0x21c)+_0x2680f4(0x28f)+_0x145f70(0x1a2)+'h'](_0x145f70(0x1c0)+_0x145f70(0x201)+'n')),_0x26719f=[];if(_0xd479f0[_0x145f70(0x1eb)+_0x145f70(0x20c)]!==0x0)for(var _0x5cad6c=0x0;_0x5cad6c<_0xd479f0[_0x145f70(0x1eb)+_0x145f70(0x20c)];_0x5cad6c++){_0x1dfdd6=_0x1dfdd6[_0x145f70(0x250)+_0x145f70(0x316)+'e'](_0x243605[_0x5cad6c],'')[_0x145f70(0x250)+_0x4f2357(0x238)+'e'](_0xd479f0[_0x5cad6c],''),_0x26719f[_0x145f70(0x24d)+'h']({'urlButton':{'displayText':_0x243605[_0x5cad6c][_0x145f70(0x250)+_0x145f70(0x316)+'e'](_0x4f2357(0x26d)+_0x145f70(0x201)+'n',''),'url':_0xd479f0[_0x5cad6c][_0x145f70(0x250)+_0x145f70(0x316)+'e'](/url/g,'')}});}if(_0x36815b[_0x145f70(0x1eb)+_0x145f70(0x20c)]!==0x0)for(var _0x5cad6c=0x0;_0x5cad6c<_0x36815b[_0x145f70(0x1eb)+_0x145f70(0x20c)];_0x5cad6c++){_0x1dfdd6=_0x1dfdd6[_0x145f70(0x250)+_0x145f70(0x316)+'e'](_0x36815b[_0x5cad6c],''),_0x26719f[_0x145f70(0x24d)+'h']({'quickReplyButton':{'displayText':_0x36815b[_0x5cad6c][_0x145f70(0x250)+_0x2680f4(0x266)+'e'](_0x145f70(0x283)+_0x145f70(0x315),''),'id':_0x145f70(0x27f)+_0x2680f4(0x320)+'e'+(_0x5cad6c+0x1)}});}if(_0x2e7ba8[_0x145f70(0x1eb)+_0x145f70(0x20c)]!==0x0)for(var _0x5cad6c=0x0;_0x5cad6c<_0x2e7ba8[_0x145f70(0x1eb)+_0x4f2357(0x20b)];_0x5cad6c++){_0x1dfdd6=_0x1dfdd6[_0x145f70(0x250)+_0x145f70(0x316)+'e'](_0x2e7ba8[_0x5cad6c],'')[_0x145f70(0x250)+_0x145f70(0x316)+'e'](_0x33598d[_0x5cad6c],''),_0x26719f[_0x4f2357(0x277)+'h']({'callButton':{'displayText':_0x2e7ba8[_0x5cad6c][_0x4f2357(0x1a2)+_0x145f70(0x316)+'e'](_0x4f2357(0x295)+_0x145f70(0x201)+'n',''),'phoneNumber':_0x33598d[_0x5cad6c][_0x145f70(0x250)+_0x145f70(0x316)+'e'](_0x145f70(0x21b),'')}});}var _0x5b1dc4='';if(_0x2a5ed4[_0x4f2357(0x158)+_0x145f70(0x20c)]!==0x0)_0x5b1dc4=_0x2a5ed4[0x0];if(_0x2a5ed4[_0x145f70(0x1eb)+_0x145f70(0x20c)]!==0x0&&_0x2a5ed4[0x0][_0x145f70(0x2e9)+'sWi'+'th'](_0x145f70(0x2bd)))return await _0x38842f[_0x145f70(0x2ac)+_0x145f70(0x202)+_0x57c953(0x185)+_0x145f70(0x221)+_0x4f2357(0xf9)+'te'](await getBuffer(_0x5b1dc4),_0x1dfdd6,_0xb518dc,_0x26719f,_0x2c70f8[_0x4f2357(0x15f)+_0x145f70(0x18a)+'e'][_0x2680f4(0x145)+_0x4f2357(0x26f)+'es'](_0x145f70(0x1ee)+'f}'));else{if(_0x2c70f8[_0x145f70(0x1ed)+_0x145f70(0x18a)+'e'][_0x145f70(0x1c2)+_0x4f2357(0x26f)+'es'](_0x145f70(0x31c)+'}'))try{_0x5b1dc4=await _0x38842f[_0x145f70(0x1cd)+_0x145f70(0x230)][_0x145f70(0x1d0)+_0x145f70(0x1ab)+_0x145f70(0x21f)+_0x145f70(0x328)+_0x145f70(0x33a)+'rl'](_0x38842f[_0x145f70(0x2d5)+_0x145f70(0x20a)+_0x145f70(0x1ff)+'nt'][0x0],_0x145f70(0x1cf)+'ge');}catch{_0x5b1dc4=await _0x38842f[_0x145f70(0x1cd)+_0x145f70(0x230)][_0x145f70(0x1d0)+_0x145f70(0x1ab)+_0x4f2357(0x161)+_0x145f70(0x328)+_0x145f70(0x33a)+'rl'](_0x38842f[_0x4f2357(0x26e)],_0x4f2357(0x221)+'ge');}else{if(_0x2c70f8[_0x145f70(0x1ed)+_0x145f70(0x18a)+'e'][_0x145f70(0x1c2)+_0x145f70(0x271)+'es'](_0x145f70(0x1ee)+_0x4f2357(0x254)+'}'))_0x5b1dc4=await _0x38842f[_0x4f2357(0x196)+_0x145f70(0x230)][_0x4f2357(0x19e)+_0x145f70(0x1ab)+_0x145f70(0x21f)+_0x145f70(0x328)+_0x4f2357(0x125)+'rl'](_0x38842f[_0x145f70(0x19d)],_0x145f70(0x1cf)+'ge');}}return await _0x38842f[_0x145f70(0x2ac)+_0x4f2357(0x1d0)+_0x145f70(0x247)+_0x145f70(0x221)+_0x145f70(0x222)+'te'](await getBuffer(_0x5b1dc4),_0x1dfdd6,_0xb518dc,_0x26719f);}else{if(_0x2a5ed4!==null&&!_0x2c70f8[_0x145f70(0x1ed)+_0x145f70(0x18a)+'e'][_0x145f70(0x1c2)+_0x145f70(0x271)+'es'](_0x4f2357(0x12a)+_0x145f70(0x315))&&(_0x2a5ed4[0x0][_0x145f70(0x2e9)+_0x145f70(0x2aa)+'th'](_0x4f2357(0x148)+'g')||_0x2a5ed4[0x0][_0x145f70(0x2e9)+_0x57c953(0x2b7)+'th'](_0x145f70(0x181))||_0x2a5ed4[0x0][_0x4f2357(0x110)+_0x4f2357(0x1c1)+'th'](_0x4f2357(0x20e))))return await _0x38842f[_0x145f70(0x1cd)+_0x145f70(0x230)][_0x145f70(0x2ac)+_0x145f70(0x23d)+_0x2680f4(0x276)+'ge'](_0x38842f[_0x4f2357(0x26e)],{'image':{'u:_0x2a5ed4[0x0]},'caption':_0x1dfdd6,'mentions':_0x38842f[_0x145f70(0x2d5)+_0x145f70(0x20a)+_0x145f70(0x1ff)+'nt']});else{if(_0x2a5ed4!==null&&!_0x2c70f8[_0x145f70(0x1ed)+_0x145f70(0x18a)+'e'][_0x145f70(0x1c2)+_0x145f70(0x271)+'es'](_0x145f70(0x283)+_0x145f70(0x315))(_0x2a5ed4[0x0][_0x4f2357(0x110)+_0x145f70(0x2aa)+'th'](_0x145f70(0x2bd))||_0x2a5ed4[0x0][_0x145f70(0x2e9)+_0x145f70(0x2aa)+'th'](_0x145f70(0x1d1))))return await _0x38842f[_0x145f70(0x1cd)+_0x145f70(0x230)][_0x145f70(0x2ac)+_0x4f2357(0x25c)+_0x145f70(0x262)+'ge'](_0x38842f[_0x4f2357(0x26e)],{'video':{'url':_0x2a5ed4[0x0]},'caption':_0x1dfdd6,'mentions':_0x38842f[_0x145f70(0x2d5)+_0x145f70(0x20a)+_0x145f70(0x1ff)+'nt']});else{if(_0x2c70f8[_0x145f70(0x1ed)+_0x145f70(0x18a)+'e'][_0x145f70(0x1c2)+_0x145f70(0x271)+'es'](_0x4f2357(0x142)+'}')){try{var _0x571c9b=await _0x38842f[_0x145f70(0x1cd)+_0x145f70(0x230)][_0x145f70(0x1d0)+_0x145f70(0x1ab)+_0x145f70(0x21f)+_0x145f70(0x328)+_0x145f70(0x33a)+'rl'](_0x38842f[_0x145f70(0x2d5)+_0x145f70(0x20a)+_0x145f70(0x1ff)+'nt'][0x0],_0x145f70(0x1cf)+'ge');}catch{var _0x571c9b=await _0x38842f[_0x145f70(0x1cd)+_0x145f70(0x230)][_0x145f70(0x1d0)+_0x145f70(0x1ab)+_0x145f70(0x21f)+_0x145f70(0x328)+_0x145f70(0x33a)+'rl'](_0x38842f[_0x2680f4(0x209)],_0x2680f4(0x1ab)+'ge');}return await _0x38842f[_0x145f70(0x1cd)+_0x145f70(0x230)][_0x145f70(0x2ac)+_0x145f70(0x23d)+_0x145f70(0x262)+'ge'](_0x38842f[_0x57c953(0x189)],{'image':{'url':_0x571c9b},'caption':_0x1dfdd6,'mentions':_0x38842f[_0x145f70(0x2d5)+_0x145f70(0x20a)+_0x145f70(0x1ff)+'nt']});}else{if(_0x2c70f8[_0x145f70(0x1ed)+_0x145f70(0x18a)+'e'][_0x145f70(0x1c2)+_0x145f70(0x271)+'es'](_0x145f70(0x1ee)+_0x4f2357(0x254)+'}')){var _0x571c9b=await _0x38842f[_0x4f2357(0x196)+_0x145f70(0x230)][_0x145f70(0x1d0)+_0x2680f4(0x2df)+_0x4f2357(0x161)+_0x2680f4(0x194)+_0x57c953(0x21a)+'rl'](_0x38842f[_0x145f70(0x19d)],_0x145f70(0x1cf)+'ge');return await _0x38842f[_0x145f70(0x1cd)+_0x145f70(0x230)][_0x145f70(0x2ac)+_0x145f70(0x23d)+_0x145f70(0x262)+'ge'](_0x38842f[_0x145f70(0x19d)],{'image':{'url':_0x571c9b},'caption':_0x1dfdd6,'mentions':_0x38842f[_0x145f70(0x2d5)+_0x145f70(0x20a)+_0x145f70(0x1ff)+'nt']});}else return await _0x38842f[_0x145f70(0x1cd)+_0x145f70(0x230)][_0x4f2357(0x163)+_0x145f70(0x23d)+_0x145f70(0x262)+'ge'](_0x38842f[_0x145f70(0x19d)],{'text':_0x1dfdd6,'mentions':_0x38842f[_0x145f70(0x2d5)+_0x145f70(0x20a)+_0x4f2357(0x175)+'nt']});}}}}}}function _0x3c1a(){var _0x471f0a=_0x33ff,_0x20cd65=['&ap',_0x471f0a(0x110),_0x471f0a(0x273),_0x471f0a(0x236),_0x471f0a(0x18b),'ELX',_0x471f0a(0x20d),':co','//q',_0x471f0a(0x14c),_0x471f0a(0x267),'36ZmQluv','{pp',_0x471f0a(0x2a7),_0x471f0a(0x251),_0x471f0a(0x2c0),_0x471f0a(0x233),_0x471f0a(0x12d),_0x471f0a(0x11c),'ABA',_0x471f0a(0x1a3),'rou',_0x471f0a(0x194),_0x471f0a(0x209),_0x471f0a(0x252),_0x471f0a(0x20a),_0x471f0a(0x2ce),_0x471f0a(0x211),_0x471f0a(0x22a),_0x471f0a(0x1f2),_0x471f0a(0x1ec),_0x471f0a(0x199),'lis',_0x471f0a(0x277),_0x471f0a(0x1ab),_0x471f0a(0x206),_0x471f0a(0x2a1),'\x20a\x20',_0x471f0a(0x19b),_0x471f0a(0x158),'0:f',_0x471f0a(0x23c),'./t',_0x471f0a(0x2bc),_0x471f0a(0x28b),_0x471f0a(0x154),_0x471f0a(0x134),'ura',_0x471f0a(0x2da),'.ve',_0x471f0a(0x164),_0x471f0a(0x1db),_0x471f0a(0x117),'wel',_0x471f0a(0x2b4),_0x471f0a(0x27b),_0x471f0a(0x187),_0x471f0a(0x185),'aga',_0x471f0a(0x173),_0x471f0a(0x156),'Mes','g\x20h',_0x471f0a(0x24f),_0x471f0a(0x250),_0x471f0a(0x27f),_0x471f0a(0x23f),_0x471f0a(0x222),_0x471f0a(0x2de),_0x471f0a(0x1f6),_0x471f0a(0x165),_0x471f0a(0x20c),_0x471f0a(0x1e0),_0x471f0a(0x1f7),_0x471f0a(0x143),_0x471f0a(0x25d),_0x471f0a(0x1c4),_0x471f0a(0x239),_0x471f0a(0x269),_0x471f0a(0x1de),'Nee',_0x471f0a(0x224),_0x471f0a(0x123),_0x471f0a(0x287),_0x471f0a(0x276),_0x471f0a(0x12f),_0x471f0a(0x234),_0x471f0a(0x253),'ter',_0x471f0a(0x242),_0x471f0a(0x29d),_0x471f0a(0x17c),_0x471f0a(0x21d),'Str',_0x471f0a(0x219),'y=m',_0x471f0a(0x2ac),_0x471f0a(0x208),'Det',_0x471f0a(0x2db),_0x471f0a(0x174),_0x471f0a(0x1b7),_0x471f0a(0x1e2),_0x471f0a(0x1bb),_0x471f0a(0x16e),_0x471f0a(0x172),'c\x20l',_0x471f0a(0x1f1),_0x471f0a(0x192),_0x471f0a(0x28f),'rts',_0x471f0a(0x148),_0x471f0a(0x243),'tQd',_0x471f0a(0x115),_0x471f0a(0x228),_0x471f0a(0x132),'zos','ing',_0x471f0a(0x221),_0x471f0a(0x201),_0x471f0a(0x265),_0x471f0a(0x237),_0x471f0a(0x1fe),'ngt',_0x471f0a(0x16c),_0x471f0a(0x2a2),_0x471f0a(0x17b),_0x471f0a(0x247),_0x471f0a(0x28d),_0x471f0a(0x214),_0x471f0a(0x23a),_0x471f0a(0x184),_0x471f0a(0x286),'m/s',_0x471f0a(0x2cb),'emp',_0x471f0a(0x2d9),_0x471f0a(0x116),'flu','s.m',_0x471f0a(0x244),'ike',_0x471f0a(0x13a),_0x471f0a(0x129),_0x471f0a(0x2d0),'ili',_0x471f0a(0x169),_0x471f0a(0x291),_0x471f0a(0x235),_0x471f0a(0x2c7),_0x471f0a(0x25a),'-ff',_0x471f0a(0x2e5),'nor',_0x471f0a(0x2d8),_0x471f0a(0x1e4),_0x471f0a(0x25b),_0x471f0a(0x285),_0x471f0a(0x168),'eta',_0x471f0a(0x20e),_0x471f0a(0x176),_0x471f0a(0x2e1),_0x471f0a(0x11a),'729',_0x471f0a(0x114),_0x471f0a(0x21c),_0x471f0a(0x1b2),_0x471f0a(0x258),_0x471f0a(0x262),_0x471f0a(0x19c),_0x471f0a(0x22f),_0x471f0a(0x2c3),_0x471f0a(0x1ce),_0x471f0a(0x2e3),_0x471f0a(0x218),'ion','get',_0x471f0a(0x207),'pi/',_0x471f0a(0x15e),'6Mo',_0x471f0a(0x1ba),_0x471f0a(0x19a),_0x471f0a(0x155),_0x471f0a(0x19e),_0x471f0a(0x1b4),_0x471f0a(0x141),_0x471f0a(0x215),_0x471f0a(0x1fb),_0x471f0a(0x226),_0x471f0a(0x248),_0x471f0a(0x111),_0x471f0a(0x1a5),_0x471f0a(0x160),_0x471f0a(0x2d3),'git',_0x471f0a(0x1f9),_0x471f0a(0x1d7),_0x471f0a(0x14d),_0x471f0a(0x23e),'515',_0x471f0a(0x29a),_0x471f0a(0x1b5),_0x471f0a(0x138),'put','0:2','d=1','Dat','upd',_0x471f0a(0x290),_0x471f0a(0x279),_0x471f0a(0x2ad),'.we',_0x471f0a(0x284),_0x471f0a(0x2d7),_0x471f0a(0x240),_0x471f0a(0x274),_0x471f0a(0x2d4),'\x20fi',_0x471f0a(0x24d),'ton',_0x471f0a(0x191),_0x471f0a(0x1b1),_0x471f0a(0x2af),_0x471f0a(0x27c),_0x471f0a(0x2ba),';yt',_0x471f0a(0x11b),_0x471f0a(0x13d),_0x471f0a(0x22d),_0x471f0a(0x1cc),_0x471f0a(0x2aa),_0x471f0a(0x135),'dom',_0x471f0a(0x1c8),_0x471f0a(0x1e7),_0x471f0a(0x26b),_0x471f0a(0x1fd),_0x471f0a(0x216),'foo','tio',_0x471f0a(0x1ee),_0x471f0a(0x255),_0x471f0a(0x268),_0x471f0a(0x217),_0x471f0a(0x24a),'res','mMe',_0x471f0a(0x1a2),_0x471f0a(0x159),'leS',_0x471f0a(0x139),_0x471f0a(0x1da),'com','241929aOtxVL','gin',_0x471f0a(0x18d),_0x471f0a(0x22e),_0x471f0a(0x27a),_0x471f0a(0x203),'e\x201','ent',_0x471f0a(0x1ef),_0x471f0a(0x186),_0x471f0a(0x200),_0x471f0a(0x14e),_0x471f0a(0x212),_0x471f0a(0x21b),_0x471f0a(0x157),'\x20se',_0x471f0a(0x1a0),_0x471f0a(0x256),_0x471f0a(0x24e),_0x471f0a(0x112),'@g.','fig',_0x471f0a(0x1ed),'o=d','ess','ten',_0x471f0a(0x145),_0x471f0a(0x16d),_0x471f0a(0x213),_0x471f0a(0x1aa),_0x471f0a(0x136),_0x471f0a(0x283),_0x471f0a(0x23b),_0x471f0a(0x1d4),_0x471f0a(0x12c),'cTW',_0x471f0a(0x231),_0x471f0a(0x2bb),_0x471f0a(0x18e),_0x471f0a(0x183),_0x471f0a(0x1ac),'/fl',_0x471f0a(0x125),'men',_0x471f0a(0x15b),'mes',_0x471f0a(0x205),'jus',_0x471f0a(0x13f),'ada',_0x471f0a(0x257),_0x471f0a(0x26f),_0x471f0a(0x26a),'gba',_0x471f0a(0x17d),_0x471f0a(0x293),'ego',_0x471f0a(0x13e),'kl1',_0x471f0a(0x16f),'137','vkl',_0x471f0a(0x1eb),_0x471f0a(0x11d),_0x471f0a(0x297),'tat',_0x471f0a(0x11f),_0x471f0a(0x181),_0x471f0a(0x2b1),_0x471f0a(0x294),'ssl',_0x471f0a(0x230),_0x471f0a(0x2c5),_0x471f0a(0x152),'nod',_0x471f0a(0x1b0),'xt=',_0x471f0a(0x12b),'217',_0x471f0a(0x124),_0x471f0a(0x26d),_0x471f0a(0x177),_0x471f0a(0x2b9),_0x471f0a(0x2d5),'e:\x20',_0x471f0a(0x113),_0x471f0a(0x238),_0x471f0a(0x2a8),_0x471f0a(0x24b),'x60','663',_0x471f0a(0x2a3),_0x471f0a(0x27e),_0x471f0a(0x2a4),_0x471f0a(0x2b7),_0x471f0a(0x178),_0x471f0a(0x197),'rce',_0x471f0a(0x1d9),_0x471f0a(0x23d),_0x471f0a(0x1dc),_0x471f0a(0x120),_0x471f0a(0x150),'ry/',_0x471f0a(0x1c5),_0x471f0a(0x225),_0x471f0a(0x1d8),_0x471f0a(0x14b),_0x471f0a(0x126),_0x471f0a(0x29b),_0x471f0a(0x281),_0x471f0a(0x21e),_0x471f0a(0x2b6),_0x471f0a(0x19d),_0x471f0a(0x2e2),_0x471f0a(0x1af),'ets',_0x471f0a(0x170),_0x471f0a(0x266),'cir',_0x471f0a(0x1c7),_0x471f0a(0x22c),_0x471f0a(0x2c6),_0x471f0a(0x18a),_0x471f0a(0x1a1),'0:(','teU','t=r',_0x471f0a(0x271),_0x471f0a(0x1d3),_0x471f0a(0x292),'md8',_0x471f0a(0x130),'-af',_0x471f0a(0x15d),_0x471f0a(0x1f0),_0x471f0a(0x1e9),_0x471f0a(0x128),'es\x20',_0x471f0a(0x275),_0x471f0a(0x127),_0x471f0a(0x162),'EAc',_0x471f0a(0x15a),'mus','ss=','ed_',_0x471f0a(0x2e0),_0x471f0a(0x1e6),_0x471f0a(0x1e1),'Aco',_0x471f0a(0x254),_0x471f0a(0x14f),_0x471f0a(0x1c3),_0x471f0a(0x210),_0x471f0a(0x2d1),_0x471f0a(0x180),_0x471f0a(0x2c9),_0x471f0a(0x137),_0x471f0a(0x2a0),_0x471f0a(0x17a),_0x471f0a(0x2b3),_0x471f0a(0x18c),_0x471f0a(0x29e),'Siz',_0x471f0a(0x19f),'you',_0x471f0a(0x288),_0x471f0a(0x202),'ebp','htt',_0x471f0a(0x2bd),_0x471f0a(0x296),_0x471f0a(0x1bf),_0x471f0a(0x163),_0x471f0a(0x166),_0x471f0a(0x2b8),_0x471f0a(0x246),_0x471f0a(0x1f3),_0x471f0a(0x1ea),_0x471f0a(0x29f),_0x471f0a(0x2ca),_0x471f0a(0x229),'lit',_0x471f0a(0x1b3),_0x471f0a(0x1c2),_0x471f0a(0x259),_0x471f0a(0x25e),_0x471f0a(0x146),_0x471f0a(0x142),'d\x20l','/pi',_0x471f0a(0x298),_0x471f0a(0x29c),_0x471f0a(0x16b),_0x471f0a(0x1f8),_0x471f0a(0x272),_0x471f0a(0x282),_0x471f0a(0x264),',pa','ava',_0x471f0a(0x204),_0x471f0a(0x2c1),_0x471f0a(0x15f),'op\x20',_0x471f0a(0x189),_0x471f0a(0x13c),'gif',_0x471f0a(0x263),_0x471f0a(0x182),'123','k-a','./s','\x20do',_0x471f0a(0x270),_0x471f0a(0x232),'rch',_0x471f0a(0x11e),'gan',_0x471f0a(0x1e3),_0x471f0a(0x121),'dMe',_0x471f0a(0x28a),'t\x20c',_0x471f0a(0x1f5),_0x471f0a(0x17e),'hVi',_0x471f0a(0x220),_0x471f0a(0x1a9)];return _0x3c1a=function(){return _0x20cd65;},_0x3c1a();}async function sticker(_0x1d6431,_0x8f5df5=_0x644bf9(0x1cf)+'ge'){var _0xeb35ae=_0x33ff,_0x3493b3=_0x2660fc,_0x1401ac=_0xb14045,_0x15a774=_0x644bf9,_0xe62432=['-y',_0x1401ac(0x17b)+_0x3493b3(0x24f)+_0x1401ac(0x25b)+_0x1401ac(0x13a)+_0x15a774(0x1e5)],_0x1aec1b=_0x15a774(0x217)+_0x15a774(0x339)+_0x1401ac(0x228)+_0x15a774(0x335)+_0x3493b3(0x2b5)+_0x15a774(0x235)+_0x15a774(0x277)+_0x15a774(0x32c)+_0x15a774(0x213)+_0x15a774(0x24a)+_0x15a774(0x1c3)+_0x15a774(0x268)+_0x15a774(0x23f)+_0x15a774(0x21d)+_0x15a774(0x18c)+_0x15a774(0x2d1)+_0x15a774(0x1f3)+_0x15a774(0x24e)+_0x15a774(0x29b)+_0x15a774(0x191)+_0x15a774(0x307)+_0x15a774(0x24c)+_0x15a774(0x275)+_0x15a774(0x240)+_0x15a774(0x2d3)+_0x1401ac(0x145)+_0x3493b3(0x203)+_0x15a774(0x2ef)+_0x15a774(0x32e)+_0x15a774(0x183)+_0x15a774(0x1e3)+_0x1401ac(0x105)+_0x15a774(0x2c0)+_0x15a774(0x225)+_0x15a774(0x2f3)+_0x1401ac(0x226)+_0x15a774(0x1e1)+_0x15a774(0x308)+_0x1401ac(0xfa)+_0x15a774(0x23e)+_0x15a774(0x32e)+_0x15a774(0x32e)+_0x15a774(0x22d)+_0x15a774(0x287)+_0x15a774(0x294)+'=1';return _0x8f5df5===_0x15a774(0x2bb)+'eo'&&(_0xe62432=['-y',_0x15a774(0x23c)+_0x15a774(0x19f)+_0x15a774(0x2b2)+_0x15a774(0x2f1)+_0x1401ac(0x1a1),_0x1401ac(0x1f1)+_0x15a774(0x228)+_0x15a774(0x199)+'\x201',_0x15a774(0x203)+_0x1401ac(0x169)+_0x15a774(0x298),_0x15a774(0x2ad)+_0x15a774(0x27a)+_0x15a774(0x1e6)+_0x15a774(0x1f0)+_0x15a774(0x293),_0x15a774(0x253)+_0x3493b3(0x208)+'0',_0x1401ac(0x242),_0x1401ac(0x25e)+_0x15a774(0x193)+'\x200',_0x15a774(0x185)+_0x15a774(0x1ef)+_0x15a774(0x2fc)+'0'],_0x1aec1b=_0x15a774(0x217)+_0x1401ac(0xec)+_0x15a774(0x1ef)+_0x15a774(0x1b6)+_0x1401ac(0x26c)+_0x15a774(0x1f2)+_0x15a774(0x281)+_0x15a774(0x330)+_0x1401ac(0x265)+_0x15a774(0x22c)+_0x1401ac(0x215)+_0x3493b3(0x2c5)+_0x1401ac(0x146)+_0x1401ac(0x147)+_0x15a774(0x306)+_0x15a774(0x1a6)+_0x1401ac(0xe4)+_0x15a774(0x1da)+_0x1401ac(0x214)+_0x15a774(0x20b)+_0x1401ac(0x247)+_0x1401ac(0x14d)+_0x15a774(0x248)+_0x15a774(0x1e7)+_0x15a774(0x2f5)+_0x15a774(0x229)+_0x15a774(0x1cb)+_0x1401ac(0x1f6)+_0x15a774(0x1b6)+_0x1401ac(0x26a)+_0x15a774(0x198)+_0x3493b3(0x2ec)+_0x15a774(0x2be)+_0x15a774(0x1aa)+_0x1401ac(0xd9)+_0x15a774(0x225)+_0x15a774(0x26f)+_0xeb35ae(0x2b2)+_0x1401ac(0x20f)+_0x15a774(0x32e)+_0x15a774(0x32e)+_0x15a774(0x2ba)+_0x1401ac(0xdb)+_0x3493b3(0x1b2)+'1'),new Promise((_0x14c60c,_0x4cef2b)=>{var _0x384281=_0x3493b3,_0xb83b7f=_0x1401ac,_0x457e65=_0x15a774;ffmpeg(_0x1d6431)[_0xb83b7f(0x1e6)+_0x457e65(0x301)+_0xb83b7f(0x263)+_0x384281(0x2d2)+'s'](_0xe62432)[_0x457e65(0x2bb)+_0x457e65(0x1be)+_0xb83b7f(0x23e)+_0x384281(0x1a2)](_0x1aec1b)[_0xb83b7f(0x260)+'e'](_0x457e65(0x1c1)+_0xb83b7f(0x12d)+_0xb83b7f(0x181)+_0x457e65(0x2b8)+'bp')['on'](_0x457e65(0x2e9),()=>{var _0x465ff7=_0x384281,_0x4d74f8=_0x457e65;_0x14c60c(_0x4d74f8(0x1c1)+_0x465ff7(0x2a9)+_0x4d74f8(0x2c9)+_0x4d74f8(0x2b8)+'bp');});});}async function findMusic(_0x48d6b1){return new Promise((_0x37a8a3,_0xa71c3)=>{var _0x56a0ec=_0x4dfc,_0x19d446=_0x3e1b,_0x724a62=_0x3c26;acr[_0x724a62(0x332)+_0x56a0ec(0x231)+'fy'](_0x48d6b1)[_0x19d446(0x1bd)+'n'](_0x22b2c0=>{var _0x3d9728=_0x724a62,_0x212c82=_0x22b2c0[_0x3d9728(0x337)+_0x3d9728(0x1bd)+'ta'][_0x3d9728(0x30b)+'ic'][0x0];_0x37a8a3(_0x212c82);});});}async function searchYT(_0x480e74){var _0x5443b4=_0xb14045,_0xeb1172=_0x644bf9;const _0x34925f=await new Innertube({'gl':'US'}),_0x23c4cc=await _0x34925f[_0xeb1172(0x1fc)+_0x5443b4(0x14c)](_0x480e74);return _0x23c4cc;};async function downloadGram(_0xb37192){var _0xd93754=_0x33ff,_0x574a07=_0x2660fc,_0xfe8c0a=_0xb14045,_0x46115a=_0x644bf9;return(await getJson(_0xfe8c0a(0x25a)+_0x46115a(0x27d)+_0x46115a(0x20e)+_0x46115a(0x2f4)+_0x46115a(0x1ea)+_0x46115a(0x1a4)+_0x46115a(0x2ec)+_0xd93754(0x250)+_0xfe8c0a(0x23c)+_0x46115a(0x291)+_0x46115a(0x1b2)+_0x46115a(0x2b1)+_0x46115a(0x226)+_0x46115a(0x33f)+_0x46115a(0x21c)+_0x46115a(0x23a)+_0x46115a(0x2d8)+_0xb37192+(_0x46115a(0x2cd)+_0x46115a(0x218)+_0xfe8c0a(0x282)+_0x574a07(0x2b3)+_0xfe8c0a(0x201))))[_0xfe8c0a(0x276)+_0x46115a(0x293)];}async function pin(_0x4593f5){var _0xb975be=_0xb14045,_0x12862e=_0x644bf9;return await getJson(_0x12862e(0x1d6)+_0x12862e(0x27d)+_0x12862e(0x20e)+_0x12862e(0x2f4)+_0x12862e(0x1ea)+_0x12862e(0x1a4)+_0x12862e(0x2ec)+_0x12862e(0x1bf)+_0x12862e(0x184)+_0xb975be(0x215)+_0x12862e(0x1b2)+_0x12862e(0x2b1)+_0x12862e(0x226)+_0x12862e(0x28d)+_0x12862e(0x26e)+_0x12862e(0x2c2)+_0x12862e(0x1f5)+_0x12862e(0x329)+'='+_0x4593f5+(_0x12862e(0x2cd)+_0x12862e(0x218)+_0xb975be(0x282)+_0x12862e(0x323)+_0x12862e(0x1ac)));}async function fb(_0x76e65f){var _0xf4a0d3=_0x2660fc,_0x3d0b1b=_0xb14045,_0x352351=_0x644bf9;return await getJson(_0x3d0b1b(0x25a)+_0xf4a0d3(0x29c)+_0x352351(0x20e)+_0x3d0b1b(0x1df)+_0x352351(0x1ea)+_0x3d0b1b(0x113)+_0x352351(0x2ec)+_0x3d0b1b(0x2a1)+_0x352351(0x184)+_0x3d0b1b(0x215)+_0x352351(0x1b2)+_0x352351(0x2b1)+_0x352351(0x226)+_0x3d0b1b(0x1b6)+_0x352351(0x2db)+_0x352351(0x32d)+_0x352351(0x23a)+_0x3d0b1b(0x206)+_0x76e65f);}async function tiktok(_0x30efe7){var _0x1fad3a=_0x2660fc,_0xc45c26=_0xb14045,_0x3e0f48=_0x644bf9;return await getJson(_0x1fad3a(0x1e6)+_0x3e0f48(0x27d)+_0x3e0f48(0x20e)+_0xc45c26(0x1df)+_0x3e0f48(0x1ea)+_0xc45c26(0x113)+_0x3e0f48(0x2ec)+_0x3e0f48(0x1bf)+_0xc45c26(0x23c)+_0x3e0f48(0x291)+_0xc45c26(0x297)+_0xc45c26(0x246)+_0x3e0f48(0x226)+_0xc45c26(0x286)+_0x3e0f48(0x2b0)+_0xc45c26(0x13b)+_0x3e0f48(0x329)+'='+_0x30efe7);}async function story(_0x300acf){var _0x10731e=_0x33ff,_0x503f24=_0x2660fc,_0x477dfb=_0xb14045,_0x3ae079=_0x644bf9;return(await getJson(_0x3ae079(0x1d6)+_0x3ae079(0x27d)+_0x10731e(0x2ca)+_0x3ae079(0x2f4)+_0x3ae079(0x1ea)+_0x3ae079(0x1a4)+_0x3ae079(0x2ec)+_0x3ae079(0x1bf)+_0x3ae079(0x184)+_0x3ae079(0x291)+_0x503f24(0x157)+_0x3ae079(0x2b1)+_0x477dfb(0xf1)+_0x3ae079(0x2fd)+_0x3ae079(0x2f8)+_0x477dfb(0x28c)+_0x3ae079(0x2cc)+_0x3ae079(0x22b)+_0x3ae079(0x265)+'='+_0x300acf))[_0x3ae079(0x2c2)+_0x3ae079(0x293)];}function _0xf687(){var _0x1c2837=_0x33ff,_0x5cd242=_0x2660fc,_0x5c3490=[_0x5cd242(0x185),_0x5cd242(0x201),_0x5cd242(0x2b1),_0x1c2837(0x223),_0x1c2837(0x1a6),_0x5cd242(0x194),_0x1c2837(0x1b6),_0x5cd242(0x186),_0x5cd242(0x23a),_0x5cd242(0x253),_0x1c2837(0x1bd),_0x5cd242(0x23b),_0x5cd242(0x300)+_0x5cd242(0x149)+_0x5cd242(0x2d7)+_0x5cd242(0x317)+'C',_0x5cd242(0x245),_0x5cd242(0x1ac),_0x1c2837(0x193),_0x5cd242(0x1e0),_0x5cd242(0x1dc),_0x5cd242(0x1fd),_0x5cd242(0x302),_0x5cd242(0x31d),_0x5cd242(0x269),_0x5cd242(0x2dd),_0x5cd242(0x28e),_0x5cd242(0x288),_0x5cd242(0x204),_0x5cd242(0x25f),_0x5cd242(0x1d4),_0x5cd242(0x264),_0x1c2837(0x25f),_0x5cd242(0x327),_0x5cd242(0x293),_0x1c2837(0x1c9)+_0x5cd242(0x189)+'gB',_0x5cd242(0x1d3),_0x5cd242(0x2f8),_0x5cd242(0x147),_0x5cd242(0x292),'exe',_0x5cd242(0x2b5),_0x1c2837(0x1d1),_0x5cd242(0x1f4),_0x1c2837(0x14a),_0x5cd242(0x277),_0x5cd242(0x2fa),_0x5cd242(0x2a4),_0x5cd242(0x202),_0x1c2837(0x29e),_0x5cd242(0x2ce),_0x1c2837(0x1ad),_0x5cd242(0x19c),_0x5cd242(0x160),_0x5cd242(0x251),_0x5cd242(0x2cd),_0x5cd242(0x1eb),_0x5cd242(0x15e),_0x1c2837(0x1c0),_0x5cd242(0x1ec),_0x5cd242(0x1a5),_0x5cd242(0x221),'Buf',_0x5cd242(0x290),_0x5cd242(0x21a),_0x5cd242(0x2a6)+_0x1c2837(0x144)+_0x1c2837(0x2c8)+'nNy'+'r',_0x5cd242(0x2ee),_0x5cd242(0x326),_0x5cd242(0x26c),_0x1c2837(0x21a),_0x5cd242(0x30a),_0x5cd242(0x2da),_0x5cd242(0x1d5),_0x5cd242(0x23d),_0x5cd242(0x17e),_0x5cd242(0x26f),_0x5cd242(0x218),_0x5cd242(0x2a9),_0x5cd242(0x21b),_0x5cd242(0x1ad),_0x5cd242(0x230),_0x5cd242(0x2ed),_0x1c2837(0x2b0),_0x1c2837(0x200),_0x5cd242(0x191),_0x5cd242(0x1bb),_0x1c2837(0x1f4),_0x5cd242(0x181),_0x5cd242(0x262),_0x5cd242(0x168),_0x5cd242(0x2fb),_0x5cd242(0x2f9),_0x5cd242(0x2f7),_0x5cd242(0x299),_0x5cd242(0x2d1),_0x5cd242(0x190),_0x1c2837(0x171),_0x5cd242(0x165),_0x5cd242(0x22d),_0x5cd242(0x1c0),_0x5cd242(0x325),_0x5cd242(0x171),_0x5cd242(0x2b4),_0x5cd242(0x2bc),_0x5cd242(0x225),_0x5cd242(0x184)+_0x1c2837(0x190)+'6aJ'+_0x5cd242(0x25c)+'q',_0x5cd242(0x19e)+_0x5cd242(0x27a)+_0x5cd242(0x301)+_0x5cd242(0x1be)+'S',_0x1c2837(0x2a6),_0x5cd242(0x214),_0x5cd242(0x16e),_0x5cd242(0x228),_0x1c2837(0x1fa),'ave',_0x5cd242(0x2c3),_0x5cd242(0x311),_0x5cd242(0x1a7),_0x5cd242(0x23e),_0x5cd242(0x1e1),_0x5cd242(0x15f),_0x5cd242(0x2d2),_0x5cd242(0x2ab),_0x5cd242(0x179),_0x5cd242(0x243),_0x1c2837(0x2cf),_0x5cd242(0x2c1),_0x5cd242(0x247),_0x5cd242(0x158),_0x5cd242(0x169),_0x5cd242(0x1fa),_0x5cd242(0x187),_0x5cd242(0x182),_0x5cd242(0x1f7),_0x5cd242(0x2fe),_0x5cd242(0x1b8),_0x5cd242(0x307),_0x5cd242(0x29d),_0x5cd242(0x2a1),_0x5cd242(0x275),_0x5cd242(0x313),_0x5cd242(0x268),_0x5cd242(0x198),'eam',_0x5cd242(0x1f5),'dRe',_0x5cd242(0x282),_0x5cd242(0x2d4),_0x5cd242(0x237),_0x5cd242(0x2c2),_0x5cd242(0x286),'ipa',_0x1c2837(0x12a),_0x5cd242(0x183),_0x5cd242(0x223),_0x5cd242(0x15c),_0x5cd242(0x1e9),_0x5cd242(0x1b6),_0x5cd242(0x2fc),_0x1c2837(0x167),_0x5cd242(0x1ee),_0x5cd242(0x21d),_0x5cd242(0x280),_0x5cd242(0x2e7),_0x5cd242(0x25d),_0x5cd242(0x1bf),_0x1c2837(0x147),_0x5cd242(0x1db),_0x5cd242(0x2f1),_0x5cd242(0x30b),_0x5cd242(0x195),_0x5cd242(0x1fc),_0x5cd242(0x197),_0x5cd242(0x22a),_0x5cd242(0x1b5),_0x1c2837(0x28c),_0x5cd242(0x2e4),_0x1c2837(0x2cb),'FUQ',_0x5cd242(0x31b),_0x5cd242(0x271),'ker',_0x5cd242(0x1fe),'USI',_0x1c2837(0x2bd),_0x5cd242(0x294),_0x5cd242(0x29f),_0x5cd242(0x212),_0x5cd242(0x20c),_0x5cd242(0x213),_0x5cd242(0x17f),_0x5cd242(0x2e3),'pro',_0x5cd242(0x1fb),_0x5cd242(0x21c),_0x5cd242(0x1e5),_0x5cd242(0x23f),_0x1c2837(0x2a9),'men',_0x1c2837(0x20f),_0x5cd242(0x1b1),_0x5cd242(0x1dd),_0x5cd242(0x163),_0x1c2837(0x2c2),_0x5cd242(0x17a),_0x5cd242(0x1d0),_0x1c2837(0x196),_0x5cd242(0x20f),_0x5cd242(0x31a),'8se'+_0x5cd242(0x1ca)+'w',_0x5cd242(0x2be),_0x5cd242(0x1e4),_0x5cd242(0x284),_0x5cd242(0x2f0),_0x5cd242(0x246),_0x5cd242(0x207),_0x5cd242(0x1d8),_0x5cd242(0x1a8),_0x5cd242(0x1ef),_0x5cd242(0x1e3),_0x1c2837(0x119),_0x5cd242(0x281),_0x5cd242(0x324),_0x5cd242(0x1c8),_0x5cd242(0x1bc),_0x1c2837(0x249)+_0x1c2837(0x278)+_0x5cd242(0x24a)+_0x5cd242(0x242)+'j',_0x5cd242(0x310),_0x5cd242(0x19a),_0x5cd242(0x18c),'{vi',_0x1c2837(0x233),_0x5cd242(0x2ba),_0x5cd242(0x188),_0x5cd242(0x16d),_0x5cd242(0x27c),_0x5cd242(0x298),_0x5cd242(0x322),_0x5cd242(0x258),_0x5cd242(0x241),_0x5cd242(0x2e6),_0x1c2837(0x2be),_0x5cd242(0x30f),_0x5cd242(0x1c4),_0x5cd242(0x1d2),_0x5cd242(0x2ae),'ags',_0x1c2837(0x2dd)+_0x5cd242(0x20e)+_0x1c2837(0x2df)+_0x1c2837(0x1e5),_0x5cd242(0x26b),_0x5cd242(0x176),_0x5cd242(0x20a),'ike',_0x5cd242(0x1c9),_0x5cd242(0x2fd),_0x5cd242(0x24e),_0x5cd242(0x2c6),_0x5cd242(0x14c),_0x1c2837(0x1cb),_0x5cd242(0x25b),'env',_0x5cd242(0x256),_0x5cd242(0x2bf),_0x5cd242(0x270),_0x5cd242(0x1cd),_0x5cd242(0x18d),_0x1c2837(0x2ae),_0x5cd242(0x295),_0x5cd242(0x2df),'965',_0x5cd242(0x14e),_0x5cd242(0x22e),_0x5cd242(0x2b6),_0x5cd242(0x216),_0x5cd242(0x27f),_0x1c2837(0x1ae),_0x5cd242(0x1ea),_0x5cd242(0x21f),_0x5cd242(0x22b),_0x5cd242(0x29b),_0x5cd242(0x2f3),_0x5cd242(0x210),_0x5cd242(0x1bd),_0x1c2837(0x161),_0x5cd242(0x20b),_0x5cd242(0x272),_0x1c2837(0x140),_0x5cd242(0x297),_0x1c2837(0x122),_0x1c2837(0x12f),_0x1c2837(0x1cf),_0x5cd242(0x303),_0x1c2837(0x131),_0x1c2837(0x299),_0x5cd242(0x24c),_0x1c2837(0x20b),_0x5cd242(0x31f),_0x5cd242(0x1a6),_0x5cd242(0x1f2),_0x1c2837(0x1cd),'eu-',_0x5cd242(0x234),_0x1c2837(0x198),_0x5cd242(0x287),_0x5cd242(0x29a),_0x5cd242(0x232),_0x5cd242(0x254),_0x5cd242(0x18f),_0x5cd242(0x244),_0x1c2837(0x150),_0x5cd242(0x1f6),_0x5cd242(0x1f8),_0x5cd242(0x153),_0x1c2837(0x1fc),_0x5cd242(0x2f6),_0x5cd242(0x1c2),_0x5cd242(0x215),_0x5cd242(0x16f),_0x5cd242(0x166),'&ms',_0x5cd242(0x1a4),_0x1c2837(0x2d2),_0x1c2837(0x1dd),_0x5cd242(0x177),_0x5cd242(0x28f),_0x5cd242(0x1ab),_0x5cd242(0x226),_0x5cd242(0x14b),_0x5cd242(0x314),_0x5cd242(0x2ef),_0x5cd242(0x1d7),_0x5cd242(0x145),_0x1c2837(0x1d5),_0x5cd242(0x1c5),_0x5cd242(0x315),_0x5cd242(0x2d3),_0x5cd242(0x2ac),_0x5cd242(0x1da),_0x1c2837(0x179),_0x5cd242(0x250),_0x1c2837(0x188),_0x5cd242(0x29c),_0x5cd242(0x205),_0x5cd242(0x25e),_0x5cd242(0x14a),_0x5cd242(0x30c),_0x1c2837(0x245),_0x5cd242(0x1e8),_0x5cd242(0x266),'log',_0x5cd242(0x1ed),_0x5cd242(0x29e),_0x5cd242(0x252),'tsa',_0x1c2837(0x24c),_0x5cd242(0x2bb),_0x5cd242(0x28d),_0x1c2837(0x1e8),_0x5cd242(0x30e),_0x5cd242(0x200),_0x5cd242(0x278),_0x5cd242(0x2b2),_0x5cd242(0x2c8),_0x5cd242(0x239),_0x5cd242(0x1e2),_0x1c2837(0x18f),_0x1c2837(0x22b),_0x5cd242(0x229),_0x5cd242(0x14d),_0x1c2837(0x21f),_0x5cd242(0x2b0),'aco',_0x5cd242(0x16c),_0x5cd242(0x233),_0x5cd242(0x18e),_0x5cd242(0x2bd),'con',_0x5cd242(0x178)+_0x1c2837(0x227)+_0x5cd242(0x2e2)+_0x5cd242(0x2b8),_0x5cd242(0x2f4),_0x1c2837(0x2e4),_0x5cd242(0x161),_0x5cd242(0x19f),_0x5cd242(0x1e6),_0x5cd242(0x28b),_0x5cd242(0x219),_0x5cd242(0x14f),_0x5cd242(0x304),_0x5cd242(0x289),_0x5cd242(0x2a5),_0x5cd242(0x291),_0x5cd242(0x143),_0x1c2837(0x133),_0x1c2837(0x2ab),_0x5cd242(0x296),'uid',_0x5cd242(0x19b),_0x5cd242(0x31c),_0x5cd242(0x312),_0x5cd242(0x1b9),_0x5cd242(0x1aa),_0x5cd242(0x249),_0x5cd242(0x224),_0x5cd242(0x209),_0x5cd242(0x2dc),_0x1c2837(0x1b8),_0x1c2837(0x195),_0x5cd242(0x15d),_0x5cd242(0x1c1),_0x5cd242(0x2c7)+_0x5cd242(0x175)+'V',_0x1c2837(0x28e),_0x5cd242(0x319),_0x1c2837(0x1c4),_0x5cd242(0x2cf),_0x5cd242(0x1b3),'ify',_0x1c2837(0x12e),_0x5cd242(0x18b),_0x5cd242(0x267),_0x5cd242(0x222),_0x5cd242(0x148),_0x1c2837(0x289),_0x5cd242(0x2db),_0x5cd242(0x2d8),_0x5cd242(0x220),_0x5cd242(0x25a),_0x5cd242(0x2a2),_0x5cd242(0x199),_0x5cd242(0x17c),_0x5cd242(0x16b),_0x1c2837(0x1a8),_0x1c2837(0x15c),_0x5cd242(0x28a),_0x5cd242(0x1a3),_0x5cd242(0x2cb),_0x5cd242(0x151),_0x5cd242(0x260),_0x1c2837(0x2a5),_0x5cd242(0x2c9),_0x5cd242(0x2e0),_0x5cd242(0x235),_0x5cd242(0x257),_0x1c2837(0x2b5),_0x5cd242(0x2a7),_0x5cd242(0x157),_0x1c2837(0x153),_0x5cd242(0x2ea),_0x5cd242(0x1f1),_0x5cd242(0x164),_0x1c2837(0x1ff),_0x5cd242(0x2d9),_0x5cd242(0x316),_0x5cd242(0x2a0),_0x5cd242(0x2c4),_0x5cd242(0x261),'ter',_0x5cd242(0x15b),_0x1c2837(0x280),_0x5cd242(0x227),_0x5cd242(0x24f),_0x5cd242(0x155),_0x1c2837(0x118),_0x5cd242(0x2de),_0x1c2837(0x175),_0x5cd242(0x305),_0x5cd242(0x1b0),'\x20qu','DAT',_0x1c2837(0x1c6),_0x5cd242(0x21e),_0x5cd242(0x259),_0x1c2837(0x1a4),_0x5cd242(0x1d9)];return _0xf687=function(){return _0x5c3490;},_0xf687();}async function searchSong(_0x1c896b){var _0x5a5c8c=_0xb14045,_0x3f25c8=_0x644bf9;const _0x3d2208=await new Innertube({'gl':'US'}),_0x878eba=await _0x3d2208[_0x3f25c8(0x1fc)+_0x5a5c8c(0x14c)](_0x1c896b,{'client':_0x3f25c8(0x18d)+_0x5a5c8c(0x195)+'C'});return _0x878eba;};module[_0xb14045(0x27c)+_0x644bf9(0x219)+'s']={'rotate':rotate,'fb':fb,'story':story,'tiktok':tiktok,'pin':pin,'downloadGram':downloadGram,'searchSong':searchSong,'aadhar':aadhar,'blur':blur,'searchYT':searchYT,'dlYT':dlYT,'findMusic':findMusic,'sticker':sticker,'bytesToSize':bytesToSize,'addExif':addExif,'parseAlive':parseAlive,'parseWelcome':parseWelcome,'parseUptime':parseUptime,'bass':bass,'isNumeric':isNumeric,'isAdmin':isAdmin,'circle':circle,'mentionjid':mentionjid,'getJson':getJson,'chatBot':chatBot,'getWarn':getWarn,'setWarn':setWarn,'resetWarn':resetWarn,'sendYtQualityList':sendYtQualityList,'processYtv':processYtv,'getThumb':getThumb,'isFake':isFake,'resetAntifake':resetAntifake,'delAntifake':delAntifake,'setAntifake':setAntifake,'getAntifake':getAntifake,'getAntilink':getAntilink,'delAntilink':delAntilink,'setAntilink':setAntilink}; 2 | --------------------------------------------------------------------------------