├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── config.yml │ └── suggest.md └── workflows │ ├── codeql-analysis.yml │ └── pflake8.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── _pathmagic.py ├── base_img ├── 5000_bg.png ├── 5000_gold.png ├── 5000_red.png ├── ps4.png ├── ps4_mask.png ├── switch.png ├── switch_mask.png ├── text_base.png ├── text_base_fore.png └── text_fore.png ├── boot_manager.py ├── cogs ├── _pathmagic.py ├── admin.py ├── auth.py ├── auto_text.py ├── automod.py ├── autoreply.py ├── batch.py ├── bump.py ├── channel_settings.py ├── cog.py ├── expand_message.py ├── fun.py ├── global.py ├── level.py ├── lock_message.py ├── moderation.py ├── panel.py ├── role_link.py ├── server_stats.py ├── template.py ├── ticket.py ├── timed_role.py ├── tools.py └── topgg.py ├── common_resources ├── consts.py ├── lang_en.py ├── lang_ja.py ├── settings.py ├── tokens.py.sample └── tools.py ├── crowdin.yml ├── fonts └── .gitkeep ├── images ├── 5000.png ├── 795568167534723102.png ├── 795569425361010719.png ├── 7botml.png ├── add.png ├── b0.png ├── b1.png ├── b10.png ├── b2.png ├── b3.png ├── b4.png ├── b5.png ├── b6.png ├── b7.png ├── b8.png ├── b9.png ├── barc1.png ├── barc21.png ├── barc210.png ├── barc22.png ├── barc23.png ├── barc24.png ├── barc25.png ├── barc26.png ├── barc27.png ├── barc28.png ├── barc29.png ├── barcg21.png ├── barcg210.png ├── barcg22.png ├── barcg23.png ├── barcg24.png ├── barcg25.png ├── barcg26.png ├── barcg27.png ├── barcg28.png ├── barcg29.png ├── barcy21.png ├── barcy210.png ├── barcy22.png ├── barcy23.png ├── barcy24.png ├── barcy25.png ├── barcy26.png ├── barcy27.png ├── barcy28.png ├── barcy29.png ├── barl.png ├── barr.png ├── bot.png ├── cat.png ├── category.png ├── check.png ├── check2.png ├── check3.png ├── check4.png ├── check5.png ├── check6.png ├── check7.png ├── check8.png ├── dnd.png ├── down.png ├── downa.png ├── icon.png ├── icon2.png ├── icon3.png ├── icon4.png ├── icon5.png ├── icon6.png ├── icon_round.png ├── idle.png ├── img_auth_base.png ├── info.png ├── join.png ├── lainan.png ├── leave.png ├── left.png ├── lefta.png ├── lock.png ├── love.png ├── network.gif ├── offline.png ├── online.png ├── othello0.png ├── othello1.png ├── othello2.png ├── othello3.png ├── othello4.png ├── ox1.png ├── ox2.png ├── per.png ├── premium.png ├── queue.gif ├── queue.psd ├── remove.png ├── reply.png ├── report.png ├── right.png ├── righta.png ├── skip.png ├── tmp │ ├── queue0000.png │ ├── queue0001.png │ ├── queue0002.png │ ├── queue0003.png │ ├── queue0004.png │ ├── queue0005.png │ ├── queue0006.png │ ├── queue0007.png │ ├── queue0008.png │ ├── queue0009.png │ ├── queue0010.png │ ├── queue0011.png │ ├── queue0012.png │ ├── queue0013.png │ ├── queue0014.png │ ├── queue0015.png │ ├── queue0016.png │ └── queue0017.png ├── toggle.png ├── unknown.png ├── up.png ├── upa.png ├── user.png ├── vc.png ├── voice.gif ├── voice_info.png ├── warn.png └── white.png ├── main.py ├── poetry.lock ├── pyproject.toml ├── save.sample └── translations ├── en └── main.json └── ja └── main.json /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/.github/ISSUE_TEMPLATE/suggest.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/pflake8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/.github/workflows/pflake8.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/README.md -------------------------------------------------------------------------------- /_pathmagic.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base_img/5000_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/base_img/5000_bg.png -------------------------------------------------------------------------------- /base_img/5000_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/base_img/5000_gold.png -------------------------------------------------------------------------------- /base_img/5000_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/base_img/5000_red.png -------------------------------------------------------------------------------- /base_img/ps4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/base_img/ps4.png -------------------------------------------------------------------------------- /base_img/ps4_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/base_img/ps4_mask.png -------------------------------------------------------------------------------- /base_img/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/base_img/switch.png -------------------------------------------------------------------------------- /base_img/switch_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/base_img/switch_mask.png -------------------------------------------------------------------------------- /base_img/text_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/base_img/text_base.png -------------------------------------------------------------------------------- /base_img/text_base_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/base_img/text_base_fore.png -------------------------------------------------------------------------------- /base_img/text_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/base_img/text_fore.png -------------------------------------------------------------------------------- /boot_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/boot_manager.py -------------------------------------------------------------------------------- /cogs/_pathmagic.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | sys.path.append("../") 4 | -------------------------------------------------------------------------------- /cogs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/admin.py -------------------------------------------------------------------------------- /cogs/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/auth.py -------------------------------------------------------------------------------- /cogs/auto_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/auto_text.py -------------------------------------------------------------------------------- /cogs/automod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/automod.py -------------------------------------------------------------------------------- /cogs/autoreply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/autoreply.py -------------------------------------------------------------------------------- /cogs/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/batch.py -------------------------------------------------------------------------------- /cogs/bump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/bump.py -------------------------------------------------------------------------------- /cogs/channel_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/channel_settings.py -------------------------------------------------------------------------------- /cogs/cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/cog.py -------------------------------------------------------------------------------- /cogs/expand_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/expand_message.py -------------------------------------------------------------------------------- /cogs/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/fun.py -------------------------------------------------------------------------------- /cogs/global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/global.py -------------------------------------------------------------------------------- /cogs/level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/level.py -------------------------------------------------------------------------------- /cogs/lock_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/lock_message.py -------------------------------------------------------------------------------- /cogs/moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/moderation.py -------------------------------------------------------------------------------- /cogs/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/panel.py -------------------------------------------------------------------------------- /cogs/role_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/role_link.py -------------------------------------------------------------------------------- /cogs/server_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/server_stats.py -------------------------------------------------------------------------------- /cogs/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/template.py -------------------------------------------------------------------------------- /cogs/ticket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/ticket.py -------------------------------------------------------------------------------- /cogs/timed_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/timed_role.py -------------------------------------------------------------------------------- /cogs/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/tools.py -------------------------------------------------------------------------------- /cogs/topgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/cogs/topgg.py -------------------------------------------------------------------------------- /common_resources/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/common_resources/consts.py -------------------------------------------------------------------------------- /common_resources/lang_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/common_resources/lang_en.py -------------------------------------------------------------------------------- /common_resources/lang_ja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/common_resources/lang_ja.py -------------------------------------------------------------------------------- /common_resources/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/common_resources/settings.py -------------------------------------------------------------------------------- /common_resources/tokens.py.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/common_resources/tokens.py.sample -------------------------------------------------------------------------------- /common_resources/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/common_resources/tools.py -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/crowdin.yml -------------------------------------------------------------------------------- /fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/5000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/5000.png -------------------------------------------------------------------------------- /images/795568167534723102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/795568167534723102.png -------------------------------------------------------------------------------- /images/795569425361010719.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/795569425361010719.png -------------------------------------------------------------------------------- /images/7botml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/7botml.png -------------------------------------------------------------------------------- /images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/add.png -------------------------------------------------------------------------------- /images/b0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/b0.png -------------------------------------------------------------------------------- /images/b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/b1.png -------------------------------------------------------------------------------- /images/b10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/b10.png -------------------------------------------------------------------------------- /images/b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/b2.png -------------------------------------------------------------------------------- /images/b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/b3.png -------------------------------------------------------------------------------- /images/b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/b4.png -------------------------------------------------------------------------------- /images/b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/b5.png -------------------------------------------------------------------------------- /images/b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/b6.png -------------------------------------------------------------------------------- /images/b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/b7.png -------------------------------------------------------------------------------- /images/b8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/b8.png -------------------------------------------------------------------------------- /images/b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/b9.png -------------------------------------------------------------------------------- /images/barc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barc1.png -------------------------------------------------------------------------------- /images/barc21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barc21.png -------------------------------------------------------------------------------- /images/barc210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barc210.png -------------------------------------------------------------------------------- /images/barc22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barc22.png -------------------------------------------------------------------------------- /images/barc23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barc23.png -------------------------------------------------------------------------------- /images/barc24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barc24.png -------------------------------------------------------------------------------- /images/barc25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barc25.png -------------------------------------------------------------------------------- /images/barc26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barc26.png -------------------------------------------------------------------------------- /images/barc27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barc27.png -------------------------------------------------------------------------------- /images/barc28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barc28.png -------------------------------------------------------------------------------- /images/barc29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barc29.png -------------------------------------------------------------------------------- /images/barcg21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcg21.png -------------------------------------------------------------------------------- /images/barcg210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcg210.png -------------------------------------------------------------------------------- /images/barcg22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcg22.png -------------------------------------------------------------------------------- /images/barcg23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcg23.png -------------------------------------------------------------------------------- /images/barcg24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcg24.png -------------------------------------------------------------------------------- /images/barcg25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcg25.png -------------------------------------------------------------------------------- /images/barcg26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcg26.png -------------------------------------------------------------------------------- /images/barcg27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcg27.png -------------------------------------------------------------------------------- /images/barcg28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcg28.png -------------------------------------------------------------------------------- /images/barcg29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcg29.png -------------------------------------------------------------------------------- /images/barcy21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcy21.png -------------------------------------------------------------------------------- /images/barcy210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcy210.png -------------------------------------------------------------------------------- /images/barcy22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcy22.png -------------------------------------------------------------------------------- /images/barcy23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcy23.png -------------------------------------------------------------------------------- /images/barcy24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcy24.png -------------------------------------------------------------------------------- /images/barcy25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcy25.png -------------------------------------------------------------------------------- /images/barcy26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcy26.png -------------------------------------------------------------------------------- /images/barcy27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcy27.png -------------------------------------------------------------------------------- /images/barcy28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcy28.png -------------------------------------------------------------------------------- /images/barcy29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barcy29.png -------------------------------------------------------------------------------- /images/barl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barl.png -------------------------------------------------------------------------------- /images/barr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/barr.png -------------------------------------------------------------------------------- /images/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/bot.png -------------------------------------------------------------------------------- /images/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/cat.png -------------------------------------------------------------------------------- /images/category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/category.png -------------------------------------------------------------------------------- /images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/check.png -------------------------------------------------------------------------------- /images/check2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/check2.png -------------------------------------------------------------------------------- /images/check3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/check3.png -------------------------------------------------------------------------------- /images/check4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/check4.png -------------------------------------------------------------------------------- /images/check5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/check5.png -------------------------------------------------------------------------------- /images/check6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/check6.png -------------------------------------------------------------------------------- /images/check7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/check7.png -------------------------------------------------------------------------------- /images/check8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/check8.png -------------------------------------------------------------------------------- /images/dnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/dnd.png -------------------------------------------------------------------------------- /images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/down.png -------------------------------------------------------------------------------- /images/downa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/downa.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/icon2.png -------------------------------------------------------------------------------- /images/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/icon3.png -------------------------------------------------------------------------------- /images/icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/icon4.png -------------------------------------------------------------------------------- /images/icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/icon5.png -------------------------------------------------------------------------------- /images/icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/icon6.png -------------------------------------------------------------------------------- /images/icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/icon_round.png -------------------------------------------------------------------------------- /images/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/idle.png -------------------------------------------------------------------------------- /images/img_auth_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/img_auth_base.png -------------------------------------------------------------------------------- /images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/info.png -------------------------------------------------------------------------------- /images/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/join.png -------------------------------------------------------------------------------- /images/lainan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/lainan.png -------------------------------------------------------------------------------- /images/leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/leave.png -------------------------------------------------------------------------------- /images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/left.png -------------------------------------------------------------------------------- /images/lefta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/lefta.png -------------------------------------------------------------------------------- /images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/lock.png -------------------------------------------------------------------------------- /images/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/love.png -------------------------------------------------------------------------------- /images/network.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/network.gif -------------------------------------------------------------------------------- /images/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/offline.png -------------------------------------------------------------------------------- /images/online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/online.png -------------------------------------------------------------------------------- /images/othello0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/othello0.png -------------------------------------------------------------------------------- /images/othello1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/othello1.png -------------------------------------------------------------------------------- /images/othello2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/othello2.png -------------------------------------------------------------------------------- /images/othello3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/othello3.png -------------------------------------------------------------------------------- /images/othello4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/othello4.png -------------------------------------------------------------------------------- /images/ox1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/ox1.png -------------------------------------------------------------------------------- /images/ox2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/ox2.png -------------------------------------------------------------------------------- /images/per.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/per.png -------------------------------------------------------------------------------- /images/premium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/premium.png -------------------------------------------------------------------------------- /images/queue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/queue.gif -------------------------------------------------------------------------------- /images/queue.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/queue.psd -------------------------------------------------------------------------------- /images/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/remove.png -------------------------------------------------------------------------------- /images/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/reply.png -------------------------------------------------------------------------------- /images/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/report.png -------------------------------------------------------------------------------- /images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/right.png -------------------------------------------------------------------------------- /images/righta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/righta.png -------------------------------------------------------------------------------- /images/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/skip.png -------------------------------------------------------------------------------- /images/tmp/queue0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0000.png -------------------------------------------------------------------------------- /images/tmp/queue0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0001.png -------------------------------------------------------------------------------- /images/tmp/queue0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0002.png -------------------------------------------------------------------------------- /images/tmp/queue0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0003.png -------------------------------------------------------------------------------- /images/tmp/queue0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0004.png -------------------------------------------------------------------------------- /images/tmp/queue0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0005.png -------------------------------------------------------------------------------- /images/tmp/queue0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0006.png -------------------------------------------------------------------------------- /images/tmp/queue0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0007.png -------------------------------------------------------------------------------- /images/tmp/queue0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0008.png -------------------------------------------------------------------------------- /images/tmp/queue0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0009.png -------------------------------------------------------------------------------- /images/tmp/queue0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0010.png -------------------------------------------------------------------------------- /images/tmp/queue0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0011.png -------------------------------------------------------------------------------- /images/tmp/queue0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0012.png -------------------------------------------------------------------------------- /images/tmp/queue0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0013.png -------------------------------------------------------------------------------- /images/tmp/queue0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0014.png -------------------------------------------------------------------------------- /images/tmp/queue0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0015.png -------------------------------------------------------------------------------- /images/tmp/queue0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0016.png -------------------------------------------------------------------------------- /images/tmp/queue0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/tmp/queue0017.png -------------------------------------------------------------------------------- /images/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/toggle.png -------------------------------------------------------------------------------- /images/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/unknown.png -------------------------------------------------------------------------------- /images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/up.png -------------------------------------------------------------------------------- /images/upa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/upa.png -------------------------------------------------------------------------------- /images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/user.png -------------------------------------------------------------------------------- /images/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/vc.png -------------------------------------------------------------------------------- /images/voice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/voice.gif -------------------------------------------------------------------------------- /images/voice_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/voice_info.png -------------------------------------------------------------------------------- /images/warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/warn.png -------------------------------------------------------------------------------- /images/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/images/white.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/main.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /save.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/save.sample -------------------------------------------------------------------------------- /translations/en/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/translations/en/main.json -------------------------------------------------------------------------------- /translations/ja/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SevenBot-dev/SevenBot/HEAD/translations/ja/main.json --------------------------------------------------------------------------------