gitextract_bpdvc9yc/ ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── build.yml │ ├── crowdin_download.yml │ ├── crowdin_upload.yml │ ├── lint.yml │ ├── scripts/ │ │ └── close_and_reopen_pr.js │ └── test.yml ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── MANIFEST.in ├── README.ja.rst ├── README.rst ├── discord/ │ ├── __init__.py │ ├── __main__.py │ ├── _types.py │ ├── abc.py │ ├── activity.py │ ├── app_commands/ │ │ ├── __init__.py │ │ ├── checks.py │ │ ├── commands.py │ │ ├── errors.py │ │ ├── installs.py │ │ ├── models.py │ │ ├── namespace.py │ │ ├── transformers.py │ │ ├── translator.py │ │ └── tree.py │ ├── appinfo.py │ ├── asset.py │ ├── audit_logs.py │ ├── automod.py │ ├── backoff.py │ ├── bin/ │ │ └── COPYING │ ├── channel.py │ ├── client.py │ ├── colour.py │ ├── components.py │ ├── context_managers.py │ ├── embeds.py │ ├── emoji.py │ ├── enums.py │ ├── errors.py │ ├── ext/ │ │ ├── commands/ │ │ │ ├── __init__.py │ │ │ ├── _types.py │ │ │ ├── bot.py │ │ │ ├── cog.py │ │ │ ├── context.py │ │ │ ├── converter.py │ │ │ ├── cooldowns.py │ │ │ ├── core.py │ │ │ ├── errors.py │ │ │ ├── flags.py │ │ │ ├── help.py │ │ │ ├── hybrid.py │ │ │ ├── parameters.py │ │ │ └── view.py │ │ └── tasks/ │ │ └── __init__.py │ ├── file.py │ ├── flags.py │ ├── gateway.py │ ├── guild.py │ ├── http.py │ ├── integrations.py │ ├── interactions.py │ ├── invite.py │ ├── member.py │ ├── mentions.py │ ├── message.py │ ├── mixins.py │ ├── object.py │ ├── oggparse.py │ ├── opus.py │ ├── partial_emoji.py │ ├── permissions.py │ ├── player.py │ ├── poll.py │ ├── py.typed │ ├── raw_models.py │ ├── reaction.py │ ├── role.py │ ├── scheduled_event.py │ ├── shard.py │ ├── sku.py │ ├── stage_instance.py │ ├── state.py │ ├── sticker.py │ ├── team.py │ ├── template.py │ ├── threads.py │ ├── types/ │ │ ├── __init__.py │ │ ├── activity.py │ │ ├── appinfo.py │ │ ├── audit_log.py │ │ ├── automod.py │ │ ├── channel.py │ │ ├── command.py │ │ ├── components.py │ │ ├── embed.py │ │ ├── emoji.py │ │ ├── gateway.py │ │ ├── guild.py │ │ ├── integration.py │ │ ├── interactions.py │ │ ├── invite.py │ │ ├── member.py │ │ ├── message.py │ │ ├── poll.py │ │ ├── role.py │ │ ├── scheduled_event.py │ │ ├── sku.py │ │ ├── snowflake.py │ │ ├── sticker.py │ │ ├── team.py │ │ ├── template.py │ │ ├── threads.py │ │ ├── user.py │ │ ├── voice.py │ │ ├── webhook.py │ │ ├── welcome_screen.py │ │ └── widget.py │ ├── ui/ │ │ ├── __init__.py │ │ ├── button.py │ │ ├── dynamic.py │ │ ├── item.py │ │ ├── modal.py │ │ ├── select.py │ │ ├── text_input.py │ │ └── view.py │ ├── user.py │ ├── utils.py │ ├── voice_client.py │ ├── voice_state.py │ ├── webhook/ │ │ ├── __init__.py │ │ ├── async_.py │ │ └── sync.py │ ├── welcome_screen.py │ └── widget.py ├── docs/ │ ├── Makefile │ ├── _static/ │ │ ├── codeblocks.css │ │ ├── copy.js │ │ ├── custom.js │ │ ├── icons.css │ │ ├── scorer.js │ │ ├── settings.js │ │ ├── sidebar.js │ │ └── style.css │ ├── _templates/ │ │ ├── genindex.html │ │ ├── gettext/ │ │ │ └── message.pot_t │ │ ├── layout.html │ │ └── relations.html │ ├── api.rst │ ├── conf.py │ ├── crowdin.yml │ ├── discord.rst │ ├── ext/ │ │ ├── commands/ │ │ │ ├── api.rst │ │ │ ├── cogs.rst │ │ │ ├── commands.rst │ │ │ ├── extensions.rst │ │ │ └── index.rst │ │ └── tasks/ │ │ └── index.rst │ ├── extensions/ │ │ ├── attributetable.py │ │ ├── builder.py │ │ ├── colour_preview.py │ │ ├── details.py │ │ ├── exception_hierarchy.py │ │ ├── nitpick_file_ignorer.py │ │ └── resourcelinks.py │ ├── faq.rst │ ├── index.rst │ ├── intents.rst │ ├── interactions/ │ │ └── api.rst │ ├── intro.rst │ ├── locale/ │ │ └── ja/ │ │ └── LC_MESSAGES/ │ │ ├── api.po │ │ ├── discord.po │ │ ├── ext/ │ │ │ ├── commands/ │ │ │ │ ├── api.po │ │ │ │ ├── cogs.po │ │ │ │ ├── commands.po │ │ │ │ ├── extensions.po │ │ │ │ └── index.po │ │ │ └── tasks/ │ │ │ └── index.po │ │ ├── faq.po │ │ ├── index.po │ │ ├── intents.po │ │ ├── interactions/ │ │ │ └── api.po │ │ ├── intro.po │ │ ├── logging.po │ │ ├── migrating.po │ │ ├── migrating_to_async.po │ │ ├── migrating_to_v1.po │ │ ├── quickstart.po │ │ ├── sphinx.po │ │ ├── version_guarantees.po │ │ └── whats_new.po │ ├── logging.rst │ ├── make.bat │ ├── migrating.rst │ ├── migrating_to_async.rst │ ├── migrating_to_v1.rst │ ├── quickstart.rst │ ├── version_guarantees.rst │ └── whats_new.rst ├── examples/ │ ├── advanced_startup.py │ ├── app_commands/ │ │ ├── basic.py │ │ └── transformers.py │ ├── background_task.py │ ├── background_task_asyncio.py │ ├── basic_bot.py │ ├── basic_voice.py │ ├── converters.py │ ├── custom_context.py │ ├── deleted.py │ ├── edits.py │ ├── guessing_game.py │ ├── modals/ │ │ └── basic.py │ ├── new_member.py │ ├── reaction_roles.py │ ├── reply.py │ ├── secret.py │ └── views/ │ ├── confirm.py │ ├── counter.py │ ├── dropdown.py │ ├── dynamic_counter.py │ ├── ephemeral.py │ ├── link.py │ ├── persistent.py │ └── tic_tac_toe.py ├── pyproject.toml ├── requirements.txt ├── setup.py └── tests/ ├── test_annotated_annotation.py ├── test_app_commands_autocomplete.py ├── test_app_commands_description.py ├── test_app_commands_group.py ├── test_app_commands_invoke.py ├── test_colour.py ├── test_ext_commands_cog.py ├── test_ext_commands_description.py ├── test_ext_tasks.py ├── test_files.py ├── test_ui_selects.py └── test_utils.py