├── .env ├── Dockerfile ├── Procfile ├── README.md ├── app.json ├── bot ├── SmartCookies │ └── SmartUtilBot.txt ├── __init__.py ├── __main__.py ├── core │ ├── database.py │ └── mongo.py ├── helpers │ ├── bindb.py │ ├── botutils.py │ ├── buttons.py │ ├── commands.py │ ├── dcutil.py │ ├── defend.py │ ├── donateutils.py │ ├── genbtn.py │ ├── graph.py │ ├── guard.py │ ├── logger.py │ ├── notify.py │ ├── pgbar.py │ ├── security.py │ └── utils.py ├── misc │ └── callback.py └── modules │ ├── ai.py │ ├── audio.py │ ├── ban.py │ ├── bin.py │ ├── bindb.py │ ├── binmd.py │ ├── ccscr.py │ ├── cpn.py │ ├── crypt.py │ ├── cyrptx.py │ ├── decoders.py │ ├── dep.py │ ├── dmn.py │ ├── donate.py │ ├── enh.py │ ├── extp.py │ ├── fake.py │ ├── fb.py │ ├── fcc.py │ ├── fdl.py │ ├── fmail.py │ ├── gemi.py │ ├── gen.py │ ├── getusr.py │ ├── git.py │ ├── gpt.py │ ├── gra.py │ ├── help.py │ ├── info.py │ ├── insta.py │ ├── ip.py │ ├── kang.py │ ├── logs.py │ ├── mailscr.py │ ├── mbin.py │ ├── mgen.py │ ├── ocr.py │ ├── p2p.py │ ├── pdf.py │ ├── pnt.py │ ├── privacy.py │ ├── pron.py │ ├── px.py │ ├── qr.py │ ├── quote.py │ ├── rembg.py │ ├── restart.py │ ├── rs.py │ ├── settings.py │ ├── sk.py │ ├── sp.py │ ├── speedtest.py │ ├── spl.py │ ├── sptxt.py │ ├── ss.py │ ├── start.py │ ├── stats.py │ ├── string.py │ ├── sudo.py │ ├── syn.py │ ├── tik.py │ ├── time.py │ ├── tmail.py │ ├── token.py │ ├── topbn.py │ ├── tr.py │ ├── tx.py │ ├── url.py │ ├── vnote.py │ ├── voice.py │ ├── ws.py │ ├── ytag.py │ ├── ytdl.py │ └── yth.py ├── config.py ├── docker-compose.yml ├── heroku.yml ├── requirements.txt └── start.sh /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/.env -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: bash start.sh 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/app.json -------------------------------------------------------------------------------- /bot/SmartCookies/SmartUtilBot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/SmartCookies/SmartUtilBot.txt -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/core/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/core/database.py -------------------------------------------------------------------------------- /bot/core/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/core/mongo.py -------------------------------------------------------------------------------- /bot/helpers/bindb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/bindb.py -------------------------------------------------------------------------------- /bot/helpers/botutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/botutils.py -------------------------------------------------------------------------------- /bot/helpers/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/buttons.py -------------------------------------------------------------------------------- /bot/helpers/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/commands.py -------------------------------------------------------------------------------- /bot/helpers/dcutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/dcutil.py -------------------------------------------------------------------------------- /bot/helpers/defend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/defend.py -------------------------------------------------------------------------------- /bot/helpers/donateutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/donateutils.py -------------------------------------------------------------------------------- /bot/helpers/genbtn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/genbtn.py -------------------------------------------------------------------------------- /bot/helpers/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/graph.py -------------------------------------------------------------------------------- /bot/helpers/guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/guard.py -------------------------------------------------------------------------------- /bot/helpers/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/logger.py -------------------------------------------------------------------------------- /bot/helpers/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/notify.py -------------------------------------------------------------------------------- /bot/helpers/pgbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/pgbar.py -------------------------------------------------------------------------------- /bot/helpers/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/security.py -------------------------------------------------------------------------------- /bot/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/helpers/utils.py -------------------------------------------------------------------------------- /bot/misc/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/misc/callback.py -------------------------------------------------------------------------------- /bot/modules/ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/ai.py -------------------------------------------------------------------------------- /bot/modules/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/audio.py -------------------------------------------------------------------------------- /bot/modules/ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/ban.py -------------------------------------------------------------------------------- /bot/modules/bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/bin.py -------------------------------------------------------------------------------- /bot/modules/bindb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/bindb.py -------------------------------------------------------------------------------- /bot/modules/binmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/binmd.py -------------------------------------------------------------------------------- /bot/modules/ccscr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/ccscr.py -------------------------------------------------------------------------------- /bot/modules/cpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/cpn.py -------------------------------------------------------------------------------- /bot/modules/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/crypt.py -------------------------------------------------------------------------------- /bot/modules/cyrptx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/cyrptx.py -------------------------------------------------------------------------------- /bot/modules/decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/decoders.py -------------------------------------------------------------------------------- /bot/modules/dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/dep.py -------------------------------------------------------------------------------- /bot/modules/dmn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/dmn.py -------------------------------------------------------------------------------- /bot/modules/donate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/donate.py -------------------------------------------------------------------------------- /bot/modules/enh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/enh.py -------------------------------------------------------------------------------- /bot/modules/extp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/extp.py -------------------------------------------------------------------------------- /bot/modules/fake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/fake.py -------------------------------------------------------------------------------- /bot/modules/fb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/fb.py -------------------------------------------------------------------------------- /bot/modules/fcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/fcc.py -------------------------------------------------------------------------------- /bot/modules/fdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/fdl.py -------------------------------------------------------------------------------- /bot/modules/fmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/fmail.py -------------------------------------------------------------------------------- /bot/modules/gemi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/gemi.py -------------------------------------------------------------------------------- /bot/modules/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/gen.py -------------------------------------------------------------------------------- /bot/modules/getusr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/getusr.py -------------------------------------------------------------------------------- /bot/modules/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/git.py -------------------------------------------------------------------------------- /bot/modules/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/gpt.py -------------------------------------------------------------------------------- /bot/modules/gra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/gra.py -------------------------------------------------------------------------------- /bot/modules/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/help.py -------------------------------------------------------------------------------- /bot/modules/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/info.py -------------------------------------------------------------------------------- /bot/modules/insta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/insta.py -------------------------------------------------------------------------------- /bot/modules/ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/ip.py -------------------------------------------------------------------------------- /bot/modules/kang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/kang.py -------------------------------------------------------------------------------- /bot/modules/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/logs.py -------------------------------------------------------------------------------- /bot/modules/mailscr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/mailscr.py -------------------------------------------------------------------------------- /bot/modules/mbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/mbin.py -------------------------------------------------------------------------------- /bot/modules/mgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/mgen.py -------------------------------------------------------------------------------- /bot/modules/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/ocr.py -------------------------------------------------------------------------------- /bot/modules/p2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/p2p.py -------------------------------------------------------------------------------- /bot/modules/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/pdf.py -------------------------------------------------------------------------------- /bot/modules/pnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/pnt.py -------------------------------------------------------------------------------- /bot/modules/privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/privacy.py -------------------------------------------------------------------------------- /bot/modules/pron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/pron.py -------------------------------------------------------------------------------- /bot/modules/px.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/px.py -------------------------------------------------------------------------------- /bot/modules/qr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/qr.py -------------------------------------------------------------------------------- /bot/modules/quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/quote.py -------------------------------------------------------------------------------- /bot/modules/rembg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/rembg.py -------------------------------------------------------------------------------- /bot/modules/restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/restart.py -------------------------------------------------------------------------------- /bot/modules/rs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/rs.py -------------------------------------------------------------------------------- /bot/modules/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/settings.py -------------------------------------------------------------------------------- /bot/modules/sk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/sk.py -------------------------------------------------------------------------------- /bot/modules/sp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/sp.py -------------------------------------------------------------------------------- /bot/modules/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/speedtest.py -------------------------------------------------------------------------------- /bot/modules/spl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/spl.py -------------------------------------------------------------------------------- /bot/modules/sptxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/sptxt.py -------------------------------------------------------------------------------- /bot/modules/ss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/ss.py -------------------------------------------------------------------------------- /bot/modules/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/start.py -------------------------------------------------------------------------------- /bot/modules/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/stats.py -------------------------------------------------------------------------------- /bot/modules/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/string.py -------------------------------------------------------------------------------- /bot/modules/sudo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/sudo.py -------------------------------------------------------------------------------- /bot/modules/syn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/syn.py -------------------------------------------------------------------------------- /bot/modules/tik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/tik.py -------------------------------------------------------------------------------- /bot/modules/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/time.py -------------------------------------------------------------------------------- /bot/modules/tmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/tmail.py -------------------------------------------------------------------------------- /bot/modules/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/token.py -------------------------------------------------------------------------------- /bot/modules/topbn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/topbn.py -------------------------------------------------------------------------------- /bot/modules/tr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/tr.py -------------------------------------------------------------------------------- /bot/modules/tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/tx.py -------------------------------------------------------------------------------- /bot/modules/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/url.py -------------------------------------------------------------------------------- /bot/modules/vnote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/vnote.py -------------------------------------------------------------------------------- /bot/modules/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/voice.py -------------------------------------------------------------------------------- /bot/modules/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/ws.py -------------------------------------------------------------------------------- /bot/modules/ytag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/ytag.py -------------------------------------------------------------------------------- /bot/modules/ytdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/ytdl.py -------------------------------------------------------------------------------- /bot/modules/yth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/bot/modules/yth.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/config.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/heroku.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSmartDevs/SmartUtilBot/HEAD/start.sh --------------------------------------------------------------------------------