├── .annotaterb.yml ├── .browserslistrc ├── .buildpacks ├── .devcontainer ├── Dockerfile ├── codespaces │ └── devcontainer.json ├── compose.yaml ├── devcontainer.json └── welcome-message.txt ├── .dockerignore ├── .editorconfig ├── .env.development ├── .env.production.sample ├── .env.test ├── .env.vagrant ├── .eslintignore ├── .eslintrc.js ├── .foreman ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── 1.web_bug_report.yml │ ├── 2.server_bug_report.yml │ ├── 3.troubleshooting.yml │ ├── 4.feature_request.yml │ └── config.yml ├── actions │ ├── setup-javascript │ │ └── action.yml │ └── setup-ruby │ │ └── action.yml ├── codecov.yml ├── renovate.json5 ├── stale.yml └── workflows │ ├── build-container-image.yml │ ├── build-nightly.yml │ ├── build-push-pr.yml │ ├── build-releases.yml │ ├── build-security.yml │ ├── bundler-audit.yml │ ├── check-i18n.yml │ ├── codeql.yml │ ├── crowdin-download-stable.yml │ ├── crowdin-download.yml │ ├── crowdin-upload.yml │ ├── format-check.yml │ ├── haml-lint-problem-matcher.json │ ├── lint-css.yml │ ├── lint-haml.yml │ ├── lint-js.yml │ ├── lint-ruby.yml │ ├── rebase-needed.yml │ ├── test-image-build.yml │ ├── test-js.yml │ ├── test-migrations.yml │ └── test-ruby.yml ├── .gitignore ├── .gitmodules ├── .haml-lint.yml ├── .husky └── pre-commit ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .rspec ├── .rubocop.yml ├── .rubocop ├── custom.yml ├── i18n.yml ├── layout.yml ├── metrics.yml ├── naming.yml ├── rails.yml ├── rspec.yml ├── rspec_rails.yml ├── strict.yml └── style.yml ├── .rubocop_todo.yml ├── .ruby-gemset ├── .ruby-version ├── .slugignore ├── .stylelintignore ├── .watchmanconfig ├── .yarn ├── .gitkeep └── patches │ └── babel-plugin-lodash-npm-3.3.4-c7161075b6.patch ├── .yarnrc.yml ├── AUTHORS.md ├── Aptfile ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── FEDERATION.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── Procfile.dev ├── README.md ├── Rakefile ├── SECURITY.md ├── Vagrantfile ├── app.json ├── app ├── chewy │ ├── accounts_index.rb │ ├── concerns │ │ └── datetime_clamping_concern.rb │ ├── instances_index.rb │ ├── public_statuses_index.rb │ ├── statuses_index.rb │ └── tags_index.rb ├── controllers │ ├── about_controller.rb │ ├── accounts_controller.rb │ ├── activitypub │ │ ├── base_controller.rb │ │ ├── collections_controller.rb │ │ ├── followers_synchronizations_controller.rb │ │ ├── inboxes_controller.rb │ │ ├── likes_controller.rb │ │ ├── outboxes_controller.rb │ │ ├── replies_controller.rb │ │ └── shares_controller.rb │ ├── admin │ │ ├── account_actions_controller.rb │ │ ├── account_moderation_notes_controller.rb │ │ ├── accounts_controller.rb │ │ ├── action_logs_controller.rb │ │ ├── announcements │ │ │ ├── distributions_controller.rb │ │ │ ├── previews_controller.rb │ │ │ └── tests_controller.rb │ │ ├── announcements_controller.rb │ │ ├── base_controller.rb │ │ ├── bubble_domains_controller.rb │ │ ├── change_emails_controller.rb │ │ ├── confirmations_controller.rb │ │ ├── custom_emojis_controller.rb │ │ ├── dashboard_controller.rb │ │ ├── disputes │ │ │ └── appeals_controller.rb │ │ ├── domain_allows_controller.rb │ │ ├── domain_blocks_controller.rb │ │ ├── email_domain_blocks_controller.rb │ │ ├── export_domain_allows_controller.rb │ │ ├── export_domain_blocks_controller.rb │ │ ├── follow_recommendations_controller.rb │ │ ├── instances_controller.rb │ │ ├── invites_controller.rb │ │ ├── ip_blocks_controller.rb │ │ ├── relationships_controller.rb │ │ ├── relays_controller.rb │ │ ├── report_notes_controller.rb │ │ ├── reports │ │ │ └── actions_controller.rb │ │ ├── reports_controller.rb │ │ ├── resets_controller.rb │ │ ├── roles_controller.rb │ │ ├── rules_controller.rb │ │ ├── settings │ │ │ ├── about_controller.rb │ │ │ ├── appearance_controller.rb │ │ │ ├── branding_controller.rb │ │ │ ├── content_retention_controller.rb │ │ │ ├── discovery_controller.rb │ │ │ ├── other_controller.rb │ │ │ ├── others_controller.rb │ │ │ └── registrations_controller.rb │ │ ├── settings_controller.rb │ │ ├── site_uploads_controller.rb │ │ ├── software_updates_controller.rb │ │ ├── statuses_controller.rb │ │ ├── tags_controller.rb │ │ ├── terms_of_service │ │ │ ├── distributions_controller.rb │ │ │ ├── drafts_controller.rb │ │ │ ├── generates_controller.rb │ │ │ ├── histories_controller.rb │ │ │ ├── previews_controller.rb │ │ │ └── tests_controller.rb │ │ ├── terms_of_service_controller.rb │ │ ├── trends │ │ │ ├── links │ │ │ │ └── preview_card_providers_controller.rb │ │ │ ├── links_controller.rb │ │ │ ├── statuses_controller.rb │ │ │ └── tags_controller.rb │ │ ├── users │ │ │ ├── roles_controller.rb │ │ │ └── two_factor_authentications_controller.rb │ │ ├── warning_presets_controller.rb │ │ ├── webhooks │ │ │ └── secrets_controller.rb │ │ └── webhooks_controller.rb │ ├── api │ │ ├── base_controller.rb │ │ ├── oembed_controller.rb │ │ ├── v1 │ │ │ ├── accounts │ │ │ │ ├── credentials_controller.rb │ │ │ │ ├── familiar_followers_controller.rb │ │ │ │ ├── featured_tags_controller.rb │ │ │ │ ├── follower_accounts_controller.rb │ │ │ │ ├── following_accounts_controller.rb │ │ │ │ ├── identity_proofs_controller.rb │ │ │ │ ├── lists_controller.rb │ │ │ │ ├── lookup_controller.rb │ │ │ │ ├── notes_controller.rb │ │ │ │ ├── pins_controller.rb │ │ │ │ ├── relationships_controller.rb │ │ │ │ ├── search_controller.rb │ │ │ │ └── statuses_controller.rb │ │ │ ├── accounts_controller.rb │ │ │ ├── admin │ │ │ │ ├── account_actions_controller.rb │ │ │ │ ├── accounts_controller.rb │ │ │ │ ├── canonical_email_blocks_controller.rb │ │ │ │ ├── dimensions_controller.rb │ │ │ │ ├── domain_allows_controller.rb │ │ │ │ ├── domain_blocks_controller.rb │ │ │ │ ├── email_domain_blocks_controller.rb │ │ │ │ ├── ip_blocks_controller.rb │ │ │ │ ├── measures_controller.rb │ │ │ │ ├── reports_controller.rb │ │ │ │ ├── retention_controller.rb │ │ │ │ ├── tags_controller.rb │ │ │ │ └── trends │ │ │ │ │ ├── links │ │ │ │ │ └── preview_card_providers_controller.rb │ │ │ │ │ ├── links_controller.rb │ │ │ │ │ ├── statuses_controller.rb │ │ │ │ │ └── tags_controller.rb │ │ │ ├── announcements │ │ │ │ └── reactions_controller.rb │ │ │ ├── announcements_controller.rb │ │ │ ├── annual_reports_controller.rb │ │ │ ├── apps │ │ │ │ └── credentials_controller.rb │ │ │ ├── apps_controller.rb │ │ │ ├── blocks_controller.rb │ │ │ ├── bookmarks_controller.rb │ │ │ ├── conversations_controller.rb │ │ │ ├── custom_emojis_controller.rb │ │ │ ├── directories_controller.rb │ │ │ ├── domain_blocks │ │ │ │ └── previews_controller.rb │ │ │ ├── domain_blocks_controller.rb │ │ │ ├── emails │ │ │ │ └── confirmations_controller.rb │ │ │ ├── endorsements_controller.rb │ │ │ ├── favourites_controller.rb │ │ │ ├── featured_tags │ │ │ │ └── suggestions_controller.rb │ │ │ ├── featured_tags_controller.rb │ │ │ ├── filters_controller.rb │ │ │ ├── follow_requests_controller.rb │ │ │ ├── followed_tags_controller.rb │ │ │ ├── instances │ │ │ │ ├── activity_controller.rb │ │ │ │ ├── base_controller.rb │ │ │ │ ├── bubble_domains_controller.rb │ │ │ │ ├── domain_blocks_controller.rb │ │ │ │ ├── extended_descriptions_controller.rb │ │ │ │ ├── languages_controller.rb │ │ │ │ ├── peers_controller.rb │ │ │ │ ├── privacy_policies_controller.rb │ │ │ │ ├── rules_controller.rb │ │ │ │ ├── terms_of_services_controller.rb │ │ │ │ └── translation_languages_controller.rb │ │ │ ├── instances_controller.rb │ │ │ ├── invites_controller.rb │ │ │ ├── lists │ │ │ │ └── accounts_controller.rb │ │ │ ├── lists_controller.rb │ │ │ ├── markers_controller.rb │ │ │ ├── media_controller.rb │ │ │ ├── mutes_controller.rb │ │ │ ├── notifications │ │ │ │ ├── policies_controller.rb │ │ │ │ └── requests_controller.rb │ │ │ ├── notifications_controller.rb │ │ │ ├── peers │ │ │ │ └── search_controller.rb │ │ │ ├── polls │ │ │ │ └── votes_controller.rb │ │ │ ├── polls_controller.rb │ │ │ ├── preferences_controller.rb │ │ │ ├── profile │ │ │ │ ├── avatars_controller.rb │ │ │ │ └── headers_controller.rb │ │ │ ├── push │ │ │ │ └── subscriptions_controller.rb │ │ │ ├── reports_controller.rb │ │ │ ├── scheduled_statuses_controller.rb │ │ │ ├── statuses │ │ │ │ ├── base_controller.rb │ │ │ │ ├── bookmarks_controller.rb │ │ │ │ ├── favourited_by_accounts_controller.rb │ │ │ │ ├── favourites_controller.rb │ │ │ │ ├── histories_controller.rb │ │ │ │ ├── mutes_controller.rb │ │ │ │ ├── pins_controller.rb │ │ │ │ ├── reactions_controller.rb │ │ │ │ ├── reblogged_by_accounts_controller.rb │ │ │ │ ├── reblogs_controller.rb │ │ │ │ ├── sources_controller.rb │ │ │ │ └── translations_controller.rb │ │ │ ├── statuses_controller.rb │ │ │ ├── streaming_controller.rb │ │ │ ├── suggestions_controller.rb │ │ │ ├── tags_controller.rb │ │ │ ├── timelines │ │ │ │ ├── base_controller.rb │ │ │ │ ├── direct_controller.rb │ │ │ │ ├── home_controller.rb │ │ │ │ ├── link_controller.rb │ │ │ │ ├── list_controller.rb │ │ │ │ ├── public_controller.rb │ │ │ │ └── tag_controller.rb │ │ │ └── trends │ │ │ │ ├── links_controller.rb │ │ │ │ ├── statuses_controller.rb │ │ │ │ └── tags_controller.rb │ │ ├── v2 │ │ │ ├── admin │ │ │ │ └── accounts_controller.rb │ │ │ ├── filters │ │ │ │ ├── keywords_controller.rb │ │ │ │ └── statuses_controller.rb │ │ │ ├── filters_controller.rb │ │ │ ├── instances_controller.rb │ │ │ ├── media_controller.rb │ │ │ ├── notifications │ │ │ │ ├── accounts_controller.rb │ │ │ │ └── policies_controller.rb │ │ │ ├── notifications_controller.rb │ │ │ ├── search_controller.rb │ │ │ └── suggestions_controller.rb │ │ └── web │ │ │ ├── base_controller.rb │ │ │ ├── embeds_controller.rb │ │ │ ├── push_subscriptions_controller.rb │ │ │ └── settings_controller.rb │ ├── application_controller.rb │ ├── auth │ │ ├── challenges_controller.rb │ │ ├── confirmations_controller.rb │ │ ├── omniauth_callbacks_controller.rb │ │ ├── passwords_controller.rb │ │ ├── registrations_controller.rb │ │ ├── sessions_controller.rb │ │ └── setup_controller.rb │ ├── authorize_interactions_controller.rb │ ├── backups_controller.rb │ ├── concerns │ │ ├── account_controller_concern.rb │ │ ├── account_owned_concern.rb │ │ ├── accountable_concern.rb │ │ ├── admin │ │ │ └── export_controller_concern.rb │ │ ├── api │ │ │ ├── access_token_tracking_concern.rb │ │ │ ├── caching_concern.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── error_handling.rb │ │ │ ├── pagination.rb │ │ │ └── rate_limit_headers.rb │ │ ├── auth │ │ │ ├── captcha_concern.rb │ │ │ ├── registration_spam_concern.rb │ │ │ └── two_factor_authentication_concern.rb │ │ ├── authorization.rb │ │ ├── cache_concern.rb │ │ ├── challengable_concern.rb │ │ ├── localized.rb │ │ ├── preloading_concern.rb │ │ ├── session_tracking_concern.rb │ │ ├── settings │ │ │ └── export_controller_concern.rb │ │ ├── signature_authentication.rb │ │ ├── signature_verification.rb │ │ ├── theming_concern.rb │ │ ├── user_tracking_concern.rb │ │ └── web_app_controller_concern.rb │ ├── custom_css_controller.rb │ ├── disputes │ │ ├── appeals_controller.rb │ │ ├── base_controller.rb │ │ └── strikes_controller.rb │ ├── emojis_controller.rb │ ├── filters │ │ └── statuses_controller.rb │ ├── filters_controller.rb │ ├── follower_accounts_controller.rb │ ├── following_accounts_controller.rb │ ├── health_controller.rb │ ├── home_controller.rb │ ├── instance_actors_controller.rb │ ├── intents_controller.rb │ ├── invites_controller.rb │ ├── mail_subscriptions_controller.rb │ ├── manifests_controller.rb │ ├── media_controller.rb │ ├── media_proxy_controller.rb │ ├── oauth │ │ ├── authorizations_controller.rb │ │ ├── authorized_applications_controller.rb │ │ ├── tokens_controller.rb │ │ └── userinfo_controller.rb │ ├── privacy_controller.rb │ ├── redirect │ │ ├── accounts_controller.rb │ │ ├── base_controller.rb │ │ └── statuses_controller.rb │ ├── relationships_controller.rb │ ├── remote_interaction_helper_controller.rb │ ├── settings │ │ ├── aliases_controller.rb │ │ ├── applications_controller.rb │ │ ├── base_controller.rb │ │ ├── deletes_controller.rb │ │ ├── exports │ │ │ ├── blocked_accounts_controller.rb │ │ │ ├── blocked_domains_controller.rb │ │ │ ├── bookmarks_controller.rb │ │ │ ├── following_accounts_controller.rb │ │ │ ├── lists_controller.rb │ │ │ └── muted_accounts_controller.rb │ │ ├── exports_controller.rb │ │ ├── featured_tags_controller.rb │ │ ├── flavours_controller.rb │ │ ├── imports_controller.rb │ │ ├── login_activities_controller.rb │ │ ├── migration │ │ │ └── redirects_controller.rb │ │ ├── migrations_controller.rb │ │ ├── pictures_controller.rb │ │ ├── preferences │ │ │ ├── appearance_controller.rb │ │ │ ├── base_controller.rb │ │ │ ├── notifications_controller.rb │ │ │ └── other_controller.rb │ │ ├── privacy_controller.rb │ │ ├── profiles_controller.rb │ │ ├── sessions_controller.rb │ │ ├── two_factor_authentication │ │ │ ├── confirmations_controller.rb │ │ │ ├── otp_authentication_controller.rb │ │ │ ├── recovery_codes_controller.rb │ │ │ └── webauthn_credentials_controller.rb │ │ ├── two_factor_authentication_methods_controller.rb │ │ └── verifications_controller.rb │ ├── severed_relationships_controller.rb │ ├── shares_controller.rb │ ├── statuses_cleanup_controller.rb │ ├── statuses_controller.rb │ ├── tags_controller.rb │ ├── terms_of_service_controller.rb │ └── well_known │ │ ├── host_meta_controller.rb │ │ ├── node_info_controller.rb │ │ ├── oauth_metadata_controller.rb │ │ └── webfinger_controller.rb ├── helpers │ ├── accounts_helper.rb │ ├── admin │ │ ├── account_actions_helper.rb │ │ ├── account_moderation_notes_helper.rb │ │ ├── accounts_helper.rb │ │ ├── action_logs_helper.rb │ │ ├── announcements_helper.rb │ │ ├── dashboard_helper.rb │ │ ├── disputes_helper.rb │ │ ├── filter_helper.rb │ │ ├── ip_blocks_helper.rb │ │ ├── roles_helper.rb │ │ ├── settings │ │ │ └── discovery_helper.rb │ │ ├── settings_helper.rb │ │ ├── tags_helper.rb │ │ └── trends │ │ │ └── statuses_helper.rb │ ├── application_helper.rb │ ├── authorized_fetch_helper.rb │ ├── branding_helper.rb │ ├── context_helper.rb │ ├── database_helper.rb │ ├── domain_control_helper.rb │ ├── email_helper.rb │ ├── filters_helper.rb │ ├── flashes_helper.rb │ ├── formatting_helper.rb │ ├── home_helper.rb │ ├── instance_helper.rb │ ├── invites_helper.rb │ ├── json_ld_helper.rb │ ├── languages_helper.rb │ ├── media_component_helper.rb │ ├── react_component_helper.rb │ ├── registration_helper.rb │ ├── routing_helper.rb │ ├── self_destruct_helper.rb │ ├── settings_helper.rb │ ├── statuses_helper.rb │ └── theme_helper.rb ├── javascript │ ├── __mocks__ │ │ └── svg.js │ ├── entrypoints │ │ ├── admin.tsx │ │ ├── application.ts │ │ ├── common.js │ │ ├── embed.tsx │ │ ├── error.ts │ │ ├── inert.ts │ │ ├── mailer.ts │ │ ├── public-path.ts │ │ ├── public.tsx │ │ ├── remote_interaction_helper.ts │ │ ├── share.tsx │ │ ├── sign_up.ts │ │ └── two_factor_authentication.ts │ ├── flavours │ │ ├── glitch │ │ │ ├── actions │ │ │ │ ├── account_notes.ts │ │ │ │ ├── accounts.js │ │ │ │ ├── accounts_typed.ts │ │ │ │ ├── alerts.ts │ │ │ │ ├── announcements.js │ │ │ │ ├── app.ts │ │ │ │ ├── blocks.js │ │ │ │ ├── bookmarks.js │ │ │ │ ├── bundles.js │ │ │ │ ├── columns.js │ │ │ │ ├── compose.js │ │ │ │ ├── compose_typed.ts │ │ │ │ ├── conversations.js │ │ │ │ ├── custom_emojis.js │ │ │ │ ├── directory.ts │ │ │ │ ├── domain_blocks.js │ │ │ │ ├── domain_blocks_typed.ts │ │ │ │ ├── dropdown_menu.ts │ │ │ │ ├── emojis.js │ │ │ │ ├── favourites.js │ │ │ │ ├── featured_tags.js │ │ │ │ ├── filters.js │ │ │ │ ├── height_cache.js │ │ │ │ ├── history.js │ │ │ │ ├── importer │ │ │ │ │ ├── index.js │ │ │ │ │ ├── normalizer.js │ │ │ │ │ └── polls.ts │ │ │ │ ├── interactions.js │ │ │ │ ├── interactions_typed.ts │ │ │ │ ├── lists.js │ │ │ │ ├── lists_typed.ts │ │ │ │ ├── local_settings.js │ │ │ │ ├── markers.ts │ │ │ │ ├── modal.ts │ │ │ │ ├── mutes.js │ │ │ │ ├── notification_groups.ts │ │ │ │ ├── notification_policies.ts │ │ │ │ ├── notification_requests.ts │ │ │ │ ├── notifications.js │ │ │ │ ├── notifications_typed.ts │ │ │ │ ├── onboarding.js │ │ │ │ ├── picture_in_picture.ts │ │ │ │ ├── pin_statuses.js │ │ │ │ ├── polls.ts │ │ │ │ ├── push_notifications │ │ │ │ │ ├── index.js │ │ │ │ │ ├── registerer.js │ │ │ │ │ └── setter.js │ │ │ │ ├── reports.js │ │ │ │ ├── search.ts │ │ │ │ ├── server.js │ │ │ │ ├── settings.js │ │ │ │ ├── statuses.js │ │ │ │ ├── store.js │ │ │ │ ├── streaming.js │ │ │ │ ├── suggestions.ts │ │ │ │ ├── tags.js │ │ │ │ ├── tags_typed.ts │ │ │ │ ├── timelines.js │ │ │ │ ├── timelines_typed.ts │ │ │ │ └── trends.js │ │ │ ├── api.ts │ │ │ ├── api │ │ │ │ ├── accounts.ts │ │ │ │ ├── compose.ts │ │ │ │ ├── directory.ts │ │ │ │ ├── instance.ts │ │ │ │ ├── interactions.ts │ │ │ │ ├── lists.ts │ │ │ │ ├── notification_policies.ts │ │ │ │ ├── notifications.ts │ │ │ │ ├── polls.ts │ │ │ │ ├── search.ts │ │ │ │ ├── suggestions.ts │ │ │ │ └── tags.ts │ │ │ ├── api_types │ │ │ │ ├── accounts.ts │ │ │ │ ├── custom_emoji.ts │ │ │ │ ├── instance.ts │ │ │ │ ├── lists.ts │ │ │ │ ├── markers.ts │ │ │ │ ├── media_attachments.ts │ │ │ │ ├── notification_policies.ts │ │ │ │ ├── notifications.ts │ │ │ │ ├── polls.ts │ │ │ │ ├── reaction.ts │ │ │ │ ├── relationships.ts │ │ │ │ ├── reports.ts │ │ │ │ ├── search.ts │ │ │ │ ├── statuses.ts │ │ │ │ ├── suggestions.ts │ │ │ │ └── tags.ts │ │ │ ├── blurhash.ts │ │ │ ├── common.js │ │ │ ├── compare_id.ts │ │ │ ├── components │ │ │ │ ├── __tests__ │ │ │ │ │ └── hashtag_bar.tsx │ │ │ │ ├── account.tsx │ │ │ │ ├── account_bio.tsx │ │ │ │ ├── account_fields.tsx │ │ │ │ ├── admin │ │ │ │ │ ├── Counter.jsx │ │ │ │ │ ├── Dimension.jsx │ │ │ │ │ ├── ImpactReport.jsx │ │ │ │ │ ├── ReportReasonSelector.jsx │ │ │ │ │ ├── Retention.jsx │ │ │ │ │ └── Trends.jsx │ │ │ │ ├── alt_text_badge.tsx │ │ │ │ ├── animated_number.tsx │ │ │ │ ├── attachment_list.jsx │ │ │ │ ├── autosuggest_emoji.jsx │ │ │ │ ├── autosuggest_hashtag.tsx │ │ │ │ ├── autosuggest_input.jsx │ │ │ │ ├── autosuggest_textarea.jsx │ │ │ │ ├── avatar.tsx │ │ │ │ ├── avatar_composite.jsx │ │ │ │ ├── avatar_overlay.tsx │ │ │ │ ├── badge.jsx │ │ │ │ ├── blurhash.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── check_box.tsx │ │ │ │ ├── circular_progress.tsx │ │ │ │ ├── column.tsx │ │ │ │ ├── column_back_button.tsx │ │ │ │ ├── column_header.tsx │ │ │ │ ├── column_search_header.tsx │ │ │ │ ├── content_warning.tsx │ │ │ │ ├── copy_icon_button.jsx │ │ │ │ ├── copy_paste_text.tsx │ │ │ │ ├── counters.tsx │ │ │ │ ├── dismissable_banner.tsx │ │ │ │ ├── display_name.tsx │ │ │ │ ├── domain.tsx │ │ │ │ ├── dropdown_menu.jsx │ │ │ │ ├── dropdown_selector.tsx │ │ │ │ ├── edited_timestamp │ │ │ │ │ ├── containers │ │ │ │ │ │ └── dropdown_menu_container.js │ │ │ │ │ └── index.jsx │ │ │ │ ├── error_boundary.jsx │ │ │ │ ├── filter_warning.tsx │ │ │ │ ├── follow_button.tsx │ │ │ │ ├── gif.tsx │ │ │ │ ├── gifv.tsx │ │ │ │ ├── hashtag.tsx │ │ │ │ ├── hashtag_bar.tsx │ │ │ │ ├── hover_card_account.tsx │ │ │ │ ├── hover_card_controller.tsx │ │ │ │ ├── icon.tsx │ │ │ │ ├── icon_button.tsx │ │ │ │ ├── icon_with_badge.tsx │ │ │ │ ├── inline_account.jsx │ │ │ │ ├── intersection_observer_article.jsx │ │ │ │ ├── link.jsx │ │ │ │ ├── load_gap.tsx │ │ │ │ ├── load_more.tsx │ │ │ │ ├── load_pending.tsx │ │ │ │ ├── loading_indicator.tsx │ │ │ │ ├── logo.tsx │ │ │ │ ├── media_attachments.jsx │ │ │ │ ├── media_gallery.jsx │ │ │ │ ├── media_icon.tsx │ │ │ │ ├── mentions_placeholder.jsx │ │ │ │ ├── modal_root.jsx │ │ │ │ ├── more_from_author.jsx │ │ │ │ ├── navigation_portal.tsx │ │ │ │ ├── not_signed_in_indicator.tsx │ │ │ │ ├── permalink.tsx │ │ │ │ ├── picture_in_picture_placeholder.jsx │ │ │ │ ├── poll.jsx │ │ │ │ ├── radio_button.tsx │ │ │ │ ├── regeneration_indicator.tsx │ │ │ │ ├── relative_timestamp.tsx │ │ │ │ ├── router.tsx │ │ │ │ ├── scrollable_list.jsx │ │ │ │ ├── server_banner.jsx │ │ │ │ ├── server_hero_image.tsx │ │ │ │ ├── setting_text.jsx │ │ │ │ ├── short_number.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── status.jsx │ │ │ │ ├── status_action_bar.jsx │ │ │ │ ├── status_banner.tsx │ │ │ │ ├── status_content.jsx │ │ │ │ ├── status_icons.jsx │ │ │ │ ├── status_list.jsx │ │ │ │ ├── status_prepend.jsx │ │ │ │ ├── status_reactions.jsx │ │ │ │ ├── status_thread_label.tsx │ │ │ │ ├── timeline_hint.tsx │ │ │ │ ├── verified_badge.tsx │ │ │ │ └── visibility_icon.tsx │ │ │ ├── containers │ │ │ │ ├── admin_component.jsx │ │ │ │ ├── compose_container.jsx │ │ │ │ ├── dropdown_menu_container.js │ │ │ │ ├── intersection_observer_article_container.js │ │ │ │ ├── mastodon.jsx │ │ │ │ ├── media_container.jsx │ │ │ │ ├── poll_container.js │ │ │ │ ├── scroll_container.js │ │ │ │ └── status_container.jsx │ │ │ ├── entrypoints │ │ │ │ ├── admin.tsx │ │ │ │ ├── application.ts │ │ │ │ ├── common.js │ │ │ │ ├── embed.tsx │ │ │ │ ├── error.ts │ │ │ │ ├── inert.ts │ │ │ │ ├── mailer.ts │ │ │ │ ├── public.tsx │ │ │ │ ├── remote_interaction_helper.ts │ │ │ │ ├── share.tsx │ │ │ │ ├── sign_up.ts │ │ │ │ └── two_factor_authentication.ts │ │ │ ├── features │ │ │ │ ├── about │ │ │ │ │ └── index.jsx │ │ │ │ ├── account │ │ │ │ │ ├── components │ │ │ │ │ │ ├── account_note.jsx │ │ │ │ │ │ ├── action_bar.tsx │ │ │ │ │ │ ├── domain_pill.tsx │ │ │ │ │ │ ├── featured_tags.jsx │ │ │ │ │ │ ├── follow_request_note.jsx │ │ │ │ │ │ └── profile_column_header.jsx │ │ │ │ │ ├── containers │ │ │ │ │ │ ├── account_note_container.js │ │ │ │ │ │ ├── featured_tags_container.js │ │ │ │ │ │ └── follow_request_note_container.js │ │ │ │ │ └── navigation.jsx │ │ │ │ ├── account_gallery │ │ │ │ │ ├── components │ │ │ │ │ │ └── media_item.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── account_timeline │ │ │ │ │ ├── components │ │ │ │ │ │ ├── account_header.tsx │ │ │ │ │ │ ├── limited_account_hint.tsx │ │ │ │ │ │ ├── memorial_note.tsx │ │ │ │ │ │ └── moved_note.tsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── alt_text_modal │ │ │ │ │ ├── components │ │ │ │ │ │ └── info_button.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── annual_report │ │ │ │ │ ├── archetype.tsx │ │ │ │ │ ├── followers.tsx │ │ │ │ │ ├── highlighted_post.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── most_used_app.tsx │ │ │ │ │ ├── most_used_hashtag.tsx │ │ │ │ │ ├── new_posts.tsx │ │ │ │ │ └── percentile.tsx │ │ │ │ ├── audio │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── visualizer.js │ │ │ │ ├── blocks │ │ │ │ │ └── index.jsx │ │ │ │ ├── bookmarked_statuses │ │ │ │ │ └── index.jsx │ │ │ │ ├── bubble_timeline │ │ │ │ │ ├── components │ │ │ │ │ │ └── column_settings.jsx │ │ │ │ │ ├── containers │ │ │ │ │ │ └── column_settings_container.js │ │ │ │ │ └── index.jsx │ │ │ │ ├── closed_registrations_modal │ │ │ │ │ └── index.jsx │ │ │ │ ├── community_timeline │ │ │ │ │ ├── components │ │ │ │ │ │ └── column_settings.jsx │ │ │ │ │ ├── containers │ │ │ │ │ │ └── column_settings_container.js │ │ │ │ │ └── index.jsx │ │ │ │ ├── compose │ │ │ │ │ ├── components │ │ │ │ │ │ ├── action_bar.jsx │ │ │ │ │ │ ├── autosuggest_account.jsx │ │ │ │ │ │ ├── character_counter.tsx │ │ │ │ │ │ ├── compose_form.jsx │ │ │ │ │ │ ├── content_type_button.jsx │ │ │ │ │ │ ├── dropdown_icon_button.jsx │ │ │ │ │ │ ├── edit_indicator.jsx │ │ │ │ │ │ ├── emoji_picker_dropdown.jsx │ │ │ │ │ │ ├── federation_button.jsx │ │ │ │ │ │ ├── language_dropdown.tsx │ │ │ │ │ │ ├── navigation_bar.jsx │ │ │ │ │ │ ├── poll_button.jsx │ │ │ │ │ │ ├── poll_form.jsx │ │ │ │ │ │ ├── privacy_dropdown.jsx │ │ │ │ │ │ ├── reply_indicator.jsx │ │ │ │ │ │ ├── search.tsx │ │ │ │ │ │ ├── secondary_privacy_button.jsx │ │ │ │ │ │ ├── sensitive_button.jsx │ │ │ │ │ │ ├── text_icon_button.jsx │ │ │ │ │ │ ├── thread_mode_button.jsx │ │ │ │ │ │ ├── upload.tsx │ │ │ │ │ │ ├── upload_button.jsx │ │ │ │ │ │ ├── upload_form.tsx │ │ │ │ │ │ ├── upload_progress.jsx │ │ │ │ │ │ └── warning.jsx │ │ │ │ │ ├── containers │ │ │ │ │ │ ├── autosuggest_account_container.js │ │ │ │ │ │ ├── compose_form_container.js │ │ │ │ │ │ ├── emoji_picker_dropdown_container.js │ │ │ │ │ │ ├── poll_button_container.js │ │ │ │ │ │ ├── privacy_dropdown_container.js │ │ │ │ │ │ ├── spoiler_button_container.js │ │ │ │ │ │ ├── upload_button_container.js │ │ │ │ │ │ └── warning_container.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── util │ │ │ │ │ │ ├── counter.js │ │ │ │ │ │ ├── language_detection.js │ │ │ │ │ │ └── url_regex.js │ │ │ │ ├── direct_timeline │ │ │ │ │ ├── components │ │ │ │ │ │ ├── column_settings.jsx │ │ │ │ │ │ ├── conversation.jsx │ │ │ │ │ │ └── conversations_list.jsx │ │ │ │ │ ├── containers │ │ │ │ │ │ └── column_settings_container.js │ │ │ │ │ └── index.jsx │ │ │ │ ├── directory │ │ │ │ │ ├── components │ │ │ │ │ │ └── account_card.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── domain_blocks │ │ │ │ │ └── index.jsx │ │ │ │ ├── emoji │ │ │ │ │ ├── emoji.js │ │ │ │ │ ├── emoji_compressed.d.ts │ │ │ │ │ ├── emoji_compressed.js │ │ │ │ │ ├── emoji_map.json │ │ │ │ │ ├── emoji_mart_data_light.ts │ │ │ │ │ ├── emoji_mart_search_light.js │ │ │ │ │ ├── emoji_picker.js │ │ │ │ │ ├── emoji_sheet.json │ │ │ │ │ ├── emoji_unicode_mapping_light.ts │ │ │ │ │ ├── emoji_utils.js │ │ │ │ │ ├── unicode_to_filename.js │ │ │ │ │ └── unicode_to_unified_name.js │ │ │ │ ├── explore │ │ │ │ │ ├── components │ │ │ │ │ │ ├── author_link.jsx │ │ │ │ │ │ ├── card.jsx │ │ │ │ │ │ └── story.jsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── links.jsx │ │ │ │ │ ├── statuses.jsx │ │ │ │ │ ├── suggestions.jsx │ │ │ │ │ └── tags.jsx │ │ │ │ ├── favourited_statuses │ │ │ │ │ └── index.jsx │ │ │ │ ├── favourites │ │ │ │ │ └── index.jsx │ │ │ │ ├── filters │ │ │ │ │ ├── added_to_filter.jsx │ │ │ │ │ └── select_filter.jsx │ │ │ │ ├── firehose │ │ │ │ │ └── index.jsx │ │ │ │ ├── follow_requests │ │ │ │ │ ├── components │ │ │ │ │ │ └── account_authorize.jsx │ │ │ │ │ ├── containers │ │ │ │ │ │ └── account_authorize_container.js │ │ │ │ │ └── index.jsx │ │ │ │ ├── followed_tags │ │ │ │ │ └── index.jsx │ │ │ │ ├── followers │ │ │ │ │ └── index.jsx │ │ │ │ ├── following │ │ │ │ │ └── index.jsx │ │ │ │ ├── getting_started │ │ │ │ │ ├── components │ │ │ │ │ │ ├── announcements.jsx │ │ │ │ │ │ └── trends.jsx │ │ │ │ │ ├── containers │ │ │ │ │ │ ├── announcements_container.js │ │ │ │ │ │ └── trends_container.js │ │ │ │ │ └── index.jsx │ │ │ │ ├── getting_started_misc │ │ │ │ │ └── index.jsx │ │ │ │ ├── hashtag_timeline │ │ │ │ │ ├── components │ │ │ │ │ │ ├── column_settings.jsx │ │ │ │ │ │ └── hashtag_header.tsx │ │ │ │ │ ├── containers │ │ │ │ │ │ └── column_settings_container.js │ │ │ │ │ └── index.jsx │ │ │ │ ├── home_timeline │ │ │ │ │ ├── components │ │ │ │ │ │ ├── column_settings.tsx │ │ │ │ │ │ ├── critical_update_banner.tsx │ │ │ │ │ │ └── inline_follow_suggestions.tsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── interaction_modal │ │ │ │ │ └── index.tsx │ │ │ │ ├── keyboard_shortcuts │ │ │ │ │ └── index.jsx │ │ │ │ ├── link_timeline │ │ │ │ │ └── index.tsx │ │ │ │ ├── list_adder │ │ │ │ │ └── index.tsx │ │ │ │ ├── list_timeline │ │ │ │ │ └── index.jsx │ │ │ │ ├── lists │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── members.tsx │ │ │ │ │ └── new.tsx │ │ │ │ ├── local_settings │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── navigation │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── item │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── page │ │ │ │ │ │ ├── deprecated_item │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── item │ │ │ │ │ │ └── index.jsx │ │ │ │ ├── mutes │ │ │ │ │ └── index.jsx │ │ │ │ ├── notifications │ │ │ │ │ ├── components │ │ │ │ │ │ ├── checkbox_with_label.tsx │ │ │ │ │ │ ├── clear_column_button.jsx │ │ │ │ │ │ ├── column_settings.jsx │ │ │ │ │ │ ├── filtered_notifications_banner.tsx │ │ │ │ │ │ ├── follow_request.jsx │ │ │ │ │ │ ├── grant_permission_button.jsx │ │ │ │ │ │ ├── moderation_warning.tsx │ │ │ │ │ │ ├── notification.jsx │ │ │ │ │ │ ├── notification_request.jsx │ │ │ │ │ │ ├── notifications_permission_banner.jsx │ │ │ │ │ │ ├── pill_bar_button.jsx │ │ │ │ │ │ ├── policy_controls.tsx │ │ │ │ │ │ ├── relationships_severance_event.jsx │ │ │ │ │ │ ├── report.jsx │ │ │ │ │ │ ├── select_with_label.tsx │ │ │ │ │ │ └── setting_toggle.jsx │ │ │ │ │ ├── containers │ │ │ │ │ │ ├── column_settings_container.js │ │ │ │ │ │ ├── follow_request_container.js │ │ │ │ │ │ └── notification_container.js │ │ │ │ │ ├── request.jsx │ │ │ │ │ └── requests.jsx │ │ │ │ ├── notifications_v2 │ │ │ │ │ ├── components │ │ │ │ │ │ ├── avatar_group.tsx │ │ │ │ │ │ ├── displayed_name.tsx │ │ │ │ │ │ ├── embedded_status.tsx │ │ │ │ │ │ ├── embedded_status_content.tsx │ │ │ │ │ │ ├── notification_admin_report.tsx │ │ │ │ │ │ ├── notification_admin_sign_up.tsx │ │ │ │ │ │ ├── notification_annual_report.tsx │ │ │ │ │ │ ├── notification_favourite.tsx │ │ │ │ │ │ ├── notification_follow.tsx │ │ │ │ │ │ ├── notification_follow_request.tsx │ │ │ │ │ │ ├── notification_group.tsx │ │ │ │ │ │ ├── notification_group_with_status.tsx │ │ │ │ │ │ ├── notification_mention.tsx │ │ │ │ │ │ ├── notification_moderation_warning.tsx │ │ │ │ │ │ ├── notification_poll.tsx │ │ │ │ │ │ ├── notification_reaction.tsx │ │ │ │ │ │ ├── notification_reblog.tsx │ │ │ │ │ │ ├── notification_severed_relationships.tsx │ │ │ │ │ │ ├── notification_status.tsx │ │ │ │ │ │ ├── notification_update.tsx │ │ │ │ │ │ └── notification_with_status.tsx │ │ │ │ │ ├── filter_bar.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── onboarding │ │ │ │ │ ├── follows.tsx │ │ │ │ │ └── profile.tsx │ │ │ │ ├── picture_in_picture │ │ │ │ │ ├── components │ │ │ │ │ │ ├── footer.jsx │ │ │ │ │ │ └── header.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── pinned_statuses │ │ │ │ │ └── index.jsx │ │ │ │ ├── privacy_policy │ │ │ │ │ └── index.tsx │ │ │ │ ├── public_timeline │ │ │ │ │ ├── components │ │ │ │ │ │ └── column_settings.jsx │ │ │ │ │ ├── containers │ │ │ │ │ │ └── column_settings_container.js │ │ │ │ │ └── index.jsx │ │ │ │ ├── reactions │ │ │ │ │ └── index.jsx │ │ │ │ ├── reblogs │ │ │ │ │ └── index.jsx │ │ │ │ ├── report │ │ │ │ │ ├── category.jsx │ │ │ │ │ ├── comment.jsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── option.jsx │ │ │ │ │ │ └── status_check_box.jsx │ │ │ │ │ ├── containers │ │ │ │ │ │ └── status_check_box_container.js │ │ │ │ │ ├── rules.jsx │ │ │ │ │ ├── statuses.jsx │ │ │ │ │ └── thanks.jsx │ │ │ │ ├── search │ │ │ │ │ ├── components │ │ │ │ │ │ └── search_section.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── standalone │ │ │ │ │ ├── compose │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── status │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── status │ │ │ │ │ ├── components │ │ │ │ │ │ ├── action_bar.jsx │ │ │ │ │ │ ├── card.jsx │ │ │ │ │ │ └── detailed_status.tsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── subscribed_languages_modal │ │ │ │ │ └── index.jsx │ │ │ │ ├── terms_of_service │ │ │ │ │ └── index.tsx │ │ │ │ ├── ui │ │ │ │ │ ├── components │ │ │ │ │ │ ├── actions_modal.jsx │ │ │ │ │ │ ├── annual_report_modal.tsx │ │ │ │ │ │ ├── audio_modal.jsx │ │ │ │ │ │ ├── block_modal.jsx │ │ │ │ │ │ ├── boost_modal.tsx │ │ │ │ │ │ ├── bundle.jsx │ │ │ │ │ │ ├── bundle_column_error.jsx │ │ │ │ │ │ ├── column.jsx │ │ │ │ │ │ ├── column_link.jsx │ │ │ │ │ │ ├── column_loading.tsx │ │ │ │ │ │ ├── column_subheading.jsx │ │ │ │ │ │ ├── columns_area.jsx │ │ │ │ │ │ ├── compare_history_modal.jsx │ │ │ │ │ │ ├── compose_panel.jsx │ │ │ │ │ │ ├── confirmation_modals │ │ │ │ │ │ │ ├── clear_notifications.tsx │ │ │ │ │ │ │ ├── confirmation_modal.tsx │ │ │ │ │ │ │ ├── delete_list.tsx │ │ │ │ │ │ │ ├── delete_status.tsx │ │ │ │ │ │ │ ├── edit_status.tsx │ │ │ │ │ │ │ ├── follow_to_list.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── log_out.tsx │ │ │ │ │ │ │ ├── missing_alt_text.tsx │ │ │ │ │ │ │ ├── quote.tsx │ │ │ │ │ │ │ ├── reply.tsx │ │ │ │ │ │ │ └── unfollow.tsx │ │ │ │ │ │ ├── deprecated_settings_modal.jsx │ │ │ │ │ │ ├── disabled_account_banner.jsx │ │ │ │ │ │ ├── domain_block_modal.tsx │ │ │ │ │ │ ├── doodle_modal.jsx │ │ │ │ │ │ ├── drawer_loading.jsx │ │ │ │ │ │ ├── embed_modal.tsx │ │ │ │ │ │ ├── favourite_modal.tsx │ │ │ │ │ │ ├── filter_modal.jsx │ │ │ │ │ │ ├── gif_modal.jsx │ │ │ │ │ │ ├── header.jsx │ │ │ │ │ │ ├── ignore_notifications_modal.jsx │ │ │ │ │ │ ├── image_loader.jsx │ │ │ │ │ │ ├── image_modal.jsx │ │ │ │ │ │ ├── link_footer.tsx │ │ │ │ │ │ ├── list_panel.jsx │ │ │ │ │ │ ├── media_modal.jsx │ │ │ │ │ │ ├── modal_placeholder.tsx │ │ │ │ │ │ ├── modal_root.jsx │ │ │ │ │ │ ├── mute_modal.jsx │ │ │ │ │ │ ├── navigation_panel.jsx │ │ │ │ │ │ ├── report_modal.jsx │ │ │ │ │ │ ├── sign_in_banner.jsx │ │ │ │ │ │ ├── upload_area.jsx │ │ │ │ │ │ ├── video_modal.jsx │ │ │ │ │ │ └── zoomable_image.jsx │ │ │ │ │ ├── containers │ │ │ │ │ │ ├── bundle_container.js │ │ │ │ │ │ ├── columns_area_container.js │ │ │ │ │ │ ├── loading_bar_container.js │ │ │ │ │ │ ├── modal_container.js │ │ │ │ │ │ ├── notifications_container.js │ │ │ │ │ │ └── status_list_container.js │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── util │ │ │ │ │ │ ├── async-components.js │ │ │ │ │ │ ├── columns_context.tsx │ │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ │ ├── get_rect_from_entry.js │ │ │ │ │ │ ├── identity_consumer.jsx │ │ │ │ │ │ ├── intersection_observer_wrapper.js │ │ │ │ │ │ ├── optional_motion.js │ │ │ │ │ │ ├── react_router_helpers.jsx │ │ │ │ │ │ ├── reduced_motion.jsx │ │ │ │ │ │ ├── schedule_idle_task.js │ │ │ │ │ │ └── sensitive_media_context.tsx │ │ │ │ └── video │ │ │ │ │ └── index.jsx │ │ │ ├── hooks │ │ │ │ ├── useHovering.ts │ │ │ │ ├── useLinks.ts │ │ │ │ ├── useRenderSignal.ts │ │ │ │ ├── useSearchParam.ts │ │ │ │ ├── useSelectableClick.ts │ │ │ │ └── useTimeout.ts │ │ │ ├── identity_context.tsx │ │ │ ├── images │ │ │ │ ├── elephant_ui_disappointed.svg │ │ │ │ ├── glitch-preview.png │ │ │ │ ├── logo_warn_glitch.svg │ │ │ │ ├── mbstobon-ui-0.png │ │ │ │ ├── mbstobon-ui-1.png │ │ │ │ ├── mbstobon-ui-2.png │ │ │ │ ├── mbstobon-ui-3.png │ │ │ │ ├── wave-drawer-glitched.png │ │ │ │ └── wave-drawer.png │ │ │ ├── initial_state.js │ │ │ ├── is_mobile.ts │ │ │ ├── load_keyboard_extensions.js │ │ │ ├── locales │ │ │ │ ├── af.json │ │ │ │ ├── an.json │ │ │ │ ├── ar.json │ │ │ │ ├── ast.json │ │ │ │ ├── be.json │ │ │ │ ├── bg.json │ │ │ │ ├── bn.json │ │ │ │ ├── br.json │ │ │ │ ├── bs.json │ │ │ │ ├── ca.json │ │ │ │ ├── ckb.json │ │ │ │ ├── co.json │ │ │ │ ├── cs.json │ │ │ │ ├── cy.json │ │ │ │ ├── da.json │ │ │ │ ├── de.js │ │ │ │ ├── de.json │ │ │ │ ├── el.json │ │ │ │ ├── en-GB.json │ │ │ │ ├── en.json │ │ │ │ ├── eo.json │ │ │ │ ├── es-AR.json │ │ │ │ ├── es-MX.json │ │ │ │ ├── es.json │ │ │ │ ├── et.json │ │ │ │ ├── eu.json │ │ │ │ ├── fa.json │ │ │ │ ├── fi.json │ │ │ │ ├── fo.json │ │ │ │ ├── fr-CA.json │ │ │ │ ├── fr.js │ │ │ │ ├── fr.json │ │ │ │ ├── fy.json │ │ │ │ ├── ga.json │ │ │ │ ├── gd.json │ │ │ │ ├── gl.json │ │ │ │ ├── global_locale.ts │ │ │ │ ├── he.json │ │ │ │ ├── hi.json │ │ │ │ ├── hr.json │ │ │ │ ├── hu.json │ │ │ │ ├── hy.json │ │ │ │ ├── id.json │ │ │ │ ├── ig.json │ │ │ │ ├── index.ts │ │ │ │ ├── intl_provider.tsx │ │ │ │ ├── io.json │ │ │ │ ├── is.json │ │ │ │ ├── it.json │ │ │ │ ├── ja.json │ │ │ │ ├── ka.json │ │ │ │ ├── kab.json │ │ │ │ ├── kk.json │ │ │ │ ├── kn.json │ │ │ │ ├── ko.json │ │ │ │ ├── ku.json │ │ │ │ ├── kw.json │ │ │ │ ├── la.json │ │ │ │ ├── load_locale.ts │ │ │ │ ├── lt.json │ │ │ │ ├── lv.json │ │ │ │ ├── mk.json │ │ │ │ ├── ml.json │ │ │ │ ├── mr.json │ │ │ │ ├── ms.json │ │ │ │ ├── my.json │ │ │ │ ├── nl.json │ │ │ │ ├── nn.json │ │ │ │ ├── no.json │ │ │ │ ├── oc.json │ │ │ │ ├── pa.json │ │ │ │ ├── pl.json │ │ │ │ ├── pt-BR.json │ │ │ │ ├── pt-PT.json │ │ │ │ ├── ro.json │ │ │ │ ├── ru.json │ │ │ │ ├── sa.json │ │ │ │ ├── sc.json │ │ │ │ ├── sco.json │ │ │ │ ├── si.json │ │ │ │ ├── sk.json │ │ │ │ ├── sl.json │ │ │ │ ├── sq.json │ │ │ │ ├── sr-Latn.json │ │ │ │ ├── sr.json │ │ │ │ ├── sv.json │ │ │ │ ├── szl.json │ │ │ │ ├── ta.json │ │ │ │ ├── tai.json │ │ │ │ ├── te.json │ │ │ │ ├── th.json │ │ │ │ ├── tr.json │ │ │ │ ├── tt.json │ │ │ │ ├── ug.json │ │ │ │ ├── uk.json │ │ │ │ ├── ur.json │ │ │ │ ├── vi.json │ │ │ │ ├── zgh.json │ │ │ │ ├── zh-CN.json │ │ │ │ ├── zh-HK.json │ │ │ │ └── zh-TW.json │ │ │ ├── main.jsx │ │ │ ├── models │ │ │ │ ├── account.ts │ │ │ │ ├── annual_report.ts │ │ │ │ ├── custom_emoji.ts │ │ │ │ ├── dropdown_menu.ts │ │ │ │ ├── list.ts │ │ │ │ ├── media_attachment.ts │ │ │ │ ├── notification_group.ts │ │ │ │ ├── notification_policy.ts │ │ │ │ ├── notification_request.ts │ │ │ │ ├── poll.ts │ │ │ │ ├── reaction.ts │ │ │ │ ├── relationship.ts │ │ │ │ ├── search.ts │ │ │ │ ├── status.ts │ │ │ │ ├── suggestion.ts │ │ │ │ └── tags.ts │ │ │ ├── names.yml │ │ │ ├── performance.js │ │ │ ├── permissions.ts │ │ │ ├── polyfills │ │ │ │ ├── extra_polyfills.ts │ │ │ │ ├── index.ts │ │ │ │ └── intl.ts │ │ │ ├── ready.js │ │ │ ├── reducers │ │ │ │ ├── accounts.ts │ │ │ │ ├── accounts_map.js │ │ │ │ ├── alerts.js │ │ │ │ ├── announcements.js │ │ │ │ ├── compose.js │ │ │ │ ├── contexts.js │ │ │ │ ├── conversations.js │ │ │ │ ├── custom_emojis.js │ │ │ │ ├── domain_lists.js │ │ │ │ ├── dropdown_menu.ts │ │ │ │ ├── filters.js │ │ │ │ ├── followed_tags.js │ │ │ │ ├── height_cache.js │ │ │ │ ├── history.js │ │ │ │ ├── index.ts │ │ │ │ ├── lists.ts │ │ │ │ ├── local_settings.js │ │ │ │ ├── markers.ts │ │ │ │ ├── media_attachments.js │ │ │ │ ├── meta.js │ │ │ │ ├── modal.ts │ │ │ │ ├── notification_groups.ts │ │ │ │ ├── notification_policy.ts │ │ │ │ ├── notification_requests.ts │ │ │ │ ├── notifications.js │ │ │ │ ├── picture_in_picture.ts │ │ │ │ ├── polls.ts │ │ │ │ ├── push_notifications.js │ │ │ │ ├── relationships.ts │ │ │ │ ├── search.ts │ │ │ │ ├── server.js │ │ │ │ ├── settings.js │ │ │ │ ├── status_lists.js │ │ │ │ ├── status_reactions.js │ │ │ │ ├── statuses.js │ │ │ │ ├── suggestions.ts │ │ │ │ ├── timelines.js │ │ │ │ ├── trends.js │ │ │ │ └── user_lists.js │ │ │ ├── scroll.ts │ │ │ ├── selectors │ │ │ │ ├── accounts.ts │ │ │ │ ├── filters.ts │ │ │ │ ├── index.js │ │ │ │ ├── lists.ts │ │ │ │ ├── notifications.ts │ │ │ │ └── settings.ts │ │ │ ├── settings.js │ │ │ ├── store │ │ │ │ ├── index.ts │ │ │ │ ├── middlewares │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── loading_bar.ts │ │ │ │ │ └── sounds.ts │ │ │ │ ├── store.ts │ │ │ │ └── typed_functions.ts │ │ │ ├── stream.js │ │ │ ├── styles │ │ │ │ ├── _mixins.scss │ │ │ │ ├── about.scss │ │ │ │ ├── accessibility.scss │ │ │ │ ├── accounts.scss │ │ │ │ ├── admin.scss │ │ │ │ ├── annual_reports.scss │ │ │ │ ├── application.scss │ │ │ │ ├── basics.scss │ │ │ │ ├── branding.scss │ │ │ │ ├── components.scss │ │ │ │ ├── containers.scss │ │ │ │ ├── contrast.scss │ │ │ │ ├── contrast │ │ │ │ │ ├── diff.scss │ │ │ │ │ └── variables.scss │ │ │ │ ├── dashboard.scss │ │ │ │ ├── emoji_picker.scss │ │ │ │ ├── forms.scss │ │ │ │ ├── glitch_doodle.scss │ │ │ │ ├── glitch_local_settings.scss │ │ │ │ ├── index.scss │ │ │ │ ├── invert-lightness.scss │ │ │ │ ├── lightness-inversions │ │ │ │ │ ├── accounts.scss │ │ │ │ │ ├── admin.scss │ │ │ │ │ ├── basics.scss │ │ │ │ │ ├── components.scss │ │ │ │ │ ├── dashboard.scss │ │ │ │ │ ├── emoji_picker.scss │ │ │ │ │ ├── forms.scss │ │ │ │ │ ├── modal.scss │ │ │ │ │ ├── modern-urusai-fixes.scss │ │ │ │ │ ├── polls.scss │ │ │ │ │ ├── rtl.scss │ │ │ │ │ ├── tables.scss │ │ │ │ │ ├── variables.scss │ │ │ │ │ └── widgets.scss │ │ │ │ ├── lists.scss │ │ │ │ ├── mastodon-gekka-modern.scss │ │ │ │ ├── mastodon-gekka.scss │ │ │ │ ├── mastodon-gekka │ │ │ │ │ ├── diff.scss │ │ │ │ │ └── variables.scss │ │ │ │ ├── mastodon-holiday-modern.scss │ │ │ │ ├── mastodon-holiday.scss │ │ │ │ ├── mastodon-holiday │ │ │ │ │ ├── diff.scss │ │ │ │ │ └── variables.scss │ │ │ │ ├── mastodon-light-modern.scss │ │ │ │ ├── mastodon-light.scss │ │ │ │ ├── mastodon-light │ │ │ │ │ ├── diff.scss │ │ │ │ │ └── variables.scss │ │ │ │ ├── mastodon-modern.scss │ │ │ │ ├── mastodon-rose-pine-modern.scss │ │ │ │ ├── mastodon-rose-pine.scss │ │ │ │ ├── mastodon-rose-pine │ │ │ │ │ ├── diff.scss │ │ │ │ │ └── variables.scss │ │ │ │ ├── mastodon-sakura-modern.scss │ │ │ │ ├── mastodon-sakura.scss │ │ │ │ ├── mastodon-sakura │ │ │ │ │ ├── diff.scss │ │ │ │ │ └── variables.scss │ │ │ │ ├── mastodon-yozakura-modern.scss │ │ │ │ ├── mastodon-yozakura.scss │ │ │ │ ├── mastodon-yozakura │ │ │ │ │ ├── diff.scss │ │ │ │ │ └── variables.scss │ │ │ │ ├── modal.scss │ │ │ │ ├── modern-glitch-fixes.scss │ │ │ │ ├── modern-urusai-fixes.scss │ │ │ │ ├── modern.scss │ │ │ │ ├── polls.scss │ │ │ │ ├── reset.scss │ │ │ │ ├── rich_text.scss │ │ │ │ ├── rtl.scss │ │ │ │ ├── tables.scss │ │ │ │ ├── urusai-fixes.scss │ │ │ │ ├── variables.scss │ │ │ │ └── widgets.scss │ │ │ ├── test_helpers.tsx │ │ │ ├── theme.yml │ │ │ ├── types │ │ │ │ └── util.ts │ │ │ ├── utils │ │ │ │ ├── backend_links.js │ │ │ │ ├── base64.ts │ │ │ │ ├── config.ts │ │ │ │ ├── content_warning.js │ │ │ │ ├── debounce.ts │ │ │ │ ├── environment.ts │ │ │ │ ├── filters.ts │ │ │ │ ├── hashtag.js │ │ │ │ ├── hashtags.ts │ │ │ │ ├── html.ts │ │ │ │ ├── icons.tsx │ │ │ │ ├── idna.js │ │ │ │ ├── js_helpers.js │ │ │ │ ├── log_out.ts │ │ │ │ ├── notifications.ts │ │ │ │ ├── numbers.ts │ │ │ │ ├── privacy_preference.js │ │ │ │ ├── react_helpers.js │ │ │ │ ├── react_router.tsx │ │ │ │ ├── resize_image.js │ │ │ │ └── scrollbar.ts │ │ │ └── uuid.ts │ │ └── vanilla │ │ │ ├── names.yml │ │ │ └── theme.yml │ ├── fonts │ │ ├── inter │ │ │ └── inter-variable-font-slnt-wght.woff2 │ │ ├── premillenium │ │ │ └── MSSansSerif.ttf │ │ ├── roboto-mono │ │ │ ├── robotomono-regular-webfont.svg │ │ │ ├── robotomono-regular-webfont.ttf │ │ │ ├── robotomono-regular-webfont.woff │ │ │ └── robotomono-regular-webfont.woff2 │ │ └── roboto │ │ │ ├── roboto-bold-webfont.svg │ │ │ ├── roboto-bold-webfont.ttf │ │ │ ├── roboto-bold-webfont.woff │ │ │ ├── roboto-bold-webfont.woff2 │ │ │ ├── roboto-italic-webfont.svg │ │ │ ├── roboto-italic-webfont.ttf │ │ │ ├── roboto-italic-webfont.woff │ │ │ ├── roboto-italic-webfont.woff2 │ │ │ ├── roboto-medium-webfont.svg │ │ │ ├── roboto-medium-webfont.ttf │ │ │ ├── roboto-medium-webfont.woff │ │ │ ├── roboto-medium-webfont.woff2 │ │ │ ├── roboto-regular-webfont.svg │ │ │ ├── roboto-regular-webfont.ttf │ │ │ ├── roboto-regular-webfont.woff │ │ │ └── roboto-regular-webfont.woff2 │ ├── icons │ │ ├── android-chrome-144x144.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-256x256.png │ │ ├── android-chrome-36x36.png │ │ ├── android-chrome-384x384.png │ │ ├── android-chrome-48x48.png │ │ ├── android-chrome-512x512.png │ │ ├── android-chrome-72x72.png │ │ ├── android-chrome-96x96.png │ │ ├── apple-touch-icon-1024x1024.png │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-167x167.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-72x72.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── favicon-48x48.png │ ├── images │ │ ├── alert_badge.png │ │ ├── app-icon.svg │ │ ├── archetypes │ │ │ ├── booster.png │ │ │ ├── lurker.png │ │ │ ├── oracle.png │ │ │ ├── pollster.png │ │ │ └── replier.png │ │ ├── check.svg │ │ ├── clippy_frame.png │ │ ├── clippy_wave.gif │ │ ├── elephant_ui_conversation.svg │ │ ├── elephant_ui_disappointed.svg │ │ ├── elephant_ui_greeting.svg │ │ ├── elephant_ui_plane.svg │ │ ├── elephant_ui_working.svg │ │ ├── filter-stripes.svg │ │ ├── friends-cropped.png │ │ ├── icon_about.png │ │ ├── icon_blocks.png │ │ ├── icon_bookmarks.png │ │ ├── icon_developers.png │ │ ├── icon_direct.png │ │ ├── icon_docs.png │ │ ├── icon_domain_blocks.png │ │ ├── icon_follow_requests.png │ │ ├── icon_home.png │ │ ├── icon_invite.png │ │ ├── icon_keyboard_shortcuts.png │ │ ├── icon_likes.png │ │ ├── icon_lists.png │ │ ├── icon_local.png │ │ ├── icon_logout.png │ │ ├── icon_mobile_apps.png │ │ ├── icon_mutes.png │ │ ├── icon_notifications.png │ │ ├── icon_pin.png │ │ ├── icon_profile_directory.png │ │ ├── icon_public.png │ │ ├── icon_settings.png │ │ ├── icon_tos.png │ │ ├── icons │ │ │ ├── icon_cached.svg │ │ │ ├── icon_done.svg │ │ │ ├── icon_email.svg │ │ │ ├── icon_file_download.svg │ │ │ ├── icon_flag.svg │ │ │ ├── icon_grade.svg │ │ │ ├── icon_lock_open.svg │ │ │ ├── icon_person_add.svg │ │ │ └── icon_reply.svg │ │ ├── logo-symbol-icon.svg │ │ ├── logo-symbol-wordmark.svg │ │ ├── logo.svg │ │ ├── mailer-new │ │ │ ├── common │ │ │ │ ├── header-bg-end.png │ │ │ │ ├── header-bg-start.png │ │ │ │ ├── logo-footer.png │ │ │ │ └── logo-header.png │ │ │ ├── heading │ │ │ │ ├── 2fa-disabled.png │ │ │ │ ├── 2fa-enabled.png │ │ │ │ ├── 2fa-recovery.png │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── appeal-approved.png │ │ │ │ ├── appeal-rejected.png │ │ │ │ ├── archive.png │ │ │ │ ├── boost.png │ │ │ │ ├── email.png │ │ │ │ ├── favorite.png │ │ │ │ ├── follow.png │ │ │ │ ├── key-added.png │ │ │ │ ├── key-deleted.png │ │ │ │ ├── key-disabled.png │ │ │ │ ├── key-enabled.png │ │ │ │ ├── login.png │ │ │ │ ├── mention.png │ │ │ │ ├── password.png │ │ │ │ ├── reaction.png │ │ │ │ ├── user.png │ │ │ │ └── warning.png │ │ │ ├── store-icons │ │ │ │ ├── btn-app-store.png │ │ │ │ └── btn-google-play.png │ │ │ ├── welcome-icons │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── apps_step-off.png │ │ │ │ ├── apps_step-on.png │ │ │ │ ├── edit_profile_step-off.png │ │ │ │ ├── edit_profile_step-on.png │ │ │ │ ├── follow_step-off.png │ │ │ │ ├── follow_step-on.png │ │ │ │ ├── post_step-off.png │ │ │ │ ├── post_step-on.png │ │ │ │ ├── share_step-off.png │ │ │ │ └── share_step-on.png │ │ │ └── welcome │ │ │ │ ├── checkbox-off.png │ │ │ │ ├── checkbox-on.png │ │ │ │ ├── feature_audience.png │ │ │ │ ├── feature_control.png │ │ │ │ ├── feature_creativity.png │ │ │ │ ├── feature_moderation.png │ │ │ │ ├── purple-extra-soft-spacer.png │ │ │ │ └── purple-extra-soft-wave.png │ │ ├── mailer │ │ │ ├── icon_add.png │ │ │ ├── icon_cached.png │ │ │ ├── icon_done.png │ │ │ ├── icon_email.png │ │ │ ├── icon_file_download.png │ │ │ ├── icon_flag.png │ │ │ ├── icon_grade.png │ │ │ ├── icon_lock_open.png │ │ │ ├── icon_person_add.png │ │ │ ├── icon_reply.png │ │ │ ├── logo.png │ │ │ └── wordmark.png │ │ ├── preview.png │ │ ├── quote.svg │ │ ├── screenshot.png │ │ ├── start.png │ │ ├── void.png │ │ └── warning-stripes.svg │ ├── mastodon │ │ ├── actions │ │ │ ├── account_notes.ts │ │ │ ├── accounts.js │ │ │ ├── accounts_typed.ts │ │ │ ├── alerts.ts │ │ │ ├── announcements.js │ │ │ ├── app.ts │ │ │ ├── blocks.js │ │ │ ├── bookmarks.js │ │ │ ├── bundles.js │ │ │ ├── columns.js │ │ │ ├── compose.js │ │ │ ├── compose_typed.ts │ │ │ ├── conversations.js │ │ │ ├── custom_emojis.js │ │ │ ├── directory.ts │ │ │ ├── domain_blocks.js │ │ │ ├── domain_blocks_typed.ts │ │ │ ├── dropdown_menu.ts │ │ │ ├── emojis.js │ │ │ ├── favourites.js │ │ │ ├── featured_tags.js │ │ │ ├── filters.js │ │ │ ├── height_cache.js │ │ │ ├── history.js │ │ │ ├── importer │ │ │ │ ├── index.js │ │ │ │ ├── normalizer.js │ │ │ │ └── polls.ts │ │ │ ├── interactions.js │ │ │ ├── interactions_typed.ts │ │ │ ├── lists.js │ │ │ ├── lists_typed.ts │ │ │ ├── markers.ts │ │ │ ├── modal.ts │ │ │ ├── mutes.js │ │ │ ├── notification_groups.ts │ │ │ ├── notification_policies.ts │ │ │ ├── notification_requests.ts │ │ │ ├── notifications.js │ │ │ ├── notifications_typed.ts │ │ │ ├── onboarding.js │ │ │ ├── picture_in_picture.ts │ │ │ ├── pin_statuses.js │ │ │ ├── polls.ts │ │ │ ├── push_notifications │ │ │ │ ├── index.js │ │ │ │ ├── registerer.js │ │ │ │ └── setter.js │ │ │ ├── reports.js │ │ │ ├── search.ts │ │ │ ├── server.js │ │ │ ├── settings.js │ │ │ ├── statuses.js │ │ │ ├── store.js │ │ │ ├── streaming.js │ │ │ ├── suggestions.ts │ │ │ ├── tags.js │ │ │ ├── tags_typed.ts │ │ │ ├── timelines.js │ │ │ ├── timelines_typed.ts │ │ │ └── trends.js │ │ ├── api.ts │ │ ├── api │ │ │ ├── accounts.ts │ │ │ ├── compose.ts │ │ │ ├── directory.ts │ │ │ ├── instance.ts │ │ │ ├── interactions.ts │ │ │ ├── lists.ts │ │ │ ├── notification_policies.ts │ │ │ ├── notifications.ts │ │ │ ├── polls.ts │ │ │ ├── search.ts │ │ │ ├── suggestions.ts │ │ │ └── tags.ts │ │ ├── api_types │ │ │ ├── accounts.ts │ │ │ ├── custom_emoji.ts │ │ │ ├── instance.ts │ │ │ ├── lists.ts │ │ │ ├── markers.ts │ │ │ ├── media_attachments.ts │ │ │ ├── notification_policies.ts │ │ │ ├── notifications.ts │ │ │ ├── polls.ts │ │ │ ├── relationships.ts │ │ │ ├── reports.ts │ │ │ ├── search.ts │ │ │ ├── statuses.ts │ │ │ ├── suggestions.ts │ │ │ └── tags.ts │ │ ├── blurhash.ts │ │ ├── common.js │ │ ├── compare_id.ts │ │ ├── components │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── autosuggest_emoji-test.jsx.snap │ │ │ │ │ ├── avatar-test.jsx.snap │ │ │ │ │ ├── avatar_overlay-test.jsx.snap │ │ │ │ │ ├── button-test.jsx.snap │ │ │ │ │ └── display_name-test.jsx.snap │ │ │ │ ├── autosuggest_emoji-test.jsx │ │ │ │ ├── avatar-test.jsx │ │ │ │ ├── avatar_overlay-test.jsx │ │ │ │ ├── button-test.jsx │ │ │ │ ├── display_name-test.jsx │ │ │ │ └── hashtag_bar.tsx │ │ │ ├── account.tsx │ │ │ ├── account_bio.tsx │ │ │ ├── account_fields.tsx │ │ │ ├── admin │ │ │ │ ├── Counter.jsx │ │ │ │ ├── Dimension.jsx │ │ │ │ ├── ImpactReport.jsx │ │ │ │ ├── ReportReasonSelector.jsx │ │ │ │ ├── Retention.jsx │ │ │ │ └── Trends.jsx │ │ │ ├── alt_text_badge.tsx │ │ │ ├── animated_number.tsx │ │ │ ├── attachment_list.jsx │ │ │ ├── autosuggest_emoji.jsx │ │ │ ├── autosuggest_hashtag.tsx │ │ │ ├── autosuggest_input.jsx │ │ │ ├── autosuggest_textarea.jsx │ │ │ ├── avatar.tsx │ │ │ ├── avatar_composite.jsx │ │ │ ├── avatar_overlay.tsx │ │ │ ├── badge.jsx │ │ │ ├── blurhash.tsx │ │ │ ├── button.tsx │ │ │ ├── check_box.tsx │ │ │ ├── circular_progress.tsx │ │ │ ├── column.tsx │ │ │ ├── column_back_button.tsx │ │ │ ├── column_header.tsx │ │ │ ├── column_search_header.tsx │ │ │ ├── content_warning.tsx │ │ │ ├── copy_icon_button.jsx │ │ │ ├── copy_paste_text.tsx │ │ │ ├── counters.tsx │ │ │ ├── dismissable_banner.tsx │ │ │ ├── display_name.tsx │ │ │ ├── domain.tsx │ │ │ ├── dropdown_menu.jsx │ │ │ ├── dropdown_selector.tsx │ │ │ ├── edited_timestamp │ │ │ │ ├── containers │ │ │ │ │ └── dropdown_menu_container.js │ │ │ │ └── index.jsx │ │ │ ├── error_boundary.jsx │ │ │ ├── filter_warning.tsx │ │ │ ├── follow_button.tsx │ │ │ ├── gif.tsx │ │ │ ├── gifv.tsx │ │ │ ├── hashtag.tsx │ │ │ ├── hashtag_bar.tsx │ │ │ ├── hover_card_account.tsx │ │ │ ├── hover_card_controller.tsx │ │ │ ├── icon.tsx │ │ │ ├── icon_button.tsx │ │ │ ├── icon_with_badge.tsx │ │ │ ├── inline_account.jsx │ │ │ ├── intersection_observer_article.jsx │ │ │ ├── load_gap.tsx │ │ │ ├── load_more.tsx │ │ │ ├── load_pending.tsx │ │ │ ├── loading_indicator.tsx │ │ │ ├── logo.tsx │ │ │ ├── media_attachments.jsx │ │ │ ├── media_gallery.jsx │ │ │ ├── modal_root.jsx │ │ │ ├── more_from_author.jsx │ │ │ ├── navigation_portal.tsx │ │ │ ├── not_signed_in_indicator.tsx │ │ │ ├── picture_in_picture_placeholder.jsx │ │ │ ├── poll.jsx │ │ │ ├── radio_button.tsx │ │ │ ├── regeneration_indicator.tsx │ │ │ ├── relative_timestamp.tsx │ │ │ ├── router.tsx │ │ │ ├── scrollable_list.jsx │ │ │ ├── server_banner.jsx │ │ │ ├── server_hero_image.tsx │ │ │ ├── short_number.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── status.jsx │ │ │ ├── status_action_bar.jsx │ │ │ ├── status_banner.tsx │ │ │ ├── status_content.jsx │ │ │ ├── status_list.jsx │ │ │ ├── status_thread_label.tsx │ │ │ ├── timeline_hint.tsx │ │ │ ├── verified_badge.tsx │ │ │ └── visibility_icon.tsx │ │ ├── containers │ │ │ ├── admin_component.jsx │ │ │ ├── compose_container.jsx │ │ │ ├── dropdown_menu_container.js │ │ │ ├── intersection_observer_article_container.js │ │ │ ├── mastodon.jsx │ │ │ ├── media_container.jsx │ │ │ ├── poll_container.js │ │ │ ├── scroll_container.js │ │ │ └── status_container.jsx │ │ ├── features │ │ │ ├── about │ │ │ │ └── index.jsx │ │ │ ├── account │ │ │ │ ├── components │ │ │ │ │ ├── account_note.jsx │ │ │ │ │ ├── domain_pill.tsx │ │ │ │ │ ├── featured_tags.jsx │ │ │ │ │ └── follow_request_note.jsx │ │ │ │ ├── containers │ │ │ │ │ ├── account_note_container.js │ │ │ │ │ ├── featured_tags_container.js │ │ │ │ │ └── follow_request_note_container.js │ │ │ │ └── navigation.jsx │ │ │ ├── account_gallery │ │ │ │ ├── components │ │ │ │ │ └── media_item.tsx │ │ │ │ └── index.tsx │ │ │ ├── account_timeline │ │ │ │ ├── components │ │ │ │ │ ├── account_header.tsx │ │ │ │ │ ├── limited_account_hint.tsx │ │ │ │ │ ├── memorial_note.tsx │ │ │ │ │ └── moved_note.tsx │ │ │ │ └── index.jsx │ │ │ ├── alt_text_modal │ │ │ │ ├── components │ │ │ │ │ └── info_button.tsx │ │ │ │ └── index.tsx │ │ │ ├── annual_report │ │ │ │ ├── archetype.tsx │ │ │ │ ├── followers.tsx │ │ │ │ ├── highlighted_post.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── most_used_app.tsx │ │ │ │ ├── most_used_hashtag.tsx │ │ │ │ ├── new_posts.tsx │ │ │ │ └── percentile.tsx │ │ │ ├── audio │ │ │ │ ├── index.jsx │ │ │ │ └── visualizer.js │ │ │ ├── blocks │ │ │ │ └── index.jsx │ │ │ ├── bookmarked_statuses │ │ │ │ └── index.jsx │ │ │ ├── closed_registrations_modal │ │ │ │ └── index.jsx │ │ │ ├── community_timeline │ │ │ │ ├── components │ │ │ │ │ └── column_settings.jsx │ │ │ │ ├── containers │ │ │ │ │ └── column_settings_container.js │ │ │ │ └── index.jsx │ │ │ ├── compose │ │ │ │ ├── components │ │ │ │ │ ├── action_bar.jsx │ │ │ │ │ ├── autosuggest_account.jsx │ │ │ │ │ ├── character_counter.tsx │ │ │ │ │ ├── compose_form.jsx │ │ │ │ │ ├── edit_indicator.jsx │ │ │ │ │ ├── emoji_picker_dropdown.jsx │ │ │ │ │ ├── language_dropdown.tsx │ │ │ │ │ ├── navigation_bar.jsx │ │ │ │ │ ├── poll_button.jsx │ │ │ │ │ ├── poll_form.jsx │ │ │ │ │ ├── privacy_dropdown.jsx │ │ │ │ │ ├── reply_indicator.jsx │ │ │ │ │ ├── search.tsx │ │ │ │ │ ├── text_icon_button.jsx │ │ │ │ │ ├── upload.tsx │ │ │ │ │ ├── upload_button.jsx │ │ │ │ │ ├── upload_form.tsx │ │ │ │ │ ├── upload_progress.jsx │ │ │ │ │ └── warning.jsx │ │ │ │ ├── containers │ │ │ │ │ ├── autosuggest_account_container.js │ │ │ │ │ ├── compose_form_container.js │ │ │ │ │ ├── emoji_picker_dropdown_container.js │ │ │ │ │ ├── poll_button_container.js │ │ │ │ │ ├── privacy_dropdown_container.js │ │ │ │ │ ├── spoiler_button_container.js │ │ │ │ │ ├── upload_button_container.js │ │ │ │ │ └── warning_container.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── util │ │ │ │ │ ├── counter.js │ │ │ │ │ ├── language_detection.js │ │ │ │ │ └── url_regex.js │ │ │ ├── direct_timeline │ │ │ │ ├── components │ │ │ │ │ ├── conversation.jsx │ │ │ │ │ └── conversations_list.jsx │ │ │ │ └── index.jsx │ │ │ ├── directory │ │ │ │ ├── components │ │ │ │ │ └── account_card.tsx │ │ │ │ └── index.tsx │ │ │ ├── domain_blocks │ │ │ │ └── index.jsx │ │ │ ├── emoji │ │ │ │ ├── __tests__ │ │ │ │ │ ├── emoji-test.js │ │ │ │ │ └── emoji_index-test.js │ │ │ │ ├── emoji.js │ │ │ │ ├── emoji_all.json │ │ │ │ ├── emoji_categories.json │ │ │ │ ├── emoji_compressed.d.ts │ │ │ │ ├── emoji_compressed.js │ │ │ │ ├── emoji_map.json │ │ │ │ ├── emoji_mart_data_light.ts │ │ │ │ ├── emoji_mart_search_light.js │ │ │ │ ├── emoji_picker.js │ │ │ │ ├── emoji_sheet.json │ │ │ │ ├── emoji_unicode_mapping_light.ts │ │ │ │ ├── emoji_utils.js │ │ │ │ ├── unicode_to_filename.js │ │ │ │ └── unicode_to_unified_name.js │ │ │ ├── explore │ │ │ │ ├── components │ │ │ │ │ ├── author_link.jsx │ │ │ │ │ ├── card.jsx │ │ │ │ │ └── story.jsx │ │ │ │ ├── index.tsx │ │ │ │ ├── links.jsx │ │ │ │ ├── statuses.jsx │ │ │ │ ├── suggestions.jsx │ │ │ │ └── tags.jsx │ │ │ ├── favourited_statuses │ │ │ │ └── index.jsx │ │ │ ├── favourites │ │ │ │ └── index.jsx │ │ │ ├── filters │ │ │ │ ├── added_to_filter.jsx │ │ │ │ └── select_filter.jsx │ │ │ ├── firehose │ │ │ │ └── index.jsx │ │ │ ├── follow_requests │ │ │ │ ├── components │ │ │ │ │ └── account_authorize.jsx │ │ │ │ ├── containers │ │ │ │ │ └── account_authorize_container.js │ │ │ │ └── index.jsx │ │ │ ├── followed_tags │ │ │ │ └── index.jsx │ │ │ ├── followers │ │ │ │ └── index.jsx │ │ │ ├── following │ │ │ │ └── index.jsx │ │ │ ├── getting_started │ │ │ │ ├── components │ │ │ │ │ ├── announcements.jsx │ │ │ │ │ └── trends.jsx │ │ │ │ ├── containers │ │ │ │ │ ├── announcements_container.js │ │ │ │ │ └── trends_container.js │ │ │ │ └── index.jsx │ │ │ ├── hashtag_timeline │ │ │ │ ├── components │ │ │ │ │ ├── column_settings.jsx │ │ │ │ │ └── hashtag_header.tsx │ │ │ │ ├── containers │ │ │ │ │ └── column_settings_container.js │ │ │ │ └── index.jsx │ │ │ ├── home_timeline │ │ │ │ ├── components │ │ │ │ │ ├── column_settings.tsx │ │ │ │ │ ├── critical_update_banner.tsx │ │ │ │ │ └── inline_follow_suggestions.tsx │ │ │ │ └── index.jsx │ │ │ ├── interaction_modal │ │ │ │ └── index.tsx │ │ │ ├── keyboard_shortcuts │ │ │ │ └── index.jsx │ │ │ ├── link_timeline │ │ │ │ └── index.tsx │ │ │ ├── list_adder │ │ │ │ └── index.tsx │ │ │ ├── list_timeline │ │ │ │ └── index.jsx │ │ │ ├── lists │ │ │ │ ├── index.tsx │ │ │ │ ├── members.tsx │ │ │ │ └── new.tsx │ │ │ ├── mutes │ │ │ │ └── index.jsx │ │ │ ├── notifications │ │ │ │ ├── components │ │ │ │ │ ├── checkbox_with_label.tsx │ │ │ │ │ ├── clear_column_button.jsx │ │ │ │ │ ├── column_settings.jsx │ │ │ │ │ ├── filtered_notifications_banner.tsx │ │ │ │ │ ├── follow_request.jsx │ │ │ │ │ ├── grant_permission_button.jsx │ │ │ │ │ ├── moderation_warning.tsx │ │ │ │ │ ├── notification.jsx │ │ │ │ │ ├── notification_request.jsx │ │ │ │ │ ├── notifications_permission_banner.jsx │ │ │ │ │ ├── policy_controls.tsx │ │ │ │ │ ├── relationships_severance_event.jsx │ │ │ │ │ ├── report.jsx │ │ │ │ │ ├── select_with_label.tsx │ │ │ │ │ └── setting_toggle.jsx │ │ │ │ ├── containers │ │ │ │ │ ├── column_settings_container.js │ │ │ │ │ ├── follow_request_container.js │ │ │ │ │ └── notification_container.js │ │ │ │ ├── request.jsx │ │ │ │ └── requests.jsx │ │ │ ├── notifications_v2 │ │ │ │ ├── components │ │ │ │ │ ├── avatar_group.tsx │ │ │ │ │ ├── displayed_name.tsx │ │ │ │ │ ├── embedded_status.tsx │ │ │ │ │ ├── embedded_status_content.tsx │ │ │ │ │ ├── notification_admin_report.tsx │ │ │ │ │ ├── notification_admin_sign_up.tsx │ │ │ │ │ ├── notification_annual_report.tsx │ │ │ │ │ ├── notification_favourite.tsx │ │ │ │ │ ├── notification_follow.tsx │ │ │ │ │ ├── notification_follow_request.tsx │ │ │ │ │ ├── notification_group.tsx │ │ │ │ │ ├── notification_group_with_status.tsx │ │ │ │ │ ├── notification_mention.tsx │ │ │ │ │ ├── notification_moderation_warning.tsx │ │ │ │ │ ├── notification_poll.tsx │ │ │ │ │ ├── notification_reblog.tsx │ │ │ │ │ ├── notification_severed_relationships.tsx │ │ │ │ │ ├── notification_status.tsx │ │ │ │ │ ├── notification_update.tsx │ │ │ │ │ └── notification_with_status.tsx │ │ │ │ ├── filter_bar.tsx │ │ │ │ └── index.tsx │ │ │ ├── onboarding │ │ │ │ ├── follows.tsx │ │ │ │ └── profile.tsx │ │ │ ├── picture_in_picture │ │ │ │ ├── components │ │ │ │ │ ├── footer.jsx │ │ │ │ │ └── header.tsx │ │ │ │ └── index.tsx │ │ │ ├── pinned_statuses │ │ │ │ └── index.jsx │ │ │ ├── privacy_policy │ │ │ │ └── index.tsx │ │ │ ├── public_timeline │ │ │ │ ├── components │ │ │ │ │ └── column_settings.jsx │ │ │ │ ├── containers │ │ │ │ │ └── column_settings_container.js │ │ │ │ └── index.jsx │ │ │ ├── reblogs │ │ │ │ └── index.jsx │ │ │ ├── report │ │ │ │ ├── category.jsx │ │ │ │ ├── comment.jsx │ │ │ │ ├── components │ │ │ │ │ ├── option.jsx │ │ │ │ │ └── status_check_box.jsx │ │ │ │ ├── containers │ │ │ │ │ └── status_check_box_container.js │ │ │ │ ├── rules.jsx │ │ │ │ ├── statuses.jsx │ │ │ │ └── thanks.jsx │ │ │ ├── search │ │ │ │ ├── components │ │ │ │ │ └── search_section.tsx │ │ │ │ └── index.tsx │ │ │ ├── standalone │ │ │ │ ├── compose │ │ │ │ │ └── index.jsx │ │ │ │ └── status │ │ │ │ │ └── index.tsx │ │ │ ├── status │ │ │ │ ├── components │ │ │ │ │ ├── action_bar.jsx │ │ │ │ │ ├── card.jsx │ │ │ │ │ └── detailed_status.tsx │ │ │ │ └── index.jsx │ │ │ ├── subscribed_languages_modal │ │ │ │ └── index.jsx │ │ │ ├── terms_of_service │ │ │ │ └── index.tsx │ │ │ ├── ui │ │ │ │ ├── components │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── column-test.jsx │ │ │ │ │ ├── actions_modal.jsx │ │ │ │ │ ├── annual_report_modal.tsx │ │ │ │ │ ├── audio_modal.jsx │ │ │ │ │ ├── block_modal.jsx │ │ │ │ │ ├── boost_modal.tsx │ │ │ │ │ ├── bundle.jsx │ │ │ │ │ ├── bundle_column_error.jsx │ │ │ │ │ ├── column.jsx │ │ │ │ │ ├── column_link.jsx │ │ │ │ │ ├── column_loading.tsx │ │ │ │ │ ├── column_subheading.jsx │ │ │ │ │ ├── columns_area.jsx │ │ │ │ │ ├── compare_history_modal.jsx │ │ │ │ │ ├── compose_panel.jsx │ │ │ │ │ ├── confirmation_modals │ │ │ │ │ │ ├── clear_notifications.tsx │ │ │ │ │ │ ├── confirmation_modal.tsx │ │ │ │ │ │ ├── delete_list.tsx │ │ │ │ │ │ ├── delete_status.tsx │ │ │ │ │ │ ├── edit_status.tsx │ │ │ │ │ │ ├── follow_to_list.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── log_out.tsx │ │ │ │ │ │ ├── missing_alt_text.tsx │ │ │ │ │ │ ├── reply.tsx │ │ │ │ │ │ └── unfollow.tsx │ │ │ │ │ ├── disabled_account_banner.jsx │ │ │ │ │ ├── domain_block_modal.tsx │ │ │ │ │ ├── drawer_loading.jsx │ │ │ │ │ ├── embed_modal.tsx │ │ │ │ │ ├── filter_modal.jsx │ │ │ │ │ ├── header.jsx │ │ │ │ │ ├── ignore_notifications_modal.jsx │ │ │ │ │ ├── image_loader.jsx │ │ │ │ │ ├── image_modal.jsx │ │ │ │ │ ├── link_footer.tsx │ │ │ │ │ ├── list_panel.jsx │ │ │ │ │ ├── media_modal.jsx │ │ │ │ │ ├── modal_placeholder.tsx │ │ │ │ │ ├── modal_root.jsx │ │ │ │ │ ├── mute_modal.jsx │ │ │ │ │ ├── navigation_panel.jsx │ │ │ │ │ ├── report_modal.jsx │ │ │ │ │ ├── sign_in_banner.jsx │ │ │ │ │ ├── upload_area.jsx │ │ │ │ │ ├── video_modal.jsx │ │ │ │ │ └── zoomable_image.jsx │ │ │ │ ├── containers │ │ │ │ │ ├── bundle_container.js │ │ │ │ │ ├── columns_area_container.js │ │ │ │ │ ├── loading_bar_container.js │ │ │ │ │ ├── modal_container.js │ │ │ │ │ ├── notifications_container.js │ │ │ │ │ └── status_list_container.js │ │ │ │ ├── index.jsx │ │ │ │ └── util │ │ │ │ │ ├── async-components.js │ │ │ │ │ ├── columns_context.tsx │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ ├── get_rect_from_entry.js │ │ │ │ │ ├── intersection_observer_wrapper.js │ │ │ │ │ ├── optional_motion.js │ │ │ │ │ ├── react_router_helpers.jsx │ │ │ │ │ ├── reduced_motion.jsx │ │ │ │ │ ├── schedule_idle_task.js │ │ │ │ │ └── sensitive_media_context.tsx │ │ │ └── video │ │ │ │ └── index.jsx │ │ ├── hooks │ │ │ ├── useHovering.ts │ │ │ ├── useLinks.ts │ │ │ ├── useRenderSignal.ts │ │ │ ├── useSearchParam.ts │ │ │ ├── useSelectableClick.ts │ │ │ └── useTimeout.ts │ │ ├── identity_context.tsx │ │ ├── initial_state.js │ │ ├── is_mobile.ts │ │ ├── load_keyboard_extensions.js │ │ ├── locales │ │ │ ├── af.json │ │ │ ├── an.json │ │ │ ├── ar.json │ │ │ ├── ast.json │ │ │ ├── az.json │ │ │ ├── be.json │ │ │ ├── bg.json │ │ │ ├── bn.json │ │ │ ├── br.json │ │ │ ├── bs.json │ │ │ ├── ca.json │ │ │ ├── ckb.json │ │ │ ├── co.json │ │ │ ├── cs.json │ │ │ ├── cy.json │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── el.json │ │ │ ├── en-GB.json │ │ │ ├── en.json │ │ │ ├── eo.json │ │ │ ├── es-AR.json │ │ │ ├── es-MX.json │ │ │ ├── es.json │ │ │ ├── et.json │ │ │ ├── eu.json │ │ │ ├── fa.json │ │ │ ├── fi.json │ │ │ ├── fil.json │ │ │ ├── fo.json │ │ │ ├── fr-CA.json │ │ │ ├── fr.json │ │ │ ├── fy.json │ │ │ ├── ga.json │ │ │ ├── gd.json │ │ │ ├── gl.json │ │ │ ├── global_locale.ts │ │ │ ├── he.json │ │ │ ├── hi.json │ │ │ ├── hr.json │ │ │ ├── hu.json │ │ │ ├── hy.json │ │ │ ├── ia.json │ │ │ ├── id.json │ │ │ ├── ie.json │ │ │ ├── ig.json │ │ │ ├── index.ts │ │ │ ├── intl_provider.tsx │ │ │ ├── io.json │ │ │ ├── is.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── ka.json │ │ │ ├── kab.json │ │ │ ├── kk.json │ │ │ ├── kn.json │ │ │ ├── ko.json │ │ │ ├── ku.json │ │ │ ├── kw.json │ │ │ ├── la.json │ │ │ ├── lad.json │ │ │ ├── load_locale.ts │ │ │ ├── lt.json │ │ │ ├── lv.json │ │ │ ├── mk.json │ │ │ ├── ml.json │ │ │ ├── mr.json │ │ │ ├── ms.json │ │ │ ├── my.json │ │ │ ├── nan.json │ │ │ ├── ne.json │ │ │ ├── nl.json │ │ │ ├── nn.json │ │ │ ├── no.json │ │ │ ├── oc.json │ │ │ ├── pa.json │ │ │ ├── pl.json │ │ │ ├── pt-BR.json │ │ │ ├── pt-PT.json │ │ │ ├── ro.json │ │ │ ├── ru.json │ │ │ ├── ry.json │ │ │ ├── sa.json │ │ │ ├── sc.json │ │ │ ├── sco.json │ │ │ ├── si.json │ │ │ ├── sk.json │ │ │ ├── sl.json │ │ │ ├── sq.json │ │ │ ├── sr-Latn.json │ │ │ ├── sr.json │ │ │ ├── sv.json │ │ │ ├── szl.json │ │ │ ├── ta.json │ │ │ ├── tai.json │ │ │ ├── te.json │ │ │ ├── th.json │ │ │ ├── tlh.json │ │ │ ├── tok.json │ │ │ ├── tr.json │ │ │ ├── tt.json │ │ │ ├── ug.json │ │ │ ├── uk.json │ │ │ ├── ur.json │ │ │ ├── uz.json │ │ │ ├── vi.json │ │ │ ├── zgh.json │ │ │ ├── zh-CN.json │ │ │ ├── zh-HK.json │ │ │ └── zh-TW.json │ │ ├── main.jsx │ │ ├── models │ │ │ ├── account.ts │ │ │ ├── annual_report.ts │ │ │ ├── custom_emoji.ts │ │ │ ├── dropdown_menu.ts │ │ │ ├── list.ts │ │ │ ├── media_attachment.ts │ │ │ ├── notification_group.ts │ │ │ ├── notification_policy.ts │ │ │ ├── notification_request.ts │ │ │ ├── poll.ts │ │ │ ├── relationship.ts │ │ │ ├── search.ts │ │ │ ├── status.ts │ │ │ ├── suggestion.ts │ │ │ └── tags.ts │ │ ├── performance.js │ │ ├── permissions.ts │ │ ├── polyfills │ │ │ ├── extra_polyfills.ts │ │ │ ├── index.ts │ │ │ └── intl.ts │ │ ├── ready.js │ │ ├── reducers │ │ │ ├── accounts.ts │ │ │ ├── accounts_map.js │ │ │ ├── alerts.js │ │ │ ├── announcements.js │ │ │ ├── compose.js │ │ │ ├── contexts.js │ │ │ ├── conversations.js │ │ │ ├── custom_emojis.js │ │ │ ├── domain_lists.js │ │ │ ├── dropdown_menu.ts │ │ │ ├── filters.js │ │ │ ├── followed_tags.js │ │ │ ├── height_cache.js │ │ │ ├── history.js │ │ │ ├── index.ts │ │ │ ├── lists.ts │ │ │ ├── markers.ts │ │ │ ├── media_attachments.js │ │ │ ├── meta.js │ │ │ ├── modal.ts │ │ │ ├── notification_groups.ts │ │ │ ├── notification_policy.ts │ │ │ ├── notification_requests.ts │ │ │ ├── notifications.js │ │ │ ├── picture_in_picture.ts │ │ │ ├── polls.ts │ │ │ ├── push_notifications.js │ │ │ ├── relationships.ts │ │ │ ├── search.ts │ │ │ ├── server.js │ │ │ ├── settings.js │ │ │ ├── status_lists.js │ │ │ ├── statuses.js │ │ │ ├── suggestions.ts │ │ │ ├── timelines.js │ │ │ ├── trends.js │ │ │ └── user_lists.js │ │ ├── scroll.ts │ │ ├── selectors │ │ │ ├── accounts.ts │ │ │ ├── filters.ts │ │ │ ├── index.js │ │ │ ├── lists.ts │ │ │ ├── notifications.ts │ │ │ └── settings.ts │ │ ├── service_worker │ │ │ ├── entry.js │ │ │ ├── web_push_locales.js │ │ │ └── web_push_notifications.js │ │ ├── settings.js │ │ ├── store │ │ │ ├── index.ts │ │ │ ├── middlewares │ │ │ │ ├── errors.ts │ │ │ │ ├── loading_bar.ts │ │ │ │ └── sounds.ts │ │ │ ├── store.ts │ │ │ └── typed_functions.ts │ │ ├── stream.js │ │ ├── test_helpers.tsx │ │ ├── test_setup.js │ │ ├── utils │ │ │ ├── __tests__ │ │ │ │ ├── base64-test.ts │ │ │ │ ├── html-test.ts │ │ │ │ └── numbers.ts │ │ │ ├── base64.ts │ │ │ ├── config.ts │ │ │ ├── debounce.ts │ │ │ ├── environment.ts │ │ │ ├── filters.ts │ │ │ ├── hashtags.ts │ │ │ ├── html.ts │ │ │ ├── icons.tsx │ │ │ ├── log_out.ts │ │ │ ├── notifications.ts │ │ │ ├── numbers.ts │ │ │ ├── react_router.tsx │ │ │ └── scrollbar.ts │ │ └── uuid.ts │ ├── material-icons │ │ ├── 400-20px │ │ │ ├── bar_chart_4_bars-fill.svg │ │ │ ├── bar_chart_4_bars.svg │ │ │ ├── close-fill.svg │ │ │ ├── close.svg │ │ │ ├── code-fill.svg │ │ │ ├── code.svg │ │ │ ├── description-fill.svg │ │ │ ├── description.svg │ │ │ ├── markdown-fill.svg │ │ │ ├── markdown.svg │ │ │ ├── mood-fill.svg │ │ │ ├── mood.svg │ │ │ ├── photo_library-fill.svg │ │ │ ├── photo_library.svg │ │ │ ├── quickreply-fill.svg │ │ │ ├── quickreply.svg │ │ │ ├── settings-fill.svg │ │ │ ├── settings.svg │ │ │ ├── share-fill.svg │ │ │ ├── share.svg │ │ │ ├── share_off-fill.svg │ │ │ ├── share_off.svg │ │ │ ├── warning-fill.svg │ │ │ └── warning.svg │ │ ├── 400-24px │ │ │ ├── account_circle-fill.svg │ │ │ ├── account_circle.svg │ │ │ ├── add-fill.svg │ │ │ ├── add.svg │ │ │ ├── add_photo_alternate-fill.svg │ │ │ ├── add_photo_alternate.svg │ │ │ ├── add_reaction-fill.svg │ │ │ ├── add_reaction.svg │ │ │ ├── alternate_email-fill.svg │ │ │ ├── alternate_email.svg │ │ │ ├── arrow_back-fill.svg │ │ │ ├── arrow_back.svg │ │ │ ├── arrow_drop_down-fill.svg │ │ │ ├── arrow_drop_down.svg │ │ │ ├── arrow_left_alt.svg │ │ │ ├── arrow_right_alt-fill.svg │ │ │ ├── arrow_right_alt.svg │ │ │ ├── attach_file-fill.svg │ │ │ ├── attach_file.svg │ │ │ ├── badge-fill.svg │ │ │ ├── badge.svg │ │ │ ├── bar_chart_4_bars-fill.svg │ │ │ ├── bar_chart_4_bars.svg │ │ │ ├── block-fill.svg │ │ │ ├── block.svg │ │ │ ├── bookmark-fill.svg │ │ │ ├── bookmark.svg │ │ │ ├── bookmarks-fill.svg │ │ │ ├── bookmarks.svg │ │ │ ├── breaking_news-fill.svg │ │ │ ├── breaking_news.svg │ │ │ ├── brush-fill.svg │ │ │ ├── brush.svg │ │ │ ├── bubble_chart.svg │ │ │ ├── campaign-fill.svg │ │ │ ├── campaign.svg │ │ │ ├── cancel-fill.svg │ │ │ ├── cancel.svg │ │ │ ├── cancel_presentation-fill.svg │ │ │ ├── cancel_presentation.svg │ │ │ ├── captive_portal-fill.svg │ │ │ ├── captive_portal.svg │ │ │ ├── celebration-fill.svg │ │ │ ├── celebration.svg │ │ │ ├── chat-fill.svg │ │ │ ├── chat.svg │ │ │ ├── chat_bubble-fill.svg │ │ │ ├── chat_bubble.svg │ │ │ ├── check-fill.svg │ │ │ ├── check.svg │ │ │ ├── check_box_outline_blank-fill.svg │ │ │ ├── check_box_outline_blank.svg │ │ │ ├── check_indeterminate_small-fill.svg │ │ │ ├── check_indeterminate_small.svg │ │ │ ├── chevron_left-fill.svg │ │ │ ├── chevron_left.svg │ │ │ ├── chevron_right-fill.svg │ │ │ ├── chevron_right.svg │ │ │ ├── close-fill.svg │ │ │ ├── close.svg │ │ │ ├── cloud-fill.svg │ │ │ ├── cloud.svg │ │ │ ├── cloud_download-fill.svg │ │ │ ├── cloud_download.svg │ │ │ ├── cloud_sync-fill.svg │ │ │ ├── cloud_sync.svg │ │ │ ├── cloud_upload-fill.svg │ │ │ ├── cloud_upload.svg │ │ │ ├── code-fill.svg │ │ │ ├── code.svg │ │ │ ├── colors-fill.svg │ │ │ ├── colors.svg │ │ │ ├── comment.svg │ │ │ ├── computer-fill.svg │ │ │ ├── computer.svg │ │ │ ├── contact_mail-fill.svg │ │ │ ├── contact_mail.svg │ │ │ ├── content_copy-fill.svg │ │ │ ├── content_copy.svg │ │ │ ├── database-fill.svg │ │ │ ├── database.svg │ │ │ ├── delete-fill.svg │ │ │ ├── delete.svg │ │ │ ├── delete_forever-fill.svg │ │ │ ├── delete_forever.svg │ │ │ ├── description-fill.svg │ │ │ ├── description.svg │ │ │ ├── desktop_mac.svg │ │ │ ├── diamond-fill.svg │ │ │ ├── diamond.svg │ │ │ ├── domain_disabled-fill.svg │ │ │ ├── domain_disabled.svg │ │ │ ├── done-fill.svg │ │ │ ├── done.svg │ │ │ ├── done_all-fill.svg │ │ │ ├── done_all.svg │ │ │ ├── download-fill.svg │ │ │ ├── download.svg │ │ │ ├── edit-fill.svg │ │ │ ├── edit.svg │ │ │ ├── edit_note-fill.svg │ │ │ ├── edit_note.svg │ │ │ ├── expand_less-fill.svg │ │ │ ├── expand_less.svg │ │ │ ├── expand_more-fill.svg │ │ │ ├── expand_more.svg │ │ │ ├── explore-fill.svg │ │ │ ├── explore.svg │ │ │ ├── feedback-fill.svg │ │ │ ├── feedback.svg │ │ │ ├── filter_alt-fill.svg │ │ │ ├── filter_alt.svg │ │ │ ├── find_in_page-fill.svg │ │ │ ├── find_in_page.svg │ │ │ ├── fit_screen-fill.svg │ │ │ ├── fit_screen.svg │ │ │ ├── flag-fill.svg │ │ │ ├── flag.svg │ │ │ ├── format_paragraph.svg │ │ │ ├── format_quote-fill.svg │ │ │ ├── format_quote.svg │ │ │ ├── forum-fill.svg │ │ │ ├── forum.svg │ │ │ ├── fullscreen-fill.svg │ │ │ ├── fullscreen.svg │ │ │ ├── fullscreen_exit-fill.svg │ │ │ ├── fullscreen_exit.svg │ │ │ ├── gavel-fill.svg │ │ │ ├── gavel.svg │ │ │ ├── gif_box-fill.svg │ │ │ ├── gif_box.svg │ │ │ ├── globe-fill.svg │ │ │ ├── globe.svg │ │ │ ├── group-fill.svg │ │ │ ├── group.svg │ │ │ ├── groups-fill.svg │ │ │ ├── groups.svg │ │ │ ├── headphones-fill.svg │ │ │ ├── headphones.svg │ │ │ ├── heart_broken-fill.svg │ │ │ ├── heart_broken.svg │ │ │ ├── hide_source-fill.svg │ │ │ ├── hide_source.svg │ │ │ ├── history-fill.svg │ │ │ ├── history.svg │ │ │ ├── home-fill.svg │ │ │ ├── home.svg │ │ │ ├── hourglass.svg │ │ │ ├── image-fill.svg │ │ │ ├── image.svg │ │ │ ├── inbox-fill.svg │ │ │ ├── inbox.svg │ │ │ ├── info-fill.svg │ │ │ ├── info.svg │ │ │ ├── insert_chart-fill.svg │ │ │ ├── insert_chart.svg │ │ │ ├── inventory_2-fill.svg │ │ │ ├── inventory_2.svg │ │ │ ├── key.svg │ │ │ ├── keyboard_double_arrow_down.svg │ │ │ ├── link-fill.svg │ │ │ ├── link.svg │ │ │ ├── link_off-fill.svg │ │ │ ├── link_off.svg │ │ │ ├── list-fill.svg │ │ │ ├── list.svg │ │ │ ├── list_alt-fill.svg │ │ │ ├── list_alt.svg │ │ │ ├── lock-fill.svg │ │ │ ├── lock.svg │ │ │ ├── lock_open-fill.svg │ │ │ ├── lock_open.svg │ │ │ ├── logout-fill.svg │ │ │ ├── logout.svg │ │ │ ├── mail-fill.svg │ │ │ ├── mail.svg │ │ │ ├── manufacturing-fill.svg │ │ │ ├── manufacturing.svg │ │ │ ├── markdown-fill.svg │ │ │ ├── markdown.svg │ │ │ ├── menu-fill.svg │ │ │ ├── menu.svg │ │ │ ├── mood-fill.svg │ │ │ ├── mood.svg │ │ │ ├── more_horiz-fill.svg │ │ │ ├── more_horiz.svg │ │ │ ├── movie-fill.svg │ │ │ ├── movie.svg │ │ │ ├── music_note-fill.svg │ │ │ ├── music_note.svg │ │ │ ├── navigate_before-fill.svg │ │ │ ├── navigate_before.svg │ │ │ ├── navigate_next-fill.svg │ │ │ ├── navigate_next.svg │ │ │ ├── notifications-fill.svg │ │ │ ├── notifications.svg │ │ │ ├── notifications_active-fill.svg │ │ │ ├── notifications_active.svg │ │ │ ├── open_in_new-fill.svg │ │ │ ├── open_in_new.svg │ │ │ ├── pause-fill.svg │ │ │ ├── pause.svg │ │ │ ├── person-fill.svg │ │ │ ├── person.svg │ │ │ ├── person_add-fill.svg │ │ │ ├── person_add.svg │ │ │ ├── person_alert-fill.svg │ │ │ ├── person_alert.svg │ │ │ ├── person_check-fill.svg │ │ │ ├── person_check.svg │ │ │ ├── person_remove-fill.svg │ │ │ ├── person_remove.svg │ │ │ ├── photo_camera.svg │ │ │ ├── photo_library-fill.svg │ │ │ ├── photo_library.svg │ │ │ ├── play_arrow-fill.svg │ │ │ ├── play_arrow.svg │ │ │ ├── power.svg │ │ │ ├── power_off.svg │ │ │ ├── public-fill.svg │ │ │ ├── public.svg │ │ │ ├── push_pin-fill.svg │ │ │ ├── push_pin.svg │ │ │ ├── question_mark-fill.svg │ │ │ ├── question_mark.svg │ │ │ ├── quiet_time-fill.svg │ │ │ ├── quiet_time.svg │ │ │ ├── radio_button_checked.svg │ │ │ ├── radio_button_unchecked.svg │ │ │ ├── rectangle-fill.svg │ │ │ ├── rectangle.svg │ │ │ ├── refresh-fill.svg │ │ │ ├── refresh.svg │ │ │ ├── repeat-fill.svg │ │ │ ├── repeat.svg │ │ │ ├── reply-fill.svg │ │ │ ├── reply.svg │ │ │ ├── reply_all-fill.svg │ │ │ ├── reply_all.svg │ │ │ ├── report-fill.svg │ │ │ ├── report.svg │ │ │ ├── safety_check-fill.svg │ │ │ ├── safety_check.svg │ │ │ ├── save.svg │ │ │ ├── search-fill.svg │ │ │ ├── search.svg │ │ │ ├── settings-fill.svg │ │ │ ├── settings.svg │ │ │ ├── share-fill.svg │ │ │ ├── share.svg │ │ │ ├── share_off-fill.svg │ │ │ ├── share_off.svg │ │ │ ├── shield_question-fill.svg │ │ │ ├── shield_question.svg │ │ │ ├── smart_toy-fill.svg │ │ │ ├── smart_toy.svg │ │ │ ├── smartphone.svg │ │ │ ├── speed-fill.svg │ │ │ ├── speed.svg │ │ │ ├── star-fill.svg │ │ │ ├── star.svg │ │ │ ├── sync_alt.svg │ │ │ ├── tablet.svg │ │ │ ├── tag-fill.svg │ │ │ ├── tag.svg │ │ │ ├── toggle_off.svg │ │ │ ├── toggle_on.svg │ │ │ ├── translate-fill.svg │ │ │ ├── translate.svg │ │ │ ├── trending_up-fill.svg │ │ │ ├── trending_up.svg │ │ │ ├── trip-fill.svg │ │ │ ├── trip.svg │ │ │ ├── tune-fill.svg │ │ │ ├── tune.svg │ │ │ ├── undo-fill.svg │ │ │ ├── undo.svg │ │ │ ├── upload_file-fill.svg │ │ │ ├── upload_file.svg │ │ │ ├── visibility-fill.svg │ │ │ ├── visibility.svg │ │ │ ├── visibility_off-fill.svg │ │ │ ├── visibility_off.svg │ │ │ ├── volume_off-fill.svg │ │ │ ├── volume_off.svg │ │ │ ├── volume_up-fill.svg │ │ │ ├── volume_up.svg │ │ │ ├── warning-fill.svg │ │ │ └── warning.svg │ │ ├── LICENSE │ │ └── README.md │ ├── skins │ │ ├── glitch │ │ │ ├── contrast │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ │ ├── default │ │ │ │ └── common.scss │ │ │ ├── mastodon-gekka │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ │ ├── mastodon-gekkamodern │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ │ ├── mastodon-holiday │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ │ ├── mastodon-holidaymodern │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ │ ├── mastodon-light │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ │ ├── mastodon-lightmodern │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ │ ├── mastodon-modern │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ │ ├── mastodon-rose-pine │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ │ ├── mastodon-rose-pinemodern │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ │ ├── mastodon-sakura │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ │ ├── mastodon-sakuramodern │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ │ ├── mastodon-yozakura │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ │ └── mastodon-yozakuramodern │ │ │ │ ├── common.scss │ │ │ │ └── names.yml │ │ └── vanilla │ │ │ ├── contrast-modern │ │ │ ├── common.scss │ │ │ └── names.yml │ │ │ ├── contrast │ │ │ ├── common.scss │ │ │ └── names.yml │ │ │ ├── default │ │ │ └── common.scss │ │ │ ├── mastodon-birdsite │ │ │ ├── common.scss │ │ │ └── names.yml │ │ │ ├── mastodon-gekka-modern │ │ │ ├── common.scss │ │ │ └── names.yml │ │ │ ├── mastodon-holiday-modern │ │ │ ├── common.scss │ │ │ └── names.yml │ │ │ ├── mastodon-light-modern │ │ │ ├── common.scss │ │ │ └── names.yml │ │ │ ├── mastodon-light-twitter │ │ │ ├── common.scss │ │ │ └── names.yml │ │ │ ├── mastodon-light │ │ │ ├── common.scss │ │ │ └── names.yml │ │ │ ├── mastodon-modern │ │ │ ├── common.scss │ │ │ └── names.yml │ │ │ ├── mastodon-sakura-modern │ │ │ ├── common.scss │ │ │ └── names.yml │ │ │ ├── tangerineui-cherry │ │ │ ├── common.scss │ │ │ └── names.yml │ │ │ ├── tangerineui-purple │ │ │ ├── common.scss │ │ │ └── names.yml │ │ │ ├── tangerineui │ │ │ ├── common.scss │ │ │ └── names.yml │ │ │ └── win95 │ │ │ ├── common.scss │ │ │ └── names.yml │ ├── styles │ │ ├── application.scss │ │ ├── birdsite.css │ │ ├── contrast-modern.scss │ │ ├── contrast.scss │ │ ├── contrast │ │ │ ├── diff.scss │ │ │ └── variables.scss │ │ ├── fonts │ │ │ ├── inter.scss │ │ │ ├── roboto-mono.scss │ │ │ └── roboto.scss │ │ ├── inert.scss │ │ ├── mailer.scss │ │ ├── mastodon-birdsite-light.scss │ │ ├── mastodon-birdsite.scss │ │ ├── mastodon-gekka-modern.scss │ │ ├── mastodon-gekka-modern │ │ │ ├── diff.scss │ │ │ └── variables.scss │ │ ├── mastodon-holiday-modern.scss │ │ ├── mastodon-holiday-modern │ │ │ ├── diff.scss │ │ │ └── variables.scss │ │ ├── mastodon-light-modern.scss │ │ ├── mastodon-light.scss │ │ ├── mastodon-light │ │ │ ├── diff.scss │ │ │ └── variables.scss │ │ ├── mastodon-modern.scss │ │ ├── mastodon-sakura-modern.scss │ │ ├── mastodon-sakura-modern │ │ │ ├── diff.scss │ │ │ └── variables.scss │ │ ├── mastodon │ │ │ ├── _mixins.scss │ │ │ ├── about.scss │ │ │ ├── accessibility.scss │ │ │ ├── accounts.scss │ │ │ ├── admin.scss │ │ │ ├── annual_reports.scss │ │ │ ├── basics.scss │ │ │ ├── branding.scss │ │ │ ├── components.scss │ │ │ ├── containers.scss │ │ │ ├── dashboard.scss │ │ │ ├── emoji_picker.scss │ │ │ ├── forms.scss │ │ │ ├── lists.scss │ │ │ ├── modal.scss │ │ │ ├── polls.scss │ │ │ ├── reset.scss │ │ │ ├── rich_text.scss │ │ │ ├── rtl.scss │ │ │ ├── tables.scss │ │ │ ├── variables.scss │ │ │ └── widgets.scss │ │ ├── modern-urusai-fixes.scss │ │ ├── modern.scss │ │ ├── tangerineui-cherry.scss │ │ ├── tangerineui-cherry │ │ │ └── tangerineui-cherry.scss │ │ ├── tangerineui-purple.scss │ │ ├── tangerineui-purple │ │ │ └── tangerineui-purple.scss │ │ ├── tangerineui.scss │ │ ├── tangerineui │ │ │ └── tangerineui.scss │ │ └── win95.scss │ ├── svg-icons │ │ ├── actual_size.svg │ │ ├── repeat_active.svg │ │ ├── repeat_disabled.svg │ │ ├── repeat_private.svg │ │ ├── repeat_private_active.svg │ │ └── squiggly_arrow.svg │ └── types │ │ ├── image.d.ts │ │ ├── tesseract.d.ts │ │ └── util.ts ├── lib │ ├── access_grant_extension.rb │ ├── access_token_extension.rb │ ├── account_reach_finder.rb │ ├── account_statuses_filter.rb │ ├── activity_tracker.rb │ ├── activitypub │ │ ├── activity.rb │ │ ├── activity │ │ │ ├── accept.rb │ │ │ ├── add.rb │ │ │ ├── announce.rb │ │ │ ├── block.rb │ │ │ ├── create.rb │ │ │ ├── delete.rb │ │ │ ├── emoji_react.rb │ │ │ ├── flag.rb │ │ │ ├── follow.rb │ │ │ ├── like.rb │ │ │ ├── move.rb │ │ │ ├── reject.rb │ │ │ ├── remove.rb │ │ │ ├── undo.rb │ │ │ └── update.rb │ │ ├── adapter.rb │ │ ├── case_transform.rb │ │ ├── dereferencer.rb │ │ ├── forwarder.rb │ │ ├── linked_data_signature.rb │ │ ├── parser │ │ │ ├── custom_emoji_parser.rb │ │ │ ├── media_attachment_parser.rb │ │ │ ├── poll_parser.rb │ │ │ └── status_parser.rb │ │ ├── serializer.rb │ │ └── tag_manager.rb │ ├── admin │ │ ├── account_statuses_filter.rb │ │ ├── metrics │ │ │ ├── dimension.rb │ │ │ ├── dimension │ │ │ │ ├── base_dimension.rb │ │ │ │ ├── instance_accounts_dimension.rb │ │ │ │ ├── instance_languages_dimension.rb │ │ │ │ ├── languages_dimension.rb │ │ │ │ ├── query_helper.rb │ │ │ │ ├── servers_dimension.rb │ │ │ │ ├── software_versions_dimension.rb │ │ │ │ ├── sources_dimension.rb │ │ │ │ ├── space_usage_dimension.rb │ │ │ │ ├── tag_languages_dimension.rb │ │ │ │ └── tag_servers_dimension.rb │ │ │ ├── measure.rb │ │ │ ├── measure │ │ │ │ ├── active_users_measure.rb │ │ │ │ ├── base_measure.rb │ │ │ │ ├── instance_accounts_measure.rb │ │ │ │ ├── instance_followers_measure.rb │ │ │ │ ├── instance_follows_measure.rb │ │ │ │ ├── instance_media_attachments_measure.rb │ │ │ │ ├── instance_reports_measure.rb │ │ │ │ ├── instance_statuses_measure.rb │ │ │ │ ├── interactions_measure.rb │ │ │ │ ├── new_users_measure.rb │ │ │ │ ├── opened_reports_measure.rb │ │ │ │ ├── query_helper.rb │ │ │ │ ├── resolved_reports_measure.rb │ │ │ │ ├── tag_accounts_measure.rb │ │ │ │ ├── tag_servers_measure.rb │ │ │ │ └── tag_uses_measure.rb │ │ │ └── retention.rb │ │ ├── system_check.rb │ │ └── system_check │ │ │ ├── base_check.rb │ │ │ ├── database_schema_check.rb │ │ │ ├── elasticsearch_check.rb │ │ │ ├── media_privacy_check.rb │ │ │ ├── message.rb │ │ │ ├── rules_check.rb │ │ │ ├── sidekiq_process_check.rb │ │ │ └── software_version_check.rb │ ├── advanced_text_formatter.rb │ ├── annual_report.rb │ ├── annual_report │ │ ├── archetype.rb │ │ ├── commonly_interacted_with_accounts.rb │ │ ├── most_reblogged_accounts.rb │ │ ├── most_used_apps.rb │ │ ├── percentiles.rb │ │ ├── source.rb │ │ ├── time_series.rb │ │ ├── top_hashtags.rb │ │ ├── top_statuses.rb │ │ └── type_distribution.rb │ ├── antispam.rb │ ├── application_extension.rb │ ├── ascii_folding.rb │ ├── attachment_batch.rb │ ├── cache_buster.rb │ ├── connection_pool │ │ ├── shared_connection_pool.rb │ │ └── shared_timed_stack.rb │ ├── content_security_policy.rb │ ├── delivery_failure_tracker.rb │ ├── domain_resource.rb │ ├── emoji_formatter.rb │ ├── entity_cache.rb │ ├── extractor.rb │ ├── fast_geometry_parser.rb │ ├── fast_ip_map.rb │ ├── feed_manager.rb │ ├── hashtag_normalizer.rb │ ├── html_aware_formatter.rb │ ├── http_signature_draft.rb │ ├── importer │ │ ├── accounts_index_importer.rb │ │ ├── base_importer.rb │ │ ├── instances_index_importer.rb │ │ ├── public_statuses_index_importer.rb │ │ ├── statuses_index_importer.rb │ │ └── tags_index_importer.rb │ ├── inline_renderer.rb │ ├── link_details_extractor.rb │ ├── node_info │ │ └── adapter.rb │ ├── nokogiri_handler.rb │ ├── ostatus │ │ └── tag_manager.rb │ ├── permalink_redirector.rb │ ├── plain_text_formatter.rb │ ├── private_address_check.rb │ ├── rate_limiter.rb │ ├── redis_connection.rb │ ├── request.rb │ ├── request_pool.rb │ ├── response_with_limit.rb │ ├── rss │ │ ├── builder.rb │ │ ├── channel.rb │ │ ├── element.rb │ │ ├── item.rb │ │ └── media_content.rb │ ├── scope_parser.rb │ ├── scope_transformer.rb │ ├── search_query_parser.rb │ ├── search_query_transformer.rb │ ├── signature_parser.rb │ ├── status_cache_hydrator.rb │ ├── status_filter.rb │ ├── status_finder.rb │ ├── status_reach_finder.rb │ ├── suspicious_sign_in_detector.rb │ ├── tag_manager.rb │ ├── text_formatter.rb │ ├── themes.rb │ ├── translation_service.rb │ ├── translation_service │ │ ├── deepl.rb │ │ ├── libre_translate.rb │ │ └── translation.rb │ ├── user_settings_serializer.rb │ ├── vacuum.rb │ ├── vacuum │ │ ├── access_tokens_vacuum.rb │ │ ├── backups_vacuum.rb │ │ ├── feeds_vacuum.rb │ │ ├── imports_vacuum.rb │ │ ├── media_attachments_vacuum.rb │ │ ├── preview_cards_vacuum.rb │ │ └── statuses_vacuum.rb │ ├── validation_error_formatter.rb │ ├── video_metadata_extractor.rb │ ├── web_push_request.rb │ ├── webfinger.rb │ ├── webfinger_resource.rb │ └── webhooks │ │ └── payload_renderer.rb ├── mailers │ ├── admin_mailer.rb │ ├── application_mailer.rb │ ├── notification_mailer.rb │ └── user_mailer.rb ├── models │ ├── account.rb │ ├── account │ │ └── field.rb │ ├── account_alias.rb │ ├── account_conversation.rb │ ├── account_deletion_request.rb │ ├── account_domain_block.rb │ ├── account_filter.rb │ ├── account_migration.rb │ ├── account_moderation_note.rb │ ├── account_note.rb │ ├── account_pin.rb │ ├── account_relationship_severance_event.rb │ ├── account_stat.rb │ ├── account_statuses_cleanup_policy.rb │ ├── account_suggestions.rb │ ├── account_suggestions │ │ ├── friends_of_friends_source.rb │ │ ├── global_source.rb │ │ ├── setting_source.rb │ │ ├── similar_profiles_source.rb │ │ ├── source.rb │ │ └── suggestion.rb │ ├── account_summary.rb │ ├── account_warning.rb │ ├── account_warning_preset.rb │ ├── admin.rb │ ├── admin │ │ ├── account_action.rb │ │ ├── action_log.rb │ │ ├── action_log_filter.rb │ │ ├── appeal_filter.rb │ │ ├── import.rb │ │ ├── status_batch_action.rb │ │ ├── status_filter.rb │ │ └── tag_filter.rb │ ├── announcement.rb │ ├── announcement_filter.rb │ ├── announcement_mute.rb │ ├── announcement_reaction.rb │ ├── annual_report │ │ └── statuses_per_account_count.rb │ ├── appeal.rb │ ├── application_record.rb │ ├── backup.rb │ ├── block.rb │ ├── bookmark.rb │ ├── bubble_domain.rb │ ├── bulk_import.rb │ ├── bulk_import_row.rb │ ├── canonical_email_block.rb │ ├── concerns │ │ ├── account │ │ │ ├── associations.rb │ │ │ ├── attribution_domains.rb │ │ │ ├── avatar.rb │ │ │ ├── counters.rb │ │ │ ├── finder_concern.rb │ │ │ ├── header.rb │ │ │ ├── interactions.rb │ │ │ ├── merging.rb │ │ │ ├── search.rb │ │ │ ├── sensitizes.rb │ │ │ ├── silences.rb │ │ │ ├── statuses_search.rb │ │ │ └── suspensions.rb │ │ ├── attachmentable.rb │ │ ├── browser_detection.rb │ │ ├── cacheable.rb │ │ ├── custom_filter_cache.rb │ │ ├── database_view_record.rb │ │ ├── domain_materializable.rb │ │ ├── domain_normalizable.rb │ │ ├── expireable.rb │ │ ├── follow_limitable.rb │ │ ├── inet_container.rb │ │ ├── legacy_otp_secret.rb │ │ ├── lockable.rb │ │ ├── notification │ │ │ └── groups.rb │ │ ├── paginable.rb │ │ ├── ranked_trend.rb │ │ ├── rate_limitable.rb │ │ ├── redisable.rb │ │ ├── relationship_cacheable.rb │ │ ├── remotable.rb │ │ ├── reviewable.rb │ │ ├── status │ │ │ ├── fetch_replies_concern.rb │ │ │ ├── safe_reblog_insert.rb │ │ │ ├── search_concern.rb │ │ │ ├── snapshot_concern.rb │ │ │ ├── threading_concern.rb │ │ │ └── visibility.rb │ │ └── user │ │ │ ├── has_settings.rb │ │ │ ├── ldap_authenticable.rb │ │ │ ├── omniauthable.rb │ │ │ └── pam_authenticable.rb │ ├── content_retention_policy.rb │ ├── context.rb │ ├── conversation.rb │ ├── conversation_mute.rb │ ├── custom_emoji.rb │ ├── custom_emoji_category.rb │ ├── custom_emoji_filter.rb │ ├── custom_filter.rb │ ├── custom_filter_keyword.rb │ ├── custom_filter_status.rb │ ├── direct_feed.rb │ ├── domain_allow.rb │ ├── domain_block.rb │ ├── email_domain_block.rb │ ├── export.rb │ ├── extended_description.rb │ ├── favourite.rb │ ├── featured_tag.rb │ ├── feed.rb │ ├── follow.rb │ ├── follow_recommendation.rb │ ├── follow_recommendation_filter.rb │ ├── follow_recommendation_mute.rb │ ├── follow_recommendation_suppression.rb │ ├── follow_request.rb │ ├── form │ │ ├── account_batch.rb │ │ ├── admin_settings.rb │ │ ├── challenge.rb │ │ ├── custom_emoji_batch.rb │ │ ├── delete_confirmation.rb │ │ ├── domain_block_batch.rb │ │ ├── email_domain_block_batch.rb │ │ ├── import.rb │ │ ├── ip_block_batch.rb │ │ ├── redirect.rb │ │ ├── status_filter_batch_action.rb │ │ └── two_factor_confirmation.rb │ ├── generated_annual_report.rb │ ├── home_feed.rb │ ├── identity.rb │ ├── import.rb │ ├── instance.rb │ ├── instance_filter.rb │ ├── invite.rb │ ├── invite_filter.rb │ ├── ip_block.rb │ ├── link_feed.rb │ ├── list.rb │ ├── list_account.rb │ ├── list_feed.rb │ ├── login_activity.rb │ ├── marker.rb │ ├── media_attachment.rb │ ├── mention.rb │ ├── mute.rb │ ├── notification.rb │ ├── notification_group.rb │ ├── notification_permission.rb │ ├── notification_policy.rb │ ├── notification_request.rb │ ├── poll.rb │ ├── poll_vote.rb │ ├── preview_card.rb │ ├── preview_card_provider.rb │ ├── preview_card_trend.rb │ ├── preview_cards_status.rb │ ├── privacy_policy.rb │ ├── public_feed.rb │ ├── relationship_filter.rb │ ├── relationship_severance_event.rb │ ├── relay.rb │ ├── remote_follow.rb │ ├── report.rb │ ├── report_filter.rb │ ├── report_note.rb │ ├── rule.rb │ ├── scheduled_status.rb │ ├── search.rb │ ├── session_activation.rb │ ├── setting.rb │ ├── severed_relationship.rb │ ├── site_upload.rb │ ├── software_update.rb │ ├── status.rb │ ├── status_edit.rb │ ├── status_pin.rb │ ├── status_reaction.rb │ ├── status_stat.rb │ ├── status_trend.rb │ ├── tag.rb │ ├── tag_feed.rb │ ├── tag_follow.rb │ ├── tag_trend.rb │ ├── terms_of_service.rb │ ├── terms_of_service │ │ └── generator.rb │ ├── tombstone.rb │ ├── translation.rb │ ├── trends.rb │ ├── trends │ │ ├── base.rb │ │ ├── history.rb │ │ ├── links.rb │ │ ├── preview_card_batch.rb │ │ ├── preview_card_filter.rb │ │ ├── preview_card_provider_batch.rb │ │ ├── preview_card_provider_filter.rb │ │ ├── query.rb │ │ ├── status_batch.rb │ │ ├── status_filter.rb │ │ ├── statuses.rb │ │ ├── tag_batch.rb │ │ ├── tag_filter.rb │ │ └── tags.rb │ ├── unavailable_domain.rb │ ├── user.rb │ ├── user_invite_request.rb │ ├── user_ip.rb │ ├── user_role.rb │ ├── user_settings.rb │ ├── user_settings │ │ ├── dsl.rb │ │ ├── glue.rb │ │ ├── namespace.rb │ │ └── setting.rb │ ├── web.rb │ ├── web │ │ ├── push_subscription.rb │ │ └── setting.rb │ ├── webauthn_credential.rb │ └── webhook.rb ├── policies │ ├── account_moderation_note_policy.rb │ ├── account_policy.rb │ ├── account_warning_policy.rb │ ├── account_warning_preset_policy.rb │ ├── admin │ │ └── status_policy.rb │ ├── announcement_policy.rb │ ├── appeal_policy.rb │ ├── application_policy.rb │ ├── audit_log_policy.rb │ ├── backup_policy.rb │ ├── bubble_domain_policy.rb │ ├── canonical_email_block_policy.rb │ ├── custom_emoji_policy.rb │ ├── dashboard_policy.rb │ ├── delivery_policy.rb │ ├── domain_allow_policy.rb │ ├── domain_block_policy.rb │ ├── email_domain_block_policy.rb │ ├── follow_recommendation_policy.rb │ ├── instance_policy.rb │ ├── invite_policy.rb │ ├── ip_block_policy.rb │ ├── poll_policy.rb │ ├── preview_card_policy.rb │ ├── preview_card_provider_policy.rb │ ├── relay_policy.rb │ ├── report_note_policy.rb │ ├── report_policy.rb │ ├── rule_policy.rb │ ├── settings_policy.rb │ ├── software_update_policy.rb │ ├── status_policy.rb │ ├── tag_policy.rb │ ├── terms_of_service_policy.rb │ ├── user_policy.rb │ ├── user_role_policy.rb │ └── webhook_policy.rb ├── presenters │ ├── account_relationships_presenter.rb │ ├── activitypub │ │ ├── activity_presenter.rb │ │ └── collection_presenter.rb │ ├── annual_reports_presenter.rb │ ├── domain_block_preview_presenter.rb │ ├── export_summary.rb │ ├── familiar_followers_presenter.rb │ ├── filter_result_presenter.rb │ ├── grouped_notifications_presenter.rb │ ├── initial_state_presenter.rb │ ├── instance_presenter.rb │ ├── language_presenter.rb │ ├── oauth_metadata_presenter.rb │ ├── status_reaction_presenter.rb │ ├── status_relationships_presenter.rb │ ├── tag_relationships_presenter.rb │ └── webhooks │ │ └── event_presenter.rb ├── serializers │ ├── activitypub │ │ ├── accept_follow_serializer.rb │ │ ├── activity_serializer.rb │ │ ├── actor_serializer.rb │ │ ├── add_serializer.rb │ │ ├── block_serializer.rb │ │ ├── collection_serializer.rb │ │ ├── delete_actor_serializer.rb │ │ ├── delete_serializer.rb │ │ ├── emoji_reaction_serializer.rb │ │ ├── emoji_serializer.rb │ │ ├── flag_serializer.rb │ │ ├── follow_serializer.rb │ │ ├── hashtag_serializer.rb │ │ ├── image_serializer.rb │ │ ├── like_serializer.rb │ │ ├── move_serializer.rb │ │ ├── note_serializer.rb │ │ ├── outbox_serializer.rb │ │ ├── public_key_serializer.rb │ │ ├── reject_follow_serializer.rb │ │ ├── remove_serializer.rb │ │ ├── undo_announce_serializer.rb │ │ ├── undo_block_serializer.rb │ │ ├── undo_emoji_reaction_serializer.rb │ │ ├── undo_follow_serializer.rb │ │ ├── undo_like_serializer.rb │ │ ├── update_poll_serializer.rb │ │ ├── update_serializer.rb │ │ └── vote_serializer.rb │ ├── initial_state_serializer.rb │ ├── manifest_serializer.rb │ ├── node_info │ │ ├── discovery_serializer.rb │ │ └── serializer.rb │ ├── oauth_metadata_serializer.rb │ ├── oauth_userinfo_serializer.rb │ ├── oembed_serializer.rb │ ├── rest │ │ ├── account_relationship_severance_event_serializer.rb │ │ ├── account_serializer.rb │ │ ├── account_warning_serializer.rb │ │ ├── admin │ │ │ ├── account_serializer.rb │ │ │ ├── canonical_email_block_serializer.rb │ │ │ ├── cohort_serializer.rb │ │ │ ├── dimension_serializer.rb │ │ │ ├── domain_allow_serializer.rb │ │ │ ├── domain_block_serializer.rb │ │ │ ├── email_domain_block_serializer.rb │ │ │ ├── existing_domain_block_error_serializer.rb │ │ │ ├── ip_block_serializer.rb │ │ │ ├── ip_serializer.rb │ │ │ ├── measure_serializer.rb │ │ │ ├── report_serializer.rb │ │ │ ├── tag_serializer.rb │ │ │ ├── trends │ │ │ │ ├── link_serializer.rb │ │ │ │ ├── links │ │ │ │ │ └── preview_card_provider_serializer.rb │ │ │ │ └── status_serializer.rb │ │ │ └── webhook_event_serializer.rb │ │ ├── announcement_serializer.rb │ │ ├── annual_report_event_serializer.rb │ │ ├── annual_report_serializer.rb │ │ ├── annual_reports_serializer.rb │ │ ├── appeal_serializer.rb │ │ ├── application_serializer.rb │ │ ├── context_serializer.rb │ │ ├── conversation_serializer.rb │ │ ├── credential_account_serializer.rb │ │ ├── credential_application_serializer.rb │ │ ├── custom_emoji_serializer.rb │ │ ├── dedup_notification_group_serializer.rb │ │ ├── domain_block_preview_serializer.rb │ │ ├── domain_block_serializer.rb │ │ ├── extended_description_serializer.rb │ │ ├── familiar_followers_serializer.rb │ │ ├── featured_tag_serializer.rb │ │ ├── filter_keyword_serializer.rb │ │ ├── filter_result_serializer.rb │ │ ├── filter_serializer.rb │ │ ├── filter_status_serializer.rb │ │ ├── instance_serializer.rb │ │ ├── language_serializer.rb │ │ ├── list_serializer.rb │ │ ├── marker_serializer.rb │ │ ├── media_attachment_serializer.rb │ │ ├── mute_serializer.rb │ │ ├── muted_account_serializer.rb │ │ ├── notification_group_serializer.rb │ │ ├── notification_policy_serializer.rb │ │ ├── notification_request_serializer.rb │ │ ├── notification_serializer.rb │ │ ├── poll_serializer.rb │ │ ├── preferences_serializer.rb │ │ ├── preview_card_serializer.rb │ │ ├── privacy_policy_serializer.rb │ │ ├── reaction_serializer.rb │ │ ├── relationship_serializer.rb │ │ ├── report_serializer.rb │ │ ├── role_serializer.rb │ │ ├── rule_serializer.rb │ │ ├── scheduled_status_serializer.rb │ │ ├── search_serializer.rb │ │ ├── status_edit_serializer.rb │ │ ├── status_reaction_serializer.rb │ │ ├── status_serializer.rb │ │ ├── status_source_serializer.rb │ │ ├── suggestion_serializer.rb │ │ ├── tag_serializer.rb │ │ ├── terms_of_service_serializer.rb │ │ ├── translation_serializer.rb │ │ ├── trends │ │ │ └── link_serializer.rb │ │ ├── v1 │ │ │ ├── filter_serializer.rb │ │ │ ├── instance_serializer.rb │ │ │ └── notification_policy_serializer.rb │ │ └── web_push_subscription_serializer.rb │ ├── web │ │ └── notification_serializer.rb │ └── webfinger_serializer.rb ├── services │ ├── accept_notification_request_service.rb │ ├── account_search_service.rb │ ├── account_statuses_cleanup_service.rb │ ├── activitypub │ │ ├── fetch_all_replies_service.rb │ │ ├── fetch_featured_collection_service.rb │ │ ├── fetch_featured_tags_collection_service.rb │ │ ├── fetch_remote_account_service.rb │ │ ├── fetch_remote_actor_service.rb │ │ ├── fetch_remote_key_service.rb │ │ ├── fetch_remote_poll_service.rb │ │ ├── fetch_remote_status_service.rb │ │ ├── fetch_replies_service.rb │ │ ├── prepare_followers_synchronization_service.rb │ │ ├── process_account_service.rb │ │ ├── process_collection_service.rb │ │ ├── process_status_update_service.rb │ │ └── synchronize_followers_service.rb │ ├── add_accounts_to_list_service.rb │ ├── after_block_domain_from_account_service.rb │ ├── after_block_service.rb │ ├── after_unallow_domain_service.rb │ ├── app_sign_up_service.rb │ ├── appeal_service.rb │ ├── approve_appeal_service.rb │ ├── authorize_follow_service.rb │ ├── backup_service.rb │ ├── base_service.rb │ ├── batched_remove_status_service.rb │ ├── block_domain_service.rb │ ├── block_service.rb │ ├── bootstrap_timeline_service.rb │ ├── bulk_import_row_service.rb │ ├── bulk_import_service.rb │ ├── clear_domain_media_service.rb │ ├── concerns │ │ └── payloadable.rb │ ├── create_featured_tag_service.rb │ ├── delete_account_service.rb │ ├── dismiss_notification_request_service.rb │ ├── fan_out_on_write_service.rb │ ├── favourite_service.rb │ ├── fetch_link_card_service.rb │ ├── fetch_oembed_service.rb │ ├── fetch_remote_status_service.rb │ ├── fetch_resource_service.rb │ ├── follow_migration_service.rb │ ├── follow_service.rb │ ├── import_service.rb │ ├── move_service.rb │ ├── mute_service.rb │ ├── notify_service.rb │ ├── post_status_service.rb │ ├── precompute_feed_service.rb │ ├── process_hashtags_service.rb │ ├── process_mentions_service.rb │ ├── purge_domain_service.rb │ ├── react_service.rb │ ├── reblog_service.rb │ ├── reject_follow_service.rb │ ├── remove_accounts_from_list_service.rb │ ├── remove_domains_from_followers_service.rb │ ├── remove_featured_tag_service.rb │ ├── remove_from_followers_service.rb │ ├── remove_status_service.rb │ ├── report_service.rb │ ├── resolve_account_service.rb │ ├── resolve_url_service.rb │ ├── search_service.rb │ ├── software_update_check_service.rb │ ├── statuses_search_service.rb │ ├── suspend_account_service.rb │ ├── tag_search_service.rb │ ├── translate_status_service.rb │ ├── unallow_domain_service.rb │ ├── unblock_domain_service.rb │ ├── unblock_service.rb │ ├── unfavourite_service.rb │ ├── unfollow_service.rb │ ├── unmute_service.rb │ ├── unreact_service.rb │ ├── unsuspend_account_service.rb │ ├── update_account_service.rb │ ├── update_status_service.rb │ ├── verify_link_service.rb │ ├── vote_service.rb │ └── webhook_service.rb ├── validators │ ├── disallowed_hashtags_validator.rb │ ├── domain_validator.rb │ ├── email_address_validator.rb │ ├── email_mx_validator.rb │ ├── empty_profile_field_names_validator.rb │ ├── existing_username_validator.rb │ ├── follow_limit_validator.rb │ ├── language_validator.rb │ ├── note_length_validator.rb │ ├── poll_expiration_validator.rb │ ├── poll_options_validator.rb │ ├── reaction_validator.rb │ ├── regexp_syntax_validator.rb │ ├── registration_form_time_validator.rb │ ├── status_length_validator.rb │ ├── status_pin_validator.rb │ ├── status_reaction_validator.rb │ ├── unique_username_validator.rb │ ├── unreserved_username_validator.rb │ ├── url_validator.rb │ ├── user_email_validator.rb │ ├── vote_validator.rb │ └── web_push_key_validator.rb ├── views │ ├── about │ │ └── show.html.haml │ ├── accounts │ │ ├── _og.html.haml │ │ ├── show.html.haml │ │ └── show.rss.ruby │ ├── admin │ │ ├── account_actions │ │ │ └── new.html.haml │ │ ├── account_warnings │ │ │ └── _account_warning.html.haml │ │ ├── accounts │ │ │ ├── _account.html.haml │ │ │ ├── _buttons.html.haml │ │ │ ├── _counters.html.haml │ │ │ ├── _local_account.html.haml │ │ │ ├── _remote_account.html.haml │ │ │ ├── _user_ip.html.haml │ │ │ ├── index.html.haml │ │ │ └── show.html.haml │ │ ├── action_logs │ │ │ ├── _action_log.html.haml │ │ │ └── index.html.haml │ │ ├── announcements │ │ │ ├── _announcement.html.haml │ │ │ ├── _form.html.haml │ │ │ ├── edit.html.haml │ │ │ ├── index.html.haml │ │ │ ├── new.html.haml │ │ │ └── previews │ │ │ │ └── show.html.haml │ │ ├── bubble_domains │ │ │ ├── _bubble_domain.html.haml │ │ │ ├── index.html.haml │ │ │ └── new.html.haml │ │ ├── change_emails │ │ │ └── show.html.haml │ │ ├── custom_emojis │ │ │ ├── _custom_emoji.html.haml │ │ │ ├── index.html.haml │ │ │ └── new.html.haml │ │ ├── dashboard │ │ │ └── index.html.haml │ │ ├── disputes │ │ │ └── appeals │ │ │ │ ├── _appeal.html.haml │ │ │ │ └── index.html.haml │ │ ├── domain_allows │ │ │ └── new.html.haml │ │ ├── domain_blocks │ │ │ ├── _form.html.haml │ │ │ ├── confirm_suspension.html.haml │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ │ ├── email_domain_blocks │ │ │ ├── _email_domain_block.html.haml │ │ │ ├── index.html.haml │ │ │ └── new.html.haml │ │ ├── export_domain_allows │ │ │ └── new.html.haml │ │ ├── export_domain_blocks │ │ │ ├── _domain_block.html.haml │ │ │ ├── import.html.haml │ │ │ └── new.html.haml │ │ ├── follow_recommendations │ │ │ ├── _account.html.haml │ │ │ └── show.html.haml │ │ ├── instances │ │ │ ├── _dashboard.html.haml │ │ │ ├── _instance.html.haml │ │ │ ├── index.html.haml │ │ │ └── show.html.haml │ │ ├── invites │ │ │ ├── _invite.html.haml │ │ │ └── index.html.haml │ │ ├── ip_blocks │ │ │ ├── _ip_block.html.haml │ │ │ ├── index.html.haml │ │ │ └── new.html.haml │ │ ├── relationships │ │ │ └── index.html.haml │ │ ├── relays │ │ │ ├── _relay.html.haml │ │ │ ├── index.html.haml │ │ │ └── new.html.haml │ │ ├── report_notes │ │ │ └── _report_note.html.haml │ │ ├── reports │ │ │ ├── _actions.html.haml │ │ │ ├── _comment.html.haml │ │ │ ├── _header_card.html.haml │ │ │ ├── _header_details.html.haml │ │ │ ├── _media_attachments.html.haml │ │ │ ├── _status.html.haml │ │ │ ├── actions │ │ │ │ └── preview.html.haml │ │ │ ├── index.html.haml │ │ │ └── show.html.haml │ │ ├── roles │ │ │ ├── _form.html.haml │ │ │ ├── _role.html.haml │ │ │ ├── edit.html.haml │ │ │ ├── index.html.haml │ │ │ └── new.html.haml │ │ ├── rules │ │ │ ├── _form.html.haml │ │ │ ├── _rule.html.haml │ │ │ ├── edit.html.haml │ │ │ └── index.html.haml │ │ ├── settings │ │ │ ├── about │ │ │ │ └── show.html.haml │ │ │ ├── appearance │ │ │ │ └── show.html.haml │ │ │ ├── branding │ │ │ │ └── show.html.haml │ │ │ ├── content_retention │ │ │ │ └── show.html.haml │ │ │ ├── discovery │ │ │ │ └── show.html.haml │ │ │ ├── other │ │ │ │ └── show.html.haml │ │ │ ├── registrations │ │ │ │ └── show.html.haml │ │ │ └── shared │ │ │ │ └── _links.html.haml │ │ ├── software_updates │ │ │ └── index.html.haml │ │ ├── status_edits │ │ │ └── _status_edit.html.haml │ │ ├── statuses │ │ │ ├── index.html.haml │ │ │ └── show.html.haml │ │ ├── tags │ │ │ ├── _tag.html.haml │ │ │ ├── index.html.haml │ │ │ └── show.html.haml │ │ ├── terms_of_service │ │ │ ├── _links.html.haml │ │ │ ├── drafts │ │ │ │ └── show.html.haml │ │ │ ├── generates │ │ │ │ └── show.html.haml │ │ │ ├── histories │ │ │ │ └── show.html.haml │ │ │ ├── index.html.haml │ │ │ └── previews │ │ │ │ └── show.html.haml │ │ ├── trends │ │ │ ├── links │ │ │ │ ├── _preview_card.html.haml │ │ │ │ ├── index.html.haml │ │ │ │ └── preview_card_providers │ │ │ │ │ ├── _preview_card_provider.html.haml │ │ │ │ │ └── index.html.haml │ │ │ ├── statuses │ │ │ │ ├── _status.html.haml │ │ │ │ └── index.html.haml │ │ │ └── tags │ │ │ │ ├── _tag.html.haml │ │ │ │ └── index.html.haml │ │ ├── users │ │ │ └── roles │ │ │ │ └── show.html.haml │ │ ├── warning_presets │ │ │ ├── _form.html.haml │ │ │ ├── _warning_preset.html.haml │ │ │ ├── edit.html.haml │ │ │ └── index.html.haml │ │ └── webhooks │ │ │ ├── _form.html.haml │ │ │ ├── _webhook.html.haml │ │ │ ├── edit.html.haml │ │ │ ├── index.html.haml │ │ │ ├── new.html.haml │ │ │ └── show.html.haml │ ├── admin_mailer │ │ ├── _new_trending_links.text.erb │ │ ├── _new_trending_statuses.text.erb │ │ ├── _new_trending_tags.text.erb │ │ ├── auto_close_registrations.text.erb │ │ ├── new_appeal.text.erb │ │ ├── new_critical_software_updates.text.erb │ │ ├── new_pending_account.text.erb │ │ ├── new_report.text.erb │ │ ├── new_software_updates.text.erb │ │ └── new_trends.text.erb │ ├── application │ │ ├── _card.html.haml │ │ ├── _flashes.html.haml │ │ └── mailer │ │ │ ├── _account.html.haml │ │ │ ├── _button.html.haml │ │ │ ├── _checklist.html.haml │ │ │ ├── _feature.html.haml │ │ │ ├── _follow.html.haml │ │ │ ├── _frame.html.haml │ │ │ ├── _hashtag.html.haml │ │ │ └── _heading.html.haml │ ├── auth │ │ ├── challenges │ │ │ └── new.html.haml │ │ ├── confirmations │ │ │ ├── captcha.html.haml │ │ │ └── new.html.haml │ │ ├── passwords │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ │ ├── registrations │ │ │ ├── _account_warning.html.haml │ │ │ ├── _session.html.haml │ │ │ ├── _sessions.html.haml │ │ │ ├── _status.html.haml │ │ │ ├── edit.html.haml │ │ │ ├── new.html.haml │ │ │ └── rules.html.haml │ │ ├── sessions │ │ │ ├── new.html.haml │ │ │ ├── two_factor.html.haml │ │ │ └── two_factor │ │ │ │ ├── _otp_authentication_form.html.haml │ │ │ │ └── _webauthn_form.html.haml │ │ ├── setup │ │ │ └── show.html.haml │ │ └── shared │ │ │ ├── _links.html.haml │ │ │ └── _progress.html.haml │ ├── custom_css │ │ └── show.css.erb │ ├── disputes │ │ └── strikes │ │ │ ├── _card.html.haml │ │ │ ├── index.html.haml │ │ │ └── show.html.haml │ ├── errors │ │ ├── 400.html.haml │ │ ├── 403.html.haml │ │ ├── 404.html.haml │ │ ├── 406.html.haml │ │ ├── 410.html.haml │ │ ├── 422.html.haml │ │ ├── 429.html.haml │ │ ├── 500.html.haml │ │ ├── 503.html.haml │ │ └── self_destruct.html.haml │ ├── filters │ │ ├── _filter.html.haml │ │ ├── _filter_fields.html.haml │ │ ├── _keyword_fields.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ └── statuses │ │ │ ├── _status_filter.html.haml │ │ │ └── index.html.haml │ ├── follower_accounts │ │ └── index.html.haml │ ├── following_accounts │ │ └── index.html.haml │ ├── home │ │ └── index.html.haml │ ├── invites │ │ ├── _form.html.haml │ │ ├── _invite.html.haml │ │ └── index.html.haml │ ├── kaminari │ │ ├── _gap.html.haml │ │ ├── _next_page.html.haml │ │ ├── _paginator.html.haml │ │ └── _prev_page.html.haml │ ├── layouts │ │ ├── admin.html.haml │ │ ├── admin_mailer.text.erb │ │ ├── application.html.haml │ │ ├── auth.html.haml │ │ ├── embedded.html.haml │ │ ├── error.html.haml │ │ ├── helper_frame.html.haml │ │ ├── mailer.html.haml │ │ ├── mailer.text.erb │ │ └── modal.html.haml │ ├── mail_subscriptions │ │ ├── create.html.haml │ │ └── show.html.haml │ ├── media │ │ └── player.html.haml │ ├── notification_mailer │ │ ├── _status.html.haml │ │ ├── _status.text.erb │ │ ├── favourite.html.haml │ │ ├── favourite.text.erb │ │ ├── follow.html.haml │ │ ├── follow.text.erb │ │ ├── follow_request.html.haml │ │ ├── follow_request.text.erb │ │ ├── mention.html.haml │ │ ├── mention.text.erb │ │ ├── reaction.html.haml │ │ ├── reaction.text.erb │ │ ├── reblog.html.haml │ │ └── reblog.text.erb │ ├── oauth │ │ ├── authorizations │ │ │ ├── error.html.haml │ │ │ ├── new.html.haml │ │ │ └── show.html.haml │ │ └── authorized_applications │ │ │ └── index.html.haml │ ├── privacy │ │ └── show.html.haml │ ├── redirects │ │ └── show.html.haml │ ├── relationships │ │ ├── _account.html.haml │ │ └── show.html.haml │ ├── remote_interaction_helper │ │ └── index.html.haml │ ├── settings │ │ ├── aliases │ │ │ └── index.html.haml │ │ ├── applications │ │ │ ├── _form.html.haml │ │ │ ├── index.html.haml │ │ │ ├── new.html.haml │ │ │ └── show.html.haml │ │ ├── deletes │ │ │ └── show.html.haml │ │ ├── exports │ │ │ └── show.html.haml │ │ ├── featured_tags │ │ │ └── index.html.haml │ │ ├── flavours │ │ │ └── show.html.haml │ │ ├── imports │ │ │ ├── index.html.haml │ │ │ └── show.html.haml │ │ ├── login_activities │ │ │ ├── _login_activity.html.haml │ │ │ └── index.html.haml │ │ ├── migration │ │ │ └── redirects │ │ │ │ └── new.html.haml │ │ ├── migrations │ │ │ └── show.html.haml │ │ ├── preferences │ │ │ ├── appearance │ │ │ │ └── show.html.haml │ │ │ ├── notifications │ │ │ │ └── show.html.haml │ │ │ └── other │ │ │ │ └── show.html.haml │ │ ├── privacy │ │ │ └── show.html.haml │ │ ├── profiles │ │ │ └── show.html.haml │ │ ├── shared │ │ │ └── _profile_navigation.html.haml │ │ ├── two_factor_authentication │ │ │ ├── confirmations │ │ │ │ └── new.html.haml │ │ │ ├── otp_authentication │ │ │ │ └── show.html.haml │ │ │ ├── recovery_codes │ │ │ │ └── index.html.haml │ │ │ └── webauthn_credentials │ │ │ │ ├── index.html.haml │ │ │ │ └── new.html.haml │ │ ├── two_factor_authentication_methods │ │ │ └── index.html.haml │ │ └── verifications │ │ │ └── show.html.haml │ ├── severed_relationships │ │ └── index.html.haml │ ├── shared │ │ ├── _error_messages.html.haml │ │ ├── _og.html.haml │ │ └── _web_app.html.haml │ ├── shares │ │ └── show.html.haml │ ├── statuses │ │ ├── _attachment_list.html.haml │ │ ├── _og_description.html.haml │ │ ├── _og_image.html.haml │ │ ├── _quote_status.html.haml │ │ ├── embed.html.haml │ │ └── show.html.haml │ ├── statuses_cleanup │ │ └── show.html.haml │ ├── tags │ │ ├── show.html.haml │ │ └── show.rss.ruby │ ├── terms_of_service │ │ └── show.html.haml │ ├── user_mailer │ │ ├── announcement_published.html.haml │ │ ├── announcement_published.text.erb │ │ ├── appeal_approved.html.haml │ │ ├── appeal_approved.text.erb │ │ ├── appeal_rejected.html.haml │ │ ├── appeal_rejected.text.erb │ │ ├── backup_ready.html.haml │ │ ├── backup_ready.text.erb │ │ ├── confirmation_instructions.html.haml │ │ ├── confirmation_instructions.text.erb │ │ ├── email_changed.html.haml │ │ ├── email_changed.text.erb │ │ ├── failed_2fa.html.haml │ │ ├── failed_2fa.text.erb │ │ ├── password_change.html.haml │ │ ├── password_change.text.erb │ │ ├── reconfirmation_instructions.html.haml │ │ ├── reconfirmation_instructions.text.erb │ │ ├── reset_password_instructions.html.haml │ │ ├── reset_password_instructions.text.erb │ │ ├── suspicious_sign_in.html.haml │ │ ├── suspicious_sign_in.text.erb │ │ ├── terms_of_service_changed.html.haml │ │ ├── terms_of_service_changed.text.erb │ │ ├── two_factor_disabled.html.haml │ │ ├── two_factor_disabled.text.erb │ │ ├── two_factor_enabled.html.haml │ │ ├── two_factor_enabled.text.erb │ │ ├── two_factor_recovery_codes_changed.html.haml │ │ ├── two_factor_recovery_codes_changed.text.erb │ │ ├── warning.html.haml │ │ ├── warning.text.erb │ │ ├── webauthn_credential_added.html.haml │ │ ├── webauthn_credential_added.text.erb │ │ ├── webauthn_credential_deleted.html.haml │ │ ├── webauthn_credential_deleted.text.erb │ │ ├── webauthn_disabled.html.haml │ │ ├── webauthn_disabled.text.erb │ │ ├── webauthn_enabled.html.haml │ │ ├── webauthn_enabled.text.erb │ │ ├── welcome.html.haml │ │ └── welcome.text.erb │ └── well_known │ │ └── host_meta │ │ └── show.xml.ruby └── workers │ ├── account_deletion_worker.rb │ ├── account_merging_worker.rb │ ├── account_refresh_worker.rb │ ├── activitypub │ ├── account_raw_distribution_worker.rb │ ├── delivery_worker.rb │ ├── distribute_poll_update_worker.rb │ ├── distribution_worker.rb │ ├── fetch_all_replies_worker.rb │ ├── fetch_replies_worker.rb │ ├── followers_synchronization_worker.rb │ ├── low_priority_delivery_worker.rb │ ├── migrated_follow_delivery_worker.rb │ ├── move_distribution_worker.rb │ ├── post_upgrade_worker.rb │ ├── processing_worker.rb │ ├── raw_distribution_worker.rb │ ├── status_update_distribution_worker.rb │ ├── synchronize_featured_collection_worker.rb │ ├── synchronize_featured_tags_collection_worker.rb │ └── update_distribution_worker.rb │ ├── add_to_public_statuses_index_worker.rb │ ├── admin │ ├── account_deletion_worker.rb │ ├── distribute_announcement_notification_worker.rb │ ├── distribute_terms_of_service_notification_worker.rb │ ├── domain_purge_worker.rb │ ├── suspension_worker.rb │ └── unsuspension_worker.rb │ ├── after_account_domain_block_worker.rb │ ├── after_unallow_domain_worker.rb │ ├── authorize_follow_worker.rb │ ├── backup_worker.rb │ ├── block_worker.rb │ ├── bootstrap_timeline_worker.rb │ ├── bulk_import_worker.rb │ ├── cache_buster_worker.rb │ ├── concerns │ └── exponential_backoff.rb │ ├── delete_mute_worker.rb │ ├── distribution_worker.rb │ ├── domain_block_worker.rb │ ├── domain_clear_media_worker.rb │ ├── feed_insert_worker.rb │ ├── fetch_reply_worker.rb │ ├── filtered_notification_cleanup_worker.rb │ ├── generate_annual_report_worker.rb │ ├── import │ ├── relationship_worker.rb │ └── row_worker.rb │ ├── import_worker.rb │ ├── link_crawl_worker.rb │ ├── local_notification_worker.rb │ ├── mention_resolve_worker.rb │ ├── merge_worker.rb │ ├── move_worker.rb │ ├── mute_worker.rb │ ├── poll_expiration_notify_worker.rb │ ├── post_process_media_worker.rb │ ├── publish_announcement_reaction_worker.rb │ ├── publish_scheduled_announcement_worker.rb │ ├── publish_scheduled_status_worker.rb │ ├── push_conversation_worker.rb │ ├── push_update_worker.rb │ ├── redownload_avatar_worker.rb │ ├── redownload_header_worker.rb │ ├── redownload_media_worker.rb │ ├── refollow_worker.rb │ ├── regeneration_worker.rb │ ├── remote_account_refresh_worker.rb │ ├── removal_worker.rb │ ├── remove_featured_tag_worker.rb │ ├── remove_from_public_statuses_index_worker.rb │ ├── resolve_account_worker.rb │ ├── scheduler │ ├── accounts_statuses_cleanup_scheduler.rb │ ├── admin │ │ └── dashboard_cache_warmer_scheduler.rb │ ├── auto_close_registrations_scheduler.rb │ ├── follow_recommendations_scheduler.rb │ ├── indexing_scheduler.rb │ ├── instance_refresh_scheduler.rb │ ├── ip_cleanup_scheduler.rb │ ├── pghero_scheduler.rb │ ├── scheduled_statuses_scheduler.rb │ ├── self_destruct_scheduler.rb │ ├── software_update_check_scheduler.rb │ ├── suspended_user_cleanup_scheduler.rb │ ├── trends │ │ ├── refresh_scheduler.rb │ │ └── review_notifications_scheduler.rb │ ├── user_cleanup_scheduler.rb │ └── vacuum_scheduler.rb │ ├── tag_unmerge_worker.rb │ ├── thread_resolve_worker.rb │ ├── trigger_webhook_worker.rb │ ├── unfavourite_worker.rb │ ├── unfilter_notifications_worker.rb │ ├── unfollow_follow_worker.rb │ ├── unmerge_worker.rb │ ├── unpublish_announcement_worker.rb │ ├── unreact_worker.rb │ ├── verify_account_links_worker.rb │ ├── web │ └── push_notification_worker.rb │ └── webhooks │ └── delivery_worker.rb ├── babel.config.js ├── bin ├── brakeman ├── bundle ├── bundler-audit ├── dev ├── flatware ├── haml-lint ├── heroku-web ├── i18n-tasks ├── prometheus_exporter ├── rails ├── rake ├── retry ├── rspec ├── rubocop ├── setup ├── tootctl ├── update ├── webpack ├── webpack-dev-server └── yarn ├── chart └── README.md ├── config.ru ├── config ├── application.rb ├── boot.rb ├── brakeman.yml ├── captcha.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── formatjs-formatter.js ├── i18n-tasks.yml ├── imagemagick │ └── policy.xml ├── initializers │ ├── 0_post_deployment_migrations.rb │ ├── 1_hosts.rb │ ├── 2_limited_federation_mode.rb │ ├── 3_omniauth.rb │ ├── active_model_serializers.rb │ ├── active_record_encryption.rb │ ├── allowed_private_addresses.rb │ ├── application_controller_renderer.rb │ ├── backtrace_silencers.rb │ ├── cache_buster.rb │ ├── cache_logging.rb │ ├── chewy.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── cors.rb │ ├── devise.rb │ ├── doorkeeper.rb │ ├── email_domains_lists.rb │ ├── fast_blank.rb │ ├── ffmpeg.rb │ ├── filter_parameter_logging.rb │ ├── http_client_proxy.rb │ ├── httplog.rb │ ├── i18n.rb │ ├── inflections.rb │ ├── json_ld_identity.rb │ ├── json_ld_security.rb │ ├── kaminari_config.rb │ ├── locale.rb │ ├── mail_delivery_job.rb │ ├── mime_types.rb │ ├── oj.rb │ ├── open_redirects.rb │ ├── open_uri_redirection.rb │ ├── opentelemetry.rb │ ├── paperclip.rb │ ├── permissions_policy.rb │ ├── pghero.rb │ ├── preload_link_headers.rb │ ├── premailer_rails.rb │ ├── prometheus_exporter.rb │ ├── propshaft.rb │ ├── qrtool.rb │ ├── rack_attack.rb │ ├── rack_attack_logging.rb │ ├── redis.rb │ ├── session_activations.rb │ ├── session_store.rb │ ├── settings_digests.rb │ ├── sidekiq.rb │ ├── simple_cov_source_file.rb │ ├── simple_form.rb │ ├── single_user_mode.rb │ ├── statistics.rb │ ├── stoplight.rb │ ├── strong_migrations.rb │ ├── suppress_csrf_warnings.rb │ ├── trusted_proxies.rb │ ├── twitter_regex.rb │ ├── vapid.rb │ ├── vips.rb │ ├── webauthn.rb │ └── wrap_parameters.rb ├── locales-glitch │ ├── af.yml │ ├── an.yml │ ├── ar.yml │ ├── ast.yml │ ├── be.yml │ ├── bg.yml │ ├── bn.yml │ ├── br.yml │ ├── bs.yml │ ├── ca.yml │ ├── ckb.yml │ ├── co.yml │ ├── cs.yml │ ├── cy.yml │ ├── da.yml │ ├── de.yml │ ├── el.yml │ ├── en-GB.yml │ ├── en.yml │ ├── eo.yml │ ├── es-AR.yml │ ├── es-MX.yml │ ├── es.yml │ ├── et.yml │ ├── eu.yml │ ├── fa.yml │ ├── fi.yml │ ├── fo.yml │ ├── fr-CA.yml │ ├── fr-QC.yml │ ├── fr.yml │ ├── fy.yml │ ├── ga.yml │ ├── gd.yml │ ├── gl.yml │ ├── he.yml │ ├── hi.yml │ ├── hr.yml │ ├── hu.yml │ ├── hy.yml │ ├── id.yml │ ├── ig.yml │ ├── io.yml │ ├── is.yml │ ├── it.yml │ ├── ja.yml │ ├── ka.yml │ ├── kab.yml │ ├── kk.yml │ ├── kn.yml │ ├── ko.yml │ ├── ku.yml │ ├── kw.yml │ ├── la.yml │ ├── lt.yml │ ├── lv.yml │ ├── mk.yml │ ├── ml.yml │ ├── mr.yml │ ├── ms.yml │ ├── my.yml │ ├── nl.yml │ ├── nn.yml │ ├── no.yml │ ├── oc.yml │ ├── pa.yml │ ├── pl.yml │ ├── pt-BR.yml │ ├── pt-PT.yml │ ├── ro.yml │ ├── ru.yml │ ├── sa.yml │ ├── sc.yml │ ├── sco.yml │ ├── si.yml │ ├── simple_form.af.yml │ ├── simple_form.an.yml │ ├── simple_form.ar.yml │ ├── simple_form.ast.yml │ ├── simple_form.be.yml │ ├── simple_form.bg.yml │ ├── simple_form.bn.yml │ ├── simple_form.br.yml │ ├── simple_form.bs.yml │ ├── simple_form.ca.yml │ ├── simple_form.ckb.yml │ ├── simple_form.co.yml │ ├── simple_form.cs.yml │ ├── simple_form.cy.yml │ ├── simple_form.da.yml │ ├── simple_form.de.yml │ ├── simple_form.el.yml │ ├── simple_form.en-GB.yml │ ├── simple_form.en.yml │ ├── simple_form.eo.yml │ ├── simple_form.es-AR.yml │ ├── simple_form.es-MX.yml │ ├── simple_form.es.yml │ ├── simple_form.et.yml │ ├── simple_form.eu.yml │ ├── simple_form.fa.yml │ ├── simple_form.fi.yml │ ├── simple_form.fo.yml │ ├── simple_form.fr-CA.yml │ ├── simple_form.fr-QC.yml │ ├── simple_form.fr.yml │ ├── simple_form.fy.yml │ ├── simple_form.ga.yml │ ├── simple_form.gd.yml │ ├── simple_form.gl.yml │ ├── simple_form.he.yml │ ├── simple_form.hi.yml │ ├── simple_form.hr.yml │ ├── simple_form.hu.yml │ ├── simple_form.hy.yml │ ├── simple_form.id.yml │ ├── simple_form.ig.yml │ ├── simple_form.io.yml │ ├── simple_form.is.yml │ ├── simple_form.it.yml │ ├── simple_form.ja.yml │ ├── simple_form.ka.yml │ ├── simple_form.kab.yml │ ├── simple_form.kk.yml │ ├── simple_form.kn.yml │ ├── simple_form.ko.yml │ ├── simple_form.ku.yml │ ├── simple_form.kw.yml │ ├── simple_form.la.yml │ ├── simple_form.lt.yml │ ├── simple_form.lv.yml │ ├── simple_form.mk.yml │ ├── simple_form.ml.yml │ ├── simple_form.mr.yml │ ├── simple_form.ms.yml │ ├── simple_form.my.yml │ ├── simple_form.nl.yml │ ├── simple_form.nn.yml │ ├── simple_form.no.yml │ ├── simple_form.oc.yml │ ├── simple_form.pa.yml │ ├── simple_form.pl.yml │ ├── simple_form.pt-BR.yml │ ├── simple_form.pt-PT.yml │ ├── simple_form.ro.yml │ ├── simple_form.ru.yml │ ├── simple_form.sa.yml │ ├── simple_form.sc.yml │ ├── simple_form.sco.yml │ ├── simple_form.si.yml │ ├── simple_form.sk.yml │ ├── simple_form.sl.yml │ ├── simple_form.sq.yml │ ├── simple_form.sr-Latn.yml │ ├── simple_form.sr.yml │ ├── simple_form.sv.yml │ ├── simple_form.ta.yml │ ├── simple_form.te.yml │ ├── simple_form.th.yml │ ├── simple_form.tr.yml │ ├── simple_form.tt.yml │ ├── simple_form.ug.yml │ ├── simple_form.uk.yml │ ├── simple_form.ur.yml │ ├── simple_form.vi.yml │ ├── simple_form.zh-CN.yml │ ├── simple_form.zh-HK.yml │ ├── simple_form.zh-TW.yml │ ├── sk.yml │ ├── sl.yml │ ├── sq.yml │ ├── sr-Latn.yml │ ├── sr.yml │ ├── sv.yml │ ├── ta.yml │ ├── te.yml │ ├── th.yml │ ├── tr.yml │ ├── tt.yml │ ├── ug.yml │ ├── uk.yml │ ├── ur.yml │ ├── vi.yml │ ├── zh-CN.yml │ ├── zh-HK.yml │ └── zh-TW.yml ├── locales │ ├── activerecord.af.yml │ ├── activerecord.an.yml │ ├── activerecord.ar.yml │ ├── activerecord.ast.yml │ ├── activerecord.az.yml │ ├── activerecord.be.yml │ ├── activerecord.bg.yml │ ├── activerecord.bn.yml │ ├── activerecord.br.yml │ ├── activerecord.bs.yml │ ├── activerecord.ca.yml │ ├── activerecord.ckb.yml │ ├── activerecord.co.yml │ ├── activerecord.cs.yml │ ├── activerecord.cy.yml │ ├── activerecord.da.yml │ ├── activerecord.de.yml │ ├── activerecord.el.yml │ ├── activerecord.en-GB.yml │ ├── activerecord.en.yml │ ├── activerecord.eo.yml │ ├── activerecord.es-AR.yml │ ├── activerecord.es-MX.yml │ ├── activerecord.es.yml │ ├── activerecord.et.yml │ ├── activerecord.eu.yml │ ├── activerecord.fa.yml │ ├── activerecord.fi.yml │ ├── activerecord.fil.yml │ ├── activerecord.fo.yml │ ├── activerecord.fr-CA.yml │ ├── activerecord.fr.yml │ ├── activerecord.fy.yml │ ├── activerecord.ga.yml │ ├── activerecord.gd.yml │ ├── activerecord.gl.yml │ ├── activerecord.he.yml │ ├── activerecord.hi.yml │ ├── activerecord.hr.yml │ ├── activerecord.hu.yml │ ├── activerecord.hy.yml │ ├── activerecord.ia.yml │ ├── activerecord.id.yml │ ├── activerecord.ie.yml │ ├── activerecord.ig.yml │ ├── activerecord.io.yml │ ├── activerecord.is.yml │ ├── activerecord.it.yml │ ├── activerecord.ja.yml │ ├── activerecord.ka.yml │ ├── activerecord.kab.yml │ ├── activerecord.kk.yml │ ├── activerecord.kn.yml │ ├── activerecord.ko.yml │ ├── activerecord.ku.yml │ ├── activerecord.kw.yml │ ├── activerecord.la.yml │ ├── activerecord.lad.yml │ ├── activerecord.lt.yml │ ├── activerecord.lv.yml │ ├── activerecord.mk.yml │ ├── activerecord.ml.yml │ ├── activerecord.mr.yml │ ├── activerecord.ms.yml │ ├── activerecord.my.yml │ ├── activerecord.nan.yml │ ├── activerecord.ne.yml │ ├── activerecord.nl.yml │ ├── activerecord.nn.yml │ ├── activerecord.no.yml │ ├── activerecord.oc.yml │ ├── activerecord.pa.yml │ ├── activerecord.pl.yml │ ├── activerecord.pt-BR.yml │ ├── activerecord.pt-PT.yml │ ├── activerecord.ro.yml │ ├── activerecord.ru.yml │ ├── activerecord.ry.yml │ ├── activerecord.sa.yml │ ├── activerecord.sc.yml │ ├── activerecord.sco.yml │ ├── activerecord.si.yml │ ├── activerecord.sk.yml │ ├── activerecord.sl.yml │ ├── activerecord.sq.yml │ ├── activerecord.sr-Latn.yml │ ├── activerecord.sr.yml │ ├── activerecord.sv.yml │ ├── activerecord.szl.yml │ ├── activerecord.ta.yml │ ├── activerecord.tai.yml │ ├── activerecord.te.yml │ ├── activerecord.th.yml │ ├── activerecord.tlh.yml │ ├── activerecord.tok.yml │ ├── activerecord.tr.yml │ ├── activerecord.tt.yml │ ├── activerecord.ug.yml │ ├── activerecord.uk.yml │ ├── activerecord.ur.yml │ ├── activerecord.uz.yml │ ├── activerecord.vi.yml │ ├── activerecord.zgh.yml │ ├── activerecord.zh-CN.yml │ ├── activerecord.zh-HK.yml │ ├── activerecord.zh-TW.yml │ ├── af.yml │ ├── an.yml │ ├── ar.yml │ ├── ast.yml │ ├── az.yml │ ├── be.yml │ ├── bg.yml │ ├── bn.yml │ ├── br.yml │ ├── bs.yml │ ├── ca.yml │ ├── ckb.yml │ ├── co.yml │ ├── cs.yml │ ├── cy.yml │ ├── da.yml │ ├── de.yml │ ├── devise.af.yml │ ├── devise.an.yml │ ├── devise.ar.yml │ ├── devise.ast.yml │ ├── devise.az.yml │ ├── devise.be.yml │ ├── devise.bg.yml │ ├── devise.bn.yml │ ├── devise.br.yml │ ├── devise.bs.yml │ ├── devise.ca.yml │ ├── devise.ckb.yml │ ├── devise.co.yml │ ├── devise.cs.yml │ ├── devise.cy.yml │ ├── devise.da.yml │ ├── devise.de.yml │ ├── devise.el.yml │ ├── devise.en-GB.yml │ ├── devise.en.yml │ ├── devise.eo.yml │ ├── devise.es-AR.yml │ ├── devise.es-MX.yml │ ├── devise.es.yml │ ├── devise.et.yml │ ├── devise.eu.yml │ ├── devise.fa.yml │ ├── devise.fi.yml │ ├── devise.fil.yml │ ├── devise.fo.yml │ ├── devise.fr-CA.yml │ ├── devise.fr.yml │ ├── devise.fy.yml │ ├── devise.ga.yml │ ├── devise.gd.yml │ ├── devise.gl.yml │ ├── devise.he.yml │ ├── devise.hi.yml │ ├── devise.hr.yml │ ├── devise.hu.yml │ ├── devise.hy.yml │ ├── devise.ia.yml │ ├── devise.id.yml │ ├── devise.ie.yml │ ├── devise.ig.yml │ ├── devise.io.yml │ ├── devise.is.yml │ ├── devise.it.yml │ ├── devise.ja.yml │ ├── devise.ka.yml │ ├── devise.kab.yml │ ├── devise.kk.yml │ ├── devise.kn.yml │ ├── devise.ko.yml │ ├── devise.ku.yml │ ├── devise.kw.yml │ ├── devise.la.yml │ ├── devise.lad.yml │ ├── devise.lt.yml │ ├── devise.lv.yml │ ├── devise.mk.yml │ ├── devise.ml.yml │ ├── devise.mr.yml │ ├── devise.ms.yml │ ├── devise.my.yml │ ├── devise.nan.yml │ ├── devise.ne.yml │ ├── devise.nl.yml │ ├── devise.nn.yml │ ├── devise.no.yml │ ├── devise.oc.yml │ ├── devise.pa.yml │ ├── devise.pl.yml │ ├── devise.pt-BR.yml │ ├── devise.pt-PT.yml │ ├── devise.ro.yml │ ├── devise.ru.yml │ ├── devise.ry.yml │ ├── devise.sa.yml │ ├── devise.sc.yml │ ├── devise.sco.yml │ ├── devise.si.yml │ ├── devise.sk.yml │ ├── devise.sl.yml │ ├── devise.sq.yml │ ├── devise.sr-Latn.yml │ ├── devise.sr.yml │ ├── devise.sv.yml │ ├── devise.szl.yml │ ├── devise.ta.yml │ ├── devise.tai.yml │ ├── devise.te.yml │ ├── devise.th.yml │ ├── devise.tlh.yml │ ├── devise.tok.yml │ ├── devise.tr.yml │ ├── devise.tt.yml │ ├── devise.ug.yml │ ├── devise.uk.yml │ ├── devise.ur.yml │ ├── devise.uz.yml │ ├── devise.vi.yml │ ├── devise.zgh.yml │ ├── devise.zh-CN.yml │ ├── devise.zh-HK.yml │ ├── devise.zh-TW.yml │ ├── doorkeeper.af.yml │ ├── doorkeeper.an.yml │ ├── doorkeeper.ar.yml │ ├── doorkeeper.ast.yml │ ├── doorkeeper.az.yml │ ├── doorkeeper.be.yml │ ├── doorkeeper.bg.yml │ ├── doorkeeper.bn.yml │ ├── doorkeeper.br.yml │ ├── doorkeeper.bs.yml │ ├── doorkeeper.ca.yml │ ├── doorkeeper.ckb.yml │ ├── doorkeeper.co.yml │ ├── doorkeeper.cs.yml │ ├── doorkeeper.cy.yml │ ├── doorkeeper.da.yml │ ├── doorkeeper.de.yml │ ├── doorkeeper.el.yml │ ├── doorkeeper.en-GB.yml │ ├── doorkeeper.en.yml │ ├── doorkeeper.eo.yml │ ├── doorkeeper.es-AR.yml │ ├── doorkeeper.es-MX.yml │ ├── doorkeeper.es.yml │ ├── doorkeeper.et.yml │ ├── doorkeeper.eu.yml │ ├── doorkeeper.fa.yml │ ├── doorkeeper.fi.yml │ ├── doorkeeper.fil.yml │ ├── doorkeeper.fo.yml │ ├── doorkeeper.fr-CA.yml │ ├── doorkeeper.fr.yml │ ├── doorkeeper.fy.yml │ ├── doorkeeper.ga.yml │ ├── doorkeeper.gd.yml │ ├── doorkeeper.gl.yml │ ├── doorkeeper.he.yml │ ├── doorkeeper.hi.yml │ ├── doorkeeper.hr.yml │ ├── doorkeeper.hu.yml │ ├── doorkeeper.hy.yml │ ├── doorkeeper.ia.yml │ ├── doorkeeper.id.yml │ ├── doorkeeper.ie.yml │ ├── doorkeeper.ig.yml │ ├── doorkeeper.io.yml │ ├── doorkeeper.is.yml │ ├── doorkeeper.it.yml │ ├── doorkeeper.ja.yml │ ├── doorkeeper.ka.yml │ ├── doorkeeper.kab.yml │ ├── doorkeeper.kk.yml │ ├── doorkeeper.kn.yml │ ├── doorkeeper.ko.yml │ ├── doorkeeper.ku.yml │ ├── doorkeeper.kw.yml │ ├── doorkeeper.la.yml │ ├── doorkeeper.lad.yml │ ├── doorkeeper.lt.yml │ ├── doorkeeper.lv.yml │ ├── doorkeeper.mk.yml │ ├── doorkeeper.ml.yml │ ├── doorkeeper.mr.yml │ ├── doorkeeper.ms.yml │ ├── doorkeeper.my.yml │ ├── doorkeeper.nan.yml │ ├── doorkeeper.ne.yml │ ├── doorkeeper.nl.yml │ ├── doorkeeper.nn.yml │ ├── doorkeeper.no.yml │ ├── doorkeeper.oc.yml │ ├── doorkeeper.pa.yml │ ├── doorkeeper.pl.yml │ ├── doorkeeper.pt-BR.yml │ ├── doorkeeper.pt-PT.yml │ ├── doorkeeper.ro.yml │ ├── doorkeeper.ru.yml │ ├── doorkeeper.ry.yml │ ├── doorkeeper.sa.yml │ ├── doorkeeper.sc.yml │ ├── doorkeeper.sco.yml │ ├── doorkeeper.si.yml │ ├── doorkeeper.sk.yml │ ├── doorkeeper.sl.yml │ ├── doorkeeper.sq.yml │ ├── doorkeeper.sr-Latn.yml │ ├── doorkeeper.sr.yml │ ├── doorkeeper.sv.yml │ ├── doorkeeper.szl.yml │ ├── doorkeeper.ta.yml │ ├── doorkeeper.tai.yml │ ├── doorkeeper.te.yml │ ├── doorkeeper.th.yml │ ├── doorkeeper.tlh.yml │ ├── doorkeeper.tok.yml │ ├── doorkeeper.tr.yml │ ├── doorkeeper.tt.yml │ ├── doorkeeper.ug.yml │ ├── doorkeeper.uk.yml │ ├── doorkeeper.ur.yml │ ├── doorkeeper.uz.yml │ ├── doorkeeper.vi.yml │ ├── doorkeeper.zgh.yml │ ├── doorkeeper.zh-CN.yml │ ├── doorkeeper.zh-HK.yml │ ├── doorkeeper.zh-TW.yml │ ├── el.yml │ ├── en-GB.yml │ ├── en.yml │ ├── eo.yml │ ├── es-AR.yml │ ├── es-MX.yml │ ├── es.yml │ ├── et.yml │ ├── eu.yml │ ├── fa.yml │ ├── fi.yml │ ├── fil.yml │ ├── fo.yml │ ├── fr-CA.yml │ ├── fr.yml │ ├── fy.yml │ ├── ga.yml │ ├── gd.yml │ ├── gl.yml │ ├── he.yml │ ├── hi.yml │ ├── hr.yml │ ├── hu.yml │ ├── hy.yml │ ├── ia.yml │ ├── id.yml │ ├── ie.yml │ ├── ig.yml │ ├── io.yml │ ├── is.yml │ ├── it.yml │ ├── ja.yml │ ├── ka.yml │ ├── kab.yml │ ├── kk.yml │ ├── kn.yml │ ├── ko.yml │ ├── ku.yml │ ├── kw.yml │ ├── la.yml │ ├── lad.yml │ ├── lt.yml │ ├── lv.yml │ ├── mk.yml │ ├── ml.yml │ ├── mr.yml │ ├── ms.yml │ ├── my.yml │ ├── nan.yml │ ├── ne.yml │ ├── nl.yml │ ├── nn.yml │ ├── no.yml │ ├── oc.yml │ ├── pa.yml │ ├── pl.yml │ ├── pt-BR.yml │ ├── pt-PT.yml │ ├── ro.yml │ ├── ru.yml │ ├── ry.yml │ ├── sa.yml │ ├── sc.yml │ ├── sco.yml │ ├── si.yml │ ├── simple_form.af.yml │ ├── simple_form.an.yml │ ├── simple_form.ar.yml │ ├── simple_form.ast.yml │ ├── simple_form.az.yml │ ├── simple_form.be.yml │ ├── simple_form.bg.yml │ ├── simple_form.bn.yml │ ├── simple_form.br.yml │ ├── simple_form.bs.yml │ ├── simple_form.ca.yml │ ├── simple_form.ckb.yml │ ├── simple_form.co.yml │ ├── simple_form.cs.yml │ ├── simple_form.cy.yml │ ├── simple_form.da.yml │ ├── simple_form.de.yml │ ├── simple_form.el.yml │ ├── simple_form.en-GB.yml │ ├── simple_form.en.yml │ ├── simple_form.eo.yml │ ├── simple_form.es-AR.yml │ ├── simple_form.es-MX.yml │ ├── simple_form.es.yml │ ├── simple_form.et.yml │ ├── simple_form.eu.yml │ ├── simple_form.fa.yml │ ├── simple_form.fi.yml │ ├── simple_form.fil.yml │ ├── simple_form.fo.yml │ ├── simple_form.fr-CA.yml │ ├── simple_form.fr.yml │ ├── simple_form.fy.yml │ ├── simple_form.ga.yml │ ├── simple_form.gd.yml │ ├── simple_form.gl.yml │ ├── simple_form.he.yml │ ├── simple_form.hi.yml │ ├── simple_form.hr.yml │ ├── simple_form.hu.yml │ ├── simple_form.hy.yml │ ├── simple_form.ia.yml │ ├── simple_form.id.yml │ ├── simple_form.ie.yml │ ├── simple_form.ig.yml │ ├── simple_form.io.yml │ ├── simple_form.is.yml │ ├── simple_form.it.yml │ ├── simple_form.ja.yml │ ├── simple_form.ka.yml │ ├── simple_form.kab.yml │ ├── simple_form.kk.yml │ ├── simple_form.kn.yml │ ├── simple_form.ko.yml │ ├── simple_form.ku.yml │ ├── simple_form.kw.yml │ ├── simple_form.la.yml │ ├── simple_form.lad.yml │ ├── simple_form.lt.yml │ ├── simple_form.lv.yml │ ├── simple_form.mk.yml │ ├── simple_form.ml.yml │ ├── simple_form.mr.yml │ ├── simple_form.ms.yml │ ├── simple_form.my.yml │ ├── simple_form.nan.yml │ ├── simple_form.ne.yml │ ├── simple_form.nl.yml │ ├── simple_form.nn.yml │ ├── simple_form.no.yml │ ├── simple_form.oc.yml │ ├── simple_form.pa.yml │ ├── simple_form.pl.yml │ ├── simple_form.pt-BR.yml │ ├── simple_form.pt-PT.yml │ ├── simple_form.ro.yml │ ├── simple_form.ru.yml │ ├── simple_form.ry.yml │ ├── simple_form.sa.yml │ ├── simple_form.sc.yml │ ├── simple_form.sco.yml │ ├── simple_form.si.yml │ ├── simple_form.sk.yml │ ├── simple_form.sl.yml │ ├── simple_form.sq.yml │ ├── simple_form.sr-Latn.yml │ ├── simple_form.sr.yml │ ├── simple_form.sv.yml │ ├── simple_form.szl.yml │ ├── simple_form.ta.yml │ ├── simple_form.tai.yml │ ├── simple_form.te.yml │ ├── simple_form.th.yml │ ├── simple_form.tlh.yml │ ├── simple_form.tok.yml │ ├── simple_form.tr.yml │ ├── simple_form.tt.yml │ ├── simple_form.ug.yml │ ├── simple_form.uk.yml │ ├── simple_form.ur.yml │ ├── simple_form.uz.yml │ ├── simple_form.vi.yml │ ├── simple_form.zgh.yml │ ├── simple_form.zh-CN.yml │ ├── simple_form.zh-HK.yml │ ├── simple_form.zh-TW.yml │ ├── sk.yml │ ├── sl.yml │ ├── sq.yml │ ├── sr-Latn.yml │ ├── sr.yml │ ├── sv.yml │ ├── szl.yml │ ├── ta.yml │ ├── tai.yml │ ├── te.yml │ ├── th.yml │ ├── tlh.yml │ ├── tok.yml │ ├── tr.yml │ ├── tt.yml │ ├── ug.yml │ ├── uk.yml │ ├── ur.yml │ ├── uz.yml │ ├── vi.yml │ ├── zgh.yml │ ├── zh-CN.yml │ ├── zh-HK.yml │ └── zh-TW.yml ├── mastodon.yml ├── navigation.rb ├── pghero.yml ├── puma.rb ├── roles.yml ├── routes.rb ├── routes │ ├── admin.rb │ ├── api.rb │ ├── settings.rb │ └── web_app.rb ├── settings.yml ├── sidekiq.yml ├── templates │ ├── privacy-policy.md │ └── terms-of-service.md ├── translation.yml ├── webpack │ ├── configuration.js │ ├── development.js │ ├── production.js │ ├── rules │ │ ├── babel.js │ │ ├── css.js │ │ ├── file.js │ │ ├── index.js │ │ ├── mark.js │ │ ├── material_icons.js │ │ └── tesseract.js │ └── shared.js └── webpacker.yml ├── crowdin-glitch.yml ├── crowdin.yml ├── db ├── migrate │ ├── 20160220174730_create_accounts.rb │ ├── 20160220211917_create_statuses.rb │ ├── 20160221003140_create_users.rb │ ├── 20160221003621_create_follows.rb │ ├── 20160222122600_create_stream_entries.rb │ ├── 20160222143943_add_profile_fields_to_accounts.rb │ ├── 20160223162837_add_metadata_to_statuses.rb │ ├── 20160223164502_make_uris_nullable_in_statuses.rb │ ├── 20160223165723_add_url_to_statuses.rb │ ├── 20160223165855_add_url_to_accounts.rb │ ├── 20160223171800_create_favourites.rb │ ├── 20160224223247_create_mentions.rb │ ├── 20160227230233_add_attachment_avatar_to_accounts.rb │ ├── 20160305115639_add_devise_to_users.rb │ ├── 20160306172223_create_doorkeeper_tables.rb │ ├── 20160312193225_add_attachment_header_to_accounts.rb │ ├── 20160314164231_add_owner_to_application.rb │ ├── 20160316103650_add_missing_indices.rb │ ├── 20160322193748_add_avatar_remote_url_to_accounts.rb │ ├── 20160325130944_add_admin_to_users.rb │ ├── 20160826155805_add_superapp_to_oauth_applications.rb │ ├── 20160905150353_create_media_attachments.rb │ ├── 20160919221059_add_subscription_expires_at_to_accounts.rb │ ├── 20160920003904_remove_verify_token_from_accounts.rb │ ├── 20160926213048_remove_owner_from_application.rb │ ├── 20161003142332_add_confirmable_to_users.rb │ ├── 20161003145426_create_blocks.rb │ ├── 20161006213403_rails_settings_migration.rb │ ├── 20161009120834_create_domain_blocks.rb │ ├── 20161027172456_add_silenced_to_accounts.rb │ ├── 20161104173623_create_tags.rb │ ├── 20161105130633_create_statuses_tags_join_table.rb │ ├── 20161116162355_add_locale_to_users.rb │ ├── 20161119211120_create_notifications.rb │ ├── 20161122163057_remove_unneeded_indexes.rb │ ├── 20161123093447_add_sensitive_to_statuses.rb │ ├── 20161128103007_create_subscriptions.rb │ ├── 20161130142058_add_last_successful_delivery_at_to_subscriptions.rb │ ├── 20161130185319_add_visibility_to_statuses.rb │ ├── 20161202132159_add_in_reply_to_account_id_to_statuses.rb │ ├── 20161203164520_add_from_account_id_to_notifications.rb │ ├── 20161205214545_add_suspended_to_accounts.rb │ ├── 20161221152630_add_hidden_to_stream_entries.rb │ ├── 20161222201034_add_locked_to_accounts.rb │ ├── 20161222204147_create_follow_requests.rb │ ├── 20170105224407_add_shortcode_to_media_attachments.rb │ ├── 20170109120109_create_web_settings.rb │ ├── 20170112154826_migrate_settings.rb │ ├── 20170114194937_add_application_to_statuses.rb │ ├── 20170114203041_add_website_to_oauth_application.rb │ ├── 20170119214911_create_preview_cards.rb │ ├── 20170123162658_add_severity_to_domain_blocks.rb │ ├── 20170123203248_add_reject_media_to_domain_blocks.rb │ ├── 20170125145934_add_spoiler_text_to_statuses.rb │ ├── 20170127165745_add_devise_two_factor_to_users.rb │ ├── 20170205175257_remove_devices.rb │ ├── 20170209184350_add_reply_to_statuses.rb │ ├── 20170214110202_create_reports.rb │ ├── 20170217012631_add_reblog_of_id_foreign_key_to_statuses.rb │ ├── 20170301222600_create_mutes.rb │ ├── 20170303212857_add_last_emailed_at_to_users.rb │ ├── 20170304202101_add_type_to_media_attachments.rb │ ├── 20170317193015_add_search_index_to_accounts.rb │ ├── 20170318214217_add_header_remote_url_to_accounts.rb │ ├── 20170322021028_add_lowercase_index_to_accounts.rb │ ├── 20170322143850_change_primary_key_to_bigint_on_statuses.rb │ ├── 20170322162804_add_search_index_to_tags.rb │ ├── 20170330021336_add_counter_caches.rb │ ├── 20170330163835_create_imports.rb │ ├── 20170330164118_add_attachment_data_to_imports.rb │ ├── 20170403172249_add_action_taken_by_account_id_to_reports.rb │ ├── 20170405112956_add_index_on_mentions_status_id.rb │ ├── 20170406215816_add_notifications_and_favourites_indices.rb │ ├── 20170409170753_add_last_webfingered_at_to_accounts.rb │ ├── 20170414080609_add_devise_two_factor_backupable_to_users.rb │ ├── 20170414132105_add_language_to_statuses.rb │ ├── 20170418160728_add_indexes_to_reports_for_accounts.rb │ ├── 20170423005413_add_allowed_languages_to_user.rb │ ├── 20170424003227_create_account_domain_blocks.rb │ ├── 20170424112722_add_status_id_index_to_statuses_tags.rb │ ├── 20170425131920_add_media_attachment_meta.rb │ ├── 20170425202925_add_oembed_to_preview_cards.rb │ ├── 20170427011934_re_add_owner_to_application.rb │ ├── 20170506235850_create_conversations.rb │ ├── 20170507000211_add_conversation_id_to_statuses.rb │ ├── 20170507141759_optimize_index_subscriptions.rb │ ├── 20170508230434_create_conversation_mutes.rb │ ├── 20170516072309_add_index_accounts_on_uri.rb │ ├── 20170520145338_change_language_filter_to_opt_out.rb │ ├── 20170601210557_add_index_on_media_attachments_account_id.rb │ ├── 20170604144747_add_foreign_keys_for_accounts.rb │ ├── 20170606113804_change_tag_search_index_to_btree.rb │ ├── 20170609145826_remove_default_language_from_statuses.rb │ ├── 20170610000000_add_statuses_index_on_account_id_id.rb │ ├── 20170623152212_create_session_activations.rb │ ├── 20170624134742_add_description_to_session_activations.rb │ ├── 20170625140443_add_access_token_id_to_session_activations.rb │ ├── 20170711225116_fix_null_booleans.rb │ ├── 20170713112503_make_tag_search_case_insensitive.rb │ ├── 20170713175513_create_web_push_subscriptions.rb │ ├── 20170713190709_add_web_push_subscription_to_session_activations.rb │ ├── 20170714184731_add_domain_to_subscriptions.rb │ ├── 20170716191202_add_hide_notifications_to_mute.rb │ ├── 20170718211102_add_activitypub_to_accounts.rb │ ├── 20170720000000_add_index_favourites_on_account_id_and_id.rb │ ├── 20170823162448_create_status_pins.rb │ ├── 20170824103029_add_timestamps_to_status_pins.rb │ ├── 20170829215220_remove_status_pins_account_index.rb │ ├── 20170901141119_truncate_preview_cards.rb │ ├── 20170901142658_create_join_table_preview_cards_statuses.rb │ ├── 20170905044538_add_index_id_account_id_activity_type_on_notifications.rb │ ├── 20170905165803_add_local_to_statuses.rb │ ├── 20170913000752_create_site_uploads.rb │ ├── 20170914032032_default_existing_mutes_to_hiding_notifications.rb │ ├── 20170917153509_create_custom_emojis.rb │ ├── 20170918125918_ids_to_bigints.rb │ ├── 20170920024819_status_ids_to_timestamp_ids.rb │ ├── 20170920032311_fix_reblogs_in_feeds.rb │ ├── 20170924022025_ids_to_bigints2.rb │ ├── 20170927215609_add_description_to_media_attachments.rb │ ├── 20170928082043_create_email_domain_blocks.rb │ ├── 20171005102658_create_account_moderation_notes.rb │ ├── 20171005171936_add_disabled_to_custom_emojis.rb │ ├── 20171006142024_add_uri_to_custom_emojis.rb │ ├── 20171009222537_create_keyword_mutes.rb │ ├── 20171010023049_add_foreign_key_to_account_moderation_notes.rb │ ├── 20171010025614_change_accounts_nonnullable_in_account_moderation_notes.rb │ ├── 20171020084748_add_visible_in_picker_to_custom_emoji.rb │ ├── 20171021191900_move_keyword_mutes_into_glitch_namespace.rb │ ├── 20171028221157_add_reblogs_to_follows.rb │ ├── 20171107143332_add_memorial_to_accounts.rb │ ├── 20171107143624_add_disabled_to_users.rb │ ├── 20171109012327_add_moderator_to_accounts.rb │ ├── 20171114080328_add_index_domain_to_email_domain_blocks.rb │ ├── 20171114231651_create_lists.rb │ ├── 20171116161857_create_list_accounts.rb │ ├── 20171118012443_add_moved_to_account_id_to_accounts.rb │ ├── 20171119172437_create_admin_action_logs.rb │ ├── 20171122120436_add_index_account_and_reblog_of_id_to_statuses.rb │ ├── 20171125024930_create_invites.rb │ ├── 20171125031751_add_invite_id_to_users.rb │ ├── 20171125185353_add_index_reblog_of_id_and_account_to_statuses.rb │ ├── 20171125190735_remove_old_reblog_index_on_statuses.rb │ ├── 20171129172043_add_index_on_stream_entries.rb │ ├── 20171130000000_add_embed_url_to_preview_cards.rb │ ├── 20171201000000_change_account_id_nonnullable_in_lists.rb │ ├── 20171210213213_add_local_only_flag_to_statuses.rb │ ├── 20171212195226_remove_duplicate_indexes_in_lists.rb │ ├── 20171226094803_more_faster_index_on_notifications.rb │ ├── 20180106000232_add_index_on_statuses_for_api_v1_accounts_account_id_statuses.rb │ ├── 20180109143959_add_remember_token_to_users.rb │ ├── 20180204034416_create_identities.rb │ ├── 20180206000000_change_user_id_nonnullable.rb │ ├── 20180211015820_create_backups.rb │ ├── 20180304013859_add_featured_collection_url_to_accounts.rb │ ├── 20180310000000_change_columns_in_notifications_nonnullable.rb │ ├── 20180402031200_add_assigned_account_id_to_reports.rb │ ├── 20180402040909_create_report_notes.rb │ ├── 20180410204633_add_fields_to_accounts.rb │ ├── 20180410220657_glitch_create_bookmarks.rb │ ├── 20180416210259_add_uri_to_relationships.rb │ ├── 20180506221944_add_actor_type_to_accounts.rb │ ├── 20180510214435_add_access_token_id_to_web_push_subscriptions.rb │ ├── 20180510230049_migrate_web_push_subscriptions.rb │ ├── 20180514130000_improve_index_on_statuses_for_api_v1_accounts_account_id_statuses.rb │ ├── 20180514140000_revert_index_change_on_statuses_for_api_v1_accounts_account_id_statuses.rb │ ├── 20180528141303_fix_accounts_unique_index.rb │ ├── 20180604000556_add_apply_to_mentions_flag_to_keyword_mutes.rb │ ├── 20180608213548_reject_following_blocked_users.rb │ ├── 20180609104432_migrate_web_push_subscriptions2.rb │ ├── 20180615122121_add_autofollow_to_invites.rb │ ├── 20180616192031_add_chosen_languages_to_users.rb │ ├── 20180617162849_remove_unused_indexes.rb │ ├── 20180628181026_create_custom_filters.rb │ ├── 20180707154237_add_whole_word_to_custom_filter.rb │ ├── 20180707193142_migrate_filters.rb │ ├── 20180711152640_create_relays.rb │ ├── 20180808175627_create_account_pins.rb │ ├── 20180812123222_change_relays_enabled.rb │ ├── 20180812162710_create_status_stats.rb │ ├── 20180812173710_copy_status_stats.rb │ ├── 20180814171349_add_confidential_to_doorkeeper_application.rb │ ├── 20180820232245_add_foreign_key_indices.rb │ ├── 20180831171112_create_bookmarks.rb │ ├── 20180929222014_create_account_conversations.rb │ ├── 20181007025445_create_pghero_space_stats.rb │ ├── 20181010141500_add_silent_to_mentions.rb │ ├── 20181017170937_add_reject_reports_to_domain_blocks.rb │ ├── 20181018205649_add_unread_to_account_conversations.rb │ ├── 20181024224956_migrate_account_conversations.rb │ ├── 20181026034033_remove_faux_remote_account_duplicates.rb │ ├── 20181116165755_create_account_stats.rb │ ├── 20181116173541_copy_account_stats.rb │ ├── 20181127130500_identity_id_to_bigint.rb │ ├── 20181127165847_add_show_replies_to_lists.rb │ ├── 20181203003808_create_accounts_tags_join_table.rb │ ├── 20181203021853_add_discoverable_to_accounts.rb │ ├── 20181204193439_add_last_status_at_to_account_stats.rb │ ├── 20181204215309_create_account_tag_stats.rb │ ├── 20181207011115_downcase_custom_emoji_domains.rb │ ├── 20181213184704_create_account_warnings.rb │ ├── 20181213185533_create_account_warning_presets.rb │ ├── 20181219235220_add_created_by_application_id_to_users.rb │ ├── 20181226021420_add_also_known_as_to_accounts.rb │ ├── 20190103124649_create_scheduled_statuses.rb │ ├── 20190103124754_add_scheduled_status_id_to_media_attachments.rb │ ├── 20190117114553_create_tombstones.rb │ ├── 20190201012802_add_overwrite_to_imports.rb │ ├── 20190203180359_create_featured_tags.rb │ ├── 20190225031541_create_polls.rb │ ├── 20190225031625_create_poll_votes.rb │ ├── 20190226003449_add_poll_id_to_statuses.rb │ ├── 20190304152020_add_uri_to_poll_votes.rb │ ├── 20190306145741_add_lock_version_to_polls.rb │ ├── 20190307234537_add_approved_to_users.rb │ ├── 20190314181829_migrate_open_registrations_setting.rb │ ├── 20190316190352_create_account_identity_proofs.rb │ ├── 20190317135723_add_uri_to_reports.rb │ ├── 20190403141604_add_comment_to_invites.rb │ ├── 20190409054914_create_user_invite_requests.rb │ ├── 20190420025523_add_blurhash_to_media_attachments.rb │ ├── 20190509164208_add_by_moderator_to_tombstone.rb │ ├── 20190511134027_add_silenced_at_suspended_at_to_accounts.rb │ ├── 20190512200918_add_content_type_to_statuses.rb │ ├── 20190529143559_preserve_old_layout_for_existing_users.rb │ ├── 20190627222225_create_custom_emoji_categories.rb │ ├── 20190627222826_add_category_id_to_custom_emojis.rb │ ├── 20190701022101_add_trust_level_to_accounts.rb │ ├── 20190705002136_create_domain_allows.rb │ ├── 20190715164535_add_instance_actor.rb │ ├── 20190726175042_add_case_insensitive_index_to_tags.rb │ ├── 20190729185330_add_score_to_tags.rb │ ├── 20190805123746_add_capabilities_to_tags.rb │ ├── 20190807135426_add_comments_to_domain_blocks.rb │ ├── 20190815225426_add_last_status_at_to_tags.rb │ ├── 20190819134503_add_deleted_at_to_statuses.rb │ ├── 20190820003045_update_statuses_index.rb │ ├── 20190823221802_add_local_index_to_statuses.rb │ ├── 20190901035623_add_max_score_to_tags.rb │ ├── 20190904222339_create_markers.rb │ ├── 20190914202517_create_account_migrations.rb │ ├── 20190915194355_create_account_aliases.rb │ ├── 20190917213523_add_remember_token_index.rb │ ├── 20190927232842_add_voters_count_to_polls.rb │ ├── 20191001213028_add_lock_version_to_account_stats.rb │ ├── 20191007013357_update_pt_locales.rb │ ├── 20191031163205_change_list_account_follow_nullable.rb │ ├── 20191212003415_increase_backup_size.rb │ ├── 20191212163405_add_hide_collections_to_accounts.rb │ ├── 20191218153258_create_announcements.rb │ ├── 20200113125135_create_announcement_mutes.rb │ ├── 20200114113335_create_announcement_reactions.rb │ ├── 20200119112504_add_public_index_to_statuses.rb │ ├── 20200126203551_add_published_at_to_announcements.rb │ ├── 20200306035625_add_processing_to_media_attachments.rb │ ├── 20200309150742_add_forwarded_to_reports.rb │ ├── 20200312144258_add_title_to_account_warning_presets.rb │ ├── 20200312162302_add_status_ids_to_announcements.rb │ ├── 20200312185443_add_parent_id_to_email_domain_blocks.rb │ ├── 20200317021758_add_expires_at_to_mutes.rb │ ├── 20200407201300_create_unavailable_domains.rb │ ├── 20200407202420_migrate_unavailable_inboxes.rb │ ├── 20200417125749_add_storage_schema_version.rb │ ├── 20200508212852_reset_unique_jobs_locks.rb │ ├── 20200510110808_reset_web_app_secret.rb │ ├── 20200510181721_remove_duplicated_indexes_pghero.rb │ ├── 20200516180352_create_devices.rb │ ├── 20200516183822_create_one_time_keys.rb │ ├── 20200518083523_create_encrypted_messages.rb │ ├── 20200521180606_encrypted_message_ids_to_timestamp_ids.rb │ ├── 20200529214050_add_devices_url_to_accounts.rb │ ├── 20200601222558_create_system_keys.rb │ ├── 20200605155027_add_blurhash_to_preview_cards.rb │ ├── 20200608113046_add_sign_in_token_to_users.rb │ ├── 20200614002136_add_sensitized_to_accounts.rb │ ├── 20200620164023_add_fixed_lowercase_index_to_accounts.rb │ ├── 20200622213645_media_attachment_ids_to_timestamp_ids.rb │ ├── 20200627125810_add_thumbnail_columns_to_media_attachments.rb │ ├── 20200628133322_create_account_notes.rb │ ├── 20200630190240_create_webauthn_credentials.rb │ ├── 20200630190544_add_webauthn_id_to_users.rb │ ├── 20200908193330_create_account_deletion_requests.rb │ ├── 20200917192924_add_notify_to_follows.rb │ ├── 20200917193034_add_type_to_notifications.rb │ ├── 20200917222316_add_index_notifications_on_type.rb │ ├── 20201008202037_create_ip_blocks.rb │ ├── 20201008220312_add_sign_up_ip_to_users.rb │ ├── 20201017233919_add_suspension_origin_to_accounts.rb │ ├── 20201206004238_create_instances.rb │ ├── 20201218054746_add_obfuscate_to_domain_blocks.rb │ ├── 20210221045109_create_rules.rb │ ├── 20210306164523_account_ids_to_timestamp_ids.rb │ ├── 20210322164601_create_account_summaries.rb │ ├── 20210323114347_create_follow_recommendations.rb │ ├── 20210324171613_create_follow_recommendation_suppressions.rb │ ├── 20210416200740_create_canonical_email_blocks.rb │ ├── 20210421121431_add_case_insensitive_btree_index_to_tags.rb │ ├── 20210425135952_add_index_on_media_attachments_account_id_status_id.rb │ ├── 20210505174616_update_follow_recommendations_to_version_2.rb │ ├── 20210609202149_create_login_activities.rb │ ├── 20210616214526_create_user_ips.rb │ ├── 20210621221010_add_skip_sign_in_token_to_users.rb │ ├── 20210630000137_fix_canonical_email_blocks_foreign_key.rb │ ├── 20210722120340_create_account_statuses_cleanup_policies.rb │ ├── 20210904215403_add_edited_at_to_statuses.rb │ ├── 20210908220918_create_status_edits.rb │ ├── 20211031031021_create_preview_card_providers.rb │ ├── 20211112011713_add_language_to_preview_cards.rb │ ├── 20211115032527_add_trendable_to_preview_cards.rb │ ├── 20211123212714_add_link_type_to_preview_cards.rb │ ├── 20211213040746_update_account_summaries_to_version_2.rb │ ├── 20211231080958_add_category_to_reports.rb │ ├── 20220105163928_remove_mentions_status_id_index.rb │ ├── 20220115125126_add_report_id_to_account_warnings.rb │ ├── 20220115125341_fix_account_warning_actions.rb │ ├── 20220116202951_add_deleted_at_index_on_statuses.rb │ ├── 20220124141035_create_appeals.rb │ ├── 20220202200743_add_trendable_to_accounts.rb │ ├── 20220202200926_add_trendable_to_statuses.rb │ ├── 20220209175231_add_content_type_to_status_edits.rb │ ├── 20220210153119_add_overruled_at_to_account_warnings.rb │ ├── 20220224010024_add_ips_to_email_domain_blocks.rb │ ├── 20220227041951_add_last_used_at_to_oauth_access_tokens.rb │ ├── 20220302232632_add_ordered_media_attachment_ids_to_statuses.rb │ ├── 20220303000827_add_ordered_media_attachment_ids_to_status_edits.rb │ ├── 20220304195405_migrate_hide_network_preference.rb │ ├── 20220307094650_fix_featured_tags_constraints.rb │ ├── 20220309213005_fix_reblog_deleted_at.rb │ ├── 20220316233212_update_kurdish_locales.rb │ ├── 20220428112511_add_index_statuses_on_account_id.rb │ ├── 20220428112727_add_index_statuses_pins_on_status_id.rb │ ├── 20220428114454_add_index_reports_on_assigned_account_id.rb │ ├── 20220428114902_add_index_reports_on_action_taken_by_account_id.rb │ ├── 20220606044941_create_webhooks.rb │ ├── 20220611210335_create_user_roles.rb │ ├── 20220611212541_add_role_id_to_users.rb │ ├── 20220613110628_create_custom_filter_keywords.rb │ ├── 20220613110711_migrate_custom_filters.rb │ ├── 20220613110834_add_action_to_custom_filters.rb │ ├── 20220710102457_add_display_name_to_tags.rb │ ├── 20220714171049_create_tag_follows.rb │ ├── 20220808101323_create_custom_filter_statuses.rb │ ├── 20220824164433_add_human_identifier_to_admin_action_logs.rb │ ├── 20220824233535_create_status_trends.rb │ ├── 20220827195229_change_canonical_email_blocks_nullable.rb │ ├── 20220829192633_add_languages_to_follows.rb │ ├── 20220829192658_add_languages_to_follow_requests.rb │ ├── 20221006061337_create_preview_card_trends.rb │ ├── 20221012181003_add_blurhash_to_site_uploads.rb │ ├── 20221021055441_add_index_featured_tags_on_account_id_and_tag_id.rb │ ├── 20221025171544_add_index_ip_blocks_on_ip.rb │ ├── 20221104133904_add_name_to_featured_tags.rb │ ├── 20221124114030_create_status_reactions.rb │ ├── 20221218015350_fix_foreign_keys_status_reactions.rb │ ├── 20221224204906_add_quote_id_to_statuses.rb │ ├── 20221224220348_add_index_to_statuses_quote_id.rb │ ├── 20230129023109_add_template_to_webhooks.rb │ ├── 20230215074327_add_settings_to_users.rb │ ├── 20230215074423_move_user_settings.rb │ ├── 20230215074425_move_emoji_reaction_settings.rb │ ├── 20230330135507_create_bulk_imports.rb │ ├── 20230330140036_create_bulk_import_rows.rb │ ├── 20230330155710_add_follow_request_id_to_list_accounts.rb │ ├── 20230524190515_add_index_accounts_on_domain_and_id.rb │ ├── 20230524192812_fix_account_domain_casing.rb │ ├── 20230524194155_add_index_instances_on_reverse_domain.rb │ ├── 20230531153942_add_primary_key_to_accounts_tags_join_table.rb │ ├── 20230531154811_add_primary_key_to_statuses_tags_join_table.rb │ ├── 20230605085710_add_exclusive_to_lists.rb │ ├── 20230605085711_add_time_zone_to_users.rb │ ├── 20230630145300_add_index_backups_on_user_id.rb │ ├── 20230702131023_add_superapp_index_to_applications.rb │ ├── 20230702151753_add_index_user_on_unconfirmed_email.rb │ ├── 20230724160715_add_published_at_to_preview_cards.rb │ ├── 20230725213448_add_image_description_to_preview_cards.rb │ ├── 20230814223300_add_indexable_to_accounts.rb │ ├── 20230818141056_create_global_follow_recommendations.rb │ ├── 20230822081029_create_software_updates.rb │ ├── 20230907150100_add_index_account_stats_on_last_status_at_and_account_id.rb │ ├── 20231006183200_add_url_to_preview_cards_statuses.rb │ ├── 20231018192110_add_index_to_webauthn_credentials_user_id_nickname.rb │ ├── 20231018193209_add_index_to_account_alias_uri_account_id.rb │ ├── 20231018193355_add_index_to_custom_filter_statuses_status_custom_filter.rb │ ├── 20231018193659_add_index_to_identities_uid_provider.rb │ ├── 20231210154528_add_otp_secret_to_user.rb │ ├── 20231211234923_create_follow_recommendation_mutes.rb │ ├── 20231212073317_add_languages_index_to_account_summaries.rb │ ├── 20231222100226_add_allow_with_approval_to_email_domain_blocks.rb │ ├── 20240109103012_fix_canadian_french_locale.rb │ ├── 20240111033014_create_generated_annual_reports.rb │ ├── 20240114042123_create_bubble_domains.rb │ ├── 20240217171534_remove_defaults_for_status_pins_timestamps.rb │ ├── 20240221195424_add_filtered_to_notifications.rb │ ├── 20240221195828_create_notification_requests.rb │ ├── 20240221211359_notification_request_ids_to_timestamp_ids.rb │ ├── 20240222193403_create_notification_permissions.rb │ ├── 20240222203722_create_notification_policies.rb │ ├── 20240227191620_add_filtered_index_on_notifications.rb │ ├── 20240304090449_migrate_interaction_settings_to_policy.rb │ ├── 20240310123453_add_hint_to_rules.rb │ ├── 20240312100644_create_relationship_severance_events.rb │ ├── 20240312105620_create_severed_relationships.rb │ ├── 20240320140159_create_account_relationship_severance_events.rb │ ├── 20240320163441_change_notification_request_last_status_id_nullable.rb │ ├── 20240322125607_add_followers_and_following_counts_to_account_relationship_severance_events.rb │ ├── 20240411044156_add_reaction_count_to_status_stat.rb │ ├── 20240510192043_fix_notification_policies_foreign_key.rb │ ├── 20240513095755_add_group_key_to_notifications.rb │ ├── 20240513123807_add_index_notifications_on_account_id_and_group_key.rb │ ├── 20240522041528_add_author_account_id_to_preview_cards.rb │ ├── 20240607093446_change_mention_status_id_non_nullable.rb │ ├── 20240607093954_validate_change_mention_status_id_non_nullable.rb │ ├── 20240607094603_change_mention_account_id_non_nullable.rb │ ├── 20240607094856_validate_change_mention_account_id_non_nullable.rb │ ├── 20240713171841_add_application_to_reports.rb │ ├── 20240713171909_validate_add_application_to_reports.rb │ ├── 20240724181224_enable_pkce.rb │ ├── 20240808114841_add_new_notification_policies.rb │ ├── 20240808124338_migrate_notifications_policy_v2.rb │ ├── 20240909014637_add_attribution_domains_to_accounts.rb │ ├── 20240918233930_add_fetched_replies_at_to_status.rb │ ├── 20241007071624_fix_notification_permission_foreign_keys.rb │ ├── 20241014010506_remove_duplicate_indexes.rb │ ├── 20241022214312_add_untrusted_favourites_count_and_untrusted_reblogs_count_to_status_stat.rb │ ├── 20241104082851_create_annual_report_statuses_per_account_counts.rb │ ├── 20241111141355_create_tag_trends.rb │ ├── 20241123224956_create_terms_of_services.rb │ ├── 20241205135901_remove_legacy_user_settings_data.rb │ ├── 20241205162640_add_missing_delete_cascade_webauthn_credentials.rb │ ├── 20241205163118_add_missing_delete_cascade_account_moderation_notes.rb │ ├── 20241210140838_add_not_null_to_account_pin_account_columns.rb │ ├── 20241212152158_add_not_null_to_account_alias_columns.rb │ ├── 20241212152618_add_not_null_to_account_deletion_request_columns.rb │ ├── 20241212152734_add_not_null_to_account_domain_block_columns.rb │ ├── 20241212152910_add_not_null_to_admin_action_log_columns.rb │ ├── 20241212153054_add_not_null_to_announcement_mute_columns.rb │ ├── 20241212153202_add_not_null_to_announcement_reaction_columns.rb │ ├── 20241212153254_add_not_null_to_custom_filter_columns.rb │ ├── 20241212154231_add_not_null_to_scheduled_status_columns.rb │ ├── 20241212154346_add_not_null_to_user_invite_request_columns.rb │ ├── 20241213170027_add_not_null_to_account_conversation_account_column.rb │ ├── 20241213170036_validate_not_null_to_account_conversation_account_column.rb │ ├── 20241213170043_add_not_null_to_account_conversation_conversation_column.rb │ ├── 20241213170053_validate_not_null_to_account_conversation_conversation_column.rb │ ├── 20241216223425_add_not_null_to_account_note_account_column.rb │ ├── 20241216223433_validate_not_null_to_account_note_account_column.rb │ ├── 20241216223446_add_not_null_to_account_note_target_account_column.rb │ ├── 20241216223452_validate_not_null_to_account_note_target_account_column.rb │ ├── 20241216223852_add_not_null_to_marker_user_column.rb │ ├── 20241216223859_validate_not_null_to_marker_user_column.rb │ ├── 20241216224211_add_not_null_to_poll_vote_account_column.rb │ ├── 20241216224218_validate_not_null_to_poll_vote_account_column.rb │ ├── 20241216224229_add_not_null_to_poll_vote_poll_column.rb │ ├── 20241216224237_validate_not_null_to_poll_vote_poll_column.rb │ ├── 20241216224507_add_not_null_to_poll_account_column.rb │ ├── 20241216224514_validate_not_null_to_poll_account_column.rb │ ├── 20241216224520_add_not_null_to_poll_status_column.rb │ ├── 20241216224530_validate_not_null_to_poll_status_column.rb │ ├── 20241216224813_add_not_null_to_tombstone_account_column.rb │ ├── 20241216224825_validate_not_null_to_tombstone_account_column.rb │ ├── 20250108111200_add_standard_to_push_subscription.rb │ ├── 20250221143646_add_notification_sent_at_to_announcements.rb │ ├── 20250224144617_add_effective_date_to_terms_of_services.rb │ └── 20250305074104_add_effective_date_index_to_terms_of_services.rb ├── post_migrate │ ├── .gitkeep │ ├── 20180813113448_copy_status_stats_cleanup.rb │ ├── 20180813160548_post_migrate_filters.rb │ ├── 20181116184611_copy_account_stats_cleanup.rb │ ├── 20190511152737_remove_suspended_silenced_account_fields.rb │ ├── 20190519130537_remove_boosts_widening_audience.rb │ ├── 20190706233204_drop_stream_entries.rb │ ├── 20190715031050_drop_subscriptions.rb │ ├── 20190901040524_remove_score_from_tags.rb │ ├── 20190927124642_remove_invalid_web_push_subscription.rb │ ├── 20200917193528_migrate_notifications_type.rb │ ├── 20200917222734_remove_index_notifications_on_account_activity.rb │ ├── 20201017234926_fill_account_suspension_origin.rb │ ├── 20210308133107_remove_subscription_expires_at_from_accounts.rb │ ├── 20210502233513_drop_account_tag_stats.rb │ ├── 20210507001928_remove_hub_url_from_accounts.rb │ ├── 20210526193025_remove_lock_version_from_account_stats.rb │ ├── 20210616214135_remove_current_sign_in_ip_from_users.rb │ ├── 20210808071221_clear_orphaned_account_notes.rb │ ├── 20211126000907_drop_account_identity_proofs.rb │ ├── 20220109213908_remove_action_taken_from_reports.rb │ ├── 20220118183010_remove_index_users_on_remember_token.rb │ ├── 20220118183123_remove_rememberable_from_users.rb │ ├── 20220202201015_remove_trust_level_from_accounts.rb │ ├── 20220303203437_remove_media_attachments_changed_from_status_edits.rb │ ├── 20220307083603_optimize_null_index_conversations_uri.rb │ ├── 20220310060545_optimize_null_index_statuses_in_reply_to_account_id.rb │ ├── 20220310060556_optimize_null_index_statuses_in_reply_to_id.rb │ ├── 20220310060614_optimize_null_index_media_attachments_scheduled_status_id.rb │ ├── 20220310060626_optimize_null_index_media_attachments_shortcode.rb │ ├── 20220310060641_optimize_null_index_users_reset_password_token.rb │ ├── 20220310060653_optimize_null_index_users_created_by_application_id.rb │ ├── 20220310060706_optimize_null_index_statuses_uri.rb │ ├── 20220310060722_optimize_null_index_accounts_moved_to_account_id.rb │ ├── 20220310060740_optimize_null_index_oauth_access_tokens_refresh_token.rb │ ├── 20220310060750_optimize_null_index_accounts_url.rb │ ├── 20220310060809_optimize_null_index_oauth_access_tokens_resource_owner_id.rb │ ├── 20220310060833_optimize_null_index_announcement_reactions_custom_emoji_id.rb │ ├── 20220310060854_optimize_null_index_appeals_approved_by_account_id.rb │ ├── 20220310060913_optimize_null_index_account_migrations_target_account_id.rb │ ├── 20220310060926_optimize_null_index_appeals_rejected_by_account_id.rb │ ├── 20220310060939_optimize_null_index_list_accounts_follow_id.rb │ ├── 20220310060959_optimize_null_index_web_push_subscriptions_access_token_id.rb │ ├── 20220429101025_remove_ips_from_email_domain_blocks.rb │ ├── 20220429101850_clear_email_domain_blocks.rb │ ├── 20220527114923_remove_filtered_languages_from_users.rb │ ├── 20220613110802_remove_whole_word_from_custom_filters.rb │ ├── 20220613110903_remove_irreversible_from_custom_filters.rb │ ├── 20220617202502_migrate_roles.rb │ ├── 20220704024901_migrate_settings_to_user_roles.rb │ ├── 20220729171123_fix_custom_filter_keywords_id_seq.rb │ ├── 20220824164532_remove_recorded_changes_from_admin_action_logs.rb │ ├── 20221101190723_backfill_admin_action_logs.rb │ ├── 20221206114142_backfill_admin_action_logs_again.rb │ ├── 20230803082451_add_unique_index_on_preview_cards_statuses.rb │ ├── 20230803112520_add_primary_key_to_preview_cards_statuses_join_table.rb │ ├── 20230811103651_remove_index_preview_cards_statuses_on_status_id_and_preview_card_id.rb │ ├── 20230818142253_drop_follow_recommendations.rb │ ├── 20230904134623_fix_kmr_locale_settings.rb │ ├── 20240307180905_migrate_devise_two_factor_secrets.rb │ ├── 20240321160706_migrate_interaction_settings_to_policy_again.rb │ ├── 20240322130318_remove_relationships_count_from_account_relationship_severance_events.rb │ ├── 20240322161611_remove_obsolete_roles_from_users.rb │ ├── 20240603195202_change_read_me_scope_to_profile.rb │ ├── 20240712064044_remove_dismissed_from_notification_requests.rb │ ├── 20240720140205_drop_end_to_end_message_tables.rb │ ├── 20240808124339_post_deployment_migrate_notifications_policy_v2.rb │ ├── 20240808125420_drop_old_policies_from_notifications_policy.rb │ ├── 20240916190140_remove_crypto_scope_values.rb │ ├── 20241123160722_move_tag_trends_to_table.rb │ ├── 20241205135925_remove_legacy_user_settings_columns.rb │ ├── 20250129144440_add_new_public_index_to_statuses.rb │ ├── 20250129144813_remove_old_public_index_to_statuses.rb │ └── 20250305023754_add_reaction_counts_to_status_stat.rb ├── schema.rb ├── seeds.rb ├── seeds │ ├── 01_web_app.rb │ ├── 02_instance_actor.rb │ ├── 03_roles.rb │ └── 04_admin.rb └── views │ ├── account_summaries_v01.sql │ ├── account_summaries_v02.sql │ ├── follow_recommendations_v01.sql │ ├── follow_recommendations_v02.sql │ ├── global_follow_recommendations_v01.sql │ ├── instances_v01.sql │ └── user_ips_v01.sql ├── dist ├── mastodon-sidekiq.service ├── mastodon-streaming.service ├── mastodon-streaming@.service ├── mastodon-web.service └── nginx.conf ├── docker-compose.yml ├── docs └── DEVELOPMENT.md ├── ide-helper.js ├── jest.config.js ├── jsconfig.json ├── lib ├── action_dispatch │ └── remote_ip_extensions.rb ├── active_record │ ├── batches.rb │ └── database_tasks_extensions.rb ├── assets │ ├── .keep │ ├── wordmark.dark.css │ ├── wordmark.dark.png │ ├── wordmark.light.css │ └── wordmark.light.png ├── chewy │ ├── index_extensions.rb │ ├── settings_extensions.rb │ └── strategy │ │ ├── bypass_with_warning.rb │ │ └── mastodon.rb ├── devise │ └── strategies │ │ ├── two_factor_ldap_authenticatable.rb │ │ └── two_factor_pam_authenticatable.rb ├── elasticsearch │ └── client_extensions.rb ├── exceptions.rb ├── generators │ └── post_deployment_migration │ │ ├── USAGE │ │ ├── post_deployment_migration_generator.rb │ │ └── templates │ │ └── migration.erb ├── linter │ ├── haml_middle_dot.rb │ └── rubocop_middle_dot.rb ├── mastodon │ ├── cli │ │ ├── accounts.rb │ │ ├── base.rb │ │ ├── bubble_domains.rb │ │ ├── cache.rb │ │ ├── canonical_email_blocks.rb │ │ ├── domains.rb │ │ ├── email_domain_blocks.rb │ │ ├── emoji.rb │ │ ├── federation.rb │ │ ├── feeds.rb │ │ ├── ip_blocks.rb │ │ ├── main.rb │ │ ├── maintenance.rb │ │ ├── media.rb │ │ ├── preview_cards.rb │ │ ├── progress_helper.rb │ │ ├── search.rb │ │ ├── settings.rb │ │ ├── statuses.rb │ │ └── upgrade.rb │ ├── database.rb │ ├── feature.rb │ ├── middleware │ │ ├── public_file_server.rb │ │ └── socket_cleanup.rb │ ├── migration_helpers.rb │ ├── migration_warning.rb │ ├── redis_configuration.rb │ ├── sidekiq_middleware.rb │ ├── snowflake.rb │ └── version.rb ├── paperclip │ ├── attachment_extensions.rb │ ├── blurhash_transcoder.rb │ ├── color_extractor.rb │ ├── gif_transcoder.rb │ ├── image_extractor.rb │ ├── lazy_thumbnail.rb │ ├── media_type_spoof_detector_extensions.rb │ ├── qr_decoder.rb │ ├── response_with_limit_adapter.rb │ ├── transcoder.rb │ ├── type_corrector.rb │ ├── url_generator_extensions.rb │ └── vips_lazy_thumbnail.rb ├── premailer_bundled_asset_strategy.rb ├── rails │ └── engine_extensions.rb ├── redis │ └── namespace_extensions.rb ├── sanitize_ext │ └── sanitize_config.rb ├── simple_navigation │ └── item_extensions.rb ├── stoplight │ └── redis_data_store_extensions.rb ├── tasks │ ├── annotate_rb.rake │ ├── assets.rake │ ├── branding.rake │ ├── db.rake │ ├── emojis.rake │ ├── glitchsoc.rake │ ├── icons.rake │ ├── mastodon.rake │ ├── repo.rake │ ├── sidekiq_unique_jobs.rake │ ├── tests.rake │ └── webpacker.rake ├── templates │ └── haml │ │ └── scaffold │ │ └── _form.html.haml.tt ├── terrapin │ └── multi_pipe_extensions.rb └── webpacker │ ├── helper_extensions.rb │ └── manifest_extensions.rb ├── lint-staged.config.js ├── log └── .keep ├── package.json ├── postcss.config.js ├── priv-config ├── public ├── 500.html ├── avatars │ └── original │ │ └── missing.png ├── background-cybre.png ├── badge.png ├── clock.js ├── embed.js ├── emoji │ ├── 0023-fe0f-20e3.svg │ ├── 002a-fe0f-20e3.svg │ ├── 0030-fe0f-20e3.svg │ ├── 0031-fe0f-20e3.svg │ ├── 0032-fe0f-20e3.svg │ ├── 0033-fe0f-20e3.svg │ ├── 0034-fe0f-20e3.svg │ ├── 0035-fe0f-20e3.svg │ ├── 0036-fe0f-20e3.svg │ ├── 0037-fe0f-20e3.svg │ ├── 0038-fe0f-20e3.svg │ ├── 0039-fe0f-20e3.svg │ ├── 00a9-fe0f.svg │ ├── 00ae-fe0f.svg │ ├── 1f004.svg │ ├── 1f0cf.svg │ ├── 1f170-fe0f.svg │ ├── 1f170.svg │ ├── 1f171-fe0f.svg │ ├── 1f171.svg │ ├── 1f17e-fe0f.svg │ ├── 1f17e.svg │ ├── 1f17f-fe0f.svg │ ├── 1f17f.svg │ ├── 1f18e.svg │ ├── 1f191.svg │ ├── 1f192.svg │ ├── 1f193.svg │ ├── 1f194.svg │ ├── 1f195.svg │ ├── 1f196.svg │ ├── 1f197.svg │ ├── 1f198.svg │ ├── 1f199.svg │ ├── 1f19a.svg │ ├── 1f1e6-1f1e8.svg │ ├── 1f1e6-1f1e9.svg │ ├── 1f1e6-1f1ea.svg │ ├── 1f1e6-1f1eb.svg │ ├── 1f1e6-1f1ec.svg │ ├── 1f1e6-1f1ee.svg │ ├── 1f1e6-1f1f1.svg │ ├── 1f1e6-1f1f2.svg │ ├── 1f1e6-1f1f4.svg │ ├── 1f1e6-1f1f6.svg │ ├── 1f1e6-1f1f7.svg │ ├── 1f1e6-1f1f8.svg │ ├── 1f1e6-1f1f9.svg │ ├── 1f1e6-1f1fa.svg │ ├── 1f1e6-1f1fc.svg │ ├── 1f1e6-1f1fd.svg │ ├── 1f1e6-1f1ff.svg │ ├── 1f1e6.svg │ ├── 1f1e7-1f1e6.svg │ ├── 1f1e7-1f1e7.svg │ ├── 1f1e7-1f1e9.svg │ ├── 1f1e7-1f1ea.svg │ ├── 1f1e7-1f1eb.svg │ ├── 1f1e7-1f1ec.svg │ ├── 1f1e7-1f1ed.svg │ ├── 1f1e7-1f1ee.svg │ ├── 1f1e7-1f1ef.svg │ ├── 1f1e7-1f1f1.svg │ ├── 1f1e7-1f1f2.svg │ ├── 1f1e7-1f1f3.svg │ ├── 1f1e7-1f1f4.svg │ ├── 1f1e7-1f1f6.svg │ ├── 1f1e7-1f1f7.svg │ ├── 1f1e7-1f1f8.svg │ ├── 1f1e7-1f1f9.svg │ ├── 1f1e7-1f1fb.svg │ ├── 1f1e7-1f1fc.svg │ ├── 1f1e7-1f1fe.svg │ ├── 1f1e7-1f1ff.svg │ ├── 1f1e7.svg │ ├── 1f1e8-1f1e6.svg │ ├── 1f1e8-1f1e8.svg │ ├── 1f1e8-1f1e9.svg │ ├── 1f1e8-1f1eb.svg │ ├── 1f1e8-1f1ec.svg │ ├── 1f1e8-1f1ed.svg │ ├── 1f1e8-1f1ee.svg │ ├── 1f1e8-1f1f0.svg │ ├── 1f1e8-1f1f1.svg │ ├── 1f1e8-1f1f2.svg │ ├── 1f1e8-1f1f3.svg │ ├── 1f1e8-1f1f4.svg │ ├── 1f1e8-1f1f5.svg │ ├── 1f1e8-1f1f7.svg │ ├── 1f1e8-1f1fa.svg │ ├── 1f1e8-1f1fb.svg │ ├── 1f1e8-1f1fc.svg │ ├── 1f1e8-1f1fd.svg │ ├── 1f1e8-1f1fe.svg │ ├── 1f1e8-1f1ff.svg │ ├── 1f1e8.svg │ ├── 1f1e9-1f1ea.svg │ ├── 1f1e9-1f1ec.svg │ ├── 1f1e9-1f1ef.svg │ ├── 1f1e9-1f1f0.svg │ ├── 1f1e9-1f1f2.svg │ ├── 1f1e9-1f1f4.svg │ ├── 1f1e9-1f1ff.svg │ ├── 1f1e9.svg │ ├── 1f1ea-1f1e6.svg │ ├── 1f1ea-1f1e8.svg │ ├── 1f1ea-1f1ea.svg │ ├── 1f1ea-1f1ec.svg │ ├── 1f1ea-1f1ed.svg │ ├── 1f1ea-1f1f7.svg │ ├── 1f1ea-1f1f8.svg │ ├── 1f1ea-1f1f9.svg │ ├── 1f1ea-1f1fa.svg │ ├── 1f1ea.svg │ ├── 1f1eb-1f1ee.svg │ ├── 1f1eb-1f1ef.svg │ ├── 1f1eb-1f1f0.svg │ ├── 1f1eb-1f1f2.svg │ ├── 1f1eb-1f1f4.svg │ ├── 1f1eb-1f1f7.svg │ ├── 1f1eb.svg │ ├── 1f1ec-1f1e6.svg │ ├── 1f1ec-1f1e7.svg │ ├── 1f1ec-1f1e9.svg │ ├── 1f1ec-1f1ea.svg │ ├── 1f1ec-1f1eb.svg │ ├── 1f1ec-1f1ec.svg │ ├── 1f1ec-1f1ed.svg │ ├── 1f1ec-1f1ee.svg │ ├── 1f1ec-1f1f1.svg │ ├── 1f1ec-1f1f2.svg │ ├── 1f1ec-1f1f3.svg │ ├── 1f1ec-1f1f5.svg │ ├── 1f1ec-1f1f6.svg │ ├── 1f1ec-1f1f7.svg │ ├── 1f1ec-1f1f8.svg │ ├── 1f1ec-1f1f9.svg │ ├── 1f1ec-1f1fa.svg │ ├── 1f1ec-1f1fc.svg │ ├── 1f1ec-1f1fe.svg │ ├── 1f1ec.svg │ ├── 1f1ed-1f1f0.svg │ ├── 1f1ed-1f1f2.svg │ ├── 1f1ed-1f1f3.svg │ ├── 1f1ed-1f1f7.svg │ ├── 1f1ed-1f1f9.svg │ ├── 1f1ed-1f1fa.svg │ ├── 1f1ed.svg │ ├── 1f1ee-1f1e8.svg │ ├── 1f1ee-1f1e9.svg │ ├── 1f1ee-1f1ea.svg │ ├── 1f1ee-1f1f1.svg │ ├── 1f1ee-1f1f2.svg │ ├── 1f1ee-1f1f3.svg │ ├── 1f1ee-1f1f4.svg │ ├── 1f1ee-1f1f6.svg │ ├── 1f1ee-1f1f7.svg │ ├── 1f1ee-1f1f8.svg │ ├── 1f1ee-1f1f9.svg │ ├── 1f1ee.svg │ ├── 1f1ef-1f1ea.svg │ ├── 1f1ef-1f1f2.svg │ ├── 1f1ef-1f1f4.svg │ ├── 1f1ef-1f1f5.svg │ ├── 1f1ef.svg │ ├── 1f1f0-1f1ea.svg │ ├── 1f1f0-1f1ec.svg │ ├── 1f1f0-1f1ed.svg │ ├── 1f1f0-1f1ee.svg │ ├── 1f1f0-1f1f2.svg │ ├── 1f1f0-1f1f3.svg │ ├── 1f1f0-1f1f5.svg │ ├── 1f1f0-1f1f7.svg │ ├── 1f1f0-1f1fc.svg │ ├── 1f1f0-1f1fe.svg │ ├── 1f1f0-1f1ff.svg │ ├── 1f1f0.svg │ ├── 1f1f1-1f1e6.svg │ ├── 1f1f1-1f1e7.svg │ ├── 1f1f1-1f1e8.svg │ ├── 1f1f1-1f1ee.svg │ ├── 1f1f1-1f1f0.svg │ ├── 1f1f1-1f1f7.svg │ ├── 1f1f1-1f1f8.svg │ ├── 1f1f1-1f1f9.svg │ ├── 1f1f1-1f1fa.svg │ ├── 1f1f1-1f1fb.svg │ ├── 1f1f1-1f1fe.svg │ ├── 1f1f1.svg │ ├── 1f1f2-1f1e6.svg │ ├── 1f1f2-1f1e8.svg │ ├── 1f1f2-1f1e9.svg │ ├── 1f1f2-1f1ea.svg │ ├── 1f1f2-1f1eb.svg │ ├── 1f1f2-1f1ec.svg │ ├── 1f1f2-1f1ed.svg │ ├── 1f1f2-1f1f0.svg │ ├── 1f1f2-1f1f1.svg │ ├── 1f1f2-1f1f2.svg │ ├── 1f1f2-1f1f3.svg │ ├── 1f1f2-1f1f4.svg │ ├── 1f1f2-1f1f5.svg │ ├── 1f1f2-1f1f6.svg │ ├── 1f1f2-1f1f7.svg │ ├── 1f1f2-1f1f8.svg │ ├── 1f1f2-1f1f9.svg │ ├── 1f1f2-1f1fa.svg │ ├── 1f1f2-1f1fb.svg │ ├── 1f1f2-1f1fc.svg │ ├── 1f1f2-1f1fd.svg │ ├── 1f1f2-1f1fe.svg │ ├── 1f1f2-1f1ff.svg │ ├── 1f1f2.svg │ ├── 1f1f3-1f1e6.svg │ ├── 1f1f3-1f1e8.svg │ ├── 1f1f3-1f1ea.svg │ ├── 1f1f3-1f1eb.svg │ ├── 1f1f3-1f1ec.svg │ ├── 1f1f3-1f1ee.svg │ ├── 1f1f3-1f1f1.svg │ ├── 1f1f3-1f1f4.svg │ ├── 1f1f3-1f1f5.svg │ ├── 1f1f3-1f1f7.svg │ ├── 1f1f3-1f1fa.svg │ ├── 1f1f3-1f1ff.svg │ ├── 1f1f3.svg │ ├── 1f1f4-1f1f2.svg │ ├── 1f1f4.svg │ ├── 1f1f5-1f1e6.svg │ ├── 1f1f5-1f1ea.svg │ ├── 1f1f5-1f1eb.svg │ ├── 1f1f5-1f1ec.svg │ ├── 1f1f5-1f1ed.svg │ ├── 1f1f5-1f1f0.svg │ ├── 1f1f5-1f1f1.svg │ ├── 1f1f5-1f1f2.svg │ ├── 1f1f5-1f1f3.svg │ ├── 1f1f5-1f1f7.svg │ ├── 1f1f5-1f1f8.svg │ ├── 1f1f5-1f1f9.svg │ ├── 1f1f5-1f1fc.svg │ ├── 1f1f5-1f1fe.svg │ ├── 1f1f5.svg │ ├── 1f1f6-1f1e6.svg │ ├── 1f1f6.svg │ ├── 1f1f7-1f1ea.svg │ ├── 1f1f7-1f1f4.svg │ ├── 1f1f7-1f1f8.svg │ ├── 1f1f7-1f1fa.svg │ ├── 1f1f7-1f1fc.svg │ ├── 1f1f7.svg │ ├── 1f1f8-1f1e6.svg │ ├── 1f1f8-1f1e7.svg │ ├── 1f1f8-1f1e8.svg │ ├── 1f1f8-1f1e9.svg │ ├── 1f1f8-1f1ea.svg │ ├── 1f1f8-1f1ec.svg │ ├── 1f1f8-1f1ed.svg │ ├── 1f1f8-1f1ee.svg │ ├── 1f1f8-1f1ef.svg │ ├── 1f1f8-1f1f0.svg │ ├── 1f1f8-1f1f1.svg │ ├── 1f1f8-1f1f2.svg │ ├── 1f1f8-1f1f3.svg │ ├── 1f1f8-1f1f4.svg │ ├── 1f1f8-1f1f7.svg │ ├── 1f1f8-1f1f8.svg │ ├── 1f1f8-1f1f9.svg │ ├── 1f1f8-1f1fb.svg │ ├── 1f1f8-1f1fd.svg │ ├── 1f1f8-1f1fe.svg │ ├── 1f1f8-1f1ff.svg │ ├── 1f1f8.svg │ ├── 1f1f9-1f1e6.svg │ ├── 1f1f9-1f1e8.svg │ ├── 1f1f9-1f1e9.svg │ ├── 1f1f9-1f1eb.svg │ ├── 1f1f9-1f1ec.svg │ ├── 1f1f9-1f1ed.svg │ ├── 1f1f9-1f1ef.svg │ ├── 1f1f9-1f1f0.svg │ ├── 1f1f9-1f1f1.svg │ ├── 1f1f9-1f1f2.svg │ ├── 1f1f9-1f1f3.svg │ ├── 1f1f9-1f1f4.svg │ ├── 1f1f9-1f1f7.svg │ ├── 1f1f9-1f1f9.svg │ ├── 1f1f9-1f1fb.svg │ ├── 1f1f9-1f1fc.svg │ ├── 1f1f9-1f1ff.svg │ ├── 1f1f9.svg │ ├── 1f1fa-1f1e6.svg │ ├── 1f1fa-1f1ec.svg │ ├── 1f1fa-1f1f2.svg │ ├── 1f1fa-1f1f3.svg │ ├── 1f1fa-1f1f8.svg │ ├── 1f1fa-1f1fe.svg │ ├── 1f1fa-1f1ff.svg │ ├── 1f1fa.svg │ ├── 1f1fb-1f1e6.svg │ ├── 1f1fb-1f1e8.svg │ ├── 1f1fb-1f1ea.svg │ ├── 1f1fb-1f1ec.svg │ ├── 1f1fb-1f1ee.svg │ ├── 1f1fb-1f1f3.svg │ ├── 1f1fb-1f1fa.svg │ ├── 1f1fb.svg │ ├── 1f1fc-1f1eb.svg │ ├── 1f1fc-1f1f8.svg │ ├── 1f1fc.svg │ ├── 1f1fd-1f1f0.svg │ ├── 1f1fd.svg │ ├── 1f1fe-1f1ea.svg │ ├── 1f1fe-1f1f9.svg │ ├── 1f1fe.svg │ ├── 1f1ff-1f1e6.svg │ ├── 1f1ff-1f1f2.svg │ ├── 1f1ff-1f1fc.svg │ ├── 1f1ff.svg │ ├── 1f201.svg │ ├── 1f202-fe0f.svg │ ├── 1f202.svg │ ├── 1f21a.svg │ ├── 1f22f.svg │ ├── 1f232.svg │ ├── 1f233.svg │ ├── 1f234.svg │ ├── 1f235.svg │ ├── 1f236.svg │ ├── 1f237-fe0f.svg │ ├── 1f237.svg │ ├── 1f238.svg │ ├── 1f239.svg │ ├── 1f23a.svg │ ├── 1f250.svg │ ├── 1f251.svg │ ├── 1f300.svg │ ├── 1f301.svg │ ├── 1f302.svg │ ├── 1f303.svg │ ├── 1f304.svg │ ├── 1f305.svg │ ├── 1f306.svg │ ├── 1f307.svg │ ├── 1f308.svg │ ├── 1f309.svg │ ├── 1f30a.svg │ ├── 1f30b.svg │ ├── 1f30c.svg │ ├── 1f30d.svg │ ├── 1f30e.svg │ ├── 1f30f.svg │ ├── 1f310.svg │ ├── 1f311.svg │ ├── 1f312.svg │ ├── 1f313.svg │ ├── 1f314.svg │ ├── 1f315.svg │ ├── 1f316.svg │ ├── 1f317.svg │ ├── 1f318.svg │ ├── 1f319.svg │ ├── 1f31a.svg │ ├── 1f31b.svg │ ├── 1f31c.svg │ ├── 1f31d.svg │ ├── 1f31e.svg │ ├── 1f31f.svg │ ├── 1f320.svg │ ├── 1f321-fe0f.svg │ ├── 1f321.svg │ ├── 1f324-fe0f.svg │ ├── 1f324.svg │ ├── 1f325-fe0f.svg │ ├── 1f325.svg │ ├── 1f326-fe0f.svg │ ├── 1f326.svg │ ├── 1f327-fe0f.svg │ ├── 1f327.svg │ ├── 1f327_border.svg │ ├── 1f328-fe0f.svg │ ├── 1f328.svg │ ├── 1f328_border.svg │ ├── 1f329-fe0f.svg │ ├── 1f329.svg │ ├── 1f329_border.svg │ ├── 1f32a-fe0f.svg │ ├── 1f32a.svg │ ├── 1f32b-fe0f.svg │ ├── 1f32b.svg │ ├── 1f32c-fe0f.svg │ ├── 1f32c.svg │ ├── 1f32d.svg │ ├── 1f32e.svg │ ├── 1f32f.svg │ ├── 1f330.svg │ ├── 1f331.svg │ ├── 1f332.svg │ ├── 1f333.svg │ ├── 1f334.svg │ ├── 1f335.svg │ ├── 1f336-fe0f.svg │ ├── 1f336.svg │ ├── 1f337.svg │ ├── 1f338.svg │ ├── 1f339.svg │ ├── 1f33a.svg │ ├── 1f33b.svg │ ├── 1f33c.svg │ ├── 1f33d.svg │ ├── 1f33e.svg │ ├── 1f33f.svg │ ├── 1f340.svg │ ├── 1f341.svg │ ├── 1f342.svg │ ├── 1f343.svg │ ├── 1f344-200d-1f7eb.svg │ ├── 1f344.svg │ ├── 1f345.svg │ ├── 1f346.svg │ ├── 1f347.svg │ ├── 1f348.svg │ ├── 1f349.svg │ ├── 1f34a.svg │ ├── 1f34b-200d-1f7e9.svg │ ├── 1f34b.svg │ ├── 1f34c.svg │ ├── 1f34d.svg │ ├── 1f34e.svg │ ├── 1f34f.svg │ ├── 1f350.svg │ ├── 1f351.svg │ ├── 1f352.svg │ ├── 1f353.svg │ ├── 1f354.svg │ ├── 1f355.svg │ ├── 1f356.svg │ ├── 1f357.svg │ ├── 1f358.svg │ ├── 1f359.svg │ ├── 1f359_border.svg │ ├── 1f35a.svg │ ├── 1f35a_border.svg │ ├── 1f35b.svg │ ├── 1f35c.svg │ ├── 1f35d.svg │ ├── 1f35e.svg │ ├── 1f35f.svg │ ├── 1f360.svg │ ├── 1f361.svg │ ├── 1f362.svg │ ├── 1f363.svg │ ├── 1f364.svg │ ├── 1f365.svg │ ├── 1f365_border.svg │ ├── 1f366.svg │ ├── 1f367.svg │ ├── 1f368.svg │ ├── 1f369.svg │ ├── 1f36a.svg │ ├── 1f36b.svg │ ├── 1f36c.svg │ ├── 1f36d.svg │ ├── 1f36e.svg │ ├── 1f36f.svg │ ├── 1f370.svg │ ├── 1f371.svg │ ├── 1f372.svg │ ├── 1f373.svg │ ├── 1f373_border.svg │ ├── 1f374.svg │ ├── 1f375.svg │ ├── 1f376.svg │ ├── 1f377.svg │ ├── 1f378.svg │ ├── 1f379.svg │ ├── 1f37a.svg │ ├── 1f37b.svg │ ├── 1f37c.svg │ ├── 1f37d-fe0f.svg │ ├── 1f37d.svg │ ├── 1f37e.svg │ ├── 1f37f.svg │ ├── 1f380.svg │ ├── 1f381.svg │ ├── 1f382.svg │ ├── 1f383.svg │ ├── 1f384.svg │ ├── 1f385-1f3fb.svg │ ├── 1f385-1f3fc.svg │ ├── 1f385-1f3fd.svg │ ├── 1f385-1f3fe.svg │ ├── 1f385-1f3ff.svg │ ├── 1f385.svg │ ├── 1f386.svg │ ├── 1f387.svg │ ├── 1f388.svg │ ├── 1f389.svg │ ├── 1f38a.svg │ ├── 1f38b.svg │ ├── 1f38c.svg │ ├── 1f38d.svg │ ├── 1f38e.svg │ ├── 1f38f.svg │ ├── 1f390.svg │ ├── 1f391.svg │ ├── 1f392.svg │ ├── 1f393.svg │ ├── 1f393_border.svg │ ├── 1f396-fe0f.svg │ ├── 1f396.svg │ ├── 1f397-fe0f.svg │ ├── 1f397.svg │ ├── 1f399-fe0f.svg │ ├── 1f399.svg │ ├── 1f39a-fe0f.svg │ ├── 1f39a.svg │ ├── 1f39b-fe0f.svg │ ├── 1f39b.svg │ ├── 1f39e-fe0f.svg │ ├── 1f39e.svg │ ├── 1f39f-fe0f.svg │ ├── 1f39f.svg │ ├── 1f3a0.svg │ ├── 1f3a1.svg │ ├── 1f3a2.svg │ ├── 1f3a3.svg │ ├── 1f3a4.svg │ ├── 1f3a4_border.svg │ ├── 1f3a5.svg │ ├── 1f3a5_border.svg │ ├── 1f3a6.svg │ ├── 1f3a7.svg │ ├── 1f3a8.svg │ ├── 1f3a9.svg │ ├── 1f3a9_border.svg │ ├── 1f3aa.svg │ ├── 1f3ab.svg │ ├── 1f3ac.svg │ ├── 1f3ad.svg │ ├── 1f3ae.svg │ ├── 1f3ae_border.svg │ ├── 1f3af.svg │ ├── 1f3b0.svg │ ├── 1f3b1.svg │ ├── 1f3b1_border.svg │ ├── 1f3b2.svg │ ├── 1f3b3.svg │ ├── 1f3b3_border.svg │ ├── 1f3b4.svg │ ├── 1f3b5.svg │ ├── 1f3b6.svg │ ├── 1f3b7.svg │ ├── 1f3b8.svg │ ├── 1f3b9.svg │ ├── 1f3ba.svg │ ├── 1f3bb.svg │ ├── 1f3bc.svg │ ├── 1f3bc_border.svg │ ├── 1f3bd.svg │ ├── 1f3be.svg │ ├── 1f3bf.svg │ ├── 1f3c0.svg │ ├── 1f3c1.svg │ ├── 1f3c2-1f3fb.svg │ ├── 1f3c2-1f3fc.svg │ ├── 1f3c2-1f3fd.svg │ ├── 1f3c2-1f3fe.svg │ ├── 1f3c2-1f3ff.svg │ ├── 1f3c2.svg │ ├── 1f3c3-1f3fb-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3fb-200d-2640-fe0f.svg │ ├── 1f3c3-1f3fb-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3fb-200d-2642-fe0f.svg │ ├── 1f3c3-1f3fb-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3fb.svg │ ├── 1f3c3-1f3fc-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3fc-200d-2640-fe0f.svg │ ├── 1f3c3-1f3fc-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3fc-200d-2642-fe0f.svg │ ├── 1f3c3-1f3fc-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3fc.svg │ ├── 1f3c3-1f3fd-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3fd-200d-2640-fe0f.svg │ ├── 1f3c3-1f3fd-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3fd-200d-2642-fe0f.svg │ ├── 1f3c3-1f3fd-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3fd.svg │ ├── 1f3c3-1f3fe-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3fe-200d-2640-fe0f.svg │ ├── 1f3c3-1f3fe-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3fe-200d-2642-fe0f.svg │ ├── 1f3c3-1f3fe-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3fe.svg │ ├── 1f3c3-1f3ff-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3ff-200d-2640-fe0f.svg │ ├── 1f3c3-1f3ff-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3ff-200d-2642-fe0f.svg │ ├── 1f3c3-1f3ff-200d-27a1-fe0f.svg │ ├── 1f3c3-1f3ff.svg │ ├── 1f3c3-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f3c3-200d-2640-fe0f.svg │ ├── 1f3c3-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f3c3-200d-2642-fe0f.svg │ ├── 1f3c3-200d-27a1-fe0f.svg │ ├── 1f3c3.svg │ ├── 1f3c4-1f3fb-200d-2640-fe0f.svg │ ├── 1f3c4-1f3fb-200d-2642-fe0f.svg │ ├── 1f3c4-1f3fb.svg │ ├── 1f3c4-1f3fc-200d-2640-fe0f.svg │ ├── 1f3c4-1f3fc-200d-2642-fe0f.svg │ ├── 1f3c4-1f3fc.svg │ ├── 1f3c4-1f3fd-200d-2640-fe0f.svg │ ├── 1f3c4-1f3fd-200d-2642-fe0f.svg │ ├── 1f3c4-1f3fd.svg │ ├── 1f3c4-1f3fe-200d-2640-fe0f.svg │ ├── 1f3c4-1f3fe-200d-2642-fe0f.svg │ ├── 1f3c4-1f3fe.svg │ ├── 1f3c4-1f3ff-200d-2640-fe0f.svg │ ├── 1f3c4-1f3ff-200d-2642-fe0f.svg │ ├── 1f3c4-1f3ff.svg │ ├── 1f3c4-200d-2640-fe0f.svg │ ├── 1f3c4-200d-2642-fe0f.svg │ ├── 1f3c4.svg │ ├── 1f3c5.svg │ ├── 1f3c6.svg │ ├── 1f3c7-1f3fb.svg │ ├── 1f3c7-1f3fc.svg │ ├── 1f3c7-1f3fd.svg │ ├── 1f3c7-1f3fe.svg │ ├── 1f3c7-1f3ff.svg │ ├── 1f3c7.svg │ ├── 1f3c8.svg │ ├── 1f3c9.svg │ ├── 1f3ca-1f3fb-200d-2640-fe0f.svg │ ├── 1f3ca-1f3fb-200d-2642-fe0f.svg │ ├── 1f3ca-1f3fb.svg │ ├── 1f3ca-1f3fc-200d-2640-fe0f.svg │ ├── 1f3ca-1f3fc-200d-2642-fe0f.svg │ ├── 1f3ca-1f3fc.svg │ ├── 1f3ca-1f3fd-200d-2640-fe0f.svg │ ├── 1f3ca-1f3fd-200d-2642-fe0f.svg │ ├── 1f3ca-1f3fd.svg │ ├── 1f3ca-1f3fe-200d-2640-fe0f.svg │ ├── 1f3ca-1f3fe-200d-2642-fe0f.svg │ ├── 1f3ca-1f3fe.svg │ ├── 1f3ca-1f3ff-200d-2640-fe0f.svg │ ├── 1f3ca-1f3ff-200d-2642-fe0f.svg │ ├── 1f3ca-1f3ff.svg │ ├── 1f3ca-200d-2640-fe0f.svg │ ├── 1f3ca-200d-2642-fe0f.svg │ ├── 1f3ca.svg │ ├── 1f3cb-1f3fb-200d-2640-fe0f.svg │ ├── 1f3cb-1f3fb-200d-2642-fe0f.svg │ ├── 1f3cb-1f3fb.svg │ ├── 1f3cb-1f3fc-200d-2640-fe0f.svg │ ├── 1f3cb-1f3fc-200d-2642-fe0f.svg │ ├── 1f3cb-1f3fc.svg │ ├── 1f3cb-1f3fd-200d-2640-fe0f.svg │ ├── 1f3cb-1f3fd-200d-2642-fe0f.svg │ ├── 1f3cb-1f3fd.svg │ ├── 1f3cb-1f3fe-200d-2640-fe0f.svg │ ├── 1f3cb-1f3fe-200d-2642-fe0f.svg │ ├── 1f3cb-1f3fe.svg │ ├── 1f3cb-1f3ff-200d-2640-fe0f.svg │ ├── 1f3cb-1f3ff-200d-2642-fe0f.svg │ ├── 1f3cb-1f3ff.svg │ ├── 1f3cb-fe0f-200d-2640-fe0f.svg │ ├── 1f3cb-fe0f-200d-2642-fe0f.svg │ ├── 1f3cb-fe0f.svg │ ├── 1f3cb.svg │ ├── 1f3cc-1f3fb-200d-2640-fe0f.svg │ ├── 1f3cc-1f3fb-200d-2642-fe0f.svg │ ├── 1f3cc-1f3fb.svg │ ├── 1f3cc-1f3fc-200d-2640-fe0f.svg │ ├── 1f3cc-1f3fc-200d-2642-fe0f.svg │ ├── 1f3cc-1f3fc.svg │ ├── 1f3cc-1f3fd-200d-2640-fe0f.svg │ ├── 1f3cc-1f3fd-200d-2642-fe0f.svg │ ├── 1f3cc-1f3fd.svg │ ├── 1f3cc-1f3fe-200d-2640-fe0f.svg │ ├── 1f3cc-1f3fe-200d-2642-fe0f.svg │ ├── 1f3cc-1f3fe.svg │ ├── 1f3cc-1f3ff-200d-2640-fe0f.svg │ ├── 1f3cc-1f3ff-200d-2642-fe0f.svg │ ├── 1f3cc-1f3ff.svg │ ├── 1f3cc-fe0f-200d-2640-fe0f.svg │ ├── 1f3cc-fe0f-200d-2642-fe0f.svg │ ├── 1f3cc-fe0f.svg │ ├── 1f3cc.svg │ ├── 1f3cd-fe0f.svg │ ├── 1f3cd.svg │ ├── 1f3ce-fe0f.svg │ ├── 1f3ce.svg │ ├── 1f3cf.svg │ ├── 1f3d0.svg │ ├── 1f3d0_border.svg │ ├── 1f3d1.svg │ ├── 1f3d2.svg │ ├── 1f3d3.svg │ ├── 1f3d4-fe0f.svg │ ├── 1f3d4.svg │ ├── 1f3d5-fe0f.svg │ ├── 1f3d5.svg │ ├── 1f3d6-fe0f.svg │ ├── 1f3d6.svg │ ├── 1f3d7-fe0f.svg │ ├── 1f3d7.svg │ ├── 1f3d8-fe0f.svg │ ├── 1f3d8.svg │ ├── 1f3d9-fe0f.svg │ ├── 1f3d9.svg │ ├── 1f3da-fe0f.svg │ ├── 1f3da.svg │ ├── 1f3db-fe0f.svg │ ├── 1f3db.svg │ ├── 1f3dc-fe0f.svg │ ├── 1f3dc.svg │ ├── 1f3dd-fe0f.svg │ ├── 1f3dd.svg │ ├── 1f3de-fe0f.svg │ ├── 1f3de.svg │ ├── 1f3df-fe0f.svg │ ├── 1f3df.svg │ ├── 1f3e0.svg │ ├── 1f3e1.svg │ ├── 1f3e2.svg │ ├── 1f3e3.svg │ ├── 1f3e4.svg │ ├── 1f3e5.svg │ ├── 1f3e6.svg │ ├── 1f3e7.svg │ ├── 1f3e8.svg │ ├── 1f3e9.svg │ ├── 1f3ea.svg │ ├── 1f3eb.svg │ ├── 1f3ec.svg │ ├── 1f3ed.svg │ ├── 1f3ee.svg │ ├── 1f3ef.svg │ ├── 1f3f0.svg │ ├── 1f3f3-fe0f-200d-1f308.svg │ ├── 1f3f3-fe0f-200d-26a7-fe0f.svg │ ├── 1f3f3-fe0f.svg │ ├── 1f3f3.svg │ ├── 1f3f3_border.svg │ ├── 1f3f4-200d-2620-fe0f.svg │ ├── 1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.svg │ ├── 1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.svg │ ├── 1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.svg │ ├── 1f3f4.svg │ ├── 1f3f4_border.svg │ ├── 1f3f5-fe0f.svg │ ├── 1f3f5.svg │ ├── 1f3f7-fe0f.svg │ ├── 1f3f7.svg │ ├── 1f3f8.svg │ ├── 1f3f9.svg │ ├── 1f3fa.svg │ ├── 1f3fb.svg │ ├── 1f3fc.svg │ ├── 1f3fd.svg │ ├── 1f3fe.svg │ ├── 1f3ff.svg │ ├── 1f400.svg │ ├── 1f401.svg │ ├── 1f402.svg │ ├── 1f403.svg │ ├── 1f403_border.svg │ ├── 1f404.svg │ ├── 1f405.svg │ ├── 1f406.svg │ ├── 1f407.svg │ ├── 1f408-200d-2b1b.svg │ ├── 1f408.svg │ ├── 1f409.svg │ ├── 1f40a.svg │ ├── 1f40b.svg │ ├── 1f40c.svg │ ├── 1f40d.svg │ ├── 1f40e.svg │ ├── 1f40f.svg │ ├── 1f40f_border.svg │ ├── 1f410.svg │ ├── 1f410_border.svg │ ├── 1f411.svg │ ├── 1f411_border.svg │ ├── 1f412.svg │ ├── 1f413.svg │ ├── 1f413_border.svg │ ├── 1f414.svg │ ├── 1f414_border.svg │ ├── 1f415-200d-1f9ba.svg │ ├── 1f415.svg │ ├── 1f416.svg │ ├── 1f417.svg │ ├── 1f418.svg │ ├── 1f419.svg │ ├── 1f41a.svg │ ├── 1f41b.svg │ ├── 1f41c.svg │ ├── 1f41c_border.svg │ ├── 1f41d.svg │ ├── 1f41e.svg │ ├── 1f41e_border.svg │ ├── 1f41f.svg │ ├── 1f420.svg │ ├── 1f421.svg │ ├── 1f422.svg │ ├── 1f423.svg │ ├── 1f424.svg │ ├── 1f425.svg │ ├── 1f426-200d-1f525.svg │ ├── 1f426-200d-2b1b.svg │ ├── 1f426-200d-2b1b_border.svg │ ├── 1f426.svg │ ├── 1f427.svg │ ├── 1f428.svg │ ├── 1f429.svg │ ├── 1f42a.svg │ ├── 1f42b.svg │ ├── 1f42c.svg │ ├── 1f42d.svg │ ├── 1f42e.svg │ ├── 1f42f.svg │ ├── 1f430.svg │ ├── 1f431.svg │ ├── 1f432.svg │ ├── 1f433.svg │ ├── 1f434.svg │ ├── 1f435.svg │ ├── 1f436.svg │ ├── 1f437.svg │ ├── 1f438.svg │ ├── 1f439.svg │ ├── 1f43a.svg │ ├── 1f43b-200d-2744-fe0f.svg │ ├── 1f43b.svg │ ├── 1f43c.svg │ ├── 1f43d.svg │ ├── 1f43e.svg │ ├── 1f43f-fe0f.svg │ ├── 1f43f.svg │ ├── 1f440.svg │ ├── 1f440_border.svg │ ├── 1f441-200d-1f5e8.svg │ ├── 1f441-fe0f-200d-1f5e8-fe0f.svg │ ├── 1f441-fe0f.svg │ ├── 1f441.svg │ ├── 1f442-1f3fb.svg │ ├── 1f442-1f3fc.svg │ ├── 1f442-1f3fd.svg │ ├── 1f442-1f3fe.svg │ ├── 1f442-1f3ff.svg │ ├── 1f442.svg │ ├── 1f443-1f3fb.svg │ ├── 1f443-1f3fc.svg │ ├── 1f443-1f3fd.svg │ ├── 1f443-1f3fe.svg │ ├── 1f443-1f3ff.svg │ ├── 1f443.svg │ ├── 1f444.svg │ ├── 1f445.svg │ ├── 1f446-1f3fb.svg │ ├── 1f446-1f3fc.svg │ ├── 1f446-1f3fd.svg │ ├── 1f446-1f3fe.svg │ ├── 1f446-1f3ff.svg │ ├── 1f446.svg │ ├── 1f446svg │ ├── 1f447-1f3fb.svg │ ├── 1f447-1f3fc.svg │ ├── 1f447-1f3fd.svg │ ├── 1f447-1f3fe.svg │ ├── 1f447-1f3ff.svg │ ├── 1f447.svg │ ├── 1f447svg │ ├── 1f448-1f3fb.svg │ ├── 1f448-1f3fc.svg │ ├── 1f448-1f3fd.svg │ ├── 1f448-1f3fe.svg │ ├── 1f448-1f3ff.svg │ ├── 1f448.svg │ ├── 1f448svg │ ├── 1f449-1f3fb.svg │ ├── 1f449-1f3fc.svg │ ├── 1f449-1f3fd.svg │ ├── 1f449-1f3fe.svg │ ├── 1f449-1f3ff.svg │ ├── 1f449.svg │ ├── 1f449svg │ ├── 1f44a-1f3fb.svg │ ├── 1f44a-1f3fc.svg │ ├── 1f44a-1f3fd.svg │ ├── 1f44a-1f3fe.svg │ ├── 1f44a-1f3ff.svg │ ├── 1f44a.svg │ ├── 1f44b-1f3fb.svg │ ├── 1f44b-1f3fc.svg │ ├── 1f44b-1f3fd.svg │ ├── 1f44b-1f3fe.svg │ ├── 1f44b-1f3ff.svg │ ├── 1f44b.svg │ ├── 1f44c-1f3fb.svg │ ├── 1f44c-1f3fc.svg │ ├── 1f44c-1f3fd.svg │ ├── 1f44c-1f3fe.svg │ ├── 1f44c-1f3ff.svg │ ├── 1f44c.svg │ ├── 1f44d-1f3fb.svg │ ├── 1f44d-1f3fc.svg │ ├── 1f44d-1f3fd.svg │ ├── 1f44d-1f3fe.svg │ ├── 1f44d-1f3ff.svg │ ├── 1f44d.svg │ ├── 1f44e-1f3fb.svg │ ├── 1f44e-1f3fc.svg │ ├── 1f44e-1f3fd.svg │ ├── 1f44e-1f3fe.svg │ ├── 1f44e-1f3ff.svg │ ├── 1f44e.svg │ ├── 1f44f-1f3fb.svg │ ├── 1f44f-1f3fc.svg │ ├── 1f44f-1f3fd.svg │ ├── 1f44f-1f3fe.svg │ ├── 1f44f-1f3ff.svg │ ├── 1f44f.svg │ ├── 1f450-1f3fb.svg │ ├── 1f450-1f3fc.svg │ ├── 1f450-1f3fd.svg │ ├── 1f450-1f3fe.svg │ ├── 1f450-1f3ff.svg │ ├── 1f450.svg │ ├── 1f451.svg │ ├── 1f452.svg │ ├── 1f453.svg │ ├── 1f454.svg │ ├── 1f455.svg │ ├── 1f456.svg │ ├── 1f457.svg │ ├── 1f458.svg │ ├── 1f459.svg │ ├── 1f45a.svg │ ├── 1f45b.svg │ ├── 1f45c.svg │ ├── 1f45d.svg │ ├── 1f45e.svg │ ├── 1f45f.svg │ ├── 1f460.svg │ ├── 1f461.svg │ ├── 1f462.svg │ ├── 1f463.svg │ ├── 1f464.svg │ ├── 1f464_border.svg │ ├── 1f465.svg │ ├── 1f465_border.svg │ ├── 1f466-1f3fb.svg │ ├── 1f466-1f3fc.svg │ ├── 1f466-1f3fd.svg │ ├── 1f466-1f3fe.svg │ ├── 1f466-1f3ff.svg │ ├── 1f466.svg │ ├── 1f466svg │ ├── 1f467-1f3fb.svg │ ├── 1f467-1f3fc.svg │ ├── 1f467-1f3fd.svg │ ├── 1f467-1f3fe.svg │ ├── 1f467-1f3ff.svg │ ├── 1f467.svg │ ├── 1f468-1f3fb-200d-1f33e.svg │ ├── 1f468-1f3fb-200d-1f373.svg │ ├── 1f468-1f3fb-200d-1f37c.svg │ ├── 1f468-1f3fb-200d-1f384.svg │ ├── 1f468-1f3fb-200d-1f393.svg │ ├── 1f468-1f3fb-200d-1f3a4.svg │ ├── 1f468-1f3fb-200d-1f3a8.svg │ ├── 1f468-1f3fb-200d-1f3eb.svg │ ├── 1f468-1f3fb-200d-1f3ed.svg │ ├── 1f468-1f3fb-200d-1f4bb.svg │ ├── 1f468-1f3fb-200d-1f4bc.svg │ ├── 1f468-1f3fb-200d-1f527.svg │ ├── 1f468-1f3fb-200d-1f52c.svg │ ├── 1f468-1f3fb-200d-1f680.svg │ ├── 1f468-1f3fb-200d-1f692.svg │ ├── 1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg │ ├── 1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg │ ├── 1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg │ ├── 1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg │ ├── 1f468-1f3fb-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f468-1f3fb-200d-1f9af.svg │ ├── 1f468-1f3fb-200d-1f9b0.svg │ ├── 1f468-1f3fb-200d-1f9b1.svg │ ├── 1f468-1f3fb-200d-1f9b2.svg │ ├── 1f468-1f3fb-200d-1f9b3.svg │ ├── 1f468-1f3fb-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f468-1f3fb-200d-1f9bc.svg │ ├── 1f468-1f3fb-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f468-1f3fb-200d-1f9bd.svg │ ├── 1f468-1f3fb-200d-2695-fe0f.svg │ ├── 1f468-1f3fb-200d-2696-fe0f.svg │ ├── 1f468-1f3fb-200d-2708-fe0f.svg │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.svg │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.svg │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.svg │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.svg │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.svg │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg │ ├── 1f468-1f3fb.svg │ ├── 1f468-1f3fc-200d-1f33e.svg │ ├── 1f468-1f3fc-200d-1f373.svg │ ├── 1f468-1f3fc-200d-1f37c.svg │ ├── 1f468-1f3fc-200d-1f384.svg │ ├── 1f468-1f3fc-200d-1f393.svg │ ├── 1f468-1f3fc-200d-1f3a4.svg │ ├── 1f468-1f3fc-200d-1f3a8.svg │ ├── 1f468-1f3fc-200d-1f3eb.svg │ ├── 1f468-1f3fc-200d-1f3ed.svg │ ├── 1f468-1f3fc-200d-1f4bb.svg │ ├── 1f468-1f3fc-200d-1f4bc.svg │ ├── 1f468-1f3fc-200d-1f527.svg │ ├── 1f468-1f3fc-200d-1f52c.svg │ ├── 1f468-1f3fc-200d-1f680.svg │ ├── 1f468-1f3fc-200d-1f692.svg │ ├── 1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg │ ├── 1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg │ ├── 1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg │ ├── 1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg │ ├── 1f468-1f3fc-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f468-1f3fc-200d-1f9af.svg │ ├── 1f468-1f3fc-200d-1f9b0.svg │ ├── 1f468-1f3fc-200d-1f9b1.svg │ ├── 1f468-1f3fc-200d-1f9b2.svg │ ├── 1f468-1f3fc-200d-1f9b3.svg │ ├── 1f468-1f3fc-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f468-1f3fc-200d-1f9bc.svg │ ├── 1f468-1f3fc-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f468-1f3fc-200d-1f9bd.svg │ ├── 1f468-1f3fc-200d-2695-fe0f.svg │ ├── 1f468-1f3fc-200d-2696-fe0f.svg │ ├── 1f468-1f3fc-200d-2708-fe0f.svg │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.svg │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.svg │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.svg │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.svg │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.svg │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg │ ├── 1f468-1f3fc.svg │ ├── 1f468-1f3fd-200d-1f33e.svg │ ├── 1f468-1f3fd-200d-1f373.svg │ ├── 1f468-1f3fd-200d-1f37c.svg │ ├── 1f468-1f3fd-200d-1f384.svg │ ├── 1f468-1f3fd-200d-1f393.svg │ ├── 1f468-1f3fd-200d-1f3a4.svg │ ├── 1f468-1f3fd-200d-1f3a8.svg │ ├── 1f468-1f3fd-200d-1f3eb.svg │ ├── 1f468-1f3fd-200d-1f3ed.svg │ ├── 1f468-1f3fd-200d-1f4bb.svg │ ├── 1f468-1f3fd-200d-1f4bc.svg │ ├── 1f468-1f3fd-200d-1f527.svg │ ├── 1f468-1f3fd-200d-1f52c.svg │ ├── 1f468-1f3fd-200d-1f680.svg │ ├── 1f468-1f3fd-200d-1f692.svg │ ├── 1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg │ ├── 1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg │ ├── 1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg │ ├── 1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg │ ├── 1f468-1f3fd-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f468-1f3fd-200d-1f9af.svg │ ├── 1f468-1f3fd-200d-1f9b0.svg │ ├── 1f468-1f3fd-200d-1f9b1.svg │ ├── 1f468-1f3fd-200d-1f9b2.svg │ ├── 1f468-1f3fd-200d-1f9b3.svg │ ├── 1f468-1f3fd-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f468-1f3fd-200d-1f9bc.svg │ ├── 1f468-1f3fd-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f468-1f3fd-200d-1f9bd.svg │ ├── 1f468-1f3fd-200d-2695-fe0f.svg │ ├── 1f468-1f3fd-200d-2696-fe0f.svg │ ├── 1f468-1f3fd-200d-2708-fe0f.svg │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.svg │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.svg │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.svg │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.svg │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.svg │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg │ ├── 1f468-1f3fd.svg │ ├── 1f468-1f3fe-200d-1f33e.svg │ ├── 1f468-1f3fe-200d-1f373.svg │ ├── 1f468-1f3fe-200d-1f37c.svg │ ├── 1f468-1f3fe-200d-1f384.svg │ ├── 1f468-1f3fe-200d-1f393.svg │ ├── 1f468-1f3fe-200d-1f3a4.svg │ ├── 1f468-1f3fe-200d-1f3a8.svg │ ├── 1f468-1f3fe-200d-1f3eb.svg │ ├── 1f468-1f3fe-200d-1f3ed.svg │ ├── 1f468-1f3fe-200d-1f4bb.svg │ ├── 1f468-1f3fe-200d-1f4bc.svg │ ├── 1f468-1f3fe-200d-1f527.svg │ ├── 1f468-1f3fe-200d-1f52c.svg │ ├── 1f468-1f3fe-200d-1f680.svg │ ├── 1f468-1f3fe-200d-1f692.svg │ ├── 1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg │ ├── 1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg │ ├── 1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg │ ├── 1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg │ ├── 1f468-1f3fe-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f468-1f3fe-200d-1f9af.svg │ ├── 1f468-1f3fe-200d-1f9b0.svg │ ├── 1f468-1f3fe-200d-1f9b1.svg │ ├── 1f468-1f3fe-200d-1f9b2.svg │ ├── 1f468-1f3fe-200d-1f9b3.svg │ ├── 1f468-1f3fe-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f468-1f3fe-200d-1f9bc.svg │ ├── 1f468-1f3fe-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f468-1f3fe-200d-1f9bd.svg │ ├── 1f468-1f3fe-200d-2695-fe0f.svg │ ├── 1f468-1f3fe-200d-2696-fe0f.svg │ ├── 1f468-1f3fe-200d-2708-fe0f.svg │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.svg │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.svg │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.svg │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.svg │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.svg │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg │ ├── 1f468-1f3fe.svg │ ├── 1f468-1f3ff-200d-1f33e.svg │ ├── 1f468-1f3ff-200d-1f373.svg │ ├── 1f468-1f3ff-200d-1f37c.svg │ ├── 1f468-1f3ff-200d-1f384.svg │ ├── 1f468-1f3ff-200d-1f393.svg │ ├── 1f468-1f3ff-200d-1f3a4.svg │ ├── 1f468-1f3ff-200d-1f3a8.svg │ ├── 1f468-1f3ff-200d-1f3eb.svg │ ├── 1f468-1f3ff-200d-1f3ed.svg │ ├── 1f468-1f3ff-200d-1f4bb.svg │ ├── 1f468-1f3ff-200d-1f4bc.svg │ ├── 1f468-1f3ff-200d-1f527.svg │ ├── 1f468-1f3ff-200d-1f52c.svg │ ├── 1f468-1f3ff-200d-1f680.svg │ ├── 1f468-1f3ff-200d-1f692.svg │ ├── 1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg │ ├── 1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg │ ├── 1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg │ ├── 1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg │ ├── 1f468-1f3ff-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f468-1f3ff-200d-1f9af.svg │ ├── 1f468-1f3ff-200d-1f9b0.svg │ ├── 1f468-1f3ff-200d-1f9b1.svg │ ├── 1f468-1f3ff-200d-1f9b2.svg │ ├── 1f468-1f3ff-200d-1f9b3.svg │ ├── 1f468-1f3ff-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f468-1f3ff-200d-1f9bc.svg │ ├── 1f468-1f3ff-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f468-1f3ff-200d-1f9bd.svg │ ├── 1f468-1f3ff-200d-2695-fe0f.svg │ ├── 1f468-1f3ff-200d-2696-fe0f.svg │ ├── 1f468-1f3ff-200d-2708-fe0f.svg │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.svg │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.svg │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.svg │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.svg │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.svg │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg │ ├── 1f468-1f3ff.svg │ ├── 1f468-200d-1f33e.svg │ ├── 1f468-200d-1f373.svg │ ├── 1f468-200d-1f37c.svg │ ├── 1f468-200d-1f384.svg │ ├── 1f468-200d-1f393.svg │ ├── 1f468-200d-1f3a4.svg │ ├── 1f468-200d-1f3a8.svg │ ├── 1f468-200d-1f3eb.svg │ ├── 1f468-200d-1f3ed.svg │ ├── 1f468-200d-1f466-200d-1f466.svg │ ├── 1f468-200d-1f466.svg │ ├── 1f468-200d-1f467-200d-1f466.svg │ ├── 1f468-200d-1f467-200d-1f467.svg │ ├── 1f468-200d-1f467.svg │ ├── 1f468-200d-1f468-200d-1f466-200d-1f466.svg │ ├── 1f468-200d-1f468-200d-1f466.svg │ ├── 1f468-200d-1f468-200d-1f467-200d-1f466.svg │ ├── 1f468-200d-1f468-200d-1f467-200d-1f467.svg │ ├── 1f468-200d-1f468-200d-1f467.svg │ ├── 1f468-200d-1f469-200d-1f466-200d-1f466.svg │ ├── 1f468-200d-1f469-200d-1f466.svg │ ├── 1f468-200d-1f469-200d-1f467-200d-1f466.svg │ ├── 1f468-200d-1f469-200d-1f467-200d-1f467.svg │ ├── 1f468-200d-1f469-200d-1f467.svg │ ├── 1f468-200d-1f4bb.svg │ ├── 1f468-200d-1f4bc.svg │ ├── 1f468-200d-1f527.svg │ ├── 1f468-200d-1f52c.svg │ ├── 1f468-200d-1f680.svg │ ├── 1f468-200d-1f692.svg │ ├── 1f468-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f468-200d-1f9af.svg │ ├── 1f468-200d-1f9b0.svg │ ├── 1f468-200d-1f9b1.svg │ ├── 1f468-200d-1f9b2.svg │ ├── 1f468-200d-1f9b3.svg │ ├── 1f468-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f468-200d-1f9bc.svg │ ├── 1f468-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f468-200d-1f9bd.svg │ ├── 1f468-200d-2695-fe0f.svg │ ├── 1f468-200d-2696-fe0f.svg │ ├── 1f468-200d-2708-fe0f.svg │ ├── 1f468-200d-2764-fe0f-200d-1f468.svg │ ├── 1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg │ ├── 1f468.svg │ ├── 1f469-1f3fb-200d-1f33e.svg │ ├── 1f469-1f3fb-200d-1f373.svg │ ├── 1f469-1f3fb-200d-1f37c.svg │ ├── 1f469-1f3fb-200d-1f384.svg │ ├── 1f469-1f3fb-200d-1f393.svg │ ├── 1f469-1f3fb-200d-1f3a4.svg │ ├── 1f469-1f3fb-200d-1f3a8.svg │ ├── 1f469-1f3fb-200d-1f3eb.svg │ ├── 1f469-1f3fb-200d-1f3ed.svg │ ├── 1f469-1f3fb-200d-1f4bb.svg │ ├── 1f469-1f3fb-200d-1f4bc.svg │ ├── 1f469-1f3fb-200d-1f527.svg │ ├── 1f469-1f3fb-200d-1f52c.svg │ ├── 1f469-1f3fb-200d-1f680.svg │ ├── 1f469-1f3fb-200d-1f692.svg │ ├── 1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg │ ├── 1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg │ ├── 1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg │ ├── 1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg │ ├── 1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.svg │ ├── 1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.svg │ ├── 1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.svg │ ├── 1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.svg │ ├── 1f469-1f3fb-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f469-1f3fb-200d-1f9af.svg │ ├── 1f469-1f3fb-200d-1f9b0.svg │ ├── 1f469-1f3fb-200d-1f9b1.svg │ ├── 1f469-1f3fb-200d-1f9b2.svg │ ├── 1f469-1f3fb-200d-1f9b3.svg │ ├── 1f469-1f3fb-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f469-1f3fb-200d-1f9bc.svg │ ├── 1f469-1f3fb-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f469-1f3fb-200d-1f9bd.svg │ ├── 1f469-1f3fb-200d-2695-fe0f.svg │ ├── 1f469-1f3fb-200d-2696-fe0f.svg │ ├── 1f469-1f3fb-200d-2708-fe0f.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fb.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fc.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fd.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fe.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3ff.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg │ ├── 1f469-1f3fb.svg │ ├── 1f469-1f3fc-200d-1f33e.svg │ ├── 1f469-1f3fc-200d-1f373.svg │ ├── 1f469-1f3fc-200d-1f37c.svg │ ├── 1f469-1f3fc-200d-1f384.svg │ ├── 1f469-1f3fc-200d-1f393.svg │ ├── 1f469-1f3fc-200d-1f3a4.svg │ ├── 1f469-1f3fc-200d-1f3a8.svg │ ├── 1f469-1f3fc-200d-1f3eb.svg │ ├── 1f469-1f3fc-200d-1f3ed.svg │ ├── 1f469-1f3fc-200d-1f4bb.svg │ ├── 1f469-1f3fc-200d-1f4bc.svg │ ├── 1f469-1f3fc-200d-1f527.svg │ ├── 1f469-1f3fc-200d-1f52c.svg │ ├── 1f469-1f3fc-200d-1f680.svg │ ├── 1f469-1f3fc-200d-1f692.svg │ ├── 1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg │ ├── 1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg │ ├── 1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg │ ├── 1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg │ ├── 1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg │ ├── 1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.svg │ ├── 1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.svg │ ├── 1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.svg │ ├── 1f469-1f3fc-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f469-1f3fc-200d-1f9af.svg │ ├── 1f469-1f3fc-200d-1f9b0.svg │ ├── 1f469-1f3fc-200d-1f9b1.svg │ ├── 1f469-1f3fc-200d-1f9b2.svg │ ├── 1f469-1f3fc-200d-1f9b3.svg │ ├── 1f469-1f3fc-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f469-1f3fc-200d-1f9bc.svg │ ├── 1f469-1f3fc-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f469-1f3fc-200d-1f9bd.svg │ ├── 1f469-1f3fc-200d-2695-fe0f.svg │ ├── 1f469-1f3fc-200d-2696-fe0f.svg │ ├── 1f469-1f3fc-200d-2708-fe0f.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fb.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fc.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fd.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fe.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3ff.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg │ ├── 1f469-1f3fc.svg │ ├── 1f469-1f3fd-200d-1f33e.svg │ ├── 1f469-1f3fd-200d-1f373.svg │ ├── 1f469-1f3fd-200d-1f37c.svg │ ├── 1f469-1f3fd-200d-1f384.svg │ ├── 1f469-1f3fd-200d-1f393.svg │ ├── 1f469-1f3fd-200d-1f3a4.svg │ ├── 1f469-1f3fd-200d-1f3a8.svg │ ├── 1f469-1f3fd-200d-1f3eb.svg │ ├── 1f469-1f3fd-200d-1f3ed.svg │ ├── 1f469-1f3fd-200d-1f4bb.svg │ ├── 1f469-1f3fd-200d-1f4bc.svg │ ├── 1f469-1f3fd-200d-1f527.svg │ ├── 1f469-1f3fd-200d-1f52c.svg │ ├── 1f469-1f3fd-200d-1f680.svg │ ├── 1f469-1f3fd-200d-1f692.svg │ ├── 1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg │ ├── 1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg │ ├── 1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg │ ├── 1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg │ ├── 1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg │ ├── 1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg │ ├── 1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.svg │ ├── 1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.svg │ ├── 1f469-1f3fd-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f469-1f3fd-200d-1f9af.svg │ ├── 1f469-1f3fd-200d-1f9b0.svg │ ├── 1f469-1f3fd-200d-1f9b1.svg │ ├── 1f469-1f3fd-200d-1f9b2.svg │ ├── 1f469-1f3fd-200d-1f9b3.svg │ ├── 1f469-1f3fd-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f469-1f3fd-200d-1f9bc.svg │ ├── 1f469-1f3fd-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f469-1f3fd-200d-1f9bd.svg │ ├── 1f469-1f3fd-200d-2695-fe0f.svg │ ├── 1f469-1f3fd-200d-2696-fe0f.svg │ ├── 1f469-1f3fd-200d-2708-fe0f.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fb.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fc.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fd.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fe.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3ff.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg │ ├── 1f469-1f3fd.svg │ ├── 1f469-1f3fe-200d-1f33e.svg │ ├── 1f469-1f3fe-200d-1f373.svg │ ├── 1f469-1f3fe-200d-1f37c.svg │ ├── 1f469-1f3fe-200d-1f384.svg │ ├── 1f469-1f3fe-200d-1f393.svg │ ├── 1f469-1f3fe-200d-1f3a4.svg │ ├── 1f469-1f3fe-200d-1f3a8.svg │ ├── 1f469-1f3fe-200d-1f3eb.svg │ ├── 1f469-1f3fe-200d-1f3ed.svg │ ├── 1f469-1f3fe-200d-1f4bb.svg │ ├── 1f469-1f3fe-200d-1f4bc.svg │ ├── 1f469-1f3fe-200d-1f527.svg │ ├── 1f469-1f3fe-200d-1f52c.svg │ ├── 1f469-1f3fe-200d-1f680.svg │ ├── 1f469-1f3fe-200d-1f692.svg │ ├── 1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg │ ├── 1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg │ ├── 1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg │ ├── 1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg │ ├── 1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg │ ├── 1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg │ ├── 1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg │ ├── 1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.svg │ ├── 1f469-1f3fe-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f469-1f3fe-200d-1f9af.svg │ ├── 1f469-1f3fe-200d-1f9b0.svg │ ├── 1f469-1f3fe-200d-1f9b1.svg │ ├── 1f469-1f3fe-200d-1f9b2.svg │ ├── 1f469-1f3fe-200d-1f9b3.svg │ ├── 1f469-1f3fe-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f469-1f3fe-200d-1f9bc.svg │ ├── 1f469-1f3fe-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f469-1f3fe-200d-1f9bd.svg │ ├── 1f469-1f3fe-200d-2695-fe0f.svg │ ├── 1f469-1f3fe-200d-2696-fe0f.svg │ ├── 1f469-1f3fe-200d-2708-fe0f.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fb.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fc.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fd.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fe.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3ff.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg │ ├── 1f469-1f3fe.svg │ ├── 1f469-1f3ff-200d-1f33e.svg │ ├── 1f469-1f3ff-200d-1f373.svg │ ├── 1f469-1f3ff-200d-1f37c.svg │ ├── 1f469-1f3ff-200d-1f384.svg │ ├── 1f469-1f3ff-200d-1f393.svg │ ├── 1f469-1f3ff-200d-1f3a4.svg │ ├── 1f469-1f3ff-200d-1f3a8.svg │ ├── 1f469-1f3ff-200d-1f3eb.svg │ ├── 1f469-1f3ff-200d-1f3ed.svg │ ├── 1f469-1f3ff-200d-1f4bb.svg │ ├── 1f469-1f3ff-200d-1f4bc.svg │ ├── 1f469-1f3ff-200d-1f527.svg │ ├── 1f469-1f3ff-200d-1f52c.svg │ ├── 1f469-1f3ff-200d-1f680.svg │ ├── 1f469-1f3ff-200d-1f692.svg │ ├── 1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg │ ├── 1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg │ ├── 1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg │ ├── 1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg │ ├── 1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg │ ├── 1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg │ ├── 1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg │ ├── 1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg │ ├── 1f469-1f3ff-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f469-1f3ff-200d-1f9af.svg │ ├── 1f469-1f3ff-200d-1f9b0.svg │ ├── 1f469-1f3ff-200d-1f9b1.svg │ ├── 1f469-1f3ff-200d-1f9b2.svg │ ├── 1f469-1f3ff-200d-1f9b3.svg │ ├── 1f469-1f3ff-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f469-1f3ff-200d-1f9bc.svg │ ├── 1f469-1f3ff-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f469-1f3ff-200d-1f9bd.svg │ ├── 1f469-1f3ff-200d-2695-fe0f.svg │ ├── 1f469-1f3ff-200d-2696-fe0f.svg │ ├── 1f469-1f3ff-200d-2708-fe0f.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fb.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fc.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fd.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fe.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3ff.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg │ ├── 1f469-1f3ff.svg │ ├── 1f469-200d-1f33e.svg │ ├── 1f469-200d-1f373.svg │ ├── 1f469-200d-1f37c.svg │ ├── 1f469-200d-1f384.svg │ ├── 1f469-200d-1f393.svg │ ├── 1f469-200d-1f3a4.svg │ ├── 1f469-200d-1f3a8.svg │ ├── 1f469-200d-1f3eb.svg │ ├── 1f469-200d-1f3ed.svg │ ├── 1f469-200d-1f466-200d-1f466.svg │ ├── 1f469-200d-1f466.svg │ ├── 1f469-200d-1f467-200d-1f466.svg │ ├── 1f469-200d-1f467-200d-1f467.svg │ ├── 1f469-200d-1f467.svg │ ├── 1f469-200d-1f469-200d-1f466-200d-1f466.svg │ ├── 1f469-200d-1f469-200d-1f466.svg │ ├── 1f469-200d-1f469-200d-1f467-200d-1f466.svg │ ├── 1f469-200d-1f469-200d-1f467-200d-1f467.svg │ ├── 1f469-200d-1f469-200d-1f467.svg │ ├── 1f469-200d-1f4bb.svg │ ├── 1f469-200d-1f4bc.svg │ ├── 1f469-200d-1f527.svg │ ├── 1f469-200d-1f52c.svg │ ├── 1f469-200d-1f680.svg │ ├── 1f469-200d-1f692.svg │ ├── 1f469-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f469-200d-1f9af.svg │ ├── 1f469-200d-1f9b0.svg │ ├── 1f469-200d-1f9b1.svg │ ├── 1f469-200d-1f9b2.svg │ ├── 1f469-200d-1f9b3.svg │ ├── 1f469-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f469-200d-1f9bc.svg │ ├── 1f469-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f469-200d-1f9bd.svg │ ├── 1f469-200d-2695-fe0f.svg │ ├── 1f469-200d-2696-fe0f.svg │ ├── 1f469-200d-2708-fe0f.svg │ ├── 1f469-200d-2764-fe0f-200d-1f468.svg │ ├── 1f469-200d-2764-fe0f-200d-1f469.svg │ ├── 1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg │ ├── 1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg │ ├── 1f469.svg │ ├── 1f46a.svg │ ├── 1f46b-1f3fb.svg │ ├── 1f46b-1f3fc.svg │ ├── 1f46b-1f3fd.svg │ ├── 1f46b-1f3fe.svg │ ├── 1f46b-1f3ff.svg │ ├── 1f46b.svg │ ├── 1f46c-1f3fb.svg │ ├── 1f46c-1f3fc.svg │ ├── 1f46c-1f3fd.svg │ ├── 1f46c-1f3fe.svg │ ├── 1f46c-1f3ff.svg │ ├── 1f46c.svg │ ├── 1f46d-1f3fb.svg │ ├── 1f46d-1f3fc.svg │ ├── 1f46d-1f3fd.svg │ ├── 1f46d-1f3fe.svg │ ├── 1f46d-1f3ff.svg │ ├── 1f46d.svg │ ├── 1f46e-1f3fb-200d-2640-fe0f.svg │ ├── 1f46e-1f3fb-200d-2642-fe0f.svg │ ├── 1f46e-1f3fb.svg │ ├── 1f46e-1f3fc-200d-2640-fe0f.svg │ ├── 1f46e-1f3fc-200d-2642-fe0f.svg │ ├── 1f46e-1f3fc.svg │ ├── 1f46e-1f3fd-200d-2640-fe0f.svg │ ├── 1f46e-1f3fd-200d-2642-fe0f.svg │ ├── 1f46e-1f3fd.svg │ ├── 1f46e-1f3fe-200d-2640-fe0f.svg │ ├── 1f46e-1f3fe-200d-2642-fe0f.svg │ ├── 1f46e-1f3fe.svg │ ├── 1f46e-1f3ff-200d-2640-fe0f.svg │ ├── 1f46e-1f3ff-200d-2642-fe0f.svg │ ├── 1f46e-1f3ff.svg │ ├── 1f46e-200d-2640-fe0f.svg │ ├── 1f46e-200d-2642-fe0f.svg │ ├── 1f46e.svg │ ├── 1f46f-200d-2640-fe0f.svg │ ├── 1f46f-200d-2642-fe0f.svg │ ├── 1f46f.svg │ ├── 1f470-1f3fb-200d-2640-fe0f.svg │ ├── 1f470-1f3fb-200d-2642-fe0f.svg │ ├── 1f470-1f3fb.svg │ ├── 1f470-1f3fc-200d-2640-fe0f.svg │ ├── 1f470-1f3fc-200d-2642-fe0f.svg │ ├── 1f470-1f3fc.svg │ ├── 1f470-1f3fd-200d-2640-fe0f.svg │ ├── 1f470-1f3fd-200d-2642-fe0f.svg │ ├── 1f470-1f3fd.svg │ ├── 1f470-1f3fe-200d-2640-fe0f.svg │ ├── 1f470-1f3fe-200d-2642-fe0f.svg │ ├── 1f470-1f3fe.svg │ ├── 1f470-1f3ff-200d-2640-fe0f.svg │ ├── 1f470-1f3ff-200d-2642-fe0f.svg │ ├── 1f470-1f3ff.svg │ ├── 1f470-200d-2640-fe0f.svg │ ├── 1f470-200d-2642-fe0f.svg │ ├── 1f470.svg │ ├── 1f471-1f3fb-200d-2640-fe0f.svg │ ├── 1f471-1f3fb-200d-2642-fe0f.svg │ ├── 1f471-1f3fb.svg │ ├── 1f471-1f3fc-200d-2640-fe0f.svg │ ├── 1f471-1f3fc-200d-2642-fe0f.svg │ ├── 1f471-1f3fc.svg │ ├── 1f471-1f3fd-200d-2640-fe0f.svg │ ├── 1f471-1f3fd-200d-2642-fe0f.svg │ ├── 1f471-1f3fd.svg │ ├── 1f471-1f3fe-200d-2640-fe0f.svg │ ├── 1f471-1f3fe-200d-2642-fe0f.svg │ ├── 1f471-1f3fe.svg │ ├── 1f471-1f3ff-200d-2640-fe0f.svg │ ├── 1f471-1f3ff-200d-2642-fe0f.svg │ ├── 1f471-1f3ff.svg │ ├── 1f471-200d-2640-fe0f.svg │ ├── 1f471-200d-2642-fe0f.svg │ ├── 1f471.svg │ ├── 1f472-1f3fb.svg │ ├── 1f472-1f3fc.svg │ ├── 1f472-1f3fd.svg │ ├── 1f472-1f3fe.svg │ ├── 1f472-1f3ff.svg │ ├── 1f472.svg │ ├── 1f473-1f3fb-200d-2640-fe0f.svg │ ├── 1f473-1f3fb-200d-2642-fe0f.svg │ ├── 1f473-1f3fb.svg │ ├── 1f473-1f3fc-200d-2640-fe0f.svg │ ├── 1f473-1f3fc-200d-2642-fe0f.svg │ ├── 1f473-1f3fc.svg │ ├── 1f473-1f3fd-200d-2640-fe0f.svg │ ├── 1f473-1f3fd-200d-2642-fe0f.svg │ ├── 1f473-1f3fd.svg │ ├── 1f473-1f3fe-200d-2640-fe0f.svg │ ├── 1f473-1f3fe-200d-2642-fe0f.svg │ ├── 1f473-1f3fe.svg │ ├── 1f473-1f3ff-200d-2640-fe0f.svg │ ├── 1f473-1f3ff-200d-2642-fe0f.svg │ ├── 1f473-1f3ff.svg │ ├── 1f473-200d-2640-fe0f.svg │ ├── 1f473-200d-2642-fe0f.svg │ ├── 1f473.svg │ ├── 1f474-1f3fb.svg │ ├── 1f474-1f3fc.svg │ ├── 1f474-1f3fd.svg │ ├── 1f474-1f3fe.svg │ ├── 1f474-1f3ff.svg │ ├── 1f474.svg │ ├── 1f475-1f3fb.svg │ ├── 1f475-1f3fc.svg │ ├── 1f475-1f3fd.svg │ ├── 1f475-1f3fe.svg │ ├── 1f475-1f3ff.svg │ ├── 1f475.svg │ ├── 1f476-1f3fb.svg │ ├── 1f476-1f3fc.svg │ ├── 1f476-1f3fd.svg │ ├── 1f476-1f3fe.svg │ ├── 1f476-1f3ff.svg │ ├── 1f476.svg │ ├── 1f476svg │ ├── 1f477-1f3fb-200d-2640-fe0f.svg │ ├── 1f477-1f3fb-200d-2642-fe0f.svg │ ├── 1f477-1f3fb.svg │ ├── 1f477-1f3fc-200d-2640-fe0f.svg │ ├── 1f477-1f3fc-200d-2642-fe0f.svg │ ├── 1f477-1f3fc.svg │ ├── 1f477-1f3fd-200d-2640-fe0f.svg │ ├── 1f477-1f3fd-200d-2642-fe0f.svg │ ├── 1f477-1f3fd.svg │ ├── 1f477-1f3fe-200d-2640-fe0f.svg │ ├── 1f477-1f3fe-200d-2642-fe0f.svg │ ├── 1f477-1f3fe.svg │ ├── 1f477-1f3ff-200d-2640-fe0f.svg │ ├── 1f477-1f3ff-200d-2642-fe0f.svg │ ├── 1f477-1f3ff.svg │ ├── 1f477-200d-2640-fe0f.svg │ ├── 1f477-200d-2642-fe0f.svg │ ├── 1f477.svg │ ├── 1f478-1f3fb.svg │ ├── 1f478-1f3fc.svg │ ├── 1f478-1f3fd.svg │ ├── 1f478-1f3fe.svg │ ├── 1f478-1f3ff.svg │ ├── 1f478.svg │ ├── 1f479.svg │ ├── 1f47a.svg │ ├── 1f47b.svg │ ├── 1f47b_border.svg │ ├── 1f47c-1f3fb.svg │ ├── 1f47c-1f3fc.svg │ ├── 1f47c-1f3fd.svg │ ├── 1f47c-1f3fe.svg │ ├── 1f47c-1f3ff.svg │ ├── 1f47c.svg │ ├── 1f47csvg │ ├── 1f47d.svg │ ├── 1f47d_border.svg │ ├── 1f47e.svg │ ├── 1f47f.svg │ ├── 1f480.svg │ ├── 1f480_border.svg │ ├── 1f481-1f3fb-200d-2640-fe0f.svg │ ├── 1f481-1f3fb-200d-2642-fe0f.svg │ ├── 1f481-1f3fb.svg │ ├── 1f481-1f3fc-200d-2640-fe0f.svg │ ├── 1f481-1f3fc-200d-2642-fe0f.svg │ ├── 1f481-1f3fc.svg │ ├── 1f481-1f3fd-200d-2640-fe0f.svg │ ├── 1f481-1f3fd-200d-2642-fe0f.svg │ ├── 1f481-1f3fd.svg │ ├── 1f481-1f3fe-200d-2640-fe0f.svg │ ├── 1f481-1f3fe-200d-2642-fe0f.svg │ ├── 1f481-1f3fe.svg │ ├── 1f481-1f3ff-200d-2640-fe0f.svg │ ├── 1f481-1f3ff-200d-2642-fe0f.svg │ ├── 1f481-1f3ff.svg │ ├── 1f481-200d-2640-fe0f.svg │ ├── 1f481-200d-2642-fe0f.svg │ ├── 1f481.svg │ ├── 1f482-1f3fb-200d-2640-fe0f.svg │ ├── 1f482-1f3fb-200d-2640-fe0f_border.svg │ ├── 1f482-1f3fb-200d-2642-fe0f.svg │ ├── 1f482-1f3fb-200d-2642-fe0f_border.svg │ ├── 1f482-1f3fb.svg │ ├── 1f482-1f3fb_border.svg │ ├── 1f482-1f3fc-200d-2640-fe0f.svg │ ├── 1f482-1f3fc-200d-2640-fe0f_border.svg │ ├── 1f482-1f3fc-200d-2642-fe0f.svg │ ├── 1f482-1f3fc-200d-2642-fe0f_border.svg │ ├── 1f482-1f3fc.svg │ ├── 1f482-1f3fc_border.svg │ ├── 1f482-1f3fd-200d-2640-fe0f.svg │ ├── 1f482-1f3fd-200d-2640-fe0f_border.svg │ ├── 1f482-1f3fd-200d-2642-fe0f.svg │ ├── 1f482-1f3fd-200d-2642-fe0f_border.svg │ ├── 1f482-1f3fd.svg │ ├── 1f482-1f3fd_border.svg │ ├── 1f482-1f3fe-200d-2640-fe0f.svg │ ├── 1f482-1f3fe-200d-2640-fe0f_border.svg │ ├── 1f482-1f3fe-200d-2642-fe0f.svg │ ├── 1f482-1f3fe-200d-2642-fe0f_border.svg │ ├── 1f482-1f3fe.svg │ ├── 1f482-1f3fe_border.svg │ ├── 1f482-1f3ff-200d-2640-fe0f.svg │ ├── 1f482-1f3ff-200d-2640-fe0f_border.svg │ ├── 1f482-1f3ff-200d-2642-fe0f.svg │ ├── 1f482-1f3ff-200d-2642-fe0f_border.svg │ ├── 1f482-1f3ff.svg │ ├── 1f482-1f3ff_border.svg │ ├── 1f482-200d-2640-fe0f.svg │ ├── 1f482-200d-2640-fe0f_border.svg │ ├── 1f482-200d-2642-fe0f.svg │ ├── 1f482-200d-2642-fe0f_border.svg │ ├── 1f482.svg │ ├── 1f482_border.svg │ ├── 1f483-1f3fb.svg │ ├── 1f483-1f3fc.svg │ ├── 1f483-1f3fd.svg │ ├── 1f483-1f3fe.svg │ ├── 1f483-1f3ff.svg │ ├── 1f483.svg │ ├── 1f484.svg │ ├── 1f485-1f3fb.svg │ ├── 1f485-1f3fc.svg │ ├── 1f485-1f3fd.svg │ ├── 1f485-1f3fe.svg │ ├── 1f485-1f3ff.svg │ ├── 1f485.svg │ ├── 1f486-1f3fb-200d-2640-fe0f.svg │ ├── 1f486-1f3fb-200d-2642-fe0f.svg │ ├── 1f486-1f3fb.svg │ ├── 1f486-1f3fc-200d-2640-fe0f.svg │ ├── 1f486-1f3fc-200d-2642-fe0f.svg │ ├── 1f486-1f3fc.svg │ ├── 1f486-1f3fd-200d-2640-fe0f.svg │ ├── 1f486-1f3fd-200d-2642-fe0f.svg │ ├── 1f486-1f3fd.svg │ ├── 1f486-1f3fe-200d-2640-fe0f.svg │ ├── 1f486-1f3fe-200d-2642-fe0f.svg │ ├── 1f486-1f3fe.svg │ ├── 1f486-1f3ff-200d-2640-fe0f.svg │ ├── 1f486-1f3ff-200d-2642-fe0f.svg │ ├── 1f486-1f3ff.svg │ ├── 1f486-200d-2640-fe0f.svg │ ├── 1f486-200d-2642-fe0f.svg │ ├── 1f486.svg │ ├── 1f487-1f3fb-200d-2640-fe0f.svg │ ├── 1f487-1f3fb-200d-2642-fe0f.svg │ ├── 1f487-1f3fb.svg │ ├── 1f487-1f3fc-200d-2640-fe0f.svg │ ├── 1f487-1f3fc-200d-2642-fe0f.svg │ ├── 1f487-1f3fc.svg │ ├── 1f487-1f3fd-200d-2640-fe0f.svg │ ├── 1f487-1f3fd-200d-2642-fe0f.svg │ ├── 1f487-1f3fd.svg │ ├── 1f487-1f3fe-200d-2640-fe0f.svg │ ├── 1f487-1f3fe-200d-2642-fe0f.svg │ ├── 1f487-1f3fe.svg │ ├── 1f487-1f3ff-200d-2640-fe0f.svg │ ├── 1f487-1f3ff-200d-2642-fe0f.svg │ ├── 1f487-1f3ff.svg │ ├── 1f487-200d-2640-fe0f.svg │ ├── 1f487-200d-2642-fe0f.svg │ ├── 1f487.svg │ ├── 1f488.svg │ ├── 1f489.svg │ ├── 1f48a.svg │ ├── 1f48b.svg │ ├── 1f48c.svg │ ├── 1f48d.svg │ ├── 1f48e.svg │ ├── 1f48f-1f3fb.svg │ ├── 1f48f-1f3fc.svg │ ├── 1f48f-1f3fd.svg │ ├── 1f48f-1f3fe.svg │ ├── 1f48f-1f3ff.svg │ ├── 1f48f.svg │ ├── 1f490.svg │ ├── 1f491-1f3fb.svg │ ├── 1f491-1f3fc.svg │ ├── 1f491-1f3fd.svg │ ├── 1f491-1f3fe.svg │ ├── 1f491-1f3ff.svg │ ├── 1f491.svg │ ├── 1f492.svg │ ├── 1f493.svg │ ├── 1f494.svg │ ├── 1f495.svg │ ├── 1f496.svg │ ├── 1f497.svg │ ├── 1f498.svg │ ├── 1f499.svg │ ├── 1f49a.svg │ ├── 1f49b.svg │ ├── 1f49c.svg │ ├── 1f49d.svg │ ├── 1f49e.svg │ ├── 1f49f.svg │ ├── 1f4a0.svg │ ├── 1f4a1.svg │ ├── 1f4a2.svg │ ├── 1f4a3.svg │ ├── 1f4a3_border.svg │ ├── 1f4a4.svg │ ├── 1f4a5.svg │ ├── 1f4a6.svg │ ├── 1f4a7.svg │ ├── 1f4a8.svg │ ├── 1f4a8_border.svg │ ├── 1f4a9.svg │ ├── 1f4aa-1f3fb.svg │ ├── 1f4aa-1f3fc.svg │ ├── 1f4aa-1f3fd.svg │ ├── 1f4aa-1f3fe.svg │ ├── 1f4aa-1f3ff.svg │ ├── 1f4aa.svg │ ├── 1f4ab.svg │ ├── 1f4ac.svg │ ├── 1f4ac_border.svg │ ├── 1f4ad.svg │ ├── 1f4ad_border.svg │ ├── 1f4ae.svg │ ├── 1f4af.svg │ ├── 1f4b0.svg │ ├── 1f4b1.svg │ ├── 1f4b1_border.svg │ ├── 1f4b2.svg │ ├── 1f4b2_border.svg │ ├── 1f4b3.svg │ ├── 1f4b4.svg │ ├── 1f4b5.svg │ ├── 1f4b6.svg │ ├── 1f4b7.svg │ ├── 1f4b8.svg │ ├── 1f4b9.svg │ ├── 1f4ba.svg │ ├── 1f4bb.svg │ ├── 1f4bc.svg │ ├── 1f4bd.svg │ ├── 1f4be.svg │ ├── 1f4bf.svg │ ├── 1f4c0.svg │ ├── 1f4c1.svg │ ├── 1f4c2.svg │ ├── 1f4c3.svg │ ├── 1f4c3_border.svg │ ├── 1f4c4.svg │ ├── 1f4c5.svg │ ├── 1f4c6.svg │ ├── 1f4c7.svg │ ├── 1f4c8.svg │ ├── 1f4c9.svg │ ├── 1f4ca.svg │ ├── 1f4cb.svg │ ├── 1f4cc.svg │ ├── 1f4cd.svg │ ├── 1f4ce.svg │ ├── 1f4cf.svg │ ├── 1f4d0.svg │ ├── 1f4d1.svg │ ├── 1f4d2.svg │ ├── 1f4d3.svg │ ├── 1f4d4.svg │ ├── 1f4d5.svg │ ├── 1f4d6.svg │ ├── 1f4d7.svg │ ├── 1f4d8.svg │ ├── 1f4d9.svg │ ├── 1f4da.svg │ ├── 1f4db.svg │ ├── 1f4dc.svg │ ├── 1f4dd.svg │ ├── 1f4de.svg │ ├── 1f4de_border.svg │ ├── 1f4df.svg │ ├── 1f4e0.svg │ ├── 1f4e1.svg │ ├── 1f4e2.svg │ ├── 1f4e3.svg │ ├── 1f4e4.svg │ ├── 1f4e5.svg │ ├── 1f4e6.svg │ ├── 1f4e7.svg │ ├── 1f4e8.svg │ ├── 1f4e9.svg │ ├── 1f4ea.svg │ ├── 1f4eb.svg │ ├── 1f4ec.svg │ ├── 1f4ed.svg │ ├── 1f4ee.svg │ ├── 1f4ef.svg │ ├── 1f4f0.svg │ ├── 1f4f1.svg │ ├── 1f4f1_border.svg │ ├── 1f4f2.svg │ ├── 1f4f2_border.svg │ ├── 1f4f3.svg │ ├── 1f4f4.svg │ ├── 1f4f5.svg │ ├── 1f4f6.svg │ ├── 1f4f7.svg │ ├── 1f4f7_border.svg │ ├── 1f4f8.svg │ ├── 1f4f8_border.svg │ ├── 1f4f9.svg │ ├── 1f4f9_border.svg │ ├── 1f4fa.svg │ ├── 1f4fb.svg │ ├── 1f4fc.svg │ ├── 1f4fc_border.svg │ ├── 1f4fd-fe0f.svg │ ├── 1f4fd.svg │ ├── 1f4fd_border.svg │ ├── 1f4ff.svg │ ├── 1f500.svg │ ├── 1f501.svg │ ├── 1f502.svg │ ├── 1f503.svg │ ├── 1f504.svg │ ├── 1f505.svg │ ├── 1f506.svg │ ├── 1f507.svg │ ├── 1f507_border.svg │ ├── 1f508.svg │ ├── 1f508_border.svg │ ├── 1f509.svg │ ├── 1f509_border.svg │ ├── 1f50a.svg │ ├── 1f50a_border.svg │ ├── 1f50b.svg │ ├── 1f50c.svg │ ├── 1f50c_border.svg │ ├── 1f50d.svg │ ├── 1f50e.svg │ ├── 1f50f.svg │ ├── 1f510.svg │ ├── 1f511.svg │ ├── 1f512.svg │ ├── 1f513.svg │ ├── 1f514.svg │ ├── 1f515.svg │ ├── 1f516.svg │ ├── 1f517.svg │ ├── 1f518.svg │ ├── 1f519.svg │ ├── 1f519_border.svg │ ├── 1f51a.svg │ ├── 1f51a_border.svg │ ├── 1f51b.svg │ ├── 1f51b_border.svg │ ├── 1f51c.svg │ ├── 1f51c_border.svg │ ├── 1f51d.svg │ ├── 1f51d_border.svg │ ├── 1f51e.svg │ ├── 1f51f.svg │ ├── 1f520.svg │ ├── 1f521.svg │ ├── 1f522.svg │ ├── 1f523.svg │ ├── 1f524.svg │ ├── 1f525.svg │ ├── 1f526.svg │ ├── 1f527.svg │ ├── 1f528.svg │ ├── 1f529.svg │ ├── 1f52a.svg │ ├── 1f52a_border.svg │ ├── 1f52b.svg │ ├── 1f52c.svg │ ├── 1f52d.svg │ ├── 1f52e.svg │ ├── 1f52f.svg │ ├── 1f530.svg │ ├── 1f531.svg │ ├── 1f532.svg │ ├── 1f533.svg │ ├── 1f534.svg │ ├── 1f535.svg │ ├── 1f536.svg │ ├── 1f537.svg │ ├── 1f538.svg │ ├── 1f539.svg │ ├── 1f53a.svg │ ├── 1f53b.svg │ ├── 1f53c.svg │ ├── 1f53d.svg │ ├── 1f549-fe0f.svg │ ├── 1f549.svg │ ├── 1f54a-fe0f.svg │ ├── 1f54a.svg │ ├── 1f54a_border.svg │ ├── 1f54b.svg │ ├── 1f54b_border.svg │ ├── 1f54c.svg │ ├── 1f54d.svg │ ├── 1f54e.svg │ ├── 1f550.svg │ ├── 1f551.svg │ ├── 1f552.svg │ ├── 1f553.svg │ ├── 1f554.svg │ ├── 1f555.svg │ ├── 1f556.svg │ ├── 1f557.svg │ ├── 1f558.svg │ ├── 1f559.svg │ ├── 1f55a.svg │ ├── 1f55b.svg │ ├── 1f55c.svg │ ├── 1f55d.svg │ ├── 1f55e.svg │ ├── 1f55f.svg │ ├── 1f560.svg │ ├── 1f561.svg │ ├── 1f562.svg │ ├── 1f563.svg │ ├── 1f564.svg │ ├── 1f565.svg │ ├── 1f566.svg │ ├── 1f567.svg │ ├── 1f56f-fe0f.svg │ ├── 1f56f.svg │ ├── 1f570-fe0f.svg │ ├── 1f570.svg │ ├── 1f573-fe0f.svg │ ├── 1f573.svg │ ├── 1f573_border.svg │ ├── 1f574-1f3fb-200d-2640-fe0f.svg │ ├── 1f574-1f3fb-200d-2642-fe0f.svg │ ├── 1f574-1f3fb.svg │ ├── 1f574-1f3fc-200d-2640-fe0f.svg │ ├── 1f574-1f3fc-200d-2642-fe0f.svg │ ├── 1f574-1f3fc.svg │ ├── 1f574-1f3fd-200d-2640-fe0f.svg │ ├── 1f574-1f3fd-200d-2642-fe0f.svg │ ├── 1f574-1f3fd.svg │ ├── 1f574-1f3fe-200d-2640-fe0f.svg │ ├── 1f574-1f3fe-200d-2642-fe0f.svg │ ├── 1f574-1f3fe.svg │ ├── 1f574-1f3ff-200d-2640-fe0f.svg │ ├── 1f574-1f3ff-200d-2642-fe0f.svg │ ├── 1f574-1f3ff.svg │ ├── 1f574-fe0f-200d-2640-fe0f.svg │ ├── 1f574-fe0f-200d-2642-fe0f.svg │ ├── 1f574-fe0f.svg │ ├── 1f574.svg │ ├── 1f575-1f3fb-200d-2640-fe0f.svg │ ├── 1f575-1f3fb-200d-2642-fe0f.svg │ ├── 1f575-1f3fb.svg │ ├── 1f575-1f3fc-200d-2640-fe0f.svg │ ├── 1f575-1f3fc-200d-2642-fe0f.svg │ ├── 1f575-1f3fc.svg │ ├── 1f575-1f3fd-200d-2640-fe0f.svg │ ├── 1f575-1f3fd-200d-2642-fe0f.svg │ ├── 1f575-1f3fd.svg │ ├── 1f575-1f3fe-200d-2640-fe0f.svg │ ├── 1f575-1f3fe-200d-2642-fe0f.svg │ ├── 1f575-1f3fe.svg │ ├── 1f575-1f3ff-200d-2640-fe0f.svg │ ├── 1f575-1f3ff-200d-2642-fe0f.svg │ ├── 1f575-1f3ff.svg │ ├── 1f575-fe0f-200d-2640-fe0f.svg │ ├── 1f575-fe0f-200d-2642-fe0f.svg │ ├── 1f575-fe0f.svg │ ├── 1f575.svg │ ├── 1f576-fe0f.svg │ ├── 1f576.svg │ ├── 1f576_border.svg │ ├── 1f577-fe0f.svg │ ├── 1f577.svg │ ├── 1f577_border.svg │ ├── 1f578-fe0f.svg │ ├── 1f578.svg │ ├── 1f579-fe0f.svg │ ├── 1f579.svg │ ├── 1f579_border.svg │ ├── 1f57a-1f3fb.svg │ ├── 1f57a-1f3fc.svg │ ├── 1f57a-1f3fd.svg │ ├── 1f57a-1f3fe.svg │ ├── 1f57a-1f3ff.svg │ ├── 1f57a.svg │ ├── 1f57a_border.svg │ ├── 1f587-fe0f.svg │ ├── 1f587.svg │ ├── 1f58a-fe0f.svg │ ├── 1f58a.svg │ ├── 1f58a_border.svg │ ├── 1f58b-fe0f.svg │ ├── 1f58b.svg │ ├── 1f58b_border.svg │ ├── 1f58c-fe0f.svg │ ├── 1f58c.svg │ ├── 1f58d-fe0f.svg │ ├── 1f58d.svg │ ├── 1f590-1f3fb.svg │ ├── 1f590-1f3fc.svg │ ├── 1f590-1f3fd.svg │ ├── 1f590-1f3fe.svg │ ├── 1f590-1f3ff.svg │ ├── 1f590-fe0f.svg │ ├── 1f590.svg │ ├── 1f595-1f3fb.svg │ ├── 1f595-1f3fc.svg │ ├── 1f595-1f3fd.svg │ ├── 1f595-1f3fe.svg │ ├── 1f595-1f3ff.svg │ ├── 1f595.svg │ ├── 1f596-1f3fb.svg │ ├── 1f596-1f3fc.svg │ ├── 1f596-1f3fd.svg │ ├── 1f596-1f3fe.svg │ ├── 1f596-1f3ff.svg │ ├── 1f596.svg │ ├── 1f5a4.svg │ ├── 1f5a4_border.svg │ ├── 1f5a5-fe0f.svg │ ├── 1f5a5.svg │ ├── 1f5a8-fe0f.svg │ ├── 1f5a8.svg │ ├── 1f5b1-fe0f.svg │ ├── 1f5b1.svg │ ├── 1f5b2-fe0f.svg │ ├── 1f5b2.svg │ ├── 1f5bc-fe0f.svg │ ├── 1f5bc.svg │ ├── 1f5c2-fe0f.svg │ ├── 1f5c2.svg │ ├── 1f5c3-fe0f.svg │ ├── 1f5c3.svg │ ├── 1f5c4-fe0f.svg │ ├── 1f5c4.svg │ ├── 1f5d1-fe0f.svg │ ├── 1f5d1.svg │ ├── 1f5d2-fe0f.svg │ ├── 1f5d2.svg │ ├── 1f5d3-fe0f.svg │ ├── 1f5d3.svg │ ├── 1f5dc-fe0f.svg │ ├── 1f5dc.svg │ ├── 1f5dd-fe0f.svg │ ├── 1f5dd.svg │ ├── 1f5de-fe0f.svg │ ├── 1f5de.svg │ ├── 1f5e1-fe0f.svg │ ├── 1f5e1.svg │ ├── 1f5e3-fe0f.svg │ ├── 1f5e3.svg │ ├── 1f5e3_border.svg │ ├── 1f5e8-fe0f.svg │ ├── 1f5e8.svg │ ├── 1f5ef-fe0f.svg │ ├── 1f5ef.svg │ ├── 1f5f3-fe0f.svg │ ├── 1f5f3.svg │ ├── 1f5fa-fe0f.svg │ ├── 1f5fa.svg │ ├── 1f5fb.svg │ ├── 1f5fc.svg │ ├── 1f5fd.svg │ ├── 1f5fe.svg │ ├── 1f5ff.svg │ ├── 1f600.svg │ ├── 1f601.svg │ ├── 1f602.svg │ ├── 1f603.svg │ ├── 1f604.svg │ ├── 1f605.svg │ ├── 1f606.svg │ ├── 1f607.svg │ ├── 1f608.svg │ ├── 1f609.svg │ ├── 1f60a.svg │ ├── 1f60b.svg │ ├── 1f60c.svg │ ├── 1f60d.svg │ ├── 1f60e.svg │ ├── 1f60f.svg │ ├── 1f610.svg │ ├── 1f611.svg │ ├── 1f612.svg │ ├── 1f613.svg │ ├── 1f614.svg │ ├── 1f615.svg │ ├── 1f616.svg │ ├── 1f617.svg │ ├── 1f618.svg │ ├── 1f619.svg │ ├── 1f61a.svg │ ├── 1f61b.svg │ ├── 1f61c.svg │ ├── 1f61d.svg │ ├── 1f61e.svg │ ├── 1f61f.svg │ ├── 1f620.svg │ ├── 1f621.svg │ ├── 1f622.svg │ ├── 1f623.svg │ ├── 1f624.svg │ ├── 1f625.svg │ ├── 1f626.svg │ ├── 1f627.svg │ ├── 1f628.svg │ ├── 1f629.svg │ ├── 1f62a.svg │ ├── 1f62b.svg │ ├── 1f62c.svg │ ├── 1f62d.svg │ ├── 1f62e-200d-1f4a8.svg │ ├── 1f62e.svg │ ├── 1f62f.svg │ ├── 1f630.svg │ ├── 1f631.svg │ ├── 1f632.svg │ ├── 1f633.svg │ ├── 1f634.svg │ ├── 1f635-200d-1f4ab.svg │ ├── 1f635.svg │ ├── 1f636-200d-1f32b-fe0f.svg │ ├── 1f636.svg │ ├── 1f637.svg │ ├── 1f638.svg │ ├── 1f639.svg │ ├── 1f63a.svg │ ├── 1f63b.svg │ ├── 1f63c.svg │ ├── 1f63d.svg │ ├── 1f63e.svg │ ├── 1f63f.svg │ ├── 1f640.svg │ ├── 1f641.svg │ ├── 1f642-200d-2194-fe0f.svg │ ├── 1f642-200d-2195-fe0f.svg │ ├── 1f642.svg │ ├── 1f643.svg │ ├── 1f644.svg │ ├── 1f645-1f3fb-200d-2640-fe0f.svg │ ├── 1f645-1f3fb-200d-2642-fe0f.svg │ ├── 1f645-1f3fb.svg │ ├── 1f645-1f3fc-200d-2640-fe0f.svg │ ├── 1f645-1f3fc-200d-2642-fe0f.svg │ ├── 1f645-1f3fc.svg │ ├── 1f645-1f3fd-200d-2640-fe0f.svg │ ├── 1f645-1f3fd-200d-2642-fe0f.svg │ ├── 1f645-1f3fd.svg │ ├── 1f645-1f3fe-200d-2640-fe0f.svg │ ├── 1f645-1f3fe-200d-2642-fe0f.svg │ ├── 1f645-1f3fe.svg │ ├── 1f645-1f3ff-200d-2640-fe0f.svg │ ├── 1f645-1f3ff-200d-2642-fe0f.svg │ ├── 1f645-1f3ff.svg │ ├── 1f645-200d-2640-fe0f.svg │ ├── 1f645-200d-2642-fe0f.svg │ ├── 1f645.svg │ ├── 1f646-1f3fb-200d-2640-fe0f.svg │ ├── 1f646-1f3fb-200d-2642-fe0f.svg │ ├── 1f646-1f3fb.svg │ ├── 1f646-1f3fc-200d-2640-fe0f.svg │ ├── 1f646-1f3fc-200d-2642-fe0f.svg │ ├── 1f646-1f3fc.svg │ ├── 1f646-1f3fd-200d-2640-fe0f.svg │ ├── 1f646-1f3fd-200d-2642-fe0f.svg │ ├── 1f646-1f3fd.svg │ ├── 1f646-1f3fe-200d-2640-fe0f.svg │ ├── 1f646-1f3fe-200d-2642-fe0f.svg │ ├── 1f646-1f3fe.svg │ ├── 1f646-1f3ff-200d-2640-fe0f.svg │ ├── 1f646-1f3ff-200d-2642-fe0f.svg │ ├── 1f646-1f3ff.svg │ ├── 1f646-200d-2640-fe0f.svg │ ├── 1f646-200d-2642-fe0f.svg │ ├── 1f646.svg │ ├── 1f647-1f3fb-200d-2640-fe0f.svg │ ├── 1f647-1f3fb-200d-2642-fe0f.svg │ ├── 1f647-1f3fb.svg │ ├── 1f647-1f3fc-200d-2640-fe0f.svg │ ├── 1f647-1f3fc-200d-2642-fe0f.svg │ ├── 1f647-1f3fc.svg │ ├── 1f647-1f3fd-200d-2640-fe0f.svg │ ├── 1f647-1f3fd-200d-2642-fe0f.svg │ ├── 1f647-1f3fd.svg │ ├── 1f647-1f3fe-200d-2640-fe0f.svg │ ├── 1f647-1f3fe-200d-2642-fe0f.svg │ ├── 1f647-1f3fe.svg │ ├── 1f647-1f3ff-200d-2640-fe0f.svg │ ├── 1f647-1f3ff-200d-2642-fe0f.svg │ ├── 1f647-1f3ff.svg │ ├── 1f647-200d-2640-fe0f.svg │ ├── 1f647-200d-2642-fe0f.svg │ ├── 1f647.svg │ ├── 1f648.svg │ ├── 1f649.svg │ ├── 1f64a.svg │ ├── 1f64b-1f3fb-200d-2640-fe0f.svg │ ├── 1f64b-1f3fb-200d-2642-fe0f.svg │ ├── 1f64b-1f3fb.svg │ ├── 1f64b-1f3fc-200d-2640-fe0f.svg │ ├── 1f64b-1f3fc-200d-2642-fe0f.svg │ ├── 1f64b-1f3fc.svg │ ├── 1f64b-1f3fd-200d-2640-fe0f.svg │ ├── 1f64b-1f3fd-200d-2642-fe0f.svg │ ├── 1f64b-1f3fd.svg │ ├── 1f64b-1f3fe-200d-2640-fe0f.svg │ ├── 1f64b-1f3fe-200d-2642-fe0f.svg │ ├── 1f64b-1f3fe.svg │ ├── 1f64b-1f3ff-200d-2640-fe0f.svg │ ├── 1f64b-1f3ff-200d-2642-fe0f.svg │ ├── 1f64b-1f3ff.svg │ ├── 1f64b-200d-2640-fe0f.svg │ ├── 1f64b-200d-2642-fe0f.svg │ ├── 1f64b.svg │ ├── 1f64c-1f3fb.svg │ ├── 1f64c-1f3fc.svg │ ├── 1f64c-1f3fd.svg │ ├── 1f64c-1f3fe.svg │ ├── 1f64c-1f3ff.svg │ ├── 1f64c.svg │ ├── 1f64d-1f3fb-200d-2640-fe0f.svg │ ├── 1f64d-1f3fb-200d-2642-fe0f.svg │ ├── 1f64d-1f3fb.svg │ ├── 1f64d-1f3fc-200d-2640-fe0f.svg │ ├── 1f64d-1f3fc-200d-2642-fe0f.svg │ ├── 1f64d-1f3fc.svg │ ├── 1f64d-1f3fd-200d-2640-fe0f.svg │ ├── 1f64d-1f3fd-200d-2642-fe0f.svg │ ├── 1f64d-1f3fd.svg │ ├── 1f64d-1f3fe-200d-2640-fe0f.svg │ ├── 1f64d-1f3fe-200d-2642-fe0f.svg │ ├── 1f64d-1f3fe.svg │ ├── 1f64d-1f3ff-200d-2640-fe0f.svg │ ├── 1f64d-1f3ff-200d-2642-fe0f.svg │ ├── 1f64d-1f3ff.svg │ ├── 1f64d-200d-2640-fe0f.svg │ ├── 1f64d-200d-2642-fe0f.svg │ ├── 1f64d.svg │ ├── 1f64e-1f3fb-200d-2640-fe0f.svg │ ├── 1f64e-1f3fb-200d-2642-fe0f.svg │ ├── 1f64e-1f3fb.svg │ ├── 1f64e-1f3fc-200d-2640-fe0f.svg │ ├── 1f64e-1f3fc-200d-2642-fe0f.svg │ ├── 1f64e-1f3fc.svg │ ├── 1f64e-1f3fd-200d-2640-fe0f.svg │ ├── 1f64e-1f3fd-200d-2642-fe0f.svg │ ├── 1f64e-1f3fd.svg │ ├── 1f64e-1f3fe-200d-2640-fe0f.svg │ ├── 1f64e-1f3fe-200d-2642-fe0f.svg │ ├── 1f64e-1f3fe.svg │ ├── 1f64e-1f3ff-200d-2640-fe0f.svg │ ├── 1f64e-1f3ff-200d-2642-fe0f.svg │ ├── 1f64e-1f3ff.svg │ ├── 1f64e-200d-2640-fe0f.svg │ ├── 1f64e-200d-2642-fe0f.svg │ ├── 1f64e.svg │ ├── 1f64f-1f3fb.svg │ ├── 1f64f-1f3fc.svg │ ├── 1f64f-1f3fd.svg │ ├── 1f64f-1f3fe.svg │ ├── 1f64f-1f3ff.svg │ ├── 1f64f.svg │ ├── 1f680.svg │ ├── 1f681.svg │ ├── 1f682.svg │ ├── 1f683.svg │ ├── 1f684.svg │ ├── 1f685.svg │ ├── 1f686.svg │ ├── 1f687.svg │ ├── 1f688.svg │ ├── 1f689.svg │ ├── 1f68a.svg │ ├── 1f68b.svg │ ├── 1f68c.svg │ ├── 1f68d.svg │ ├── 1f68e.svg │ ├── 1f68f.svg │ ├── 1f690.svg │ ├── 1f691.svg │ ├── 1f692.svg │ ├── 1f693.svg │ ├── 1f694.svg │ ├── 1f695.svg │ ├── 1f696.svg │ ├── 1f697.svg │ ├── 1f698.svg │ ├── 1f699.svg │ ├── 1f69a.svg │ ├── 1f69b.svg │ ├── 1f69c.svg │ ├── 1f69d.svg │ ├── 1f69e.svg │ ├── 1f69f.svg │ ├── 1f6a0.svg │ ├── 1f6a1.svg │ ├── 1f6a2.svg │ ├── 1f6a3-1f3fb-200d-2640-fe0f.svg │ ├── 1f6a3-1f3fb-200d-2642-fe0f.svg │ ├── 1f6a3-1f3fb.svg │ ├── 1f6a3-1f3fc-200d-2640-fe0f.svg │ ├── 1f6a3-1f3fc-200d-2642-fe0f.svg │ ├── 1f6a3-1f3fc.svg │ ├── 1f6a3-1f3fd-200d-2640-fe0f.svg │ ├── 1f6a3-1f3fd-200d-2642-fe0f.svg │ ├── 1f6a3-1f3fd.svg │ ├── 1f6a3-1f3fe-200d-2640-fe0f.svg │ ├── 1f6a3-1f3fe-200d-2642-fe0f.svg │ ├── 1f6a3-1f3fe.svg │ ├── 1f6a3-1f3ff-200d-2640-fe0f.svg │ ├── 1f6a3-1f3ff-200d-2642-fe0f.svg │ ├── 1f6a3-1f3ff.svg │ ├── 1f6a3-200d-2640-fe0f.svg │ ├── 1f6a3-200d-2642-fe0f.svg │ ├── 1f6a3.svg │ ├── 1f6a4.svg │ ├── 1f6a5.svg │ ├── 1f6a6.svg │ ├── 1f6a7.svg │ ├── 1f6a8.svg │ ├── 1f6a9.svg │ ├── 1f6aa.svg │ ├── 1f6ab.svg │ ├── 1f6ac.svg │ ├── 1f6ad.svg │ ├── 1f6ae.svg │ ├── 1f6af.svg │ ├── 1f6b0.svg │ ├── 1f6b1.svg │ ├── 1f6b2.svg │ ├── 1f6b2_border.svg │ ├── 1f6b3.svg │ ├── 1f6b4-1f3fb-200d-2640-fe0f.svg │ ├── 1f6b4-1f3fb-200d-2642-fe0f.svg │ ├── 1f6b4-1f3fb.svg │ ├── 1f6b4-1f3fc-200d-2640-fe0f.svg │ ├── 1f6b4-1f3fc-200d-2642-fe0f.svg │ ├── 1f6b4-1f3fc.svg │ ├── 1f6b4-1f3fd-200d-2640-fe0f.svg │ ├── 1f6b4-1f3fd-200d-2642-fe0f.svg │ ├── 1f6b4-1f3fd.svg │ ├── 1f6b4-1f3fe-200d-2640-fe0f.svg │ ├── 1f6b4-1f3fe-200d-2642-fe0f.svg │ ├── 1f6b4-1f3fe.svg │ ├── 1f6b4-1f3ff-200d-2640-fe0f.svg │ ├── 1f6b4-1f3ff-200d-2642-fe0f.svg │ ├── 1f6b4-1f3ff.svg │ ├── 1f6b4-200d-2640-fe0f.svg │ ├── 1f6b4-200d-2642-fe0f.svg │ ├── 1f6b4.svg │ ├── 1f6b5-1f3fb-200d-2640-fe0f.svg │ ├── 1f6b5-1f3fb-200d-2642-fe0f.svg │ ├── 1f6b5-1f3fb.svg │ ├── 1f6b5-1f3fc-200d-2640-fe0f.svg │ ├── 1f6b5-1f3fc-200d-2642-fe0f.svg │ ├── 1f6b5-1f3fc.svg │ ├── 1f6b5-1f3fd-200d-2640-fe0f.svg │ ├── 1f6b5-1f3fd-200d-2642-fe0f.svg │ ├── 1f6b5-1f3fd.svg │ ├── 1f6b5-1f3fe-200d-2640-fe0f.svg │ ├── 1f6b5-1f3fe-200d-2642-fe0f.svg │ ├── 1f6b5-1f3fe.svg │ ├── 1f6b5-1f3ff-200d-2640-fe0f.svg │ ├── 1f6b5-1f3ff-200d-2642-fe0f.svg │ ├── 1f6b5-1f3ff.svg │ ├── 1f6b5-200d-2640-fe0f.svg │ ├── 1f6b5-200d-2642-fe0f.svg │ ├── 1f6b5.svg │ ├── 1f6b6-1f3fb-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3fb-200d-2640-fe0f.svg │ ├── 1f6b6-1f3fb-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3fb-200d-2642-fe0f.svg │ ├── 1f6b6-1f3fb-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3fb.svg │ ├── 1f6b6-1f3fc-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3fc-200d-2640-fe0f.svg │ ├── 1f6b6-1f3fc-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3fc-200d-2642-fe0f.svg │ ├── 1f6b6-1f3fc-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3fc.svg │ ├── 1f6b6-1f3fd-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3fd-200d-2640-fe0f.svg │ ├── 1f6b6-1f3fd-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3fd-200d-2642-fe0f.svg │ ├── 1f6b6-1f3fd-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3fd.svg │ ├── 1f6b6-1f3fe-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3fe-200d-2640-fe0f.svg │ ├── 1f6b6-1f3fe-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3fe-200d-2642-fe0f.svg │ ├── 1f6b6-1f3fe-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3fe.svg │ ├── 1f6b6-1f3ff-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3ff-200d-2640-fe0f.svg │ ├── 1f6b6-1f3ff-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3ff-200d-2642-fe0f.svg │ ├── 1f6b6-1f3ff-200d-27a1-fe0f.svg │ ├── 1f6b6-1f3ff.svg │ ├── 1f6b6-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f6b6-200d-2640-fe0f.svg │ ├── 1f6b6-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f6b6-200d-2642-fe0f.svg │ ├── 1f6b6-200d-27a1-fe0f.svg │ ├── 1f6b6.svg │ ├── 1f6b7.svg │ ├── 1f6b8.svg │ ├── 1f6b9.svg │ ├── 1f6ba.svg │ ├── 1f6bb.svg │ ├── 1f6bc.svg │ ├── 1f6bd.svg │ ├── 1f6be.svg │ ├── 1f6bf.svg │ ├── 1f6c0-1f3fb.svg │ ├── 1f6c0-1f3fc.svg │ ├── 1f6c0-1f3fd.svg │ ├── 1f6c0-1f3fe.svg │ ├── 1f6c0-1f3ff.svg │ ├── 1f6c0.svg │ ├── 1f6c1.svg │ ├── 1f6c2.svg │ ├── 1f6c3.svg │ ├── 1f6c4.svg │ ├── 1f6c5.svg │ ├── 1f6cb-fe0f.svg │ ├── 1f6cb.svg │ ├── 1f6cc-1f3fb.svg │ ├── 1f6cc-1f3fc.svg │ ├── 1f6cc-1f3fd.svg │ ├── 1f6cc-1f3fe.svg │ ├── 1f6cc-1f3ff.svg │ ├── 1f6cc.svg │ ├── 1f6cd-fe0f.svg │ ├── 1f6cd.svg │ ├── 1f6ce-fe0f.svg │ ├── 1f6ce.svg │ ├── 1f6cf-fe0f.svg │ ├── 1f6cf.svg │ ├── 1f6d0.svg │ ├── 1f6d1.svg │ ├── 1f6d2.svg │ ├── 1f6d5.svg │ ├── 1f6d6.svg │ ├── 1f6d7.svg │ ├── 1f6dc.svg │ ├── 1f6dd.svg │ ├── 1f6de.svg │ ├── 1f6df.svg │ ├── 1f6e0-fe0f.svg │ ├── 1f6e0.svg │ ├── 1f6e1-fe0f.svg │ ├── 1f6e1.svg │ ├── 1f6e2-fe0f.svg │ ├── 1f6e2.svg │ ├── 1f6e3-fe0f.svg │ ├── 1f6e3.svg │ ├── 1f6e4-fe0f.svg │ ├── 1f6e4.svg │ ├── 1f6e5-fe0f.svg │ ├── 1f6e5.svg │ ├── 1f6e9-fe0f.svg │ ├── 1f6e9.svg │ ├── 1f6eb.svg │ ├── 1f6ec.svg │ ├── 1f6f0-fe0f.svg │ ├── 1f6f0.svg │ ├── 1f6f3-fe0f.svg │ ├── 1f6f3.svg │ ├── 1f6f4.svg │ ├── 1f6f5.svg │ ├── 1f6f6.svg │ ├── 1f6f7.svg │ ├── 1f6f8.svg │ ├── 1f6f9.svg │ ├── 1f6fa.svg │ ├── 1f6fb.svg │ ├── 1f6fc.svg │ ├── 1f7e0.svg │ ├── 1f7e1.svg │ ├── 1f7e2.svg │ ├── 1f7e3.svg │ ├── 1f7e4.svg │ ├── 1f7e5.svg │ ├── 1f7e6.svg │ ├── 1f7e7.svg │ ├── 1f7e8.svg │ ├── 1f7e9.svg │ ├── 1f7ea.svg │ ├── 1f7eb.svg │ ├── 1f7f0.svg │ ├── 1f90c-1f3fb.svg │ ├── 1f90c-1f3fc.svg │ ├── 1f90c-1f3fd.svg │ ├── 1f90c-1f3fe.svg │ ├── 1f90c-1f3ff.svg │ ├── 1f90c.svg │ ├── 1f90d.svg │ ├── 1f90e.svg │ ├── 1f90f-1f3fb.svg │ ├── 1f90f-1f3fc.svg │ ├── 1f90f-1f3fd.svg │ ├── 1f90f-1f3fe.svg │ ├── 1f90f-1f3ff.svg │ ├── 1f90f.svg │ ├── 1f910.svg │ ├── 1f911.svg │ ├── 1f912.svg │ ├── 1f913.svg │ ├── 1f914.svg │ ├── 1f915.svg │ ├── 1f916.svg │ ├── 1f917.svg │ ├── 1f918-1f3fb.svg │ ├── 1f918-1f3fc.svg │ ├── 1f918-1f3fd.svg │ ├── 1f918-1f3fe.svg │ ├── 1f918-1f3ff.svg │ ├── 1f918.svg │ ├── 1f919-1f3fb.svg │ ├── 1f919-1f3fc.svg │ ├── 1f919-1f3fd.svg │ ├── 1f919-1f3fe.svg │ ├── 1f919-1f3ff.svg │ ├── 1f919.svg │ ├── 1f91a-1f3fb.svg │ ├── 1f91a-1f3fc.svg │ ├── 1f91a-1f3fd.svg │ ├── 1f91a-1f3fe.svg │ ├── 1f91a-1f3ff.svg │ ├── 1f91a.svg │ ├── 1f91b-1f3fb.svg │ ├── 1f91b-1f3fc.svg │ ├── 1f91b-1f3fd.svg │ ├── 1f91b-1f3fe.svg │ ├── 1f91b-1f3ff.svg │ ├── 1f91b.svg │ ├── 1f91c-1f3fb.svg │ ├── 1f91c-1f3fc.svg │ ├── 1f91c-1f3fd.svg │ ├── 1f91c-1f3fe.svg │ ├── 1f91c-1f3ff.svg │ ├── 1f91c.svg │ ├── 1f91d-1f3fb.svg │ ├── 1f91d-1f3fc.svg │ ├── 1f91d-1f3fd.svg │ ├── 1f91d-1f3fe.svg │ ├── 1f91d-1f3ff.svg │ ├── 1f91d.svg │ ├── 1f91e-1f3fb.svg │ ├── 1f91e-1f3fc.svg │ ├── 1f91e-1f3fd.svg │ ├── 1f91e-1f3fe.svg │ ├── 1f91e-1f3ff.svg │ ├── 1f91e.svg │ ├── 1f91f-1f3fb.svg │ ├── 1f91f-1f3fc.svg │ ├── 1f91f-1f3fd.svg │ ├── 1f91f-1f3fe.svg │ ├── 1f91f-1f3ff.svg │ ├── 1f91f.svg │ ├── 1f920.svg │ ├── 1f921.svg │ ├── 1f922.svg │ ├── 1f923.svg │ ├── 1f924.svg │ ├── 1f925.svg │ ├── 1f926-1f3fb-200d-2640-fe0f.svg │ ├── 1f926-1f3fb-200d-2642-fe0f.svg │ ├── 1f926-1f3fb.svg │ ├── 1f926-1f3fc-200d-2640-fe0f.svg │ ├── 1f926-1f3fc-200d-2642-fe0f.svg │ ├── 1f926-1f3fc.svg │ ├── 1f926-1f3fd-200d-2640-fe0f.svg │ ├── 1f926-1f3fd-200d-2642-fe0f.svg │ ├── 1f926-1f3fd.svg │ ├── 1f926-1f3fe-200d-2640-fe0f.svg │ ├── 1f926-1f3fe-200d-2642-fe0f.svg │ ├── 1f926-1f3fe.svg │ ├── 1f926-1f3ff-200d-2640-fe0f.svg │ ├── 1f926-1f3ff-200d-2642-fe0f.svg │ ├── 1f926-1f3ff.svg │ ├── 1f926-200d-2640-fe0f.svg │ ├── 1f926-200d-2642-fe0f.svg │ ├── 1f926.svg │ ├── 1f927.svg │ ├── 1f928.svg │ ├── 1f929.svg │ ├── 1f92a.svg │ ├── 1f92b.svg │ ├── 1f92c.svg │ ├── 1f92d.svg │ ├── 1f92e.svg │ ├── 1f92f.svg │ ├── 1f930-1f3fb.svg │ ├── 1f930-1f3fc.svg │ ├── 1f930-1f3fd.svg │ ├── 1f930-1f3fe.svg │ ├── 1f930-1f3ff.svg │ ├── 1f930.svg │ ├── 1f931-1f3fb.svg │ ├── 1f931-1f3fc.svg │ ├── 1f931-1f3fd.svg │ ├── 1f931-1f3fe.svg │ ├── 1f931-1f3ff.svg │ ├── 1f931.svg │ ├── 1f931svg │ ├── 1f932-1f3fb.svg │ ├── 1f932-1f3fc.svg │ ├── 1f932-1f3fd.svg │ ├── 1f932-1f3fe.svg │ ├── 1f932-1f3ff.svg │ ├── 1f932.svg │ ├── 1f933-1f3fb.svg │ ├── 1f933-1f3fc.svg │ ├── 1f933-1f3fd.svg │ ├── 1f933-1f3fe.svg │ ├── 1f933-1f3ff.svg │ ├── 1f933.svg │ ├── 1f934-1f3fb.svg │ ├── 1f934-1f3fc.svg │ ├── 1f934-1f3fd.svg │ ├── 1f934-1f3fe.svg │ ├── 1f934-1f3ff.svg │ ├── 1f934.svg │ ├── 1f935-1f3fb-200d-2640-fe0f.svg │ ├── 1f935-1f3fb-200d-2642-fe0f.svg │ ├── 1f935-1f3fb.svg │ ├── 1f935-1f3fc-200d-2640-fe0f.svg │ ├── 1f935-1f3fc-200d-2642-fe0f.svg │ ├── 1f935-1f3fc.svg │ ├── 1f935-1f3fd-200d-2640-fe0f.svg │ ├── 1f935-1f3fd-200d-2642-fe0f.svg │ ├── 1f935-1f3fd.svg │ ├── 1f935-1f3fe-200d-2640-fe0f.svg │ ├── 1f935-1f3fe-200d-2642-fe0f.svg │ ├── 1f935-1f3fe.svg │ ├── 1f935-1f3ff-200d-2640-fe0f.svg │ ├── 1f935-1f3ff-200d-2642-fe0f.svg │ ├── 1f935-1f3ff.svg │ ├── 1f935-200d-2640-fe0f.svg │ ├── 1f935-200d-2642-fe0f.svg │ ├── 1f935.svg │ ├── 1f936-1f3fb.svg │ ├── 1f936-1f3fc.svg │ ├── 1f936-1f3fd.svg │ ├── 1f936-1f3fe.svg │ ├── 1f936-1f3ff.svg │ ├── 1f936.svg │ ├── 1f937-1f3fb-200d-2640-fe0f.svg │ ├── 1f937-1f3fb-200d-2642-fe0f.svg │ ├── 1f937-1f3fb.svg │ ├── 1f937-1f3fc-200d-2640-fe0f.svg │ ├── 1f937-1f3fc-200d-2642-fe0f.svg │ ├── 1f937-1f3fc.svg │ ├── 1f937-1f3fd-200d-2640-fe0f.svg │ ├── 1f937-1f3fd-200d-2642-fe0f.svg │ ├── 1f937-1f3fd.svg │ ├── 1f937-1f3fe-200d-2640-fe0f.svg │ ├── 1f937-1f3fe-200d-2642-fe0f.svg │ ├── 1f937-1f3fe.svg │ ├── 1f937-1f3ff-200d-2640-fe0f.svg │ ├── 1f937-1f3ff-200d-2642-fe0f.svg │ ├── 1f937-1f3ff.svg │ ├── 1f937-200d-2640-fe0f.svg │ ├── 1f937-200d-2642-fe0f.svg │ ├── 1f937.svg │ ├── 1f938-1f3fb-200d-2640-fe0f.svg │ ├── 1f938-1f3fb-200d-2642-fe0f.svg │ ├── 1f938-1f3fb.svg │ ├── 1f938-1f3fc-200d-2640-fe0f.svg │ ├── 1f938-1f3fc-200d-2642-fe0f.svg │ ├── 1f938-1f3fc.svg │ ├── 1f938-1f3fd-200d-2640-fe0f.svg │ ├── 1f938-1f3fd-200d-2642-fe0f.svg │ ├── 1f938-1f3fd.svg │ ├── 1f938-1f3fe-200d-2640-fe0f.svg │ ├── 1f938-1f3fe-200d-2642-fe0f.svg │ ├── 1f938-1f3fe.svg │ ├── 1f938-1f3ff-200d-2640-fe0f.svg │ ├── 1f938-1f3ff-200d-2642-fe0f.svg │ ├── 1f938-1f3ff.svg │ ├── 1f938-200d-2640-fe0f.svg │ ├── 1f938-200d-2642-fe0f.svg │ ├── 1f938.svg │ ├── 1f939-1f3fb-200d-2640-fe0f.svg │ ├── 1f939-1f3fb-200d-2642-fe0f.svg │ ├── 1f939-1f3fb.svg │ ├── 1f939-1f3fc-200d-2640-fe0f.svg │ ├── 1f939-1f3fc-200d-2642-fe0f.svg │ ├── 1f939-1f3fc.svg │ ├── 1f939-1f3fd-200d-2640-fe0f.svg │ ├── 1f939-1f3fd-200d-2642-fe0f.svg │ ├── 1f939-1f3fd.svg │ ├── 1f939-1f3fe-200d-2640-fe0f.svg │ ├── 1f939-1f3fe-200d-2642-fe0f.svg │ ├── 1f939-1f3fe.svg │ ├── 1f939-1f3ff-200d-2640-fe0f.svg │ ├── 1f939-1f3ff-200d-2642-fe0f.svg │ ├── 1f939-1f3ff.svg │ ├── 1f939-200d-2640-fe0f.svg │ ├── 1f939-200d-2642-fe0f.svg │ ├── 1f939.svg │ ├── 1f93a.svg │ ├── 1f93c-200d-2640-fe0f.svg │ ├── 1f93c-200d-2642-fe0f.svg │ ├── 1f93c.svg │ ├── 1f93d-1f3fb-200d-2640-fe0f.svg │ ├── 1f93d-1f3fb-200d-2642-fe0f.svg │ ├── 1f93d-1f3fb.svg │ ├── 1f93d-1f3fc-200d-2640-fe0f.svg │ ├── 1f93d-1f3fc-200d-2642-fe0f.svg │ ├── 1f93d-1f3fc.svg │ ├── 1f93d-1f3fd-200d-2640-fe0f.svg │ ├── 1f93d-1f3fd-200d-2642-fe0f.svg │ ├── 1f93d-1f3fd.svg │ ├── 1f93d-1f3fe-200d-2640-fe0f.svg │ ├── 1f93d-1f3fe-200d-2642-fe0f.svg │ ├── 1f93d-1f3fe.svg │ ├── 1f93d-1f3ff-200d-2640-fe0f.svg │ ├── 1f93d-1f3ff-200d-2642-fe0f.svg │ ├── 1f93d-1f3ff.svg │ ├── 1f93d-200d-2640-fe0f.svg │ ├── 1f93d-200d-2642-fe0f.svg │ ├── 1f93d.svg │ ├── 1f93e-1f3fb-200d-2640-fe0f.svg │ ├── 1f93e-1f3fb-200d-2642-fe0f.svg │ ├── 1f93e-1f3fb.svg │ ├── 1f93e-1f3fc-200d-2640-fe0f.svg │ ├── 1f93e-1f3fc-200d-2642-fe0f.svg │ ├── 1f93e-1f3fc.svg │ ├── 1f93e-1f3fd-200d-2640-fe0f.svg │ ├── 1f93e-1f3fd-200d-2642-fe0f.svg │ ├── 1f93e-1f3fd.svg │ ├── 1f93e-1f3fe-200d-2640-fe0f.svg │ ├── 1f93e-1f3fe-200d-2642-fe0f.svg │ ├── 1f93e-1f3fe.svg │ ├── 1f93e-1f3ff-200d-2640-fe0f.svg │ ├── 1f93e-1f3ff-200d-2642-fe0f.svg │ ├── 1f93e-1f3ff.svg │ ├── 1f93e-200d-2640-fe0f.svg │ ├── 1f93e-200d-2642-fe0f.svg │ ├── 1f93e.svg │ ├── 1f93f.svg │ ├── 1f940.svg │ ├── 1f941.svg │ ├── 1f942.svg │ ├── 1f943.svg │ ├── 1f944.svg │ ├── 1f945.svg │ ├── 1f947.svg │ ├── 1f948.svg │ ├── 1f949.svg │ ├── 1f94a.svg │ ├── 1f94b.svg │ ├── 1f94c.svg │ ├── 1f94d.svg │ ├── 1f94e.svg │ ├── 1f94f.svg │ ├── 1f950.svg │ ├── 1f951.svg │ ├── 1f952.svg │ ├── 1f953.svg │ ├── 1f954.svg │ ├── 1f955.svg │ ├── 1f956.svg │ ├── 1f957.svg │ ├── 1f958.svg │ ├── 1f959.svg │ ├── 1f95a.svg │ ├── 1f95b.svg │ ├── 1f95c.svg │ ├── 1f95d.svg │ ├── 1f95e.svg │ ├── 1f95f.svg │ ├── 1f960.svg │ ├── 1f961.svg │ ├── 1f962.svg │ ├── 1f963.svg │ ├── 1f964.svg │ ├── 1f965.svg │ ├── 1f966.svg │ ├── 1f967.svg │ ├── 1f968.svg │ ├── 1f969.svg │ ├── 1f96a.svg │ ├── 1f96b.svg │ ├── 1f96c.svg │ ├── 1f96d.svg │ ├── 1f96e.svg │ ├── 1f96f.svg │ ├── 1f970.svg │ ├── 1f971.svg │ ├── 1f972.svg │ ├── 1f973.svg │ ├── 1f974.svg │ ├── 1f975.svg │ ├── 1f976.svg │ ├── 1f977-1f3fb.svg │ ├── 1f977-1f3fc.svg │ ├── 1f977-1f3fd.svg │ ├── 1f977-1f3fe.svg │ ├── 1f977-1f3ff.svg │ ├── 1f977.svg │ ├── 1f978.svg │ ├── 1f979.svg │ ├── 1f97a.svg │ ├── 1f97b.svg │ ├── 1f97c.svg │ ├── 1f97d.svg │ ├── 1f97e.svg │ ├── 1f97f.svg │ ├── 1f980.svg │ ├── 1f981.svg │ ├── 1f982.svg │ ├── 1f983.svg │ ├── 1f983_border.svg │ ├── 1f984.svg │ ├── 1f985.svg │ ├── 1f986.svg │ ├── 1f987.svg │ ├── 1f988.svg │ ├── 1f989.svg │ ├── 1f98a.svg │ ├── 1f98b.svg │ ├── 1f98c.svg │ ├── 1f98d.svg │ ├── 1f98d_border.svg │ ├── 1f98e.svg │ ├── 1f98f.svg │ ├── 1f990.svg │ ├── 1f991.svg │ ├── 1f992.svg │ ├── 1f993.svg │ ├── 1f994.svg │ ├── 1f995.svg │ ├── 1f996.svg │ ├── 1f997.svg │ ├── 1f998.svg │ ├── 1f999.svg │ ├── 1f99a.svg │ ├── 1f99b.svg │ ├── 1f99c.svg │ ├── 1f99d.svg │ ├── 1f99e.svg │ ├── 1f99f.svg │ ├── 1f9a0.svg │ ├── 1f9a1.svg │ ├── 1f9a2.svg │ ├── 1f9a3.svg │ ├── 1f9a4.svg │ ├── 1f9a5.svg │ ├── 1f9a6.svg │ ├── 1f9a7.svg │ ├── 1f9a8.svg │ ├── 1f9a9.svg │ ├── 1f9aa.svg │ ├── 1f9ab.svg │ ├── 1f9ac.svg │ ├── 1f9ad.svg │ ├── 1f9ae.svg │ ├── 1f9af.svg │ ├── 1f9b0.svg │ ├── 1f9b1.svg │ ├── 1f9b2.svg │ ├── 1f9b3.svg │ ├── 1f9b4.svg │ ├── 1f9b5-1f3fb.svg │ ├── 1f9b5-1f3fc.svg │ ├── 1f9b5-1f3fd.svg │ ├── 1f9b5-1f3fe.svg │ ├── 1f9b5-1f3ff.svg │ ├── 1f9b5.svg │ ├── 1f9b6-1f3fb.svg │ ├── 1f9b6-1f3fc.svg │ ├── 1f9b6-1f3fd.svg │ ├── 1f9b6-1f3fe.svg │ ├── 1f9b6-1f3ff.svg │ ├── 1f9b6.svg │ ├── 1f9b7.svg │ ├── 1f9b8-1f3fb-200d-2640-fe0f.svg │ ├── 1f9b8-1f3fb-200d-2642-fe0f.svg │ ├── 1f9b8-1f3fb.svg │ ├── 1f9b8-1f3fc-200d-2640-fe0f.svg │ ├── 1f9b8-1f3fc-200d-2642-fe0f.svg │ ├── 1f9b8-1f3fc.svg │ ├── 1f9b8-1f3fd-200d-2640-fe0f.svg │ ├── 1f9b8-1f3fd-200d-2642-fe0f.svg │ ├── 1f9b8-1f3fd.svg │ ├── 1f9b8-1f3fe-200d-2640-fe0f.svg │ ├── 1f9b8-1f3fe-200d-2642-fe0f.svg │ ├── 1f9b8-1f3fe.svg │ ├── 1f9b8-1f3ff-200d-2640-fe0f.svg │ ├── 1f9b8-1f3ff-200d-2642-fe0f.svg │ ├── 1f9b8-1f3ff.svg │ ├── 1f9b8-200d-2640-fe0f.svg │ ├── 1f9b8-200d-2642-fe0f.svg │ ├── 1f9b8.svg │ ├── 1f9b9-1f3fb-200d-2640-fe0f.svg │ ├── 1f9b9-1f3fb-200d-2642-fe0f.svg │ ├── 1f9b9-1f3fb.svg │ ├── 1f9b9-1f3fc-200d-2640-fe0f.svg │ ├── 1f9b9-1f3fc-200d-2642-fe0f.svg │ ├── 1f9b9-1f3fc.svg │ ├── 1f9b9-1f3fd-200d-2640-fe0f.svg │ ├── 1f9b9-1f3fd-200d-2642-fe0f.svg │ ├── 1f9b9-1f3fd.svg │ ├── 1f9b9-1f3fe-200d-2640-fe0f.svg │ ├── 1f9b9-1f3fe-200d-2642-fe0f.svg │ ├── 1f9b9-1f3fe.svg │ ├── 1f9b9-1f3ff-200d-2640-fe0f.svg │ ├── 1f9b9-1f3ff-200d-2642-fe0f.svg │ ├── 1f9b9-1f3ff.svg │ ├── 1f9b9-200d-2640-fe0f.svg │ ├── 1f9b9-200d-2642-fe0f.svg │ ├── 1f9b9.svg │ ├── 1f9ba.svg │ ├── 1f9bb-1f3fb.svg │ ├── 1f9bb-1f3fc.svg │ ├── 1f9bb-1f3fd.svg │ ├── 1f9bb-1f3fe.svg │ ├── 1f9bb-1f3ff.svg │ ├── 1f9bb.svg │ ├── 1f9bc.svg │ ├── 1f9bd.svg │ ├── 1f9be.svg │ ├── 1f9bf.svg │ ├── 1f9c0.svg │ ├── 1f9c1.svg │ ├── 1f9c2.svg │ ├── 1f9c3.svg │ ├── 1f9c4.svg │ ├── 1f9c5.svg │ ├── 1f9c6.svg │ ├── 1f9c7.svg │ ├── 1f9c8.svg │ ├── 1f9c9.svg │ ├── 1f9ca.svg │ ├── 1f9cb.svg │ ├── 1f9cc.svg │ ├── 1f9cd-1f3fb-200d-2640-fe0f.svg │ ├── 1f9cd-1f3fb-200d-2642-fe0f.svg │ ├── 1f9cd-1f3fb.svg │ ├── 1f9cd-1f3fc-200d-2640-fe0f.svg │ ├── 1f9cd-1f3fc-200d-2642-fe0f.svg │ ├── 1f9cd-1f3fc.svg │ ├── 1f9cd-1f3fd-200d-2640-fe0f.svg │ ├── 1f9cd-1f3fd-200d-2642-fe0f.svg │ ├── 1f9cd-1f3fd.svg │ ├── 1f9cd-1f3fe-200d-2640-fe0f.svg │ ├── 1f9cd-1f3fe-200d-2642-fe0f.svg │ ├── 1f9cd-1f3fe.svg │ ├── 1f9cd-1f3ff-200d-2640-fe0f.svg │ ├── 1f9cd-1f3ff-200d-2642-fe0f.svg │ ├── 1f9cd-1f3ff.svg │ ├── 1f9cd-200d-2640-fe0f.svg │ ├── 1f9cd-200d-2642-fe0f.svg │ ├── 1f9cd.svg │ ├── 1f9ce-1f3fb-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3fb-200d-2640-fe0f.svg │ ├── 1f9ce-1f3fb-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3fb-200d-2642-fe0f.svg │ ├── 1f9ce-1f3fb-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3fb.svg │ ├── 1f9ce-1f3fc-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3fc-200d-2640-fe0f.svg │ ├── 1f9ce-1f3fc-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3fc-200d-2642-fe0f.svg │ ├── 1f9ce-1f3fc-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3fc.svg │ ├── 1f9ce-1f3fd-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3fd-200d-2640-fe0f.svg │ ├── 1f9ce-1f3fd-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3fd-200d-2642-fe0f.svg │ ├── 1f9ce-1f3fd-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3fd.svg │ ├── 1f9ce-1f3fe-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3fe-200d-2640-fe0f.svg │ ├── 1f9ce-1f3fe-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3fe-200d-2642-fe0f.svg │ ├── 1f9ce-1f3fe-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3fe.svg │ ├── 1f9ce-1f3ff-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3ff-200d-2640-fe0f.svg │ ├── 1f9ce-1f3ff-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3ff-200d-2642-fe0f.svg │ ├── 1f9ce-1f3ff-200d-27a1-fe0f.svg │ ├── 1f9ce-1f3ff.svg │ ├── 1f9ce-200d-2640-fe0f-200d-27a1-fe0f.svg │ ├── 1f9ce-200d-2640-fe0f.svg │ ├── 1f9ce-200d-2642-fe0f-200d-27a1-fe0f.svg │ ├── 1f9ce-200d-2642-fe0f.svg │ ├── 1f9ce-200d-27a1-fe0f.svg │ ├── 1f9ce.svg │ ├── 1f9cf-1f3fb-200d-2640-fe0f.svg │ ├── 1f9cf-1f3fb-200d-2642-fe0f.svg │ ├── 1f9cf-1f3fb.svg │ ├── 1f9cf-1f3fc-200d-2640-fe0f.svg │ ├── 1f9cf-1f3fc-200d-2642-fe0f.svg │ ├── 1f9cf-1f3fc.svg │ ├── 1f9cf-1f3fd-200d-2640-fe0f.svg │ ├── 1f9cf-1f3fd-200d-2642-fe0f.svg │ ├── 1f9cf-1f3fd.svg │ ├── 1f9cf-1f3fe-200d-2640-fe0f.svg │ ├── 1f9cf-1f3fe-200d-2642-fe0f.svg │ ├── 1f9cf-1f3fe.svg │ ├── 1f9cf-1f3ff-200d-2640-fe0f.svg │ ├── 1f9cf-1f3ff-200d-2642-fe0f.svg │ ├── 1f9cf-1f3ff.svg │ ├── 1f9cf-200d-2640-fe0f.svg │ ├── 1f9cf-200d-2642-fe0f.svg │ ├── 1f9cf.svg │ ├── 1f9d0.svg │ ├── 1f9d1-1f3fb-200d-1f33e.svg │ ├── 1f9d1-1f3fb-200d-1f373.svg │ ├── 1f9d1-1f3fb-200d-1f37c.svg │ ├── 1f9d1-1f3fb-200d-1f384.svg │ ├── 1f9d1-1f3fb-200d-1f393.svg │ ├── 1f9d1-1f3fb-200d-1f3a4.svg │ ├── 1f9d1-1f3fb-200d-1f3a8.svg │ ├── 1f9d1-1f3fb-200d-1f3eb.svg │ ├── 1f9d1-1f3fb-200d-1f3ed.svg │ ├── 1f9d1-1f3fb-200d-1f4bb.svg │ ├── 1f9d1-1f3fb-200d-1f4bc.svg │ ├── 1f9d1-1f3fb-200d-1f527.svg │ ├── 1f9d1-1f3fb-200d-1f52c.svg │ ├── 1f9d1-1f3fb-200d-1f680.svg │ ├── 1f9d1-1f3fb-200d-1f692.svg │ ├── 1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.svg │ ├── 1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.svg │ ├── 1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.svg │ ├── 1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.svg │ ├── 1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.svg │ ├── 1f9d1-1f3fb-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3fb-200d-1f9af.svg │ ├── 1f9d1-1f3fb-200d-1f9b0.svg │ ├── 1f9d1-1f3fb-200d-1f9b1.svg │ ├── 1f9d1-1f3fb-200d-1f9b2.svg │ ├── 1f9d1-1f3fb-200d-1f9b3.svg │ ├── 1f9d1-1f3fb-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3fb-200d-1f9bc.svg │ ├── 1f9d1-1f3fb-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3fb-200d-1f9bd.svg │ ├── 1f9d1-1f3fb-200d-2695-fe0f.svg │ ├── 1f9d1-1f3fb-200d-2696-fe0f.svg │ ├── 1f9d1-1f3fb-200d-2708-fe0f.svg │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.svg │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.svg │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.svg │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.svg │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fc.svg │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fd.svg │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fe.svg │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3ff.svg │ ├── 1f9d1-1f3fb.svg │ ├── 1f9d1-1f3fc-200d-1f33e.svg │ ├── 1f9d1-1f3fc-200d-1f373.svg │ ├── 1f9d1-1f3fc-200d-1f37c.svg │ ├── 1f9d1-1f3fc-200d-1f384.svg │ ├── 1f9d1-1f3fc-200d-1f393.svg │ ├── 1f9d1-1f3fc-200d-1f3a4.svg │ ├── 1f9d1-1f3fc-200d-1f3a8.svg │ ├── 1f9d1-1f3fc-200d-1f3eb.svg │ ├── 1f9d1-1f3fc-200d-1f3ed.svg │ ├── 1f9d1-1f3fc-200d-1f4bb.svg │ ├── 1f9d1-1f3fc-200d-1f4bc.svg │ ├── 1f9d1-1f3fc-200d-1f527.svg │ ├── 1f9d1-1f3fc-200d-1f52c.svg │ ├── 1f9d1-1f3fc-200d-1f680.svg │ ├── 1f9d1-1f3fc-200d-1f692.svg │ ├── 1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.svg │ ├── 1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.svg │ ├── 1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.svg │ ├── 1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.svg │ ├── 1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.svg │ ├── 1f9d1-1f3fc-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3fc-200d-1f9af.svg │ ├── 1f9d1-1f3fc-200d-1f9b0.svg │ ├── 1f9d1-1f3fc-200d-1f9b1.svg │ ├── 1f9d1-1f3fc-200d-1f9b2.svg │ ├── 1f9d1-1f3fc-200d-1f9b3.svg │ ├── 1f9d1-1f3fc-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3fc-200d-1f9bc.svg │ ├── 1f9d1-1f3fc-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3fc-200d-1f9bd.svg │ ├── 1f9d1-1f3fc-200d-2695-fe0f.svg │ ├── 1f9d1-1f3fc-200d-2696-fe0f.svg │ ├── 1f9d1-1f3fc-200d-2708-fe0f.svg │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.svg │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.svg │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.svg │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.svg │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fb.svg │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fd.svg │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fe.svg │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3ff.svg │ ├── 1f9d1-1f3fc.svg │ ├── 1f9d1-1f3fd-200d-1f33e.svg │ ├── 1f9d1-1f3fd-200d-1f373.svg │ ├── 1f9d1-1f3fd-200d-1f37c.svg │ ├── 1f9d1-1f3fd-200d-1f384.svg │ ├── 1f9d1-1f3fd-200d-1f393.svg │ ├── 1f9d1-1f3fd-200d-1f3a4.svg │ ├── 1f9d1-1f3fd-200d-1f3a8.svg │ ├── 1f9d1-1f3fd-200d-1f3eb.svg │ ├── 1f9d1-1f3fd-200d-1f3ed.svg │ ├── 1f9d1-1f3fd-200d-1f4bb.svg │ ├── 1f9d1-1f3fd-200d-1f4bc.svg │ ├── 1f9d1-1f3fd-200d-1f527.svg │ ├── 1f9d1-1f3fd-200d-1f52c.svg │ ├── 1f9d1-1f3fd-200d-1f680.svg │ ├── 1f9d1-1f3fd-200d-1f692.svg │ ├── 1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.svg │ ├── 1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.svg │ ├── 1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.svg │ ├── 1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.svg │ ├── 1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.svg │ ├── 1f9d1-1f3fd-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3fd-200d-1f9af.svg │ ├── 1f9d1-1f3fd-200d-1f9b0.svg │ ├── 1f9d1-1f3fd-200d-1f9b1.svg │ ├── 1f9d1-1f3fd-200d-1f9b2.svg │ ├── 1f9d1-1f3fd-200d-1f9b3.svg │ ├── 1f9d1-1f3fd-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3fd-200d-1f9bc.svg │ ├── 1f9d1-1f3fd-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3fd-200d-1f9bd.svg │ ├── 1f9d1-1f3fd-200d-2695-fe0f.svg │ ├── 1f9d1-1f3fd-200d-2696-fe0f.svg │ ├── 1f9d1-1f3fd-200d-2708-fe0f.svg │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.svg │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.svg │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.svg │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.svg │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fb.svg │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fc.svg │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fe.svg │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3ff.svg │ ├── 1f9d1-1f3fd.svg │ ├── 1f9d1-1f3fe-200d-1f33e.svg │ ├── 1f9d1-1f3fe-200d-1f373.svg │ ├── 1f9d1-1f3fe-200d-1f37c.svg │ ├── 1f9d1-1f3fe-200d-1f384.svg │ ├── 1f9d1-1f3fe-200d-1f393.svg │ ├── 1f9d1-1f3fe-200d-1f3a4.svg │ ├── 1f9d1-1f3fe-200d-1f3a8.svg │ ├── 1f9d1-1f3fe-200d-1f3eb.svg │ ├── 1f9d1-1f3fe-200d-1f3ed.svg │ ├── 1f9d1-1f3fe-200d-1f4bb.svg │ ├── 1f9d1-1f3fe-200d-1f4bc.svg │ ├── 1f9d1-1f3fe-200d-1f527.svg │ ├── 1f9d1-1f3fe-200d-1f52c.svg │ ├── 1f9d1-1f3fe-200d-1f680.svg │ ├── 1f9d1-1f3fe-200d-1f692.svg │ ├── 1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.svg │ ├── 1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.svg │ ├── 1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.svg │ ├── 1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.svg │ ├── 1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.svg │ ├── 1f9d1-1f3fe-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3fe-200d-1f9af.svg │ ├── 1f9d1-1f3fe-200d-1f9b0.svg │ ├── 1f9d1-1f3fe-200d-1f9b1.svg │ ├── 1f9d1-1f3fe-200d-1f9b2.svg │ ├── 1f9d1-1f3fe-200d-1f9b3.svg │ ├── 1f9d1-1f3fe-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3fe-200d-1f9bc.svg │ ├── 1f9d1-1f3fe-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3fe-200d-1f9bd.svg │ ├── 1f9d1-1f3fe-200d-2695-fe0f.svg │ ├── 1f9d1-1f3fe-200d-2696-fe0f.svg │ ├── 1f9d1-1f3fe-200d-2708-fe0f.svg │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.svg │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.svg │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.svg │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.svg │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fb.svg │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fc.svg │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fd.svg │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3ff.svg │ ├── 1f9d1-1f3fe.svg │ ├── 1f9d1-1f3ff-200d-1f33e.svg │ ├── 1f9d1-1f3ff-200d-1f373.svg │ ├── 1f9d1-1f3ff-200d-1f37c.svg │ ├── 1f9d1-1f3ff-200d-1f384.svg │ ├── 1f9d1-1f3ff-200d-1f393.svg │ ├── 1f9d1-1f3ff-200d-1f3a4.svg │ ├── 1f9d1-1f3ff-200d-1f3a8.svg │ ├── 1f9d1-1f3ff-200d-1f3eb.svg │ ├── 1f9d1-1f3ff-200d-1f3ed.svg │ ├── 1f9d1-1f3ff-200d-1f4bb.svg │ ├── 1f9d1-1f3ff-200d-1f4bc.svg │ ├── 1f9d1-1f3ff-200d-1f527.svg │ ├── 1f9d1-1f3ff-200d-1f52c.svg │ ├── 1f9d1-1f3ff-200d-1f680.svg │ ├── 1f9d1-1f3ff-200d-1f692.svg │ ├── 1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.svg │ ├── 1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.svg │ ├── 1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.svg │ ├── 1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.svg │ ├── 1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.svg │ ├── 1f9d1-1f3ff-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3ff-200d-1f9af.svg │ ├── 1f9d1-1f3ff-200d-1f9b0.svg │ ├── 1f9d1-1f3ff-200d-1f9b1.svg │ ├── 1f9d1-1f3ff-200d-1f9b2.svg │ ├── 1f9d1-1f3ff-200d-1f9b3.svg │ ├── 1f9d1-1f3ff-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3ff-200d-1f9bc.svg │ ├── 1f9d1-1f3ff-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f9d1-1f3ff-200d-1f9bd.svg │ ├── 1f9d1-1f3ff-200d-2695-fe0f.svg │ ├── 1f9d1-1f3ff-200d-2696-fe0f.svg │ ├── 1f9d1-1f3ff-200d-2708-fe0f.svg │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.svg │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.svg │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.svg │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.svg │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fb.svg │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fc.svg │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fd.svg │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fe.svg │ ├── 1f9d1-1f3ff.svg │ ├── 1f9d1-200d-1f33e.svg │ ├── 1f9d1-200d-1f373.svg │ ├── 1f9d1-200d-1f37c.svg │ ├── 1f9d1-200d-1f384.svg │ ├── 1f9d1-200d-1f393.svg │ ├── 1f9d1-200d-1f3a4.svg │ ├── 1f9d1-200d-1f3a8.svg │ ├── 1f9d1-200d-1f3a8svg │ ├── 1f9d1-200d-1f3eb.svg │ ├── 1f9d1-200d-1f3ed.svg │ ├── 1f9d1-200d-1f4bb.svg │ ├── 1f9d1-200d-1f4bc.svg │ ├── 1f9d1-200d-1f527.svg │ ├── 1f9d1-200d-1f52c.svg │ ├── 1f9d1-200d-1f680.svg │ ├── 1f9d1-200d-1f680svg │ ├── 1f9d1-200d-1f692.svg │ ├── 1f9d1-200d-1f91d-200d-1f9d1.svg │ ├── 1f9d1-200d-1f9af-200d-27a1-fe0f.svg │ ├── 1f9d1-200d-1f9af.svg │ ├── 1f9d1-200d-1f9b0.svg │ ├── 1f9d1-200d-1f9b1.svg │ ├── 1f9d1-200d-1f9b2.svg │ ├── 1f9d1-200d-1f9b3.svg │ ├── 1f9d1-200d-1f9bc-200d-27a1-fe0f.svg │ ├── 1f9d1-200d-1f9bc.svg │ ├── 1f9d1-200d-1f9bd-200d-27a1-fe0f.svg │ ├── 1f9d1-200d-1f9bd.svg │ ├── 1f9d1-200d-1f9d1-200d-1f9d2-200d-1f9d2.svg │ ├── 1f9d1-200d-1f9d1-200d-1f9d2.svg │ ├── 1f9d1-200d-1f9d2-200d-1f9d2.svg │ ├── 1f9d1-200d-1f9d2.svg │ ├── 1f9d1-200d-2695-fe0f.svg │ ├── 1f9d1-200d-2696-fe0f.svg │ ├── 1f9d1-200d-2708-fe0f.svg │ ├── 1f9d1.svg │ ├── 1f9d2-1f3fb.svg │ ├── 1f9d2-1f3fc.svg │ ├── 1f9d2-1f3fd.svg │ ├── 1f9d2-1f3fe.svg │ ├── 1f9d2-1f3ff.svg │ ├── 1f9d2.svg │ ├── 1f9d3-1f3fb.svg │ ├── 1f9d3-1f3fc.svg │ ├── 1f9d3-1f3fd.svg │ ├── 1f9d3-1f3fe.svg │ ├── 1f9d3-1f3ff.svg │ ├── 1f9d3.svg │ ├── 1f9d4-1f3fb-200d-2640-fe0f.svg │ ├── 1f9d4-1f3fb-200d-2642-fe0f.svg │ ├── 1f9d4-1f3fb.svg │ ├── 1f9d4-1f3fc-200d-2640-fe0f.svg │ ├── 1f9d4-1f3fc-200d-2642-fe0f.svg │ ├── 1f9d4-1f3fc.svg │ ├── 1f9d4-1f3fd-200d-2640-fe0f.svg │ ├── 1f9d4-1f3fd-200d-2642-fe0f.svg │ ├── 1f9d4-1f3fd.svg │ ├── 1f9d4-1f3fe-200d-2640-fe0f.svg │ ├── 1f9d4-1f3fe-200d-2642-fe0f.svg │ ├── 1f9d4-1f3fe.svg │ ├── 1f9d4-1f3ff-200d-2640-fe0f.svg │ ├── 1f9d4-1f3ff-200d-2642-fe0f.svg │ ├── 1f9d4-1f3ff.svg │ ├── 1f9d4-200d-2640-fe0f.svg │ ├── 1f9d4-200d-2642-fe0f.svg │ ├── 1f9d4.svg │ ├── 1f9d5-1f3fb.svg │ ├── 1f9d5-1f3fc.svg │ ├── 1f9d5-1f3fd.svg │ ├── 1f9d5-1f3fe.svg │ ├── 1f9d5-1f3ff.svg │ ├── 1f9d5.svg │ ├── 1f9d6-1f3fb-200d-2640-fe0f.svg │ ├── 1f9d6-1f3fb-200d-2642-fe0f.svg │ ├── 1f9d6-1f3fb.svg │ ├── 1f9d6-1f3fc-200d-2640-fe0f.svg │ ├── 1f9d6-1f3fc-200d-2642-fe0f.svg │ ├── 1f9d6-1f3fc.svg │ ├── 1f9d6-1f3fd-200d-2640-fe0f.svg │ ├── 1f9d6-1f3fd-200d-2642-fe0f.svg │ ├── 1f9d6-1f3fd.svg │ ├── 1f9d6-1f3fe-200d-2640-fe0f.svg │ ├── 1f9d6-1f3fe-200d-2642-fe0f.svg │ ├── 1f9d6-1f3fe.svg │ ├── 1f9d6-1f3ff-200d-2640-fe0f.svg │ ├── 1f9d6-1f3ff-200d-2642-fe0f.svg │ ├── 1f9d6-1f3ff.svg │ ├── 1f9d6-200d-2640-fe0f.svg │ ├── 1f9d6-200d-2642-fe0f.svg │ ├── 1f9d6.svg │ ├── 1f9d7-1f3fb-200d-2640-fe0f.svg │ ├── 1f9d7-1f3fb-200d-2642-fe0f.svg │ ├── 1f9d7-1f3fb.svg │ ├── 1f9d7-1f3fc-200d-2640-fe0f.svg │ ├── 1f9d7-1f3fc-200d-2642-fe0f.svg │ ├── 1f9d7-1f3fc.svg │ ├── 1f9d7-1f3fd-200d-2640-fe0f.svg │ ├── 1f9d7-1f3fd-200d-2642-fe0f.svg │ ├── 1f9d7-1f3fd.svg │ ├── 1f9d7-1f3fe-200d-2640-fe0f.svg │ ├── 1f9d7-1f3fe-200d-2642-fe0f.svg │ ├── 1f9d7-1f3fe.svg │ ├── 1f9d7-1f3ff-200d-2640-fe0f.svg │ ├── 1f9d7-1f3ff-200d-2642-fe0f.svg │ ├── 1f9d7-1f3ff.svg │ ├── 1f9d7-200d-2640-fe0f.svg │ ├── 1f9d7-200d-2642-fe0f.svg │ ├── 1f9d7.svg │ ├── 1f9d8-1f3fb-200d-2640-fe0f.svg │ ├── 1f9d8-1f3fb-200d-2642-fe0f.svg │ ├── 1f9d8-1f3fb.svg │ ├── 1f9d8-1f3fc-200d-2640-fe0f.svg │ ├── 1f9d8-1f3fc-200d-2642-fe0f.svg │ ├── 1f9d8-1f3fc.svg │ ├── 1f9d8-1f3fd-200d-2640-fe0f.svg │ ├── 1f9d8-1f3fd-200d-2642-fe0f.svg │ ├── 1f9d8-1f3fd.svg │ ├── 1f9d8-1f3fe-200d-2640-fe0f.svg │ ├── 1f9d8-1f3fe-200d-2642-fe0f.svg │ ├── 1f9d8-1f3fe.svg │ ├── 1f9d8-1f3ff-200d-2640-fe0f.svg │ ├── 1f9d8-1f3ff-200d-2642-fe0f.svg │ ├── 1f9d8-1f3ff.svg │ ├── 1f9d8-200d-2640-fe0f.svg │ ├── 1f9d8-200d-2642-fe0f.svg │ ├── 1f9d8.svg │ ├── 1f9d9-1f3fb-200d-2640-fe0f.svg │ ├── 1f9d9-1f3fb-200d-2642-fe0f.svg │ ├── 1f9d9-1f3fb.svg │ ├── 1f9d9-1f3fc-200d-2640-fe0f.svg │ ├── 1f9d9-1f3fc-200d-2642-fe0f.svg │ ├── 1f9d9-1f3fc.svg │ ├── 1f9d9-1f3fd-200d-2640-fe0f.svg │ ├── 1f9d9-1f3fd-200d-2642-fe0f.svg │ ├── 1f9d9-1f3fd.svg │ ├── 1f9d9-1f3fe-200d-2640-fe0f.svg │ ├── 1f9d9-1f3fe-200d-2642-fe0f.svg │ ├── 1f9d9-1f3fe.svg │ ├── 1f9d9-1f3ff-200d-2640-fe0f.svg │ ├── 1f9d9-1f3ff-200d-2642-fe0f.svg │ ├── 1f9d9-1f3ff.svg │ ├── 1f9d9-200d-2640-fe0f.svg │ ├── 1f9d9-200d-2642-fe0f.svg │ ├── 1f9d9.svg │ ├── 1f9da-1f3fb-200d-2640-fe0f.svg │ ├── 1f9da-1f3fb-200d-2642-fe0f.svg │ ├── 1f9da-1f3fb.svg │ ├── 1f9da-1f3fc-200d-2640-fe0f.svg │ ├── 1f9da-1f3fc-200d-2642-fe0f.svg │ ├── 1f9da-1f3fc.svg │ ├── 1f9da-1f3fd-200d-2640-fe0f.svg │ ├── 1f9da-1f3fd-200d-2642-fe0f.svg │ ├── 1f9da-1f3fd.svg │ ├── 1f9da-1f3fe-200d-2640-fe0f.svg │ ├── 1f9da-1f3fe-200d-2642-fe0f.svg │ ├── 1f9da-1f3fe.svg │ ├── 1f9da-1f3ff-200d-2640-fe0f.svg │ ├── 1f9da-1f3ff-200d-2642-fe0f.svg │ ├── 1f9da-1f3ff.svg │ ├── 1f9da-200d-2640-fe0f.svg │ ├── 1f9da-200d-2642-fe0f.svg │ ├── 1f9da.svg │ ├── 1f9db-1f3fb-200d-2640-fe0f.svg │ ├── 1f9db-1f3fb-200d-2642-fe0f.svg │ ├── 1f9db-1f3fb.svg │ ├── 1f9db-1f3fc-200d-2640-fe0f.svg │ ├── 1f9db-1f3fc-200d-2642-fe0f.svg │ ├── 1f9db-1f3fc.svg │ ├── 1f9db-1f3fd-200d-2640-fe0f.svg │ ├── 1f9db-1f3fd-200d-2642-fe0f.svg │ ├── 1f9db-1f3fd.svg │ ├── 1f9db-1f3fe-200d-2640-fe0f.svg │ ├── 1f9db-1f3fe-200d-2642-fe0f.svg │ ├── 1f9db-1f3fe.svg │ ├── 1f9db-1f3ff-200d-2640-fe0f.svg │ ├── 1f9db-1f3ff-200d-2642-fe0f.svg │ ├── 1f9db-1f3ff.svg │ ├── 1f9db-200d-2640-fe0f.svg │ ├── 1f9db-200d-2642-fe0f.svg │ ├── 1f9db.svg │ ├── 1f9dc-1f3fb-200d-2640-fe0f.svg │ ├── 1f9dc-1f3fb-200d-2642-fe0f.svg │ ├── 1f9dc-1f3fb.svg │ ├── 1f9dc-1f3fc-200d-2640-fe0f.svg │ ├── 1f9dc-1f3fc-200d-2642-fe0f.svg │ ├── 1f9dc-1f3fc.svg │ ├── 1f9dc-1f3fd-200d-2640-fe0f.svg │ ├── 1f9dc-1f3fd-200d-2642-fe0f.svg │ ├── 1f9dc-1f3fd.svg │ ├── 1f9dc-1f3fe-200d-2640-fe0f.svg │ ├── 1f9dc-1f3fe-200d-2642-fe0f.svg │ ├── 1f9dc-1f3fe.svg │ ├── 1f9dc-1f3ff-200d-2640-fe0f.svg │ ├── 1f9dc-1f3ff-200d-2642-fe0f.svg │ ├── 1f9dc-1f3ff.svg │ ├── 1f9dc-200d-2640-fe0f.svg │ ├── 1f9dc-200d-2642-fe0f.svg │ ├── 1f9dc.svg │ ├── 1f9dd-1f3fb-200d-2640-fe0f.svg │ ├── 1f9dd-1f3fb-200d-2642-fe0f.svg │ ├── 1f9dd-1f3fb.svg │ ├── 1f9dd-1f3fc-200d-2640-fe0f.svg │ ├── 1f9dd-1f3fc-200d-2642-fe0f.svg │ ├── 1f9dd-1f3fc.svg │ ├── 1f9dd-1f3fd-200d-2640-fe0f.svg │ ├── 1f9dd-1f3fd-200d-2642-fe0f.svg │ ├── 1f9dd-1f3fd.svg │ ├── 1f9dd-1f3fe-200d-2640-fe0f.svg │ ├── 1f9dd-1f3fe-200d-2642-fe0f.svg │ ├── 1f9dd-1f3fe.svg │ ├── 1f9dd-1f3ff-200d-2640-fe0f.svg │ ├── 1f9dd-1f3ff-200d-2642-fe0f.svg │ ├── 1f9dd-1f3ff.svg │ ├── 1f9dd-200d-2640-fe0f.svg │ ├── 1f9dd-200d-2642-fe0f.svg │ ├── 1f9dd.svg │ ├── 1f9de-200d-2640-fe0f.svg │ ├── 1f9de-200d-2642-fe0f.svg │ ├── 1f9de.svg │ ├── 1f9df-200d-2640-fe0f.svg │ ├── 1f9df-200d-2642-fe0f.svg │ ├── 1f9df.svg │ ├── 1f9e0.svg │ ├── 1f9e1.svg │ ├── 1f9e2.svg │ ├── 1f9e3.svg │ ├── 1f9e4.svg │ ├── 1f9e5.svg │ ├── 1f9e6.svg │ ├── 1f9e7.svg │ ├── 1f9e8.svg │ ├── 1f9e9.svg │ ├── 1f9ea.svg │ ├── 1f9eb.svg │ ├── 1f9ec.svg │ ├── 1f9ed.svg │ ├── 1f9ee.svg │ ├── 1f9ef.svg │ ├── 1f9f0.svg │ ├── 1f9f1.svg │ ├── 1f9f2.svg │ ├── 1f9f3.svg │ ├── 1f9f4.svg │ ├── 1f9f5.svg │ ├── 1f9f6.svg │ ├── 1f9f7.svg │ ├── 1f9f8.svg │ ├── 1f9f9.svg │ ├── 1f9fa.svg │ ├── 1f9fb.svg │ ├── 1f9fc.svg │ ├── 1f9fd.svg │ ├── 1f9fe.svg │ ├── 1f9ff.svg │ ├── 1fa70.svg │ ├── 1fa71.svg │ ├── 1fa72.svg │ ├── 1fa73.svg │ ├── 1fa74.svg │ ├── 1fa75.svg │ ├── 1fa76.svg │ ├── 1fa77.svg │ ├── 1fa78.svg │ ├── 1fa79.svg │ ├── 1fa7a.svg │ ├── 1fa7b.svg │ ├── 1fa7c.svg │ ├── 1fa80.svg │ ├── 1fa81.svg │ ├── 1fa82.svg │ ├── 1fa83.svg │ ├── 1fa84.svg │ ├── 1fa85.svg │ ├── 1fa86.svg │ ├── 1fa87.svg │ ├── 1fa88.svg │ ├── 1fa90.svg │ ├── 1fa91.svg │ ├── 1fa92.svg │ ├── 1fa93.svg │ ├── 1fa94.svg │ ├── 1fa95.svg │ ├── 1fa96.svg │ ├── 1fa97.svg │ ├── 1fa98.svg │ ├── 1fa99.svg │ ├── 1fa9a.svg │ ├── 1fa9b.svg │ ├── 1fa9c.svg │ ├── 1fa9d.svg │ ├── 1fa9e.svg │ ├── 1fa9f.svg │ ├── 1faa0.svg │ ├── 1faa1.svg │ ├── 1faa2.svg │ ├── 1faa3.svg │ ├── 1faa4.svg │ ├── 1faa5.svg │ ├── 1faa6.svg │ ├── 1faa7.svg │ ├── 1faa8.svg │ ├── 1faa9.svg │ ├── 1faaa.svg │ ├── 1faab.svg │ ├── 1faac.svg │ ├── 1faad.svg │ ├── 1faae.svg │ ├── 1faae_border.svg │ ├── 1faaf.svg │ ├── 1fab0.svg │ ├── 1fab1.svg │ ├── 1fab2.svg │ ├── 1fab3.svg │ ├── 1fab4.svg │ ├── 1fab5.svg │ ├── 1fab6.svg │ ├── 1fab7.svg │ ├── 1fab8.svg │ ├── 1fab9.svg │ ├── 1faba.svg │ ├── 1fabb.svg │ ├── 1fabc.svg │ ├── 1fabd.svg │ ├── 1fabd_border.svg │ ├── 1fabf.svg │ ├── 1fabf_border.svg │ ├── 1fac0.svg │ ├── 1fac1.svg │ ├── 1fac2.svg │ ├── 1fac3-1f3fb.svg │ ├── 1fac3-1f3fc.svg │ ├── 1fac3-1f3fd.svg │ ├── 1fac3-1f3fe.svg │ ├── 1fac3-1f3ff.svg │ ├── 1fac3.svg │ ├── 1fac4-1f3fb.svg │ ├── 1fac4-1f3fc.svg │ ├── 1fac4-1f3fd.svg │ ├── 1fac4-1f3fe.svg │ ├── 1fac4-1f3ff.svg │ ├── 1fac4.svg │ ├── 1fac5-1f3fb.svg │ ├── 1fac5-1f3fc.svg │ ├── 1fac5-1f3fd.svg │ ├── 1fac5-1f3fe.svg │ ├── 1fac5-1f3ff.svg │ ├── 1fac5.svg │ ├── 1face.svg │ ├── 1facf.svg │ ├── 1fad0.svg │ ├── 1fad1.svg │ ├── 1fad2.svg │ ├── 1fad3.svg │ ├── 1fad4.svg │ ├── 1fad5.svg │ ├── 1fad6.svg │ ├── 1fad7.svg │ ├── 1fad8.svg │ ├── 1fad9.svg │ ├── 1fada.svg │ ├── 1fadb.svg │ ├── 1fae0.svg │ ├── 1fae1.svg │ ├── 1fae2.svg │ ├── 1fae3.svg │ ├── 1fae4.svg │ ├── 1fae5.svg │ ├── 1fae6.svg │ ├── 1fae7.svg │ ├── 1fae8.svg │ ├── 1faf0-1f3fb.svg │ ├── 1faf0-1f3fc.svg │ ├── 1faf0-1f3fd.svg │ ├── 1faf0-1f3fe.svg │ ├── 1faf0-1f3ff.svg │ ├── 1faf0.svg │ ├── 1faf1-1f3fb-200d-1faf2-1f3fc.svg │ ├── 1faf1-1f3fb-200d-1faf2-1f3fd.svg │ ├── 1faf1-1f3fb-200d-1faf2-1f3fe.svg │ ├── 1faf1-1f3fb-200d-1faf2-1f3ff.svg │ ├── 1faf1-1f3fb.svg │ ├── 1faf1-1f3fc-200d-1faf2-1f3fb.svg │ ├── 1faf1-1f3fc-200d-1faf2-1f3fd.svg │ ├── 1faf1-1f3fc-200d-1faf2-1f3fe.svg │ ├── 1faf1-1f3fc-200d-1faf2-1f3ff.svg │ ├── 1faf1-1f3fc.svg │ ├── 1faf1-1f3fd-200d-1faf2-1f3fb.svg │ ├── 1faf1-1f3fd-200d-1faf2-1f3fc.svg │ ├── 1faf1-1f3fd-200d-1faf2-1f3fe.svg │ ├── 1faf1-1f3fd-200d-1faf2-1f3ff.svg │ ├── 1faf1-1f3fd.svg │ ├── 1faf1-1f3fe-200d-1faf2-1f3fb.svg │ ├── 1faf1-1f3fe-200d-1faf2-1f3fc.svg │ ├── 1faf1-1f3fe-200d-1faf2-1f3fd.svg │ ├── 1faf1-1f3fe-200d-1faf2-1f3ff.svg │ ├── 1faf1-1f3fe.svg │ ├── 1faf1-1f3ff-200d-1faf2-1f3fb.svg │ ├── 1faf1-1f3ff-200d-1faf2-1f3fc.svg │ ├── 1faf1-1f3ff-200d-1faf2-1f3fd.svg │ ├── 1faf1-1f3ff-200d-1faf2-1f3fe.svg │ ├── 1faf1-1f3ff.svg │ ├── 1faf1.svg │ ├── 1faf2-1f3fb.svg │ ├── 1faf2-1f3fc.svg │ ├── 1faf2-1f3fd.svg │ ├── 1faf2-1f3fe.svg │ ├── 1faf2-1f3ff.svg │ ├── 1faf2.svg │ ├── 1faf3-1f3fb.svg │ ├── 1faf3-1f3fc.svg │ ├── 1faf3-1f3fd.svg │ ├── 1faf3-1f3fe.svg │ ├── 1faf3-1f3ff.svg │ ├── 1faf3.svg │ ├── 1faf4-1f3fb.svg │ ├── 1faf4-1f3fc.svg │ ├── 1faf4-1f3fd.svg │ ├── 1faf4-1f3fe.svg │ ├── 1faf4-1f3ff.svg │ ├── 1faf4.svg │ ├── 1faf5-1f3fb.svg │ ├── 1faf5-1f3fc.svg │ ├── 1faf5-1f3fd.svg │ ├── 1faf5-1f3fe.svg │ ├── 1faf5-1f3ff.svg │ ├── 1faf5.svg │ ├── 1faf6-1f3fb.svg │ ├── 1faf6-1f3fc.svg │ ├── 1faf6-1f3fd.svg │ ├── 1faf6-1f3fe.svg │ ├── 1faf6-1f3ff.svg │ ├── 1faf6.svg │ ├── 1faf7-1f3fb.svg │ ├── 1faf7-1f3fc.svg │ ├── 1faf7-1f3fd.svg │ ├── 1faf7-1f3fe.svg │ ├── 1faf7-1f3ff.svg │ ├── 1faf7.svg │ ├── 1faf8-1f3fb.svg │ ├── 1faf8-1f3fc.svg │ ├── 1faf8-1f3fd.svg │ ├── 1faf8-1f3fe.svg │ ├── 1faf8-1f3ff.svg │ ├── 1faf8.svg │ ├── 203c-fe0f.svg │ ├── 203c.svg │ ├── 2049-fe0f.svg │ ├── 2049.svg │ ├── 2122-fe0f.svg │ ├── 2122.svg │ ├── 2122_border.svg │ ├── 2139-fe0f.svg │ ├── 2139.svg │ ├── 2194-fe0f.svg │ ├── 2194.svg │ ├── 2195-fe0f.svg │ ├── 2195.svg │ ├── 2196-fe0f.svg │ ├── 2196.svg │ ├── 2197-fe0f.svg │ ├── 2197.svg │ ├── 2198-fe0f.svg │ ├── 2198.svg │ ├── 2199-fe0f.svg │ ├── 2199.svg │ ├── 21a9-fe0f.svg │ ├── 21a9.svg │ ├── 21aa-fe0f.svg │ ├── 21aa.svg │ ├── 23-20e3.svg │ ├── 23-fe0f-20e3.svg │ ├── 231a.svg │ ├── 231b.svg │ ├── 2328-fe0f.svg │ ├── 2328.svg │ ├── 23cf-fe0f.svg │ ├── 23cf.svg │ ├── 23e9.svg │ ├── 23ea.svg │ ├── 23eb.svg │ ├── 23ec.svg │ ├── 23ed-fe0f.svg │ ├── 23ed.svg │ ├── 23ee-fe0f.svg │ ├── 23ee.svg │ ├── 23ef-fe0f.svg │ ├── 23ef.svg │ ├── 23f0.svg │ ├── 23f1-fe0f.svg │ ├── 23f1.svg │ ├── 23f2-fe0f.svg │ ├── 23f2.svg │ ├── 23f3.svg │ ├── 23f8-fe0f.svg │ ├── 23f8.svg │ ├── 23f9-fe0f.svg │ ├── 23f9.svg │ ├── 23fa-fe0f.svg │ ├── 23fa.svg │ ├── 24c2-fe0f.svg │ ├── 24c2.svg │ ├── 25aa-fe0f.svg │ ├── 25aa.svg │ ├── 25aa_border.svg │ ├── 25ab-fe0f.svg │ ├── 25ab.svg │ ├── 25ab_border.svg │ ├── 25b6-fe0f.svg │ ├── 25b6.svg │ ├── 25c0-fe0f.svg │ ├── 25c0.svg │ ├── 25fb-fe0f.svg │ ├── 25fb.svg │ ├── 25fb_border.svg │ ├── 25fc-fe0f.svg │ ├── 25fc.svg │ ├── 25fc_border.svg │ ├── 25fd.svg │ ├── 25fd_border.svg │ ├── 25fe.svg │ ├── 25fe_border.svg │ ├── 2600-fe0f.svg │ ├── 2600.svg │ ├── 2601-fe0f.svg │ ├── 2601.svg │ ├── 2601_border.svg │ ├── 2602-fe0f.svg │ ├── 2602.svg │ ├── 2603-fe0f.svg │ ├── 2603.svg │ ├── 2604-fe0f.svg │ ├── 2604.svg │ ├── 260e-fe0f.svg │ ├── 260e.svg │ ├── 2611-fe0f.svg │ ├── 2611.svg │ ├── 2614.svg │ ├── 2615.svg │ ├── 2618-fe0f.svg │ ├── 2618.svg │ ├── 261d-1f3fb.svg │ ├── 261d-1f3fc.svg │ ├── 261d-1f3fd.svg │ ├── 261d-1f3fe.svg │ ├── 261d-1f3ff.svg │ ├── 261d-fe0f.svg │ ├── 261d.svg │ ├── 2620-fe0f.svg │ ├── 2620.svg │ ├── 2620_border.svg │ ├── 2622-fe0f.svg │ ├── 2622.svg │ ├── 2623-fe0f.svg │ ├── 2623.svg │ ├── 2626-fe0f.svg │ ├── 2626.svg │ ├── 262a-fe0f.svg │ ├── 262a.svg │ ├── 262e-fe0f.svg │ ├── 262e.svg │ ├── 262f-fe0f.svg │ ├── 262f.svg │ ├── 2638-fe0f.svg │ ├── 2638.svg │ ├── 2639-fe0f.svg │ ├── 2639.svg │ ├── 263a-fe0f.svg │ ├── 263a.svg │ ├── 2640-fe0f.svg │ ├── 2640.svg │ ├── 2642-fe0f.svg │ ├── 2642.svg │ ├── 2648.svg │ ├── 2649.svg │ ├── 264a.svg │ ├── 264b.svg │ ├── 264c.svg │ ├── 264d.svg │ ├── 264e.svg │ ├── 264f.svg │ ├── 2650.svg │ ├── 2651.svg │ ├── 2652.svg │ ├── 2653.svg │ ├── 265f-fe0f.svg │ ├── 265f.svg │ ├── 2660-fe0f.svg │ ├── 2660.svg │ ├── 2660_border.svg │ ├── 2663-fe0f.svg │ ├── 2663.svg │ ├── 2663_border.svg │ ├── 2665-fe0f.svg │ ├── 2665.svg │ ├── 2666-fe0f.svg │ ├── 2666.svg │ ├── 2668-fe0f.svg │ ├── 2668.svg │ ├── 267b-fe0f.svg │ ├── 267b.svg │ ├── 267e-fe0f.svg │ ├── 267e.svg │ ├── 267f.svg │ ├── 2692-fe0f.svg │ ├── 2692.svg │ ├── 2693.svg │ ├── 2694-fe0f.svg │ ├── 2694.svg │ ├── 2695-fe0f.svg │ ├── 2695.svg │ ├── 2696-fe0f.svg │ ├── 2696.svg │ ├── 2697-fe0f.svg │ ├── 2697.svg │ ├── 2699-fe0f.svg │ ├── 2699.svg │ ├── 269b-fe0f.svg │ ├── 269b.svg │ ├── 269c-fe0f.svg │ ├── 269c.svg │ ├── 26a0-fe0f.svg │ ├── 26a0.svg │ ├── 26a1.svg │ ├── 26a7-fe0f.svg │ ├── 26a7.svg │ ├── 26aa.svg │ ├── 26aa_border.svg │ ├── 26ab.svg │ ├── 26ab_border.svg │ ├── 26b0-fe0f.svg │ ├── 26b0.svg │ ├── 26b1-fe0f.svg │ ├── 26b1.svg │ ├── 26bd.svg │ ├── 26be.svg │ ├── 26be_border.svg │ ├── 26c4.svg │ ├── 26c5.svg │ ├── 26c8-fe0f.svg │ ├── 26c8.svg │ ├── 26ce.svg │ ├── 26cf-fe0f.svg │ ├── 26cf.svg │ ├── 26d1-fe0f.svg │ ├── 26d1.svg │ ├── 26d3-fe0f-200d-1f4a5.svg │ ├── 26d3-fe0f.svg │ ├── 26d3.svg │ ├── 26d4.svg │ ├── 26e9.svg │ ├── 26ea.svg │ ├── 26f0-fe0f.svg │ ├── 26f0.svg │ ├── 26f1-fe0f.svg │ ├── 26f1.svg │ ├── 26f2.svg │ ├── 26f3.svg │ ├── 26f4-fe0f.svg │ ├── 26f4.svg │ ├── 26f5.svg │ ├── 26f7-1f3fb.svg │ ├── 26f7-1f3fc.svg │ ├── 26f7-1f3fd.svg │ ├── 26f7-1f3fe.svg │ ├── 26f7-1f3ff.svg │ ├── 26f7-fe0f.svg │ ├── 26f7.svg │ ├── 26f8-fe0f.svg │ ├── 26f8.svg │ ├── 26f8_border.svg │ ├── 26f9-1f3fb-200d-2640-fe0f.svg │ ├── 26f9-1f3fb-200d-2640.svg │ ├── 26f9-1f3fb-200d-2642-fe0f.svg │ ├── 26f9-1f3fb-200d-2642.svg │ ├── 26f9-1f3fb.svg │ ├── 26f9-1f3fc-200d-2640-fe0f.svg │ ├── 26f9-1f3fc-200d-2640.svg │ ├── 26f9-1f3fc-200d-2642-fe0f.svg │ ├── 26f9-1f3fc-200d-2642.svg │ ├── 26f9-1f3fc.svg │ ├── 26f9-1f3fd-200d-2640-fe0f.svg │ ├── 26f9-1f3fd-200d-2640.svg │ ├── 26f9-1f3fd-200d-2642-fe0f.svg │ ├── 26f9-1f3fd-200d-2642.svg │ ├── 26f9-1f3fd.svg │ ├── 26f9-1f3fe-200d-2640-fe0f.svg │ ├── 26f9-1f3fe-200d-2640.svg │ ├── 26f9-1f3fe-200d-2642-fe0f.svg │ ├── 26f9-1f3fe-200d-2642.svg │ ├── 26f9-1f3fe.svg │ ├── 26f9-1f3ff-200d-2640-fe0f.svg │ ├── 26f9-1f3ff-200d-2640.svg │ ├── 26f9-1f3ff-200d-2642-fe0f.svg │ ├── 26f9-1f3ff-200d-2642.svg │ ├── 26f9-1f3ff.svg │ ├── 26f9-200d-2640.svg │ ├── 26f9-200d-2642.svg │ ├── 26f9-fe0f-200d-2640-fe0f.svg │ ├── 26f9-fe0f-200d-2642-fe0f.svg │ ├── 26f9-fe0f.svg │ ├── 26f9.svg │ ├── 26fa.svg │ ├── 26fd.svg │ ├── 2702-fe0f.svg │ ├── 2702.svg │ ├── 2705.svg │ ├── 2708-fe0f.svg │ ├── 2708.svg │ ├── 2709-fe0f.svg │ ├── 2709.svg │ ├── 270a-1f3fb.svg │ ├── 270a-1f3fc.svg │ ├── 270a-1f3fd.svg │ ├── 270a-1f3fe.svg │ ├── 270a-1f3ff.svg │ ├── 270a.svg │ ├── 270b-1f3fb.svg │ ├── 270b-1f3fc.svg │ ├── 270b-1f3fd.svg │ ├── 270b-1f3fe.svg │ ├── 270b-1f3ff.svg │ ├── 270b.svg │ ├── 270c-1f3fb.svg │ ├── 270c-1f3fc.svg │ ├── 270c-1f3fd.svg │ ├── 270c-1f3fe.svg │ ├── 270c-1f3ff.svg │ ├── 270c-fe0f.svg │ ├── 270c.svg │ ├── 270d-1f3fb.svg │ ├── 270d-1f3fc.svg │ ├── 270d-1f3fd.svg │ ├── 270d-1f3fe.svg │ ├── 270d-1f3ff.svg │ ├── 270d-fe0f.svg │ ├── 270d.svg │ ├── 270f-fe0f.svg │ ├── 270f.svg │ ├── 2712-fe0f.svg │ ├── 2712.svg │ ├── 2712_border.svg │ ├── 2714-fe0f.svg │ ├── 2714.svg │ ├── 2714_border.svg │ ├── 2716-fe0f.svg │ ├── 2716.svg │ ├── 2716_border.svg │ ├── 271d-fe0f.svg │ ├── 271d.svg │ ├── 2721-fe0f.svg │ ├── 2721.svg │ ├── 2728.svg │ ├── 2733-fe0f.svg │ ├── 2733.svg │ ├── 2734-fe0f.svg │ ├── 2734.svg │ ├── 2734_border.svg │ ├── 2744-fe0f.svg │ ├── 2744.svg │ ├── 2747-fe0f.svg │ ├── 2747.svg │ ├── 274c.svg │ ├── 274e.svg │ ├── 2753.svg │ ├── 2754.svg │ ├── 2754_border.svg │ ├── 2755.svg │ ├── 2755_border.svg │ ├── 2757.svg │ ├── 2763-fe0f.svg │ ├── 2763.svg │ ├── 2764-fe0f-200d-1f525.svg │ ├── 2764-fe0f-200d-1fa79.svg │ ├── 2764.svg │ ├── 2795.svg │ ├── 2795_border.svg │ ├── 2796.svg │ ├── 2796_border.svg │ ├── 2797.svg │ ├── 2797_border.svg │ ├── 27a1-fe0f.svg │ ├── 27a1.svg │ ├── 27b0.svg │ ├── 27b0_border.svg │ ├── 27bf.svg │ ├── 2934-fe0f.svg │ ├── 2934.svg │ ├── 2935-fe0f.svg │ ├── 2935.svg │ ├── 2a-20e3.svg │ ├── 2a-fe0f-20e3.svg │ ├── 2b05-fe0f.svg │ ├── 2b05.svg │ ├── 2b06-fe0f.svg │ ├── 2b06.svg │ ├── 2b07-fe0f.svg │ ├── 2b07.svg │ ├── 2b1b.svg │ ├── 2b1b_border.svg │ ├── 2b1c.svg │ ├── 2b1c_border.svg │ ├── 2b50.svg │ ├── 2b55.svg │ ├── 30-20e3.svg │ ├── 30-fe0f-20e3.svg │ ├── 3030-fe0f.svg │ ├── 3030.svg │ ├── 3030_border.svg │ ├── 303d-fe0f.svg │ ├── 303d.svg │ ├── 31-20e3.svg │ ├── 31-fe0f-20e3.svg │ ├── 32-20e3.svg │ ├── 32-fe0f-20e3.svg │ ├── 3297-fe0f.svg │ ├── 3297.svg │ ├── 3299-fe0f.svg │ ├── 3299.svg │ ├── 33-20e3.svg │ ├── 33-fe0f-20e3.svg │ ├── 34-20e3.svg │ ├── 34-fe0f-20e3.svg │ ├── 35-20e3.svg │ ├── 35-fe0f-20e3.svg │ ├── 36-20e3.svg │ ├── 36-fe0f-20e3.svg │ ├── 37-20e3.svg │ ├── 37-fe0f-20e3.svg │ ├── 38-20e3.svg │ ├── 38-fe0f-20e3.svg │ ├── 39-20e3.svg │ ├── 39-fe0f-20e3.svg │ ├── a9-fe0f.svg │ ├── a9.svg │ ├── ae-fe0f.svg │ ├── ae.svg │ ├── e50a.svg │ └── sheet_15_1.png ├── favicon.ico ├── headers │ └── original │ │ └── missing.png ├── loading.gif ├── loading.png ├── logo-cybre-glitch.gif ├── ocr │ └── lang-data │ │ └── eng.traineddata.gz ├── oops.gif ├── oops.png ├── riot-glitch.png ├── robots.txt ├── sounds │ ├── boop.mp3 │ └── boop.ogg ├── sw.js ├── sw.js.map ├── tenor.svg ├── web-push-icon_expand.png ├── web-push-icon_favourite.png └── web-push-icon_reblog.png ├── scalingo.json ├── spec ├── chewy │ ├── accounts_index_spec.rb │ ├── public_statuses_index_spec.rb │ ├── statuses_index_spec.rb │ └── tags_index_spec.rb ├── config │ └── initializers │ │ └── rack │ │ └── attack_spec.rb ├── controllers │ ├── activitypub │ │ ├── collections_controller_spec.rb │ │ ├── followers_synchronizations_controller_spec.rb │ │ ├── inboxes_controller_spec.rb │ │ ├── outboxes_controller_spec.rb │ │ └── replies_controller_spec.rb │ ├── admin │ │ ├── account_actions_controller_spec.rb │ │ ├── accounts_controller_spec.rb │ │ ├── action_logs_controller_spec.rb │ │ ├── base_controller_spec.rb │ │ ├── change_emails_controller_spec.rb │ │ ├── confirmations_controller_spec.rb │ │ ├── dashboard_controller_spec.rb │ │ ├── disputes │ │ │ └── appeals_controller_spec.rb │ │ ├── domain_blocks_controller_spec.rb │ │ ├── export_domain_allows_controller_spec.rb │ │ ├── export_domain_blocks_controller_spec.rb │ │ ├── instances_controller_spec.rb │ │ ├── reports │ │ │ └── actions_controller_spec.rb │ │ ├── statuses_controller_spec.rb │ │ └── users │ │ │ └── two_factor_authentications_controller_spec.rb │ ├── api │ │ ├── base_controller_spec.rb │ │ └── web │ │ │ └── push_subscriptions_controller_spec.rb │ ├── application_controller_spec.rb │ ├── auth │ │ ├── confirmations_controller_spec.rb │ │ ├── registrations_controller_spec.rb │ │ └── sessions_controller_spec.rb │ ├── authorize_interactions_controller_spec.rb │ ├── concerns │ │ ├── account_controller_concern_spec.rb │ │ ├── accountable_concern_spec.rb │ │ ├── api │ │ │ ├── error_handling_spec.rb │ │ │ └── rate_limit_headers_spec.rb │ │ ├── challengable_concern_spec.rb │ │ ├── localized_spec.rb │ │ ├── preloading_concern_spec.rb │ │ ├── settings │ │ │ └── export_controller_concern_spec.rb │ │ └── user_tracking_concern_spec.rb │ ├── disputes │ │ └── strikes_controller_spec.rb │ ├── filters │ │ └── statuses_controller_spec.rb │ ├── follower_accounts_controller_spec.rb │ ├── following_accounts_controller_spec.rb │ ├── intents_controller_spec.rb │ ├── oauth │ │ ├── authorizations_controller_spec.rb │ │ ├── authorized_applications_controller_spec.rb │ │ └── tokens_controller_spec.rb │ ├── relationships_controller_spec.rb │ └── settings │ │ ├── aliases_controller_spec.rb │ │ ├── deletes_controller_spec.rb │ │ ├── flavours_controller_spec.rb │ │ ├── imports_controller_spec.rb │ │ ├── pictures_controller_spec.rb │ │ ├── preferences │ │ └── base_controller_spec.rb │ │ └── two_factor_authentication │ │ ├── confirmations_controller_spec.rb │ │ ├── otp_authentication_controller_spec.rb │ │ └── webauthn_credentials_controller_spec.rb ├── fabrication │ └── fabricators_spec.rb ├── fabricators │ ├── access_grant_fabricator.rb │ ├── access_token_fabricator.rb │ ├── accessible_access_token_fabricator.rb │ ├── account_conversation_fabricator.rb │ ├── account_deletion_request_fabricator.rb │ ├── account_domain_block_fabricator.rb │ ├── account_fabricator.rb │ ├── account_migration_fabricator.rb │ ├── account_moderation_note_fabricator.rb │ ├── account_note_fabricator.rb │ ├── account_pin_fabricator.rb │ ├── account_relationship_severance_event_fabricator.rb │ ├── account_stat_fabricator.rb │ ├── account_statuses_cleanup_policy_fabricator.rb │ ├── account_warning_fabricator.rb │ ├── account_warning_preset_fabricator.rb │ ├── action_log_fabricator.rb │ ├── announcement_fabricator.rb │ ├── announcement_mute_fabricator.rb │ ├── announcement_reaction_fabricator.rb │ ├── appeal_fabricator.rb │ ├── application_fabricator.rb │ ├── assets │ │ ├── TEAPOT │ │ └── utah_teapot.png │ ├── backup_fabricator.rb │ ├── block_fabricator.rb │ ├── bookmark_fabricator.rb │ ├── bulk_import_fabricator.rb │ ├── bulk_import_row_fabricator.rb │ ├── canonical_email_block_fabricator.rb │ ├── conversation_fabricator.rb │ ├── custom_emoji_category_fabricator.rb │ ├── custom_emoji_fabricator.rb │ ├── custom_filter_fabricator.rb │ ├── custom_filter_keyword_fabricator.rb │ ├── custom_filter_status_fabricator.rb │ ├── domain_allow_fabricator.rb │ ├── domain_block_fabricator.rb │ ├── email_domain_block_fabricator.rb │ ├── favourite_fabricator.rb │ ├── featured_tag_fabricator.rb │ ├── follow_fabricator.rb │ ├── follow_recommendation_mute_fabricator.rb │ ├── follow_request_fabricator.rb │ ├── generated_annual_report_fabricator.rb │ ├── identity_fabricator.rb │ ├── import_fabricator.rb │ ├── invite_fabricator.rb │ ├── ip_block_fabricator.rb │ ├── list_account_fabricator.rb │ ├── list_fabricator.rb │ ├── login_activity_fabricator.rb │ ├── marker_fabricator.rb │ ├── media_attachment_fabricator.rb │ ├── mention_fabricator.rb │ ├── mute_fabricator.rb │ ├── notification_fabricator.rb │ ├── notification_permission_fabricator.rb │ ├── notification_policy_fabricator.rb │ ├── notification_request_fabricator.rb │ ├── poll_fabricator.rb │ ├── poll_vote_fabricator.rb │ ├── preview_card_fabricator.rb │ ├── preview_card_provider_fabricator.rb │ ├── preview_card_trend_fabricator.rb │ ├── relationship_severance_event_fabricator.rb │ ├── relay_fabricator.rb │ ├── report_fabricator.rb │ ├── report_note_fabricator.rb │ ├── rule_fabricator.rb │ ├── scheduled_status_fabricator.rb │ ├── session_activation_fabricator.rb │ ├── setting_fabricator.rb │ ├── severed_relationship_fabricator.rb │ ├── site_upload_fabricator.rb │ ├── software_update_fabricator.rb │ ├── status_edit_fabricator.rb │ ├── status_fabricator.rb │ ├── status_pin_fabricator.rb │ ├── status_reaction_fabricator.rb │ ├── status_stat_fabricator.rb │ ├── status_trend_fabricator.rb │ ├── tag_fabricator.rb │ ├── tag_follow_fabricator.rb │ ├── tag_trend_fabricator.rb │ ├── terms_of_service_fabricator.rb │ ├── tombstone_fabricator.rb │ ├── unavailable_domain_fabricator.rb │ ├── user_fabricator.rb │ ├── user_role_fabricator.rb │ ├── web_push_subscription_fabricator.rb │ ├── webauthn_credential_fabricator.rb │ └── webhook_fabricator.rb ├── fixtures │ ├── files │ │ ├── 600x400.avif │ │ ├── 600x400.heic │ │ ├── 600x400.jpeg │ │ ├── 600x400.png │ │ ├── 600x400.webp │ │ ├── attachment-jpg.123456_abcd │ │ ├── attachment.gif │ │ ├── attachment.jpg │ │ ├── attachment.webm │ │ ├── avatar-high.gif │ │ ├── avatar.gif │ │ ├── bookmark-imports.txt │ │ ├── boop.mp3 │ │ ├── boop.ogg │ │ ├── domain_allows.csv │ │ ├── domain_blocks.csv │ │ ├── domain_blocks_list.txt │ │ ├── elite-assets.tar.gz │ │ ├── emojo.png │ │ ├── empty.csv │ │ ├── following_accounts.csv │ │ ├── imports.txt │ │ ├── lists.csv │ │ ├── mini-static.gif │ │ ├── monochrome.png │ │ ├── mute-imports.txt │ │ ├── muted_accounts.csv │ │ ├── new-following-imports.txt │ │ ├── new-mute-imports.txt │ │ ├── text.png │ │ └── utf8-followers.txt │ ├── push │ │ ├── feed.atom │ │ └── reblog.atom │ ├── requests │ │ ├── .host-meta.txt │ │ ├── activitypub-actor-individual.txt │ │ ├── activitypub-actor-noinbox.txt │ │ ├── activitypub-actor.txt │ │ ├── activitypub-feed.txt │ │ ├── activitypub-webfinger.txt │ │ ├── alternative_utf8_spelling_in_header.txt │ │ ├── attachment1.txt │ │ ├── attachment2.txt │ │ ├── avatar.txt │ │ ├── feed.txt │ │ ├── koi8-r.txt │ │ ├── latin1_posing_as_utf8_broken.txt │ │ ├── latin1_posing_as_utf8_recoverable.txt │ │ ├── localdomain-feed.txt │ │ ├── localdomain-hostmeta.txt │ │ ├── localdomain-webfinger.txt │ │ ├── long_canonical_url.txt │ │ ├── low_confidence_latin1.txt │ │ ├── oembed_invalid_xml.html │ │ ├── oembed_json.html │ │ ├── oembed_json_empty.html │ │ ├── oembed_json_xml.html │ │ ├── oembed_undiscoverable.html │ │ ├── oembed_xml.html │ │ ├── oembed_youtube.html │ │ ├── page_without_title.txt │ │ ├── redirect_with_utf8_url.txt │ │ ├── redirected.host-meta.txt │ │ ├── sjis.txt │ │ ├── sjis_with_wrong_charset.txt │ │ ├── webfinger-hacker1.txt │ │ ├── webfinger-hacker2.txt │ │ ├── webfinger-hacker3.txt │ │ ├── webfinger.txt │ │ └── windows-1251.txt │ └── salmon │ │ └── mention.xml ├── flatware_helper.rb ├── generators │ └── post_deployment_migration_generator_spec.rb ├── helpers │ ├── accounts_helper_spec.rb │ ├── admin │ │ ├── account_moderation_notes_helper_spec.rb │ │ ├── dashboard_helper_spec.rb │ │ ├── disputes_helper_spec.rb │ │ ├── filter_helper_spec.rb │ │ └── trends │ │ │ └── statuses_helper_spec.rb │ ├── application_helper_spec.rb │ ├── database_helper_spec.rb │ ├── flashes_helper_spec.rb │ ├── formatting_helper_spec.rb │ ├── home_helper_spec.rb │ ├── instance_helper_spec.rb │ ├── json_ld_helper_spec.rb │ ├── languages_helper_spec.rb │ ├── media_component_helper_spec.rb │ ├── react_component_helper_spec.rb │ ├── routing_helper_spec.rb │ ├── self_destruct_helper_spec.rb │ ├── settings_helper_spec.rb │ ├── statuses_helper_spec.rb │ └── theme_helper_spec.rb ├── lib │ ├── account_reach_finder_spec.rb │ ├── account_statuses_filter_spec.rb │ ├── activitypub │ │ ├── activity │ │ │ ├── accept_spec.rb │ │ │ ├── add_spec.rb │ │ │ ├── announce_spec.rb │ │ │ ├── block_spec.rb │ │ │ ├── create_spec.rb │ │ │ ├── delete_spec.rb │ │ │ ├── emoji_react_spec.rb │ │ │ ├── flag_spec.rb │ │ │ ├── follow_spec.rb │ │ │ ├── like_spec.rb │ │ │ ├── move_spec.rb │ │ │ ├── reject_spec.rb │ │ │ ├── remove_spec.rb │ │ │ ├── undo_spec.rb │ │ │ └── update_spec.rb │ │ ├── adapter_spec.rb │ │ ├── dereferencer_spec.rb │ │ ├── linked_data_signature_spec.rb │ │ ├── parser │ │ │ └── status_parser_spec.rb │ │ └── tag_manager_spec.rb │ ├── admin │ │ ├── metrics │ │ │ ├── dimension │ │ │ │ ├── instance_accounts_dimension_spec.rb │ │ │ │ ├── instance_languages_dimension_spec.rb │ │ │ │ ├── languages_dimension_spec.rb │ │ │ │ ├── servers_dimension_spec.rb │ │ │ │ ├── software_versions_dimension_spec.rb │ │ │ │ ├── sources_dimension_spec.rb │ │ │ │ ├── space_usage_dimension_spec.rb │ │ │ │ ├── tag_languages_dimension_spec.rb │ │ │ │ └── tag_servers_dimension_spec.rb │ │ │ ├── dimension_spec.rb │ │ │ ├── measure │ │ │ │ ├── active_users_measure_spec.rb │ │ │ │ ├── instance_accounts_measure_spec.rb │ │ │ │ ├── instance_followers_measure_spec.rb │ │ │ │ ├── instance_follows_measure_spec.rb │ │ │ │ ├── instance_media_attachments_measure_spec.rb │ │ │ │ ├── instance_reports_measure_spec.rb │ │ │ │ ├── instance_statuses_measure_spec.rb │ │ │ │ ├── interactions_measure_spec.rb │ │ │ │ ├── new_users_measure_spec.rb │ │ │ │ ├── opened_reports_measure_spec.rb │ │ │ │ ├── resolved_reports_measure_spec.rb │ │ │ │ ├── tag_accounts_measure_spec.rb │ │ │ │ ├── tag_servers_measure_spec.rb │ │ │ │ └── tag_uses_measure_spec.rb │ │ │ └── measure_spec.rb │ │ ├── system_check │ │ │ ├── base_check_spec.rb │ │ │ ├── database_schema_check_spec.rb │ │ │ ├── elasticsearch_check_spec.rb │ │ │ ├── media_privacy_check_spec.rb │ │ │ ├── message_spec.rb │ │ │ ├── rules_check_spec.rb │ │ │ ├── sidekiq_process_check_spec.rb │ │ │ └── software_version_check_spec.rb │ │ └── system_check_spec.rb │ ├── advanced_text_formatter_spec.rb │ ├── annual_report │ │ ├── commonly_interacted_with_accounts_spec.rb │ │ ├── most_reblogged_accounts_spec.rb │ │ ├── most_used_apps_spec.rb │ │ ├── percentiles_spec.rb │ │ ├── time_series_spec.rb │ │ ├── top_hashtags_spec.rb │ │ ├── top_statuses_spec.rb │ │ └── type_distribution_spec.rb │ ├── annual_report_spec.rb │ ├── cache_buster_spec.rb │ ├── connection_pool │ │ ├── shared_connection_pool_spec.rb │ │ └── shared_timed_stack_spec.rb │ ├── content_security_policy_spec.rb │ ├── delivery_failure_tracker_spec.rb │ ├── domain_resource_spec.rb │ ├── emoji_formatter_spec.rb │ ├── entity_cache_spec.rb │ ├── extractor_spec.rb │ ├── fast_ip_map_spec.rb │ ├── feed_manager_spec.rb │ ├── hashtag_normalizer_spec.rb │ ├── html_aware_formatter_spec.rb │ ├── importer │ │ ├── accounts_index_importer_spec.rb │ │ ├── base_importer_spec.rb │ │ ├── public_statuses_index_importer_spec.rb │ │ ├── statuses_index_importer_spec.rb │ │ └── tags_index_importer_spec.rb │ ├── link_details_extractor_spec.rb │ ├── mastodon │ │ ├── cli │ │ │ ├── accounts_spec.rb │ │ │ ├── cache_spec.rb │ │ │ ├── canonical_email_blocks_spec.rb │ │ │ ├── domains_spec.rb │ │ │ ├── email_domain_blocks_spec.rb │ │ │ ├── emoji_spec.rb │ │ │ ├── feeds_spec.rb │ │ │ ├── ip_blocks_spec.rb │ │ │ ├── main_spec.rb │ │ │ ├── maintenance_spec.rb │ │ │ ├── media_spec.rb │ │ │ ├── preview_cards_spec.rb │ │ │ ├── search_spec.rb │ │ │ ├── settings_spec.rb │ │ │ ├── statuses_spec.rb │ │ │ └── upgrade_spec.rb │ │ ├── feature_spec.rb │ │ ├── migration_warning_spec.rb │ │ └── redis_configuration_spec.rb │ ├── ostatus │ │ └── tag_manager_spec.rb │ ├── paperclip │ │ └── response_with_limit_adapter_spec.rb │ ├── permalink_redirector_spec.rb │ ├── plain_text_formatter_spec.rb │ ├── request_pool_spec.rb │ ├── request_spec.rb │ ├── sanitize │ │ └── config_spec.rb │ ├── scope_transformer_spec.rb │ ├── search_query_parser_spec.rb │ ├── search_query_transformer_spec.rb │ ├── signature_parser_spec.rb │ ├── status_cache_hydrator_spec.rb │ ├── status_filter_spec.rb │ ├── status_finder_spec.rb │ ├── status_reach_finder_spec.rb │ ├── suspicious_sign_in_detector_spec.rb │ ├── tag_manager_spec.rb │ ├── text_formatter_spec.rb │ ├── translation_service │ │ ├── deepl_spec.rb │ │ └── libre_translate_spec.rb │ ├── vacuum │ │ ├── access_tokens_vacuum_spec.rb │ │ ├── backups_vacuum_spec.rb │ │ ├── feeds_vacuum_spec.rb │ │ ├── imports_vacuum_spec.rb │ │ ├── media_attachments_vacuum_spec.rb │ │ ├── preview_cards_vacuum_spec.rb │ │ └── statuses_vacuum_spec.rb │ ├── webfinger_resource_spec.rb │ ├── webfinger_spec.rb │ └── webhooks │ │ └── payload_renderer_spec.rb ├── locales │ └── i18n_spec.rb ├── mailers │ ├── admin_mailer_spec.rb │ ├── notification_mailer_spec.rb │ ├── previews │ │ ├── admin_mailer_preview.rb │ │ ├── notification_mailer_preview.rb │ │ └── user_mailer_preview.rb │ └── user_mailer_spec.rb ├── models │ ├── account │ │ └── field_spec.rb │ ├── account_alias_spec.rb │ ├── account_conversation_spec.rb │ ├── account_deletion_request_spec.rb │ ├── account_domain_block_spec.rb │ ├── account_filter_spec.rb │ ├── account_migration_spec.rb │ ├── account_moderation_note_spec.rb │ ├── account_pin_spec.rb │ ├── account_spec.rb │ ├── account_statuses_cleanup_policy_spec.rb │ ├── account_suggestions │ │ ├── friends_of_friends_source_spec.rb │ │ └── source_spec.rb │ ├── account_summary_spec.rb │ ├── account_warning_preset_spec.rb │ ├── account_warning_spec.rb │ ├── admin │ │ ├── account_action_spec.rb │ │ ├── action_log_spec.rb │ │ ├── appeal_filter_spec.rb │ │ └── tag_filter_spec.rb │ ├── announcement_spec.rb │ ├── appeal_spec.rb │ ├── block_spec.rb │ ├── bookmark_spec.rb │ ├── bulk_import_spec.rb │ ├── canonical_email_block_spec.rb │ ├── concerns │ │ ├── account │ │ │ ├── counters_spec.rb │ │ │ ├── finder_concern_spec.rb │ │ │ ├── interactions_spec.rb │ │ │ ├── sensitizes_spec.rb │ │ │ ├── silences_spec.rb │ │ │ ├── statuses_search_spec.rb │ │ │ └── suspensions_spec.rb │ │ ├── remotable_spec.rb │ │ └── status │ │ │ ├── fetch_replies_concern_spec.rb │ │ │ └── threading_concern_spec.rb │ ├── conversation_spec.rb │ ├── custom_emoji_category_spec.rb │ ├── custom_emoji_filter_spec.rb │ ├── custom_emoji_spec.rb │ ├── custom_filter_keyword_spec.rb │ ├── custom_filter_spec.rb │ ├── domain_allow_spec.rb │ ├── domain_block_spec.rb │ ├── doorkeeper │ │ └── application_spec.rb │ ├── email_domain_block_spec.rb │ ├── export_spec.rb │ ├── extended_description_spec.rb │ ├── favourite_spec.rb │ ├── featured_tag_spec.rb │ ├── follow_request_spec.rb │ ├── follow_spec.rb │ ├── form │ │ ├── account_batch_spec.rb │ │ ├── admin_settings_spec.rb │ │ ├── custom_emoji_batch_spec.rb │ │ ├── import_spec.rb │ │ └── status_filter_batch_action_spec.rb │ ├── home_feed_spec.rb │ ├── identity_spec.rb │ ├── import_spec.rb │ ├── instance_spec.rb │ ├── invite_spec.rb │ ├── ip_block_spec.rb │ ├── list_account_spec.rb │ ├── list_spec.rb │ ├── login_activity_spec.rb │ ├── marker_spec.rb │ ├── media_attachment_spec.rb │ ├── mention_spec.rb │ ├── mute_spec.rb │ ├── notification_policy_spec.rb │ ├── notification_request_spec.rb │ ├── notification_spec.rb │ ├── poll_spec.rb │ ├── poll_vote_spec.rb │ ├── preview_card_provider_spec.rb │ ├── preview_card_spec.rb │ ├── preview_card_trend_spec.rb │ ├── privacy_policy_spec.rb │ ├── public_feed_spec.rb │ ├── relationship_filter_spec.rb │ ├── relationship_severance_event_spec.rb │ ├── relay_spec.rb │ ├── remote_follow_spec.rb │ ├── report_filter_spec.rb │ ├── report_note_spec.rb │ ├── report_spec.rb │ ├── rule_spec.rb │ ├── scheduled_status_spec.rb │ ├── session_activation_spec.rb │ ├── setting_spec.rb │ ├── severed_relationship_spec.rb │ ├── site_upload_spec.rb │ ├── software_update_spec.rb │ ├── status_edit_spec.rb │ ├── status_pin_spec.rb │ ├── status_reaction_spec.rb │ ├── status_spec.rb │ ├── status_trend_spec.rb │ ├── tag_feed_spec.rb │ ├── tag_spec.rb │ ├── tag_trend_spec.rb │ ├── terms_of_service_spec.rb │ ├── tombstone_spec.rb │ ├── trends │ │ ├── links_spec.rb │ │ ├── statuses_spec.rb │ │ └── tags_spec.rb │ ├── user_role_spec.rb │ ├── user_settings │ │ ├── namespace_spec.rb │ │ └── setting_spec.rb │ ├── user_settings_spec.rb │ ├── user_spec.rb │ ├── web │ │ └── push_subscription_spec.rb │ ├── webauthn_credential_spec.rb │ └── webhook_spec.rb ├── policies │ ├── account_moderation_note_policy_spec.rb │ ├── account_policy_spec.rb │ ├── account_warning_policy_spec.rb │ ├── account_warning_preset_policy_spec.rb │ ├── admin │ │ └── status_policy_spec.rb │ ├── announcement_policy_spec.rb │ ├── appeal_policy_spec.rb │ ├── audit_log_policy_spec.rb │ ├── backup_policy_spec.rb │ ├── canonical_email_block_policy_spec.rb │ ├── custom_emoji_policy_spec.rb │ ├── dashboard_policy_spec.rb │ ├── delivery_policy_spec.rb │ ├── domain_allow_policy_spec.rb │ ├── domain_block_policy_spec.rb │ ├── email_domain_block_policy_spec.rb │ ├── follow_recommendation_policy_spec.rb │ ├── instance_policy_spec.rb │ ├── invite_policy_spec.rb │ ├── ip_block_policy_spec.rb │ ├── poll_policy_spec.rb │ ├── preview_card_policy_spec.rb │ ├── preview_card_provider_policy_spec.rb │ ├── relay_policy_spec.rb │ ├── report_note_policy_spec.rb │ ├── report_policy_spec.rb │ ├── rule_policy_spec.rb │ ├── settings_policy_spec.rb │ ├── software_update_policy_spec.rb │ ├── status_policy_spec.rb │ ├── tag_policy_spec.rb │ ├── terms_of_service_policy_spec.rb │ ├── user_policy_spec.rb │ ├── user_role_policy_spec.rb │ └── webhook_policy_spec.rb ├── presenters │ ├── account_relationships_presenter_spec.rb │ ├── export_summary_spec.rb │ ├── familiar_followers_presenter_spec.rb │ ├── instance_presenter_spec.rb │ └── status_relationships_presenter_spec.rb ├── rails_helper.rb ├── requests │ ├── account_show_page_spec.rb │ ├── accounts_spec.rb │ ├── activitypub │ │ ├── likes_spec.rb │ │ └── shares_spec.rb │ ├── admin │ │ ├── account_actions_spec.rb │ │ ├── account_moderation_notes_spec.rb │ │ ├── accounts_spec.rb │ │ ├── announcements_spec.rb │ │ ├── change_emails_spec.rb │ │ ├── custom_emojis_spec.rb │ │ ├── domain_allows_spec.rb │ │ ├── domain_blocks_spec.rb │ │ ├── email_domain_blocks_spec.rb │ │ ├── export_domain_allows_spec.rb │ │ ├── export_domain_blocks_spec.rb │ │ ├── follow_recommendations_spec.rb │ │ ├── instances_spec.rb │ │ ├── invites_spec.rb │ │ ├── ip_blocks_spec.rb │ │ ├── relays_spec.rb │ │ ├── report_notes_spec.rb │ │ ├── roles_spec.rb │ │ ├── rules_spec.rb │ │ ├── settings │ │ │ ├── about_spec.rb │ │ │ └── branding_spec.rb │ │ ├── statuses_spec.rb │ │ ├── tags_spec.rb │ │ ├── terms_of_service │ │ │ ├── drafts_spec.rb │ │ │ └── generates_spec.rb │ │ ├── trends │ │ │ ├── links │ │ │ │ └── preview_card_providers_spec.rb │ │ │ ├── links_spec.rb │ │ │ ├── statuses_spec.rb │ │ │ └── tags_spec.rb │ │ ├── users │ │ │ └── roles_spec.rb │ │ ├── warning_presets_spec.rb │ │ └── webhooks_spec.rb │ ├── anonymous_cookies_spec.rb │ ├── api │ │ ├── oembed_spec.rb │ │ ├── v1 │ │ │ ├── accounts │ │ │ │ ├── credentials_spec.rb │ │ │ │ ├── familiar_followers_spec.rb │ │ │ │ ├── featured_tags_spec.rb │ │ │ │ ├── follower_accounts_spec.rb │ │ │ │ ├── following_accounts_spec.rb │ │ │ │ ├── identity_proofs_spec.rb │ │ │ │ ├── lists_spec.rb │ │ │ │ ├── lookup_spec.rb │ │ │ │ ├── notes_spec.rb │ │ │ │ ├── pins_spec.rb │ │ │ │ ├── relationships_spec.rb │ │ │ │ ├── search_spec.rb │ │ │ │ └── statuses_spec.rb │ │ │ ├── accounts_spec.rb │ │ │ ├── admin │ │ │ │ ├── account_actions_spec.rb │ │ │ │ ├── accounts_spec.rb │ │ │ │ ├── canonical_email_blocks_spec.rb │ │ │ │ ├── dimensions_spec.rb │ │ │ │ ├── domain_allows_spec.rb │ │ │ │ ├── domain_blocks_spec.rb │ │ │ │ ├── email_domain_blocks_spec.rb │ │ │ │ ├── ip_blocks_spec.rb │ │ │ │ ├── measures_spec.rb │ │ │ │ ├── reports_spec.rb │ │ │ │ ├── retention_spec.rb │ │ │ │ ├── tags_spec.rb │ │ │ │ └── trends │ │ │ │ │ ├── links │ │ │ │ │ ├── links_spec.rb │ │ │ │ │ └── preview_card_providers_spec.rb │ │ │ │ │ ├── statuses_spec.rb │ │ │ │ │ └── tags_spec.rb │ │ │ ├── announcements │ │ │ │ └── reactions_spec.rb │ │ │ ├── announcements_spec.rb │ │ │ ├── annual_reports_spec.rb │ │ │ ├── apps │ │ │ │ └── credentials_spec.rb │ │ │ ├── apps_spec.rb │ │ │ ├── blocks_spec.rb │ │ │ ├── bookmarks_spec.rb │ │ │ ├── conversations_spec.rb │ │ │ ├── csp_spec.rb │ │ │ ├── custom_emojis_spec.rb │ │ │ ├── directories_spec.rb │ │ │ ├── domain_blocks │ │ │ │ └── previews_spec.rb │ │ │ ├── domain_blocks_spec.rb │ │ │ ├── emails │ │ │ │ └── confirmations_spec.rb │ │ │ ├── endorsements_spec.rb │ │ │ ├── favourites_spec.rb │ │ │ ├── featured_tags │ │ │ │ └── suggestions_spec.rb │ │ │ ├── featured_tags_spec.rb │ │ │ ├── filters_spec.rb │ │ │ ├── follow_requests_spec.rb │ │ │ ├── followed_tags_spec.rb │ │ │ ├── instance_spec.rb │ │ │ ├── instances │ │ │ │ ├── activity_spec.rb │ │ │ │ ├── domain_blocks_spec.rb │ │ │ │ ├── extended_descriptions_spec.rb │ │ │ │ ├── languages_spec.rb │ │ │ │ ├── peers_spec.rb │ │ │ │ ├── privacy_policies_spec.rb │ │ │ │ ├── rules_spec.rb │ │ │ │ ├── terms_of_services_spec.rb │ │ │ │ └── translation_languages_spec.rb │ │ │ ├── lists │ │ │ │ └── accounts_spec.rb │ │ │ ├── lists_spec.rb │ │ │ ├── markers_spec.rb │ │ │ ├── media_spec.rb │ │ │ ├── mutes_spec.rb │ │ │ ├── notifications │ │ │ │ ├── policies_spec.rb │ │ │ │ └── requests_spec.rb │ │ │ ├── notifications_spec.rb │ │ │ ├── peers │ │ │ │ └── search_spec.rb │ │ │ ├── polls │ │ │ │ └── votes_spec.rb │ │ │ ├── polls_spec.rb │ │ │ ├── preferences_spec.rb │ │ │ ├── profiles_spec.rb │ │ │ ├── push │ │ │ │ └── subscriptions_spec.rb │ │ │ ├── reports_spec.rb │ │ │ ├── scheduled_status_spec.rb │ │ │ ├── statuses │ │ │ │ ├── bookmarks_spec.rb │ │ │ │ ├── favourited_by_accounts_spec.rb │ │ │ │ ├── favourites_spec.rb │ │ │ │ ├── histories_spec.rb │ │ │ │ ├── mutes_spec.rb │ │ │ │ ├── pins_spec.rb │ │ │ │ ├── reactions_controller_spec.rb │ │ │ │ ├── reblogged_by_accounts_spec.rb │ │ │ │ ├── reblogs_spec.rb │ │ │ │ ├── sources_spec.rb │ │ │ │ └── translations_spec.rb │ │ │ ├── statuses_spec.rb │ │ │ ├── streaming_spec.rb │ │ │ ├── suggestions_spec.rb │ │ │ ├── tags_spec.rb │ │ │ ├── timelines │ │ │ │ ├── direct_spec.rb │ │ │ │ ├── home_spec.rb │ │ │ │ ├── link_spec.rb │ │ │ │ ├── list_spec.rb │ │ │ │ ├── public_spec.rb │ │ │ │ └── tag_spec.rb │ │ │ └── trends │ │ │ │ ├── links_spec.rb │ │ │ │ ├── statuses_spec.rb │ │ │ │ └── tags_spec.rb │ │ ├── v2 │ │ │ ├── admin │ │ │ │ └── accounts_spec.rb │ │ │ ├── filters │ │ │ │ ├── keywords_spec.rb │ │ │ │ └── statuses_spec.rb │ │ │ ├── filters_spec.rb │ │ │ ├── instance_spec.rb │ │ │ ├── media_spec.rb │ │ │ ├── notifications │ │ │ │ ├── accounts_spec.rb │ │ │ │ └── policies_spec.rb │ │ │ ├── notifications_spec.rb │ │ │ ├── search_spec.rb │ │ │ └── suggestions_spec.rb │ │ └── web │ │ │ ├── embeds_spec.rb │ │ │ ├── push_subscriptions_spec.rb │ │ │ └── settings_spec.rb │ ├── auth │ │ ├── challenges_spec.rb │ │ ├── passwords_spec.rb │ │ ├── sessions │ │ │ └── security_key_options_spec.rb │ │ ├── sessions_spec.rb │ │ └── setup_spec.rb │ ├── backups_spec.rb │ ├── cache_spec.rb │ ├── catch_all_route_request_spec.rb │ ├── content_security_policy_spec.rb │ ├── custom_css_spec.rb │ ├── disabled_oauth_endpoints_spec.rb │ ├── disputes │ │ └── appeals_spec.rb │ ├── emojis_spec.rb │ ├── filters │ │ └── statuses_spec.rb │ ├── filters_spec.rb │ ├── follower_accounts_spec.rb │ ├── following_accounts_spec.rb │ ├── health_spec.rb │ ├── instance_actor_spec.rb │ ├── invite_spec.rb │ ├── invites_spec.rb │ ├── link_headers_spec.rb │ ├── localization_spec.rb │ ├── log_out_spec.rb │ ├── mail_subscriptions_spec.rb │ ├── manifest_spec.rb │ ├── media_proxy_spec.rb │ ├── media_spec.rb │ ├── oauth │ │ ├── token_spec.rb │ │ └── userinfo_spec.rb │ ├── omniauth_callbacks_spec.rb │ ├── relationships_spec.rb │ ├── remote_interaction_helper_spec.rb │ ├── self_destruct_spec.rb │ ├── settings │ │ ├── aliases_spec.rb │ │ ├── applications_spec.rb │ │ ├── deletes_spec.rb │ │ ├── exports │ │ │ ├── blocked_accounts_spec.rb │ │ │ ├── blocked_domains_spec.rb │ │ │ ├── bookmarks_spec.rb │ │ │ ├── following_accounts_spec.rb │ │ │ ├── lists_spec.rb │ │ │ └── muted_accounts_spec.rb │ │ ├── exports_spec.rb │ │ ├── featured_tags_spec.rb │ │ ├── imports_spec.rb │ │ ├── migration │ │ │ └── redirects_spec.rb │ │ ├── migrations_spec.rb │ │ ├── preferences │ │ │ └── appearance_spec.rb │ │ ├── privacy_spec.rb │ │ ├── profiles_spec.rb │ │ ├── sessions_spec.rb │ │ ├── two_factor_authentication │ │ │ ├── confirmations_spec.rb │ │ │ └── recovery_codes_spec.rb │ │ ├── two_factor_authentication_methods_spec.rb │ │ └── verifications_spec.rb │ ├── severed_relationships_spec.rb │ ├── signature_verification_spec.rb │ ├── status_show_page_spec.rb │ ├── statuses │ │ ├── activity_spec.rb │ │ └── embed_spec.rb │ ├── statuses_cleanup_spec.rb │ ├── statuses_spec.rb │ ├── tags_spec.rb │ └── well_known │ │ ├── change_password_spec.rb │ │ ├── host_meta_spec.rb │ │ ├── node_info_spec.rb │ │ ├── oauth_metadata_spec.rb │ │ └── webfinger_spec.rb ├── routing │ ├── accounts_routing_spec.rb │ ├── api_routing_spec.rb │ ├── custom_css_routing_spec.rb │ └── well_known_routes_spec.rb ├── search │ └── models │ │ └── concerns │ │ └── account │ │ ├── search_spec.rb │ │ └── statuses_search_spec.rb ├── serializers │ ├── activitypub │ │ ├── accept_follow_serializer_spec.rb │ │ ├── actor_serializer_spec.rb │ │ ├── add_serializer_spec.rb │ │ ├── collection_serializer_spec.rb │ │ ├── note_serializer_spec.rb │ │ ├── reject_follow_serializer_spec.rb │ │ ├── remove_serializer_spec.rb │ │ ├── undo_like_serializer_spec.rb │ │ ├── update_poll_serializer_spec.rb │ │ └── vote_serializer_spec.rb │ └── rest │ │ ├── account_relationship_severance_event_serializer_spec.rb │ │ ├── account_serializer │ │ └── field_serializer_spec.rb │ │ ├── account_serializer_spec.rb │ │ ├── account_warning_serializer_spec.rb │ │ ├── admin │ │ ├── account_serializer_spec.rb │ │ ├── cohort_serializer_spec.rb │ │ ├── domain_allow_serializer_spec.rb │ │ ├── domain_block_serializer_spec.rb │ │ ├── email_domain_block_serializer_spec.rb │ │ ├── ip_block_serializer_spec.rb │ │ ├── ip_serializer_spec.rb │ │ ├── measure_serializer_spec.rb │ │ ├── report_serializer_spec.rb │ │ └── webhook_event_serializer_spec.rb │ │ ├── announcement_serializer_spec.rb │ │ ├── annual_report_event_serializer_spec.rb │ │ ├── appeal_serializer_spec.rb │ │ ├── custom_emoji_serializer_spec.rb │ │ ├── extended_description_serializer_spec.rb │ │ ├── featured_tag_serializer_spec.rb │ │ ├── filter_serializer_spec.rb │ │ ├── instance_serializer_spec.rb │ │ ├── marker_serializer_spec.rb │ │ ├── muted_account_serializer_spec.rb │ │ ├── notification_group_serializer_spec.rb │ │ ├── notification_request_serializer_spec.rb │ │ ├── notification_serializer_spec.rb │ │ ├── poll_serializer_spec.rb │ │ ├── preview_card_serializer_spec.rb │ │ ├── report_serializer_spec.rb │ │ ├── rule_serializer_spec.rb │ │ ├── scheduled_status_serializer_spec.rb │ │ ├── status_edit_serializer_spec.rb │ │ ├── status_serializer_spec.rb │ │ └── suggestion_serializer_spec.rb ├── services │ ├── accept_notification_request_service_spec.rb │ ├── account_search_service_spec.rb │ ├── account_statuses_cleanup_service_spec.rb │ ├── activitypub │ │ ├── fetch_all_replies_service_spec.rb │ │ ├── fetch_featured_collection_service_spec.rb │ │ ├── fetch_featured_tags_collection_service_spec.rb │ │ ├── fetch_remote_account_service_spec.rb │ │ ├── fetch_remote_actor_service_spec.rb │ │ ├── fetch_remote_key_service_spec.rb │ │ ├── fetch_remote_status_service_spec.rb │ │ ├── fetch_replies_service_spec.rb │ │ ├── process_account_service_spec.rb │ │ ├── process_collection_service_spec.rb │ │ ├── process_status_update_service_spec.rb │ │ └── synchronize_followers_service_spec.rb │ ├── after_block_domain_from_account_service_spec.rb │ ├── after_block_service_spec.rb │ ├── after_unallow_domain_service_spec.rb │ ├── app_sign_up_service_spec.rb │ ├── appeal_service_spec.rb │ ├── approve_appeal_service_spec.rb │ ├── authorize_follow_service_spec.rb │ ├── backup_service_spec.rb │ ├── batched_remove_status_service_spec.rb │ ├── block_domain_service_spec.rb │ ├── block_service_spec.rb │ ├── bootstrap_timeline_service_spec.rb │ ├── bulk_import_row_service_spec.rb │ ├── bulk_import_service_spec.rb │ ├── clear_domain_media_service_spec.rb │ ├── create_featured_tag_service_spec.rb │ ├── delete_account_service_spec.rb │ ├── dismiss_notification_request_service_spec.rb │ ├── fan_out_on_write_service_spec.rb │ ├── favourite_service_spec.rb │ ├── fetch_link_card_service_spec.rb │ ├── fetch_oembed_service_spec.rb │ ├── fetch_remote_status_service_spec.rb │ ├── fetch_resource_service_spec.rb │ ├── follow_service_spec.rb │ ├── import_service_spec.rb │ ├── move_service_spec.rb │ ├── mute_service_spec.rb │ ├── notify_service_spec.rb │ ├── post_status_service_spec.rb │ ├── precompute_feed_service_spec.rb │ ├── process_hashtags_service_spec.rb │ ├── process_mentions_service_spec.rb │ ├── purge_domain_service_spec.rb │ ├── react_service_spec.rb │ ├── reblog_service_spec.rb │ ├── reject_follow_service_spec.rb │ ├── remove_domains_from_followers_service_spec.rb │ ├── remove_featured_tag_service_spec.rb │ ├── remove_from_followers_service_spec.rb │ ├── remove_status_service_spec.rb │ ├── report_service_spec.rb │ ├── resolve_account_service_spec.rb │ ├── resolve_url_service_spec.rb │ ├── search_service_spec.rb │ ├── software_update_check_service_spec.rb │ ├── suspend_account_service_spec.rb │ ├── tag_search_service_spec.rb │ ├── translate_status_service_spec.rb │ ├── unallow_domain_service_spec.rb │ ├── unblock_domain_service_spec.rb │ ├── unblock_service_spec.rb │ ├── unfavourite_service_spec.rb │ ├── unfollow_service_spec.rb │ ├── unmute_service_spec.rb │ ├── unreact_service_spec.rb │ ├── unsuspend_account_service_spec.rb │ ├── update_account_service_spec.rb │ ├── update_status_service_spec.rb │ ├── verify_link_service_spec.rb │ ├── vote_service_spec.rb │ └── webhook_service_spec.rb ├── spec_helper.rb ├── support │ ├── browser_errors.rb │ ├── capybara.rb │ ├── command_line_helpers.rb │ ├── domain_helpers.rb │ ├── examples │ │ ├── api.rb │ │ ├── cli.rb │ │ ├── lib │ │ │ └── admin │ │ │ │ └── checks.rb │ │ ├── mailers.rb │ │ └── models │ │ │ └── concerns │ │ │ ├── account │ │ │ └── search.rb │ │ │ ├── account_avatar.rb │ │ │ ├── account_header.rb │ │ │ ├── browser_detection.rb │ │ │ ├── expireable.rb │ │ │ ├── ranked_trend.rb │ │ │ ├── reviewable.rb │ │ │ └── status │ │ │ └── visibility.rb │ ├── feature_flags.rb │ ├── matchers │ │ ├── api_datetime_format.rb │ │ ├── api_pagination.rb │ │ ├── cacheable_response.rb │ │ ├── http_link_header.rb │ │ ├── json │ │ │ └── match_json_schema.rb │ │ └── private_cache_control.rb │ ├── omniauth_mocks.rb │ ├── response_encoders.rb │ ├── schema │ │ └── nodeinfo_2.0.json │ ├── search_data_manager.rb │ ├── shoulda_matchers.rb │ ├── signed_request_helpers.rb │ ├── stories │ │ └── profile_stories.rb │ ├── streaming_server_manager.rb │ ├── system_helpers.rb │ └── threading_helpers.rb ├── system │ ├── about_spec.rb │ ├── admin │ │ ├── account_moderation_notes_spec.rb │ │ ├── accounts_spec.rb │ │ ├── announcements │ │ │ ├── distributions_spec.rb │ │ │ ├── previews_spec.rb │ │ │ └── tests_spec.rb │ │ ├── announcements_spec.rb │ │ ├── custom_emojis_spec.rb │ │ ├── domain_allows_spec.rb │ │ ├── domain_blocks_spec.rb │ │ ├── email_domain_blocks_spec.rb │ │ ├── follow_recommendations_spec.rb │ │ ├── invites_spec.rb │ │ ├── ip_blocks_spec.rb │ │ ├── relationships_spec.rb │ │ ├── relays_spec.rb │ │ ├── report_notes_spec.rb │ │ ├── reports_spec.rb │ │ ├── reset_spec.rb │ │ ├── roles_spec.rb │ │ ├── rules_spec.rb │ │ ├── settings │ │ │ ├── about_spec.rb │ │ │ ├── appearance_spec.rb │ │ │ ├── branding_spec.rb │ │ │ ├── content_retention_spec.rb │ │ │ ├── discovery_spec.rb │ │ │ └── registrations_spec.rb │ │ ├── site_uploads_spec.rb │ │ ├── software_updates_spec.rb │ │ ├── statuses_spec.rb │ │ ├── tags_spec.rb │ │ ├── terms_of_service │ │ │ ├── distributions_spec.rb │ │ │ ├── drafts_spec.rb │ │ │ ├── generates_spec.rb │ │ │ ├── histories_spec.rb │ │ │ ├── previews_spec.rb │ │ │ └── tests_spec.rb │ │ ├── terms_of_service_spec.rb │ │ ├── trends │ │ │ ├── links │ │ │ │ └── preview_card_providers_spec.rb │ │ │ ├── links_spec.rb │ │ │ ├── statuses_spec.rb │ │ │ └── tags_spec.rb │ │ ├── users │ │ │ └── roles_spec.rb │ │ ├── warning_presets_spec.rb │ │ └── webhooks_spec.rb │ ├── auth │ │ ├── passwords_spec.rb │ │ └── setup_spec.rb │ ├── captcha_spec.rb │ ├── disputes │ │ └── appeals_spec.rb │ ├── filters_spec.rb │ ├── home_spec.rb │ ├── invites_spec.rb │ ├── log_in_spec.rb │ ├── log_out_spec.rb │ ├── media_spec.rb │ ├── new_statuses_spec.rb │ ├── oauth_spec.rb │ ├── ocr_spec.rb │ ├── privacy_spec.rb │ ├── profile_spec.rb │ ├── redirections_spec.rb │ ├── report_interface_spec.rb │ ├── settings │ │ ├── applications_spec.rb │ │ ├── exports_spec.rb │ │ ├── featured_tags_spec.rb │ │ ├── login_activities_spec.rb │ │ ├── migration │ │ │ └── redirects_spec.rb │ │ ├── migrations_spec.rb │ │ ├── preferences │ │ │ ├── appearance_spec.rb │ │ │ ├── notifications_spec.rb │ │ │ └── other_spec.rb │ │ ├── privacy_spec.rb │ │ ├── profiles_spec.rb │ │ ├── sessions_spec.rb │ │ ├── two_factor_authentication │ │ │ └── recovery_codes_spec.rb │ │ ├── two_factor_authentication_methods_spec.rb │ │ └── verifications_spec.rb │ ├── severed_relationships_spec.rb │ ├── share_entrypoint_spec.rb │ ├── statuses_cleanup_spec.rb │ ├── statuses_spec.rb │ ├── tags_spec.rb │ ├── terms_of_service_spec.rb │ └── unlogged_spec.rb ├── validators │ ├── disallowed_hashtags_validator_spec.rb │ ├── domain_validator_spec.rb │ ├── email_mx_validator_spec.rb │ ├── existing_username_validator_spec.rb │ ├── follow_limit_validator_spec.rb │ ├── language_validator_spec.rb │ ├── note_length_validator_spec.rb │ ├── poll_expiration_validator_spec.rb │ ├── poll_options_validator_spec.rb │ ├── reaction_validator_spec.rb │ ├── status_length_validator_spec.rb │ ├── status_pin_validator_spec.rb │ ├── status_reaction_validator_spec.rb │ ├── unique_username_validator_spec.rb │ ├── unreserved_username_validator_spec.rb │ ├── url_validator_spec.rb │ └── user_email_validator_spec.rb ├── views │ ├── admin │ │ └── trends │ │ │ └── links │ │ │ └── _preview_card.html.haml_spec.rb │ └── statuses │ │ └── show.html.haml_spec.rb └── workers │ ├── account_refresh_worker_spec.rb │ ├── activitypub │ ├── delivery_worker_spec.rb │ ├── distribute_poll_update_worker_spec.rb │ ├── distribution_worker_spec.rb │ ├── fetch_all_replies_worker_spec.rb │ ├── fetch_replies_worker_spec.rb │ ├── followers_synchronization_worker_spec.rb │ ├── move_distribution_worker_spec.rb │ ├── post_upgrade_worker_spec.rb │ ├── processing_worker_spec.rb │ ├── status_update_distribution_worker_spec.rb │ ├── synchronize_featured_tags_collection_worker_spec.rb │ └── update_distribution_worker_spec.rb │ ├── add_to_public_statuses_index_worker_spec.rb │ ├── admin │ ├── account_deletion_worker_spec.rb │ ├── distribute_announcement_notification_worker_spec.rb │ ├── distribute_terms_of_service_notification_worker_spec.rb │ ├── domain_purge_worker_spec.rb │ └── suspension_worker_spec.rb │ ├── after_account_domain_block_worker_spec.rb │ ├── backup_worker_spec.rb │ ├── bulk_import_worker_spec.rb │ ├── cache_buster_worker_spec.rb │ ├── delete_mute_worker_spec.rb │ ├── domain_block_worker_spec.rb │ ├── domain_clear_media_worker_spec.rb │ ├── feed_insert_worker_spec.rb │ ├── filtered_notification_cleanup_worker_spec.rb │ ├── generate_annual_report_worker_spec.rb │ ├── import │ └── row_worker_spec.rb │ ├── import_worker_spec.rb │ ├── mention_resolve_worker_spec.rb │ ├── move_worker_spec.rb │ ├── poll_expiration_notify_worker_spec.rb │ ├── post_process_media_worker_spec.rb │ ├── publish_announcement_reaction_worker_spec.rb │ ├── publish_scheduled_announcement_worker_spec.rb │ ├── publish_scheduled_status_worker_spec.rb │ ├── push_conversation_worker_spec.rb │ ├── push_update_worker_spec.rb │ ├── redownload_avatar_worker_spec.rb │ ├── redownload_header_worker_spec.rb │ ├── redownload_media_worker_spec.rb │ ├── refollow_worker_spec.rb │ ├── regeneration_worker_spec.rb │ ├── remote_account_refresh_worker_spec.rb │ ├── removal_worker_spec.rb │ ├── remove_featured_tag_worker_spec.rb │ ├── remove_from_public_statuses_index_worker_spec.rb │ ├── resolve_account_worker_spec.rb │ ├── scheduler │ ├── accounts_statuses_cleanup_scheduler_spec.rb │ ├── auto_close_registrations_scheduler_spec.rb │ ├── follow_recommendations_scheduler_spec.rb │ ├── indexing_scheduler_spec.rb │ ├── instance_refresh_scheduler_spec.rb │ ├── ip_cleanup_scheduler_spec.rb │ ├── pghero_scheduler_spec.rb │ ├── scheduled_statuses_scheduler_spec.rb │ ├── self_destruct_scheduler_spec.rb │ ├── software_update_check_scheduler_spec.rb │ ├── suspended_user_cleanup_scheduler_spec.rb │ ├── trends │ │ ├── refresh_scheduler_spec.rb │ │ └── review_notifications_scheduler_spec.rb │ ├── user_cleanup_scheduler_spec.rb │ └── vacuum_scheduler_spec.rb │ ├── tag_unmerge_worker_spec.rb │ ├── unfilter_notifications_worker_spec.rb │ ├── unfollow_follow_worker_spec.rb │ ├── unpublish_announcement_worker_spec.rb │ ├── unreact_worker_spec.rb │ ├── verify_account_links_worker_spec.rb │ ├── web │ └── push_notification_worker_spec.rb │ └── webhooks │ └── delivery_worker_spec.rb ├── streaming ├── .dockerignore ├── .eslintrc.cjs ├── Dockerfile ├── database.js ├── errors.js ├── index.js ├── logging.js ├── metrics.js ├── package.json ├── redis.js ├── tsconfig.json └── utils.js ├── stylelint.config.js ├── tsconfig.json ├── vendor └── .keep └── yarn.lock /.annotaterb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.annotaterb.yml -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.buildpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.buildpacks -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.env.production.sample -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.env.test -------------------------------------------------------------------------------- /.env.vagrant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.env.vagrant -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.foreman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.foreman -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.haml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.haml-lint.yml -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | yarn lint-staged 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.14 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop/custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.rubocop/custom.yml -------------------------------------------------------------------------------- /.rubocop/i18n.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.rubocop/i18n.yml -------------------------------------------------------------------------------- /.rubocop/layout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.rubocop/layout.yml -------------------------------------------------------------------------------- /.rubocop/metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.rubocop/metrics.yml -------------------------------------------------------------------------------- /.rubocop/naming.yml: -------------------------------------------------------------------------------- 1 | --- 2 | Naming/BlockForwarding: 3 | EnforcedStyle: explicit 4 | -------------------------------------------------------------------------------- /.rubocop/rails.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.rubocop/rails.yml -------------------------------------------------------------------------------- /.rubocop/rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.rubocop/rspec.yml -------------------------------------------------------------------------------- /.rubocop/rspec_rails.yml: -------------------------------------------------------------------------------- 1 | --- 2 | RSpecRails/HttpStatus: 3 | EnforcedStyle: numeric 4 | -------------------------------------------------------------------------------- /.rubocop/strict.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.rubocop/strict.yml -------------------------------------------------------------------------------- /.rubocop/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.rubocop/style.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | mastodon 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.6 2 | -------------------------------------------------------------------------------- /.slugignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .cache/ 3 | docs/ 4 | spec/ 5 | -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- 1 | app/javascript/styles/modern.scss 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["node_modules/", "public/"] 3 | } 4 | -------------------------------------------------------------------------------- /.yarn/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/Aptfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/Dockerfile -------------------------------------------------------------------------------- /FEDERATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/FEDERATION.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/Procfile -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app.json -------------------------------------------------------------------------------- /app/javascript/flavours/glitch/locales/vi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app/javascript/flavours/glitch/polyfills/extra_polyfills.ts: -------------------------------------------------------------------------------- 1 | import 'requestidlecallback'; 2 | -------------------------------------------------------------------------------- /app/javascript/flavours/glitch/types/util.ts: -------------------------------------------------------------------------------- 1 | export type ValueOf = T[keyof T]; 2 | -------------------------------------------------------------------------------- /app/javascript/mastodon/locales/tlh.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app/javascript/mastodon/polyfills/extra_polyfills.ts: -------------------------------------------------------------------------------- 1 | import 'requestidlecallback'; 2 | -------------------------------------------------------------------------------- /app/javascript/mastodon/test_setup.js: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom'; 2 | -------------------------------------------------------------------------------- /app/javascript/types/util.ts: -------------------------------------------------------------------------------- 1 | export type ValueOf = T[keyof T]; 2 | -------------------------------------------------------------------------------- /app/lib/antispam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/lib/antispam.rb -------------------------------------------------------------------------------- /app/lib/extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/lib/extractor.rb -------------------------------------------------------------------------------- /app/lib/fast_ip_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/lib/fast_ip_map.rb -------------------------------------------------------------------------------- /app/lib/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/lib/request.rb -------------------------------------------------------------------------------- /app/lib/rss/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/lib/rss/builder.rb -------------------------------------------------------------------------------- /app/lib/rss/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/lib/rss/channel.rb -------------------------------------------------------------------------------- /app/lib/rss/element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/lib/rss/element.rb -------------------------------------------------------------------------------- /app/lib/rss/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/lib/rss/item.rb -------------------------------------------------------------------------------- /app/lib/tag_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/lib/tag_manager.rb -------------------------------------------------------------------------------- /app/lib/themes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/lib/themes.rb -------------------------------------------------------------------------------- /app/lib/vacuum.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Vacuum; end 4 | -------------------------------------------------------------------------------- /app/lib/webfinger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/lib/webfinger.rb -------------------------------------------------------------------------------- /app/models/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/account.rb -------------------------------------------------------------------------------- /app/models/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/admin.rb -------------------------------------------------------------------------------- /app/models/appeal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/appeal.rb -------------------------------------------------------------------------------- /app/models/backup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/backup.rb -------------------------------------------------------------------------------- /app/models/block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/block.rb -------------------------------------------------------------------------------- /app/models/bookmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/bookmark.rb -------------------------------------------------------------------------------- /app/models/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/context.rb -------------------------------------------------------------------------------- /app/models/export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/export.rb -------------------------------------------------------------------------------- /app/models/feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/feed.rb -------------------------------------------------------------------------------- /app/models/follow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/follow.rb -------------------------------------------------------------------------------- /app/models/identity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/identity.rb -------------------------------------------------------------------------------- /app/models/import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/import.rb -------------------------------------------------------------------------------- /app/models/instance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/instance.rb -------------------------------------------------------------------------------- /app/models/invite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/invite.rb -------------------------------------------------------------------------------- /app/models/ip_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/ip_block.rb -------------------------------------------------------------------------------- /app/models/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/list.rb -------------------------------------------------------------------------------- /app/models/marker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/marker.rb -------------------------------------------------------------------------------- /app/models/mention.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/mention.rb -------------------------------------------------------------------------------- /app/models/mute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/mute.rb -------------------------------------------------------------------------------- /app/models/poll.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/poll.rb -------------------------------------------------------------------------------- /app/models/relay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/relay.rb -------------------------------------------------------------------------------- /app/models/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/report.rb -------------------------------------------------------------------------------- /app/models/rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/rule.rb -------------------------------------------------------------------------------- /app/models/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/search.rb -------------------------------------------------------------------------------- /app/models/setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/setting.rb -------------------------------------------------------------------------------- /app/models/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/status.rb -------------------------------------------------------------------------------- /app/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/tag.rb -------------------------------------------------------------------------------- /app/models/tag_feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/tag_feed.rb -------------------------------------------------------------------------------- /app/models/trends.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/trends.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/user_ip.rb -------------------------------------------------------------------------------- /app/models/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/web.rb -------------------------------------------------------------------------------- /app/models/webhook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/app/models/webhook.rb -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/brakeman -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/bundler-audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/bundler-audit -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/flatware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/flatware -------------------------------------------------------------------------------- /bin/haml-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/haml-lint -------------------------------------------------------------------------------- /bin/heroku-web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/heroku-web -------------------------------------------------------------------------------- /bin/i18n-tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/i18n-tasks -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/retry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/retry -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/tootctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/tootctl -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/update -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/bin/yarn -------------------------------------------------------------------------------- /chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/chart/README.md -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/brakeman.yml -------------------------------------------------------------------------------- /config/captcha.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/captcha.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/i18n-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/i18n-tasks.yml -------------------------------------------------------------------------------- /config/initializers/redis.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | Redis.sadd_returns_boolean = false 4 | -------------------------------------------------------------------------------- /config/locales-glitch/af.yml: -------------------------------------------------------------------------------- 1 | af: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/an.yml: -------------------------------------------------------------------------------- 1 | an: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ar.yml: -------------------------------------------------------------------------------- 1 | ar: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ast.yml: -------------------------------------------------------------------------------- 1 | ast: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/be.yml: -------------------------------------------------------------------------------- 1 | be: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/bg.yml: -------------------------------------------------------------------------------- 1 | bg: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/bn.yml: -------------------------------------------------------------------------------- 1 | bn: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/br.yml: -------------------------------------------------------------------------------- 1 | br: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/bs.yml: -------------------------------------------------------------------------------- 1 | bs: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ca.yml: -------------------------------------------------------------------------------- 1 | ca: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ckb.yml: -------------------------------------------------------------------------------- 1 | ckb: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/co.yml: -------------------------------------------------------------------------------- 1 | co: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/cy.yml: -------------------------------------------------------------------------------- 1 | cy: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/el.yml: -------------------------------------------------------------------------------- 1 | el: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/en-GB.yml: -------------------------------------------------------------------------------- 1 | en-GB: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/et.yml: -------------------------------------------------------------------------------- 1 | et: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/eu.yml: -------------------------------------------------------------------------------- 1 | eu: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/fi.yml: -------------------------------------------------------------------------------- 1 | fi: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/fo.yml: -------------------------------------------------------------------------------- 1 | fo: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/fy.yml: -------------------------------------------------------------------------------- 1 | fy: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ga.yml: -------------------------------------------------------------------------------- 1 | ga: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/gd.yml: -------------------------------------------------------------------------------- 1 | gd: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/gl.yml: -------------------------------------------------------------------------------- 1 | gl: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/he.yml: -------------------------------------------------------------------------------- 1 | he: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/hi.yml: -------------------------------------------------------------------------------- 1 | hi: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/hr.yml: -------------------------------------------------------------------------------- 1 | hr: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/hu.yml: -------------------------------------------------------------------------------- 1 | hu: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/hy.yml: -------------------------------------------------------------------------------- 1 | hy: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/id.yml: -------------------------------------------------------------------------------- 1 | id: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ig.yml: -------------------------------------------------------------------------------- 1 | ig: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/io.yml: -------------------------------------------------------------------------------- 1 | io: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/is.yml: -------------------------------------------------------------------------------- 1 | is: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ka.yml: -------------------------------------------------------------------------------- 1 | ka: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/kab.yml: -------------------------------------------------------------------------------- 1 | kab: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/kk.yml: -------------------------------------------------------------------------------- 1 | kk: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/kn.yml: -------------------------------------------------------------------------------- 1 | kn: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ku.yml: -------------------------------------------------------------------------------- 1 | ku: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/kw.yml: -------------------------------------------------------------------------------- 1 | kw: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/la.yml: -------------------------------------------------------------------------------- 1 | la: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/lv.yml: -------------------------------------------------------------------------------- 1 | lv: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/mk.yml: -------------------------------------------------------------------------------- 1 | mk: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ml.yml: -------------------------------------------------------------------------------- 1 | ml: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/mr.yml: -------------------------------------------------------------------------------- 1 | mr: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ms.yml: -------------------------------------------------------------------------------- 1 | ms: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/my.yml: -------------------------------------------------------------------------------- 1 | my: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/nl.yml: -------------------------------------------------------------------------------- 1 | nl: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/nn.yml: -------------------------------------------------------------------------------- 1 | nn: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/no.yml: -------------------------------------------------------------------------------- 1 | 'no': 2 | -------------------------------------------------------------------------------- /config/locales-glitch/oc.yml: -------------------------------------------------------------------------------- 1 | oc: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/pa.yml: -------------------------------------------------------------------------------- 1 | pa: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ro.yml: -------------------------------------------------------------------------------- 1 | ro: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/sa.yml: -------------------------------------------------------------------------------- 1 | sa: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/sc.yml: -------------------------------------------------------------------------------- 1 | sc: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/sco.yml: -------------------------------------------------------------------------------- 1 | sco: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/si.yml: -------------------------------------------------------------------------------- 1 | si: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.af.yml: -------------------------------------------------------------------------------- 1 | af: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.an.yml: -------------------------------------------------------------------------------- 1 | an: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ar.yml: -------------------------------------------------------------------------------- 1 | ar: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ast.yml: -------------------------------------------------------------------------------- 1 | ast: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.be.yml: -------------------------------------------------------------------------------- 1 | be: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.bg.yml: -------------------------------------------------------------------------------- 1 | bg: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.bn.yml: -------------------------------------------------------------------------------- 1 | bn: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.br.yml: -------------------------------------------------------------------------------- 1 | br: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.bs.yml: -------------------------------------------------------------------------------- 1 | bs: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ca.yml: -------------------------------------------------------------------------------- 1 | ca: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ckb.yml: -------------------------------------------------------------------------------- 1 | ckb: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.co.yml: -------------------------------------------------------------------------------- 1 | co: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.cy.yml: -------------------------------------------------------------------------------- 1 | cy: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.el.yml: -------------------------------------------------------------------------------- 1 | el: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.en-GB.yml: -------------------------------------------------------------------------------- 1 | en-GB: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.eo.yml: -------------------------------------------------------------------------------- 1 | eo: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.et.yml: -------------------------------------------------------------------------------- 1 | et: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.eu.yml: -------------------------------------------------------------------------------- 1 | eu: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.fa.yml: -------------------------------------------------------------------------------- 1 | fa: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.fi.yml: -------------------------------------------------------------------------------- 1 | fi: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.fo.yml: -------------------------------------------------------------------------------- 1 | fo: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.fy.yml: -------------------------------------------------------------------------------- 1 | fy: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ga.yml: -------------------------------------------------------------------------------- 1 | ga: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.gd.yml: -------------------------------------------------------------------------------- 1 | gd: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.gl.yml: -------------------------------------------------------------------------------- 1 | gl: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.he.yml: -------------------------------------------------------------------------------- 1 | he: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.hr.yml: -------------------------------------------------------------------------------- 1 | hr: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.hu.yml: -------------------------------------------------------------------------------- 1 | hu: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.hy.yml: -------------------------------------------------------------------------------- 1 | hy: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.id.yml: -------------------------------------------------------------------------------- 1 | id: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ig.yml: -------------------------------------------------------------------------------- 1 | ig: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.io.yml: -------------------------------------------------------------------------------- 1 | io: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.is.yml: -------------------------------------------------------------------------------- 1 | is: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.it.yml: -------------------------------------------------------------------------------- 1 | it: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ka.yml: -------------------------------------------------------------------------------- 1 | ka: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.kab.yml: -------------------------------------------------------------------------------- 1 | kab: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.kk.yml: -------------------------------------------------------------------------------- 1 | kk: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.kn.yml: -------------------------------------------------------------------------------- 1 | kn: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ku.yml: -------------------------------------------------------------------------------- 1 | ku: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.kw.yml: -------------------------------------------------------------------------------- 1 | kw: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.la.yml: -------------------------------------------------------------------------------- 1 | la: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.lv.yml: -------------------------------------------------------------------------------- 1 | lv: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.mk.yml: -------------------------------------------------------------------------------- 1 | mk: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ml.yml: -------------------------------------------------------------------------------- 1 | ml: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.mr.yml: -------------------------------------------------------------------------------- 1 | mr: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ms.yml: -------------------------------------------------------------------------------- 1 | ms: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.my.yml: -------------------------------------------------------------------------------- 1 | my: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.nl.yml: -------------------------------------------------------------------------------- 1 | nl: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.nn.yml: -------------------------------------------------------------------------------- 1 | nn: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.no.yml: -------------------------------------------------------------------------------- 1 | 'no': 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.oc.yml: -------------------------------------------------------------------------------- 1 | oc: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.pa.yml: -------------------------------------------------------------------------------- 1 | pa: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.pt-PT.yml: -------------------------------------------------------------------------------- 1 | pt-PT: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ro.yml: -------------------------------------------------------------------------------- 1 | ro: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.sa.yml: -------------------------------------------------------------------------------- 1 | sa: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.sc.yml: -------------------------------------------------------------------------------- 1 | sc: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.sco.yml: -------------------------------------------------------------------------------- 1 | sco: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.si.yml: -------------------------------------------------------------------------------- 1 | si: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.sk.yml: -------------------------------------------------------------------------------- 1 | sk: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.sl.yml: -------------------------------------------------------------------------------- 1 | sl: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.sq.yml: -------------------------------------------------------------------------------- 1 | sq: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.sr-Latn.yml: -------------------------------------------------------------------------------- 1 | sr-Latn: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.sr.yml: -------------------------------------------------------------------------------- 1 | sr: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.sv.yml: -------------------------------------------------------------------------------- 1 | sv: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ta.yml: -------------------------------------------------------------------------------- 1 | ta: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.te.yml: -------------------------------------------------------------------------------- 1 | te: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.th.yml: -------------------------------------------------------------------------------- 1 | th: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.tr.yml: -------------------------------------------------------------------------------- 1 | tr: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.tt.yml: -------------------------------------------------------------------------------- 1 | tt: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ug.yml: -------------------------------------------------------------------------------- 1 | ug: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.ur.yml: -------------------------------------------------------------------------------- 1 | ur: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.vi.yml: -------------------------------------------------------------------------------- 1 | vi: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/simple_form.zh-HK.yml: -------------------------------------------------------------------------------- 1 | zh-HK: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/sk.yml: -------------------------------------------------------------------------------- 1 | sk: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/sl.yml: -------------------------------------------------------------------------------- 1 | sl: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/sq.yml: -------------------------------------------------------------------------------- 1 | sq: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/sr-Latn.yml: -------------------------------------------------------------------------------- 1 | sr-Latn: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/sr.yml: -------------------------------------------------------------------------------- 1 | sr: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/sv.yml: -------------------------------------------------------------------------------- 1 | sv: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ta.yml: -------------------------------------------------------------------------------- 1 | ta: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/te.yml: -------------------------------------------------------------------------------- 1 | te: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/th.yml: -------------------------------------------------------------------------------- 1 | th: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/tr.yml: -------------------------------------------------------------------------------- 1 | tr: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/tt.yml: -------------------------------------------------------------------------------- 1 | tt: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ug.yml: -------------------------------------------------------------------------------- 1 | ug: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/ur.yml: -------------------------------------------------------------------------------- 1 | ur: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/vi.yml: -------------------------------------------------------------------------------- 1 | vi: 2 | -------------------------------------------------------------------------------- /config/locales-glitch/zh-HK.yml: -------------------------------------------------------------------------------- 1 | zh-HK: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.az.yml: -------------------------------------------------------------------------------- 1 | az: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.bs.yml: -------------------------------------------------------------------------------- 1 | bs: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.ig.yml: -------------------------------------------------------------------------------- 1 | ig: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.kn.yml: -------------------------------------------------------------------------------- 1 | kn: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.kw.yml: -------------------------------------------------------------------------------- 1 | kw: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.la.yml: -------------------------------------------------------------------------------- 1 | la: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.mk.yml: -------------------------------------------------------------------------------- 1 | mk: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.ry.yml: -------------------------------------------------------------------------------- 1 | ry: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.szl.yml: -------------------------------------------------------------------------------- 1 | szl: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.tai.yml: -------------------------------------------------------------------------------- 1 | tai: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.te.yml: -------------------------------------------------------------------------------- 1 | te: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.tlh.yml: -------------------------------------------------------------------------------- 1 | tlh: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.ug.yml: -------------------------------------------------------------------------------- 1 | ug: 2 | -------------------------------------------------------------------------------- /config/locales/af.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/af.yml -------------------------------------------------------------------------------- /config/locales/an.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/an.yml -------------------------------------------------------------------------------- /config/locales/ar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ar.yml -------------------------------------------------------------------------------- /config/locales/ast.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ast.yml -------------------------------------------------------------------------------- /config/locales/az.yml: -------------------------------------------------------------------------------- 1 | az: 2 | -------------------------------------------------------------------------------- /config/locales/be.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/be.yml -------------------------------------------------------------------------------- /config/locales/bg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/bg.yml -------------------------------------------------------------------------------- /config/locales/bn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/bn.yml -------------------------------------------------------------------------------- /config/locales/br.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/br.yml -------------------------------------------------------------------------------- /config/locales/bs.yml: -------------------------------------------------------------------------------- 1 | bs: 2 | -------------------------------------------------------------------------------- /config/locales/ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ca.yml -------------------------------------------------------------------------------- /config/locales/ckb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ckb.yml -------------------------------------------------------------------------------- /config/locales/co.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/co.yml -------------------------------------------------------------------------------- /config/locales/cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/cs.yml -------------------------------------------------------------------------------- /config/locales/cy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/cy.yml -------------------------------------------------------------------------------- /config/locales/da.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/da.yml -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/devise.af.yml: -------------------------------------------------------------------------------- 1 | af: 2 | -------------------------------------------------------------------------------- /config/locales/devise.bs.yml: -------------------------------------------------------------------------------- 1 | bs: 2 | -------------------------------------------------------------------------------- /config/locales/devise.ig.yml: -------------------------------------------------------------------------------- 1 | ig: 2 | -------------------------------------------------------------------------------- /config/locales/devise.kw.yml: -------------------------------------------------------------------------------- 1 | kw: 2 | -------------------------------------------------------------------------------- /config/locales/devise.mk.yml: -------------------------------------------------------------------------------- 1 | mk: 2 | -------------------------------------------------------------------------------- /config/locales/devise.mr.yml: -------------------------------------------------------------------------------- 1 | mr: 2 | -------------------------------------------------------------------------------- /config/locales/devise.ne.yml: -------------------------------------------------------------------------------- 1 | ne: 2 | -------------------------------------------------------------------------------- /config/locales/devise.ry.yml: -------------------------------------------------------------------------------- 1 | ry: 2 | -------------------------------------------------------------------------------- /config/locales/devise.sa.yml: -------------------------------------------------------------------------------- 1 | sa: 2 | -------------------------------------------------------------------------------- /config/locales/devise.szl.yml: -------------------------------------------------------------------------------- 1 | szl: 2 | -------------------------------------------------------------------------------- /config/locales/devise.tai.yml: -------------------------------------------------------------------------------- 1 | tai: 2 | -------------------------------------------------------------------------------- /config/locales/devise.te.yml: -------------------------------------------------------------------------------- 1 | te: 2 | -------------------------------------------------------------------------------- /config/locales/devise.tlh.yml: -------------------------------------------------------------------------------- 1 | tlh: 2 | -------------------------------------------------------------------------------- /config/locales/devise.ug.yml: -------------------------------------------------------------------------------- 1 | ug: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.az.yml: -------------------------------------------------------------------------------- 1 | az: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.bn.yml: -------------------------------------------------------------------------------- 1 | bn: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.bs.yml: -------------------------------------------------------------------------------- 1 | bs: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.fil.yml: -------------------------------------------------------------------------------- 1 | fil: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.kn.yml: -------------------------------------------------------------------------------- 1 | kn: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.kw.yml: -------------------------------------------------------------------------------- 1 | kw: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.la.yml: -------------------------------------------------------------------------------- 1 | la: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.mk.yml: -------------------------------------------------------------------------------- 1 | mk: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.ne.yml: -------------------------------------------------------------------------------- 1 | ne: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.ry.yml: -------------------------------------------------------------------------------- 1 | ry: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.sa.yml: -------------------------------------------------------------------------------- 1 | sa: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.szl.yml: -------------------------------------------------------------------------------- 1 | szl: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.tai.yml: -------------------------------------------------------------------------------- 1 | tai: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.te.yml: -------------------------------------------------------------------------------- 1 | te: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.tlh.yml: -------------------------------------------------------------------------------- 1 | tlh: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.ug.yml: -------------------------------------------------------------------------------- 1 | ug: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.ur.yml: -------------------------------------------------------------------------------- 1 | ur: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.uz.yml: -------------------------------------------------------------------------------- 1 | uz: 2 | -------------------------------------------------------------------------------- /config/locales/el.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/el.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/eo.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/et.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/et.yml -------------------------------------------------------------------------------- /config/locales/eu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/eu.yml -------------------------------------------------------------------------------- /config/locales/fa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/fa.yml -------------------------------------------------------------------------------- /config/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/fi.yml -------------------------------------------------------------------------------- /config/locales/fil.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/fil.yml -------------------------------------------------------------------------------- /config/locales/fo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/fo.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/fy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/fy.yml -------------------------------------------------------------------------------- /config/locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ga.yml -------------------------------------------------------------------------------- /config/locales/gd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/gd.yml -------------------------------------------------------------------------------- /config/locales/gl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/gl.yml -------------------------------------------------------------------------------- /config/locales/he.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/he.yml -------------------------------------------------------------------------------- /config/locales/hi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/hi.yml -------------------------------------------------------------------------------- /config/locales/hr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/hr.yml -------------------------------------------------------------------------------- /config/locales/hu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/hu.yml -------------------------------------------------------------------------------- /config/locales/hy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/hy.yml -------------------------------------------------------------------------------- /config/locales/ia.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ia.yml -------------------------------------------------------------------------------- /config/locales/id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/id.yml -------------------------------------------------------------------------------- /config/locales/ie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ie.yml -------------------------------------------------------------------------------- /config/locales/ig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ig.yml -------------------------------------------------------------------------------- /config/locales/io.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/io.yml -------------------------------------------------------------------------------- /config/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/is.yml -------------------------------------------------------------------------------- /config/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/it.yml -------------------------------------------------------------------------------- /config/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ja.yml -------------------------------------------------------------------------------- /config/locales/ka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ka.yml -------------------------------------------------------------------------------- /config/locales/kab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/kab.yml -------------------------------------------------------------------------------- /config/locales/kk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/kk.yml -------------------------------------------------------------------------------- /config/locales/kn.yml: -------------------------------------------------------------------------------- 1 | kn: 2 | -------------------------------------------------------------------------------- /config/locales/ko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ko.yml -------------------------------------------------------------------------------- /config/locales/ku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ku.yml -------------------------------------------------------------------------------- /config/locales/kw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/kw.yml -------------------------------------------------------------------------------- /config/locales/la.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/la.yml -------------------------------------------------------------------------------- /config/locales/lad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/lad.yml -------------------------------------------------------------------------------- /config/locales/lt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/lt.yml -------------------------------------------------------------------------------- /config/locales/lv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/lv.yml -------------------------------------------------------------------------------- /config/locales/mk.yml: -------------------------------------------------------------------------------- 1 | mk: 2 | -------------------------------------------------------------------------------- /config/locales/ml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ml.yml -------------------------------------------------------------------------------- /config/locales/mr.yml: -------------------------------------------------------------------------------- 1 | mr: 2 | -------------------------------------------------------------------------------- /config/locales/ms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ms.yml -------------------------------------------------------------------------------- /config/locales/my.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/my.yml -------------------------------------------------------------------------------- /config/locales/nan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/nan.yml -------------------------------------------------------------------------------- /config/locales/ne.yml: -------------------------------------------------------------------------------- 1 | ne: 2 | -------------------------------------------------------------------------------- /config/locales/nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/nl.yml -------------------------------------------------------------------------------- /config/locales/nn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/nn.yml -------------------------------------------------------------------------------- /config/locales/no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/no.yml -------------------------------------------------------------------------------- /config/locales/oc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/oc.yml -------------------------------------------------------------------------------- /config/locales/pa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/pa.yml -------------------------------------------------------------------------------- /config/locales/pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/pl.yml -------------------------------------------------------------------------------- /config/locales/ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ro.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/locales/ry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ry.yml -------------------------------------------------------------------------------- /config/locales/sa.yml: -------------------------------------------------------------------------------- 1 | sa: 2 | -------------------------------------------------------------------------------- /config/locales/sc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/sc.yml -------------------------------------------------------------------------------- /config/locales/sco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/sco.yml -------------------------------------------------------------------------------- /config/locales/si.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/si.yml -------------------------------------------------------------------------------- /config/locales/simple_form.az.yml: -------------------------------------------------------------------------------- 1 | az: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.bs.yml: -------------------------------------------------------------------------------- 1 | bs: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.fil.yml: -------------------------------------------------------------------------------- 1 | fil: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.kn.yml: -------------------------------------------------------------------------------- 1 | kn: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.kw.yml: -------------------------------------------------------------------------------- 1 | kw: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.la.yml: -------------------------------------------------------------------------------- 1 | la: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.mk.yml: -------------------------------------------------------------------------------- 1 | mk: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.mr.yml: -------------------------------------------------------------------------------- 1 | mr: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.ne.yml: -------------------------------------------------------------------------------- 1 | ne: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.pa.yml: -------------------------------------------------------------------------------- 1 | pa: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.ry.yml: -------------------------------------------------------------------------------- 1 | ry: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.sa.yml: -------------------------------------------------------------------------------- 1 | sa: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.szl.yml: -------------------------------------------------------------------------------- 1 | szl: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.tai.yml: -------------------------------------------------------------------------------- 1 | tai: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.te.yml: -------------------------------------------------------------------------------- 1 | te: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.tlh.yml: -------------------------------------------------------------------------------- 1 | tlh: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.ug.yml: -------------------------------------------------------------------------------- 1 | ug: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.ur.yml: -------------------------------------------------------------------------------- 1 | ur: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.uz.yml: -------------------------------------------------------------------------------- 1 | uz: 2 | -------------------------------------------------------------------------------- /config/locales/sk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/sk.yml -------------------------------------------------------------------------------- /config/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/sl.yml -------------------------------------------------------------------------------- /config/locales/sq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/sq.yml -------------------------------------------------------------------------------- /config/locales/sr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/sr.yml -------------------------------------------------------------------------------- /config/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/sv.yml -------------------------------------------------------------------------------- /config/locales/szl.yml: -------------------------------------------------------------------------------- 1 | szl: 2 | -------------------------------------------------------------------------------- /config/locales/ta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/ta.yml -------------------------------------------------------------------------------- /config/locales/tai.yml: -------------------------------------------------------------------------------- 1 | tai: 2 | -------------------------------------------------------------------------------- /config/locales/te.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/te.yml -------------------------------------------------------------------------------- /config/locales/th.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/th.yml -------------------------------------------------------------------------------- /config/locales/tlh.yml: -------------------------------------------------------------------------------- 1 | tlh: 2 | -------------------------------------------------------------------------------- /config/locales/tok.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/tok.yml -------------------------------------------------------------------------------- /config/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/tr.yml -------------------------------------------------------------------------------- /config/locales/tt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/tt.yml -------------------------------------------------------------------------------- /config/locales/ug.yml: -------------------------------------------------------------------------------- 1 | ug: 2 | -------------------------------------------------------------------------------- /config/locales/uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/uk.yml -------------------------------------------------------------------------------- /config/locales/ur.yml: -------------------------------------------------------------------------------- 1 | ur: 2 | -------------------------------------------------------------------------------- /config/locales/uz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/uz.yml -------------------------------------------------------------------------------- /config/locales/vi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/vi.yml -------------------------------------------------------------------------------- /config/locales/zgh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/locales/zgh.yml -------------------------------------------------------------------------------- /config/mastodon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/mastodon.yml -------------------------------------------------------------------------------- /config/navigation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/navigation.rb -------------------------------------------------------------------------------- /config/pghero.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/pghero.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/roles.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/routes/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/routes/admin.rb -------------------------------------------------------------------------------- /config/routes/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/routes/api.rb -------------------------------------------------------------------------------- /config/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/settings.yml -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/translation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/translation.yml -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /crowdin-glitch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/crowdin-glitch.yml -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/crowdin.yml -------------------------------------------------------------------------------- /db/post_migrate/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds/01_web_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/db/seeds/01_web_app.rb -------------------------------------------------------------------------------- /db/seeds/03_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/db/seeds/03_roles.rb -------------------------------------------------------------------------------- /db/seeds/04_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/db/seeds/04_admin.rb -------------------------------------------------------------------------------- /dist/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/dist/nginx.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /ide-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/ide-helper.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assets/wordmark.dark.css: -------------------------------------------------------------------------------- 1 | /* Not needed */ 2 | -------------------------------------------------------------------------------- /lib/assets/wordmark.light.css: -------------------------------------------------------------------------------- 1 | use { 2 | color: #000 !important; 3 | } 4 | -------------------------------------------------------------------------------- /lib/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/lib/exceptions.rb -------------------------------------------------------------------------------- /lib/tasks/assets.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/lib/tasks/assets.rake -------------------------------------------------------------------------------- /lib/tasks/db.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/lib/tasks/db.rake -------------------------------------------------------------------------------- /lib/tasks/emojis.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/lib/tasks/emojis.rake -------------------------------------------------------------------------------- /lib/tasks/icons.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/lib/tasks/icons.rake -------------------------------------------------------------------------------- /lib/tasks/repo.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/lib/tasks/repo.rake -------------------------------------------------------------------------------- /lib/tasks/tests.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/lib/tasks/tests.rake -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/postcss.config.js -------------------------------------------------------------------------------- /priv-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/priv-config -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- 1 | assets/500.html -------------------------------------------------------------------------------- /public/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/badge.png -------------------------------------------------------------------------------- /public/clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/clock.js -------------------------------------------------------------------------------- /public/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/embed.js -------------------------------------------------------------------------------- /public/emoji/1f004.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f004.svg -------------------------------------------------------------------------------- /public/emoji/1f0cf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f0cf.svg -------------------------------------------------------------------------------- /public/emoji/1f170.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f170.svg -------------------------------------------------------------------------------- /public/emoji/1f171.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f171.svg -------------------------------------------------------------------------------- /public/emoji/1f17e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f17e.svg -------------------------------------------------------------------------------- /public/emoji/1f17f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f17f.svg -------------------------------------------------------------------------------- /public/emoji/1f18e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f18e.svg -------------------------------------------------------------------------------- /public/emoji/1f191.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f191.svg -------------------------------------------------------------------------------- /public/emoji/1f192.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f192.svg -------------------------------------------------------------------------------- /public/emoji/1f193.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f193.svg -------------------------------------------------------------------------------- /public/emoji/1f194.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f194.svg -------------------------------------------------------------------------------- /public/emoji/1f195.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f195.svg -------------------------------------------------------------------------------- /public/emoji/1f196.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f196.svg -------------------------------------------------------------------------------- /public/emoji/1f197.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f197.svg -------------------------------------------------------------------------------- /public/emoji/1f198.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f198.svg -------------------------------------------------------------------------------- /public/emoji/1f199.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f199.svg -------------------------------------------------------------------------------- /public/emoji/1f19a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f19a.svg -------------------------------------------------------------------------------- /public/emoji/1f1e6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1e6.svg -------------------------------------------------------------------------------- /public/emoji/1f1e7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1e7.svg -------------------------------------------------------------------------------- /public/emoji/1f1e8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1e8.svg -------------------------------------------------------------------------------- /public/emoji/1f1e9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1e9.svg -------------------------------------------------------------------------------- /public/emoji/1f1ea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1ea.svg -------------------------------------------------------------------------------- /public/emoji/1f1eb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1eb.svg -------------------------------------------------------------------------------- /public/emoji/1f1ec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1ec.svg -------------------------------------------------------------------------------- /public/emoji/1f1ed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1ed.svg -------------------------------------------------------------------------------- /public/emoji/1f1ee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1ee.svg -------------------------------------------------------------------------------- /public/emoji/1f1ef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1ef.svg -------------------------------------------------------------------------------- /public/emoji/1f1f0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1f0.svg -------------------------------------------------------------------------------- /public/emoji/1f1f1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1f1.svg -------------------------------------------------------------------------------- /public/emoji/1f1f2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1f2.svg -------------------------------------------------------------------------------- /public/emoji/1f1f3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1f3.svg -------------------------------------------------------------------------------- /public/emoji/1f1f4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1f4.svg -------------------------------------------------------------------------------- /public/emoji/1f1f5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1f5.svg -------------------------------------------------------------------------------- /public/emoji/1f1f6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1f6.svg -------------------------------------------------------------------------------- /public/emoji/1f1f7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1f7.svg -------------------------------------------------------------------------------- /public/emoji/1f1f8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1f8.svg -------------------------------------------------------------------------------- /public/emoji/1f1f9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1f9.svg -------------------------------------------------------------------------------- /public/emoji/1f1fa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1fa.svg -------------------------------------------------------------------------------- /public/emoji/1f1fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1fb.svg -------------------------------------------------------------------------------- /public/emoji/1f1fc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1fc.svg -------------------------------------------------------------------------------- /public/emoji/1f1fd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1fd.svg -------------------------------------------------------------------------------- /public/emoji/1f1fe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1fe.svg -------------------------------------------------------------------------------- /public/emoji/1f1ff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f1ff.svg -------------------------------------------------------------------------------- /public/emoji/1f201.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f201.svg -------------------------------------------------------------------------------- /public/emoji/1f202.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f202.svg -------------------------------------------------------------------------------- /public/emoji/1f21a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f21a.svg -------------------------------------------------------------------------------- /public/emoji/1f22f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f22f.svg -------------------------------------------------------------------------------- /public/emoji/1f232.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f232.svg -------------------------------------------------------------------------------- /public/emoji/1f233.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f233.svg -------------------------------------------------------------------------------- /public/emoji/1f234.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f234.svg -------------------------------------------------------------------------------- /public/emoji/1f235.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f235.svg -------------------------------------------------------------------------------- /public/emoji/1f236.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f236.svg -------------------------------------------------------------------------------- /public/emoji/1f237.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f237.svg -------------------------------------------------------------------------------- /public/emoji/1f238.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f238.svg -------------------------------------------------------------------------------- /public/emoji/1f239.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f239.svg -------------------------------------------------------------------------------- /public/emoji/1f23a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f23a.svg -------------------------------------------------------------------------------- /public/emoji/1f250.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f250.svg -------------------------------------------------------------------------------- /public/emoji/1f251.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f251.svg -------------------------------------------------------------------------------- /public/emoji/1f300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f300.svg -------------------------------------------------------------------------------- /public/emoji/1f301.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f301.svg -------------------------------------------------------------------------------- /public/emoji/1f302.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f302.svg -------------------------------------------------------------------------------- /public/emoji/1f303.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f303.svg -------------------------------------------------------------------------------- /public/emoji/1f304.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f304.svg -------------------------------------------------------------------------------- /public/emoji/1f305.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f305.svg -------------------------------------------------------------------------------- /public/emoji/1f306.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f306.svg -------------------------------------------------------------------------------- /public/emoji/1f307.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f307.svg -------------------------------------------------------------------------------- /public/emoji/1f308.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f308.svg -------------------------------------------------------------------------------- /public/emoji/1f309.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f309.svg -------------------------------------------------------------------------------- /public/emoji/1f30a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f30a.svg -------------------------------------------------------------------------------- /public/emoji/1f30b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f30b.svg -------------------------------------------------------------------------------- /public/emoji/1f30c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f30c.svg -------------------------------------------------------------------------------- /public/emoji/1f30d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f30d.svg -------------------------------------------------------------------------------- /public/emoji/1f30e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f30e.svg -------------------------------------------------------------------------------- /public/emoji/1f30f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f30f.svg -------------------------------------------------------------------------------- /public/emoji/1f310.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f310.svg -------------------------------------------------------------------------------- /public/emoji/1f311.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f311.svg -------------------------------------------------------------------------------- /public/emoji/1f312.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f312.svg -------------------------------------------------------------------------------- /public/emoji/1f313.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f313.svg -------------------------------------------------------------------------------- /public/emoji/1f314.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f314.svg -------------------------------------------------------------------------------- /public/emoji/1f315.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f315.svg -------------------------------------------------------------------------------- /public/emoji/1f316.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f316.svg -------------------------------------------------------------------------------- /public/emoji/1f317.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f317.svg -------------------------------------------------------------------------------- /public/emoji/1f318.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f318.svg -------------------------------------------------------------------------------- /public/emoji/1f319.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f319.svg -------------------------------------------------------------------------------- /public/emoji/1f31a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f31a.svg -------------------------------------------------------------------------------- /public/emoji/1f31b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f31b.svg -------------------------------------------------------------------------------- /public/emoji/1f31c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f31c.svg -------------------------------------------------------------------------------- /public/emoji/1f31d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f31d.svg -------------------------------------------------------------------------------- /public/emoji/1f31e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f31e.svg -------------------------------------------------------------------------------- /public/emoji/1f31f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f31f.svg -------------------------------------------------------------------------------- /public/emoji/1f320.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f320.svg -------------------------------------------------------------------------------- /public/emoji/1f321.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f321.svg -------------------------------------------------------------------------------- /public/emoji/1f324.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f324.svg -------------------------------------------------------------------------------- /public/emoji/1f325.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f325.svg -------------------------------------------------------------------------------- /public/emoji/1f326.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f326.svg -------------------------------------------------------------------------------- /public/emoji/1f327.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f327.svg -------------------------------------------------------------------------------- /public/emoji/1f328.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f328.svg -------------------------------------------------------------------------------- /public/emoji/1f329.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f329.svg -------------------------------------------------------------------------------- /public/emoji/1f32a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f32a.svg -------------------------------------------------------------------------------- /public/emoji/1f32b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f32b.svg -------------------------------------------------------------------------------- /public/emoji/1f32c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f32c.svg -------------------------------------------------------------------------------- /public/emoji/1f32d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f32d.svg -------------------------------------------------------------------------------- /public/emoji/1f32e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f32e.svg -------------------------------------------------------------------------------- /public/emoji/1f32f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f32f.svg -------------------------------------------------------------------------------- /public/emoji/1f330.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f330.svg -------------------------------------------------------------------------------- /public/emoji/1f331.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f331.svg -------------------------------------------------------------------------------- /public/emoji/1f332.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f332.svg -------------------------------------------------------------------------------- /public/emoji/1f333.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f333.svg -------------------------------------------------------------------------------- /public/emoji/1f334.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f334.svg -------------------------------------------------------------------------------- /public/emoji/1f335.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f335.svg -------------------------------------------------------------------------------- /public/emoji/1f336.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f336.svg -------------------------------------------------------------------------------- /public/emoji/1f337.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f337.svg -------------------------------------------------------------------------------- /public/emoji/1f338.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f338.svg -------------------------------------------------------------------------------- /public/emoji/1f339.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f339.svg -------------------------------------------------------------------------------- /public/emoji/1f33a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f33a.svg -------------------------------------------------------------------------------- /public/emoji/1f33b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f33b.svg -------------------------------------------------------------------------------- /public/emoji/1f33c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f33c.svg -------------------------------------------------------------------------------- /public/emoji/1f33d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f33d.svg -------------------------------------------------------------------------------- /public/emoji/1f33e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f33e.svg -------------------------------------------------------------------------------- /public/emoji/1f33f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f33f.svg -------------------------------------------------------------------------------- /public/emoji/1f340.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f340.svg -------------------------------------------------------------------------------- /public/emoji/1f341.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f341.svg -------------------------------------------------------------------------------- /public/emoji/1f342.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f342.svg -------------------------------------------------------------------------------- /public/emoji/1f343.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f343.svg -------------------------------------------------------------------------------- /public/emoji/1f344.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f344.svg -------------------------------------------------------------------------------- /public/emoji/1f345.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f345.svg -------------------------------------------------------------------------------- /public/emoji/1f346.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f346.svg -------------------------------------------------------------------------------- /public/emoji/1f347.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f347.svg -------------------------------------------------------------------------------- /public/emoji/1f348.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f348.svg -------------------------------------------------------------------------------- /public/emoji/1f349.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f349.svg -------------------------------------------------------------------------------- /public/emoji/1f34a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f34a.svg -------------------------------------------------------------------------------- /public/emoji/1f34b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f34b.svg -------------------------------------------------------------------------------- /public/emoji/1f34c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f34c.svg -------------------------------------------------------------------------------- /public/emoji/1f34d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f34d.svg -------------------------------------------------------------------------------- /public/emoji/1f34e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f34e.svg -------------------------------------------------------------------------------- /public/emoji/1f34f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f34f.svg -------------------------------------------------------------------------------- /public/emoji/1f350.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f350.svg -------------------------------------------------------------------------------- /public/emoji/1f351.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f351.svg -------------------------------------------------------------------------------- /public/emoji/1f352.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f352.svg -------------------------------------------------------------------------------- /public/emoji/1f353.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f353.svg -------------------------------------------------------------------------------- /public/emoji/1f354.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f354.svg -------------------------------------------------------------------------------- /public/emoji/1f355.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f355.svg -------------------------------------------------------------------------------- /public/emoji/1f356.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f356.svg -------------------------------------------------------------------------------- /public/emoji/1f357.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f357.svg -------------------------------------------------------------------------------- /public/emoji/1f358.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f358.svg -------------------------------------------------------------------------------- /public/emoji/1f359.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f359.svg -------------------------------------------------------------------------------- /public/emoji/1f35a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f35a.svg -------------------------------------------------------------------------------- /public/emoji/1f35b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f35b.svg -------------------------------------------------------------------------------- /public/emoji/1f35c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f35c.svg -------------------------------------------------------------------------------- /public/emoji/1f35d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f35d.svg -------------------------------------------------------------------------------- /public/emoji/1f35e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f35e.svg -------------------------------------------------------------------------------- /public/emoji/1f35f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f35f.svg -------------------------------------------------------------------------------- /public/emoji/1f360.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f360.svg -------------------------------------------------------------------------------- /public/emoji/1f361.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f361.svg -------------------------------------------------------------------------------- /public/emoji/1f362.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f362.svg -------------------------------------------------------------------------------- /public/emoji/1f363.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f363.svg -------------------------------------------------------------------------------- /public/emoji/1f364.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f364.svg -------------------------------------------------------------------------------- /public/emoji/1f365.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f365.svg -------------------------------------------------------------------------------- /public/emoji/1f366.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f366.svg -------------------------------------------------------------------------------- /public/emoji/1f367.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f367.svg -------------------------------------------------------------------------------- /public/emoji/1f368.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f368.svg -------------------------------------------------------------------------------- /public/emoji/1f369.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f369.svg -------------------------------------------------------------------------------- /public/emoji/1f36a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f36a.svg -------------------------------------------------------------------------------- /public/emoji/1f36b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f36b.svg -------------------------------------------------------------------------------- /public/emoji/1f36c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f36c.svg -------------------------------------------------------------------------------- /public/emoji/1f36d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f36d.svg -------------------------------------------------------------------------------- /public/emoji/1f36e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f36e.svg -------------------------------------------------------------------------------- /public/emoji/1f36f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f36f.svg -------------------------------------------------------------------------------- /public/emoji/1f370.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f370.svg -------------------------------------------------------------------------------- /public/emoji/1f371.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f371.svg -------------------------------------------------------------------------------- /public/emoji/1f372.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f372.svg -------------------------------------------------------------------------------- /public/emoji/1f373.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f373.svg -------------------------------------------------------------------------------- /public/emoji/1f374.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f374.svg -------------------------------------------------------------------------------- /public/emoji/1f375.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f375.svg -------------------------------------------------------------------------------- /public/emoji/1f376.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f376.svg -------------------------------------------------------------------------------- /public/emoji/1f377.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f377.svg -------------------------------------------------------------------------------- /public/emoji/1f378.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f378.svg -------------------------------------------------------------------------------- /public/emoji/1f379.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f379.svg -------------------------------------------------------------------------------- /public/emoji/1f37a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f37a.svg -------------------------------------------------------------------------------- /public/emoji/1f37b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f37b.svg -------------------------------------------------------------------------------- /public/emoji/1f37c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f37c.svg -------------------------------------------------------------------------------- /public/emoji/1f37d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f37d.svg -------------------------------------------------------------------------------- /public/emoji/1f37e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f37e.svg -------------------------------------------------------------------------------- /public/emoji/1f37f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f37f.svg -------------------------------------------------------------------------------- /public/emoji/1f380.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f380.svg -------------------------------------------------------------------------------- /public/emoji/1f381.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f381.svg -------------------------------------------------------------------------------- /public/emoji/1f382.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f382.svg -------------------------------------------------------------------------------- /public/emoji/1f383.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f383.svg -------------------------------------------------------------------------------- /public/emoji/1f384.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f384.svg -------------------------------------------------------------------------------- /public/emoji/1f385.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f385.svg -------------------------------------------------------------------------------- /public/emoji/1f386.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f386.svg -------------------------------------------------------------------------------- /public/emoji/1f387.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f387.svg -------------------------------------------------------------------------------- /public/emoji/1f388.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f388.svg -------------------------------------------------------------------------------- /public/emoji/1f389.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f389.svg -------------------------------------------------------------------------------- /public/emoji/1f38a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f38a.svg -------------------------------------------------------------------------------- /public/emoji/1f38b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f38b.svg -------------------------------------------------------------------------------- /public/emoji/1f38c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f38c.svg -------------------------------------------------------------------------------- /public/emoji/1f38d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f38d.svg -------------------------------------------------------------------------------- /public/emoji/1f38e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f38e.svg -------------------------------------------------------------------------------- /public/emoji/1f38f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f38f.svg -------------------------------------------------------------------------------- /public/emoji/1f390.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f390.svg -------------------------------------------------------------------------------- /public/emoji/1f391.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f391.svg -------------------------------------------------------------------------------- /public/emoji/1f392.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f392.svg -------------------------------------------------------------------------------- /public/emoji/1f393.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f393.svg -------------------------------------------------------------------------------- /public/emoji/1f396.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f396.svg -------------------------------------------------------------------------------- /public/emoji/1f397.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f397.svg -------------------------------------------------------------------------------- /public/emoji/1f399.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f399.svg -------------------------------------------------------------------------------- /public/emoji/1f39a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f39a.svg -------------------------------------------------------------------------------- /public/emoji/1f39b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f39b.svg -------------------------------------------------------------------------------- /public/emoji/1f39e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f39e.svg -------------------------------------------------------------------------------- /public/emoji/1f39f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f39f.svg -------------------------------------------------------------------------------- /public/emoji/1f3a0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3a0.svg -------------------------------------------------------------------------------- /public/emoji/1f3a1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3a1.svg -------------------------------------------------------------------------------- /public/emoji/1f3a2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3a2.svg -------------------------------------------------------------------------------- /public/emoji/1f3a3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3a3.svg -------------------------------------------------------------------------------- /public/emoji/1f3a4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3a4.svg -------------------------------------------------------------------------------- /public/emoji/1f3a5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3a5.svg -------------------------------------------------------------------------------- /public/emoji/1f3a6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3a6.svg -------------------------------------------------------------------------------- /public/emoji/1f3a7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3a7.svg -------------------------------------------------------------------------------- /public/emoji/1f3a8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3a8.svg -------------------------------------------------------------------------------- /public/emoji/1f3a9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3a9.svg -------------------------------------------------------------------------------- /public/emoji/1f3aa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3aa.svg -------------------------------------------------------------------------------- /public/emoji/1f3ab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3ab.svg -------------------------------------------------------------------------------- /public/emoji/1f3ac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3ac.svg -------------------------------------------------------------------------------- /public/emoji/1f3ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3ad.svg -------------------------------------------------------------------------------- /public/emoji/1f3ae.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3ae.svg -------------------------------------------------------------------------------- /public/emoji/1f3af.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3af.svg -------------------------------------------------------------------------------- /public/emoji/1f3b0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3b0.svg -------------------------------------------------------------------------------- /public/emoji/1f3b1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3b1.svg -------------------------------------------------------------------------------- /public/emoji/1f3b2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3b2.svg -------------------------------------------------------------------------------- /public/emoji/1f3b3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3b3.svg -------------------------------------------------------------------------------- /public/emoji/1f3b4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3b4.svg -------------------------------------------------------------------------------- /public/emoji/1f3b5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3b5.svg -------------------------------------------------------------------------------- /public/emoji/1f3b6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3b6.svg -------------------------------------------------------------------------------- /public/emoji/1f3b7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3b7.svg -------------------------------------------------------------------------------- /public/emoji/1f3b8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3b8.svg -------------------------------------------------------------------------------- /public/emoji/1f3b9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3b9.svg -------------------------------------------------------------------------------- /public/emoji/1f3ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3ba.svg -------------------------------------------------------------------------------- /public/emoji/1f3bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3bb.svg -------------------------------------------------------------------------------- /public/emoji/1f3bc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3bc.svg -------------------------------------------------------------------------------- /public/emoji/1f3bd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3bd.svg -------------------------------------------------------------------------------- /public/emoji/1f3be.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3be.svg -------------------------------------------------------------------------------- /public/emoji/1f3bf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3bf.svg -------------------------------------------------------------------------------- /public/emoji/1f3c0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3c0.svg -------------------------------------------------------------------------------- /public/emoji/1f3c1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3c1.svg -------------------------------------------------------------------------------- /public/emoji/1f3c2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3c2.svg -------------------------------------------------------------------------------- /public/emoji/1f3c3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3c3.svg -------------------------------------------------------------------------------- /public/emoji/1f3c4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3c4.svg -------------------------------------------------------------------------------- /public/emoji/1f3c5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3c5.svg -------------------------------------------------------------------------------- /public/emoji/1f3c6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3c6.svg -------------------------------------------------------------------------------- /public/emoji/1f3c7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3c7.svg -------------------------------------------------------------------------------- /public/emoji/1f3c8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3c8.svg -------------------------------------------------------------------------------- /public/emoji/1f3c9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3c9.svg -------------------------------------------------------------------------------- /public/emoji/1f3ca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3ca.svg -------------------------------------------------------------------------------- /public/emoji/1f3cb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3cb.svg -------------------------------------------------------------------------------- /public/emoji/1f3cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3cc.svg -------------------------------------------------------------------------------- /public/emoji/1f3cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3cd.svg -------------------------------------------------------------------------------- /public/emoji/1f3ce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3ce.svg -------------------------------------------------------------------------------- /public/emoji/1f3cf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3cf.svg -------------------------------------------------------------------------------- /public/emoji/1f3d0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3d0.svg -------------------------------------------------------------------------------- /public/emoji/1f3d1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3d1.svg -------------------------------------------------------------------------------- /public/emoji/1f3d2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3d2.svg -------------------------------------------------------------------------------- /public/emoji/1f3d3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3d3.svg -------------------------------------------------------------------------------- /public/emoji/1f3d4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3d4.svg -------------------------------------------------------------------------------- /public/emoji/1f3d5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3d5.svg -------------------------------------------------------------------------------- /public/emoji/1f3d6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3d6.svg -------------------------------------------------------------------------------- /public/emoji/1f3d7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3d7.svg -------------------------------------------------------------------------------- /public/emoji/1f3d8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3d8.svg -------------------------------------------------------------------------------- /public/emoji/1f3d9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3d9.svg -------------------------------------------------------------------------------- /public/emoji/1f3da.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3da.svg -------------------------------------------------------------------------------- /public/emoji/1f3db.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3db.svg -------------------------------------------------------------------------------- /public/emoji/1f3dc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3dc.svg -------------------------------------------------------------------------------- /public/emoji/1f3dd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3dd.svg -------------------------------------------------------------------------------- /public/emoji/1f3de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3de.svg -------------------------------------------------------------------------------- /public/emoji/1f3df.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3df.svg -------------------------------------------------------------------------------- /public/emoji/1f3e0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3e0.svg -------------------------------------------------------------------------------- /public/emoji/1f3e1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3e1.svg -------------------------------------------------------------------------------- /public/emoji/1f3e2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3e2.svg -------------------------------------------------------------------------------- /public/emoji/1f3e3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3e3.svg -------------------------------------------------------------------------------- /public/emoji/1f3e4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3e4.svg -------------------------------------------------------------------------------- /public/emoji/1f3e5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3e5.svg -------------------------------------------------------------------------------- /public/emoji/1f3e6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3e6.svg -------------------------------------------------------------------------------- /public/emoji/1f3e7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3e7.svg -------------------------------------------------------------------------------- /public/emoji/1f3e8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3e8.svg -------------------------------------------------------------------------------- /public/emoji/1f3e9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3e9.svg -------------------------------------------------------------------------------- /public/emoji/1f3ea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3ea.svg -------------------------------------------------------------------------------- /public/emoji/1f3eb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3eb.svg -------------------------------------------------------------------------------- /public/emoji/1f3ec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3ec.svg -------------------------------------------------------------------------------- /public/emoji/1f3ed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3ed.svg -------------------------------------------------------------------------------- /public/emoji/1f3ee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3ee.svg -------------------------------------------------------------------------------- /public/emoji/1f3ef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3ef.svg -------------------------------------------------------------------------------- /public/emoji/1f3f0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3f0.svg -------------------------------------------------------------------------------- /public/emoji/1f3f3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3f3.svg -------------------------------------------------------------------------------- /public/emoji/1f3f4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3f4.svg -------------------------------------------------------------------------------- /public/emoji/1f3f5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3f5.svg -------------------------------------------------------------------------------- /public/emoji/1f3f7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3f7.svg -------------------------------------------------------------------------------- /public/emoji/1f3f8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3f8.svg -------------------------------------------------------------------------------- /public/emoji/1f3f9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3f9.svg -------------------------------------------------------------------------------- /public/emoji/1f3fa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3fa.svg -------------------------------------------------------------------------------- /public/emoji/1f3fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3fb.svg -------------------------------------------------------------------------------- /public/emoji/1f3fc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3fc.svg -------------------------------------------------------------------------------- /public/emoji/1f3fd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3fd.svg -------------------------------------------------------------------------------- /public/emoji/1f3fe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3fe.svg -------------------------------------------------------------------------------- /public/emoji/1f3ff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f3ff.svg -------------------------------------------------------------------------------- /public/emoji/1f400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f400.svg -------------------------------------------------------------------------------- /public/emoji/1f401.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f401.svg -------------------------------------------------------------------------------- /public/emoji/1f402.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f402.svg -------------------------------------------------------------------------------- /public/emoji/1f403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f403.svg -------------------------------------------------------------------------------- /public/emoji/1f404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f404.svg -------------------------------------------------------------------------------- /public/emoji/1f405.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f405.svg -------------------------------------------------------------------------------- /public/emoji/1f406.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f406.svg -------------------------------------------------------------------------------- /public/emoji/1f407.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f407.svg -------------------------------------------------------------------------------- /public/emoji/1f408.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f408.svg -------------------------------------------------------------------------------- /public/emoji/1f409.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f409.svg -------------------------------------------------------------------------------- /public/emoji/1f40a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f40a.svg -------------------------------------------------------------------------------- /public/emoji/1f40b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f40b.svg -------------------------------------------------------------------------------- /public/emoji/1f40c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f40c.svg -------------------------------------------------------------------------------- /public/emoji/1f40d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f40d.svg -------------------------------------------------------------------------------- /public/emoji/1f40e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f40e.svg -------------------------------------------------------------------------------- /public/emoji/1f40f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f40f.svg -------------------------------------------------------------------------------- /public/emoji/1f410.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f410.svg -------------------------------------------------------------------------------- /public/emoji/1f411.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f411.svg -------------------------------------------------------------------------------- /public/emoji/1f412.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f412.svg -------------------------------------------------------------------------------- /public/emoji/1f413.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f413.svg -------------------------------------------------------------------------------- /public/emoji/1f414.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f414.svg -------------------------------------------------------------------------------- /public/emoji/1f415.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f415.svg -------------------------------------------------------------------------------- /public/emoji/1f416.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f416.svg -------------------------------------------------------------------------------- /public/emoji/1f417.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f417.svg -------------------------------------------------------------------------------- /public/emoji/1f418.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f418.svg -------------------------------------------------------------------------------- /public/emoji/1f419.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f419.svg -------------------------------------------------------------------------------- /public/emoji/1f41a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f41a.svg -------------------------------------------------------------------------------- /public/emoji/1f41b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f41b.svg -------------------------------------------------------------------------------- /public/emoji/1f41c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f41c.svg -------------------------------------------------------------------------------- /public/emoji/1f41d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f41d.svg -------------------------------------------------------------------------------- /public/emoji/1f41e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f41e.svg -------------------------------------------------------------------------------- /public/emoji/1f41f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f41f.svg -------------------------------------------------------------------------------- /public/emoji/1f420.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f420.svg -------------------------------------------------------------------------------- /public/emoji/1f421.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f421.svg -------------------------------------------------------------------------------- /public/emoji/1f422.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f422.svg -------------------------------------------------------------------------------- /public/emoji/1f423.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f423.svg -------------------------------------------------------------------------------- /public/emoji/1f424.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f424.svg -------------------------------------------------------------------------------- /public/emoji/1f425.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f425.svg -------------------------------------------------------------------------------- /public/emoji/1f426.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f426.svg -------------------------------------------------------------------------------- /public/emoji/1f427.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f427.svg -------------------------------------------------------------------------------- /public/emoji/1f428.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f428.svg -------------------------------------------------------------------------------- /public/emoji/1f429.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f429.svg -------------------------------------------------------------------------------- /public/emoji/1f42a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f42a.svg -------------------------------------------------------------------------------- /public/emoji/1f42b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f42b.svg -------------------------------------------------------------------------------- /public/emoji/1f42c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f42c.svg -------------------------------------------------------------------------------- /public/emoji/1f42d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f42d.svg -------------------------------------------------------------------------------- /public/emoji/1f42e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f42e.svg -------------------------------------------------------------------------------- /public/emoji/1f42f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f42f.svg -------------------------------------------------------------------------------- /public/emoji/1f430.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f430.svg -------------------------------------------------------------------------------- /public/emoji/1f431.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f431.svg -------------------------------------------------------------------------------- /public/emoji/1f432.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f432.svg -------------------------------------------------------------------------------- /public/emoji/1f433.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f433.svg -------------------------------------------------------------------------------- /public/emoji/1f434.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f434.svg -------------------------------------------------------------------------------- /public/emoji/1f435.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f435.svg -------------------------------------------------------------------------------- /public/emoji/1f436.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f436.svg -------------------------------------------------------------------------------- /public/emoji/1f437.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f437.svg -------------------------------------------------------------------------------- /public/emoji/1f438.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f438.svg -------------------------------------------------------------------------------- /public/emoji/1f439.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f439.svg -------------------------------------------------------------------------------- /public/emoji/1f43a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f43a.svg -------------------------------------------------------------------------------- /public/emoji/1f43b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f43b.svg -------------------------------------------------------------------------------- /public/emoji/1f43c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f43c.svg -------------------------------------------------------------------------------- /public/emoji/1f43d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f43d.svg -------------------------------------------------------------------------------- /public/emoji/1f43e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f43e.svg -------------------------------------------------------------------------------- /public/emoji/1f43f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f43f.svg -------------------------------------------------------------------------------- /public/emoji/1f440.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f440.svg -------------------------------------------------------------------------------- /public/emoji/1f441.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f441.svg -------------------------------------------------------------------------------- /public/emoji/1f442.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f442.svg -------------------------------------------------------------------------------- /public/emoji/1f443.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f443.svg -------------------------------------------------------------------------------- /public/emoji/1f444.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f444.svg -------------------------------------------------------------------------------- /public/emoji/1f445.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f445.svg -------------------------------------------------------------------------------- /public/emoji/1f446.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f446.svg -------------------------------------------------------------------------------- /public/emoji/1f446svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f446svg -------------------------------------------------------------------------------- /public/emoji/1f447.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f447.svg -------------------------------------------------------------------------------- /public/emoji/1f447svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f447svg -------------------------------------------------------------------------------- /public/emoji/1f448.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f448.svg -------------------------------------------------------------------------------- /public/emoji/1f448svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f448svg -------------------------------------------------------------------------------- /public/emoji/1f449.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f449.svg -------------------------------------------------------------------------------- /public/emoji/1f449svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f449svg -------------------------------------------------------------------------------- /public/emoji/1f44a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f44a.svg -------------------------------------------------------------------------------- /public/emoji/1f44b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f44b.svg -------------------------------------------------------------------------------- /public/emoji/1f44c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f44c.svg -------------------------------------------------------------------------------- /public/emoji/1f44d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f44d.svg -------------------------------------------------------------------------------- /public/emoji/1f44e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f44e.svg -------------------------------------------------------------------------------- /public/emoji/1f44f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f44f.svg -------------------------------------------------------------------------------- /public/emoji/1f450.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f450.svg -------------------------------------------------------------------------------- /public/emoji/1f451.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f451.svg -------------------------------------------------------------------------------- /public/emoji/1f452.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f452.svg -------------------------------------------------------------------------------- /public/emoji/1f453.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f453.svg -------------------------------------------------------------------------------- /public/emoji/1f454.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f454.svg -------------------------------------------------------------------------------- /public/emoji/1f455.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f455.svg -------------------------------------------------------------------------------- /public/emoji/1f456.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f456.svg -------------------------------------------------------------------------------- /public/emoji/1f457.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f457.svg -------------------------------------------------------------------------------- /public/emoji/1f458.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f458.svg -------------------------------------------------------------------------------- /public/emoji/1f459.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f459.svg -------------------------------------------------------------------------------- /public/emoji/1f45a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f45a.svg -------------------------------------------------------------------------------- /public/emoji/1f45b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f45b.svg -------------------------------------------------------------------------------- /public/emoji/1f45c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f45c.svg -------------------------------------------------------------------------------- /public/emoji/1f45d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f45d.svg -------------------------------------------------------------------------------- /public/emoji/1f45e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f45e.svg -------------------------------------------------------------------------------- /public/emoji/1f45f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f45f.svg -------------------------------------------------------------------------------- /public/emoji/1f460.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f460.svg -------------------------------------------------------------------------------- /public/emoji/1f461.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f461.svg -------------------------------------------------------------------------------- /public/emoji/1f462.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f462.svg -------------------------------------------------------------------------------- /public/emoji/1f463.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f463.svg -------------------------------------------------------------------------------- /public/emoji/1f464.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f464.svg -------------------------------------------------------------------------------- /public/emoji/1f465.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f465.svg -------------------------------------------------------------------------------- /public/emoji/1f466.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f466.svg -------------------------------------------------------------------------------- /public/emoji/1f466svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f466svg -------------------------------------------------------------------------------- /public/emoji/1f467.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f467.svg -------------------------------------------------------------------------------- /public/emoji/1f468.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f468.svg -------------------------------------------------------------------------------- /public/emoji/1f469.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f469.svg -------------------------------------------------------------------------------- /public/emoji/1f46a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f46a.svg -------------------------------------------------------------------------------- /public/emoji/1f46b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f46b.svg -------------------------------------------------------------------------------- /public/emoji/1f46c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f46c.svg -------------------------------------------------------------------------------- /public/emoji/1f46d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f46d.svg -------------------------------------------------------------------------------- /public/emoji/1f46e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f46e.svg -------------------------------------------------------------------------------- /public/emoji/1f46f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f46f.svg -------------------------------------------------------------------------------- /public/emoji/1f470.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f470.svg -------------------------------------------------------------------------------- /public/emoji/1f471.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f471.svg -------------------------------------------------------------------------------- /public/emoji/1f472.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f472.svg -------------------------------------------------------------------------------- /public/emoji/1f473.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f473.svg -------------------------------------------------------------------------------- /public/emoji/1f474.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f474.svg -------------------------------------------------------------------------------- /public/emoji/1f475.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f475.svg -------------------------------------------------------------------------------- /public/emoji/1f476.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f476.svg -------------------------------------------------------------------------------- /public/emoji/1f476svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f476svg -------------------------------------------------------------------------------- /public/emoji/1f477.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f477.svg -------------------------------------------------------------------------------- /public/emoji/1f478.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f478.svg -------------------------------------------------------------------------------- /public/emoji/1f479.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f479.svg -------------------------------------------------------------------------------- /public/emoji/1f47a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f47a.svg -------------------------------------------------------------------------------- /public/emoji/1f47b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f47b.svg -------------------------------------------------------------------------------- /public/emoji/1f47c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f47c.svg -------------------------------------------------------------------------------- /public/emoji/1f47csvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f47csvg -------------------------------------------------------------------------------- /public/emoji/1f47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f47d.svg -------------------------------------------------------------------------------- /public/emoji/1f47e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f47e.svg -------------------------------------------------------------------------------- /public/emoji/1f47f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f47f.svg -------------------------------------------------------------------------------- /public/emoji/1f480.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f480.svg -------------------------------------------------------------------------------- /public/emoji/1f481.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/1f481.svg -------------------------------------------------------------------------------- /public/emoji/a9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/a9.svg -------------------------------------------------------------------------------- /public/emoji/ae.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/emoji/ae.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/loading.gif -------------------------------------------------------------------------------- /public/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/loading.png -------------------------------------------------------------------------------- /public/oops.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/oops.gif -------------------------------------------------------------------------------- /public/oops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/oops.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- 1 | packs/sw.js -------------------------------------------------------------------------------- /public/sw.js.map: -------------------------------------------------------------------------------- 1 | packs/sw.js.map -------------------------------------------------------------------------------- /public/tenor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/public/tenor.svg -------------------------------------------------------------------------------- /scalingo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/scalingo.json -------------------------------------------------------------------------------- /spec/fixtures/files/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/files/mute-imports.txt: -------------------------------------------------------------------------------- 1 | bob 2 | 3 | eve@example.com 4 | 5 | -------------------------------------------------------------------------------- /spec/fixtures/files/utf8-followers.txt: -------------------------------------------------------------------------------- 1 | @nare@թութ.հայ 2 | -------------------------------------------------------------------------------- /spec/models/status_reaction_spec.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require 'rails_helper' 4 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /streaming/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/streaming/errors.js -------------------------------------------------------------------------------- /streaming/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/streaming/index.js -------------------------------------------------------------------------------- /streaming/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/streaming/redis.js -------------------------------------------------------------------------------- /streaming/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/streaming/utils.js -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikorita157/mastodon-sakura/HEAD/yarn.lock --------------------------------------------------------------------------------