├── .browserslistrc ├── .buildpacks ├── .bundler-audit.yml ├── .devcontainer ├── Dockerfile ├── codespaces │ └── devcontainer.json ├── devcontainer.json ├── docker-compose.yml ├── post-create.sh └── welcome-message.txt ├── .dockerignore ├── .editorconfig ├── .env.production.sample ├── .env.test ├── .env.vagrant ├── .eslintignore ├── .eslintrc.js ├── .foreman ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1.web_bug_report.yml │ ├── 2.server_bug_report.yml │ ├── 3.feature_request.yml │ └── config.yml ├── renovate.json5 ├── stale.yml ├── stylelint-matcher.json └── workflows │ ├── build-container-image.yml │ ├── build-push-pr.yml │ ├── build-releases.yml │ ├── bundler-audit.yml │ ├── check-i18n.yml │ ├── haml-lint-problem-matcher.json │ ├── lint-css.yml │ ├── lint-haml.yml │ ├── lint-js.yml │ ├── lint-json.yml │ ├── lint-md.yml │ ├── lint-ruby.yml │ ├── lint-yml.yml │ ├── test-image-build.yml │ ├── test-js.yml │ ├── test-migrations-one-step.yml │ ├── test-migrations-two-step.yml │ └── test-ruby.yml ├── .gitignore ├── .haml-lint.yml ├── .haml-lint_todo.yml ├── .husky └── pre-commit ├── .nanoignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .profile ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .ruby-gemset ├── .ruby-version ├── .slugignore ├── .yarnclean ├── AUTHORS.md ├── Aptfile ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Capfile ├── 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 │ │ ├── claims_controller.rb │ │ ├── collections_controller.rb │ │ ├── followers_synchronizations_controller.rb │ │ ├── inboxes_controller.rb │ │ ├── outboxes_controller.rb │ │ └── replies_controller.rb │ ├── admin │ │ ├── account_actions_controller.rb │ │ ├── account_moderation_notes_controller.rb │ │ ├── accounts_controller.rb │ │ ├── action_logs_controller.rb │ │ ├── announcements_controller.rb │ │ ├── base_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 │ │ │ ├── hometown_controller.rb │ │ │ └── registrations_controller.rb │ │ ├── settings_controller.rb │ │ ├── site_uploads_controller.rb │ │ ├── software_updates_controller.rb │ │ ├── statuses_controller.rb │ │ ├── tags_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 │ │ │ ├── apps │ │ │ │ └── credentials_controller.rb │ │ │ ├── apps_controller.rb │ │ │ ├── blocks_controller.rb │ │ │ ├── bookmarks_controller.rb │ │ │ ├── conversations_controller.rb │ │ │ ├── crypto │ │ │ │ ├── deliveries_controller.rb │ │ │ │ ├── encrypted_messages_controller.rb │ │ │ │ └── keys │ │ │ │ │ ├── claims_controller.rb │ │ │ │ │ ├── counts_controller.rb │ │ │ │ │ ├── queries_controller.rb │ │ │ │ │ └── uploads_controller.rb │ │ │ ├── custom_emojis_controller.rb │ │ │ ├── directories_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 │ │ │ │ ├── domain_blocks_controller.rb │ │ │ │ ├── extended_descriptions_controller.rb │ │ │ │ ├── languages_controller.rb │ │ │ │ ├── peers_controller.rb │ │ │ │ ├── privacy_policies_controller.rb │ │ │ │ ├── rules_controller.rb │ │ │ │ └── translation_languages_controller.rb │ │ │ ├── instances_controller.rb │ │ │ ├── lists │ │ │ │ └── accounts_controller.rb │ │ │ ├── lists_controller.rb │ │ │ ├── markers_controller.rb │ │ │ ├── media_controller.rb │ │ │ ├── mutes_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 │ │ │ │ ├── bookmarks_controller.rb │ │ │ │ ├── favourited_by_accounts_controller.rb │ │ │ │ ├── favourites_controller.rb │ │ │ │ ├── histories_controller.rb │ │ │ │ ├── mutes_controller.rb │ │ │ │ ├── pins_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 │ │ │ │ ├── home_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 │ │ │ ├── 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 │ │ ├── access_token_tracking_concern.rb │ │ ├── account_controller_concern.rb │ │ ├── account_owned_concern.rb │ │ ├── accountable_concern.rb │ │ ├── admin_export_controller_concern.rb │ │ ├── api_caching_concern.rb │ │ ├── authorization.rb │ │ ├── cache_concern.rb │ │ ├── captcha_concern.rb │ │ ├── challengable_concern.rb │ │ ├── export_controller_concern.rb │ │ ├── localized.rb │ │ ├── rate_limit_headers.rb │ │ ├── registration_spam_concern.rb │ │ ├── session_tracking_concern.rb │ │ ├── signature_authentication.rb │ │ ├── signature_verification.rb │ │ ├── two_factor_authentication_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 │ ├── privacy_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 │ │ ├── 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 │ ├── shares_controller.rb │ ├── statuses_cleanup_controller.rb │ ├── statuses_controller.rb │ ├── tags_controller.rb │ └── well_known │ │ ├── host_meta_controller.rb │ │ ├── nodeinfo_controller.rb │ │ └── webfinger_controller.rb ├── helpers │ ├── accounts_helper.rb │ ├── admin │ │ ├── account_moderation_notes_helper.rb │ │ ├── action_logs_helper.rb │ │ ├── dashboard_helper.rb │ │ ├── filter_helper.rb │ │ ├── settings_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 │ ├── flashes_helper.rb │ ├── formatting_helper.rb │ ├── home_helper.rb │ ├── instance_helper.rb │ ├── jsonld_helper.rb │ ├── languages_helper.rb │ ├── mascot_helper.rb │ ├── media_component_helper.rb │ ├── react_component_helper.rb │ ├── routing_helper.rb │ ├── settings_helper.rb │ ├── statuses_helper.rb │ └── webfinger_helper.rb ├── javascript │ ├── fonts │ │ ├── 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 │ ├── hooks │ │ └── useHovering.ts │ ├── 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 │ │ ├── app-icon.svg │ │ ├── defaultmascot.svg │ │ ├── elephant_ui_conversation.svg │ │ ├── elephant_ui_plane.svg │ │ ├── elephant_ui_working.svg │ │ ├── friends-cropped.png │ │ ├── hometown-icon.svg │ │ ├── hometown.svg │ │ ├── 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 │ │ ├── logo_full.svg │ │ ├── logo_transparent.svg │ │ ├── mailer │ │ │ ├── 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 │ │ ├── merveilles-icon.svg │ │ ├── merveilles-logo-symbol-icon.svg │ │ ├── merveilles-logo-symbol-wordmark.svg │ │ ├── merveilles-logo.svg │ │ ├── preview.png │ │ ├── reticle.png │ │ └── void.png │ ├── mastodon │ │ ├── actions │ │ │ ├── account_notes.ts │ │ │ ├── accounts.js │ │ │ ├── alerts.js │ │ │ ├── announcements.js │ │ │ ├── app.ts │ │ │ ├── blocks.js │ │ │ ├── bookmarks.js │ │ │ ├── boosts.js │ │ │ ├── bundles.js │ │ │ ├── columns.js │ │ │ ├── compose.js │ │ │ ├── conversations.js │ │ │ ├── custom_emojis.js │ │ │ ├── directory.js │ │ │ ├── domain_blocks.js │ │ │ ├── dropdown_menu.js │ │ │ ├── emojis.js │ │ │ ├── favourites.js │ │ │ ├── featured_tags.js │ │ │ ├── filters.js │ │ │ ├── height_cache.js │ │ │ ├── history.js │ │ │ ├── importer │ │ │ │ ├── index.js │ │ │ │ └── normalizer.js │ │ │ ├── interactions.js │ │ │ ├── languages.js │ │ │ ├── lists.js │ │ │ ├── markers.js │ │ │ ├── modal.ts │ │ │ ├── mutes.js │ │ │ ├── notifications.js │ │ │ ├── onboarding.js │ │ │ ├── picture_in_picture.js │ │ │ ├── pin_statuses.js │ │ │ ├── polls.js │ │ │ ├── push_notifications │ │ │ │ ├── index.js │ │ │ │ ├── registerer.js │ │ │ │ └── setter.js │ │ │ ├── reports.js │ │ │ ├── search.js │ │ │ ├── server.js │ │ │ ├── settings.js │ │ │ ├── statuses.js │ │ │ ├── store.js │ │ │ ├── streaming.js │ │ │ ├── suggestions.js │ │ │ ├── tags.js │ │ │ ├── timelines.js │ │ │ └── trends.js │ │ ├── api.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.jsx │ │ │ ├── admin │ │ │ │ ├── Counter.jsx │ │ │ │ ├── Dimension.jsx │ │ │ │ ├── ImpactReport.jsx │ │ │ │ ├── ReportReasonSelector.jsx │ │ │ │ ├── Retention.jsx │ │ │ │ └── Trends.jsx │ │ │ ├── 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.jsx │ │ │ ├── check.tsx │ │ │ ├── circular_progress.tsx │ │ │ ├── column.jsx │ │ │ ├── column_back_button.jsx │ │ │ ├── column_back_button_slim.jsx │ │ │ ├── column_header.jsx │ │ │ ├── counters.tsx │ │ │ ├── dismissable_banner.tsx │ │ │ ├── display_name.tsx │ │ │ ├── domain.tsx │ │ │ ├── dropdown_menu.jsx │ │ │ ├── edited_timestamp │ │ │ │ ├── containers │ │ │ │ │ └── dropdown_menu_container.js │ │ │ │ └── index.jsx │ │ │ ├── empty_account.tsx │ │ │ ├── error_boundary.jsx │ │ │ ├── gifv.tsx │ │ │ ├── hashtag.jsx │ │ │ ├── hashtag_bar.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 │ │ │ ├── navigation_portal.jsx │ │ │ ├── not_signed_in_indicator.tsx │ │ │ ├── permalink.jsx │ │ │ ├── picture_in_picture_placeholder.jsx │ │ │ ├── poll.jsx │ │ │ ├── radio_button.tsx │ │ │ ├── regeneration_indicator.jsx │ │ │ ├── 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_content.jsx │ │ │ ├── status_list.jsx │ │ │ ├── timeline_hint.tsx │ │ │ └── verified_badge.tsx │ │ ├── containers │ │ │ ├── account_container.jsx │ │ │ ├── admin_component.jsx │ │ │ ├── compose_container.jsx │ │ │ ├── domain_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 │ │ │ │ │ ├── featured_tags.jsx │ │ │ │ │ ├── follow_request_note.jsx │ │ │ │ │ └── header.jsx │ │ │ │ ├── containers │ │ │ │ │ ├── account_note_container.js │ │ │ │ │ ├── featured_tags_container.js │ │ │ │ │ └── follow_request_note_container.js │ │ │ │ └── navigation.jsx │ │ │ ├── account_gallery │ │ │ │ ├── components │ │ │ │ │ └── media_item.jsx │ │ │ │ └── index.jsx │ │ │ ├── account_timeline │ │ │ │ ├── components │ │ │ │ │ ├── header.jsx │ │ │ │ │ ├── limited_account_hint.jsx │ │ │ │ │ ├── memorial_note.jsx │ │ │ │ │ └── moved_note.jsx │ │ │ │ ├── containers │ │ │ │ │ └── header_container.jsx │ │ │ │ └── index.jsx │ │ │ ├── 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.jsx │ │ │ │ │ ├── compose_form.jsx │ │ │ │ │ ├── emoji_picker_dropdown.jsx │ │ │ │ │ ├── federation_dropdown.jsx │ │ │ │ │ ├── language_dropdown.jsx │ │ │ │ │ ├── navigation_bar.jsx │ │ │ │ │ ├── poll_button.jsx │ │ │ │ │ ├── poll_form.jsx │ │ │ │ │ ├── privacy_dropdown.jsx │ │ │ │ │ ├── reply_indicator.jsx │ │ │ │ │ ├── search.jsx │ │ │ │ │ ├── search_results.jsx │ │ │ │ │ ├── text_icon_button.jsx │ │ │ │ │ ├── upload.jsx │ │ │ │ │ ├── upload_button.jsx │ │ │ │ │ ├── upload_form.jsx │ │ │ │ │ ├── upload_progress.jsx │ │ │ │ │ └── warning.jsx │ │ │ │ ├── containers │ │ │ │ │ ├── autosuggest_account_container.js │ │ │ │ │ ├── compose_form_container.js │ │ │ │ │ ├── emoji_picker_dropdown_container.js │ │ │ │ │ ├── federation_dropdown_container.js │ │ │ │ │ ├── language_dropdown_container.js │ │ │ │ │ ├── navigation_container.js │ │ │ │ │ ├── poll_button_container.js │ │ │ │ │ ├── poll_form_container.js │ │ │ │ │ ├── privacy_dropdown_container.js │ │ │ │ │ ├── reply_indicator_container.js │ │ │ │ │ ├── search_container.js │ │ │ │ │ ├── search_results_container.js │ │ │ │ │ ├── sensitive_button_container.jsx │ │ │ │ │ ├── spoiler_button_container.js │ │ │ │ │ ├── upload_button_container.js │ │ │ │ │ ├── upload_container.js │ │ │ │ │ ├── upload_form_container.js │ │ │ │ │ ├── upload_progress_container.js │ │ │ │ │ └── warning_container.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── util │ │ │ │ │ ├── counter.js │ │ │ │ │ └── url_regex.js │ │ │ ├── direct_timeline │ │ │ │ ├── components │ │ │ │ │ ├── conversation.jsx │ │ │ │ │ └── conversations_list.jsx │ │ │ │ ├── containers │ │ │ │ │ ├── conversation_container.js │ │ │ │ │ └── conversations_list_container.js │ │ │ │ └── index.jsx │ │ │ ├── directory │ │ │ │ ├── components │ │ │ │ │ └── account_card.jsx │ │ │ │ └── index.jsx │ │ │ ├── domain_blocks │ │ │ │ └── index.jsx │ │ │ ├── emoji │ │ │ │ ├── __tests__ │ │ │ │ │ ├── emoji-test.js │ │ │ │ │ └── emoji_index-test.js │ │ │ │ ├── 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_unicode_mapping_light.js │ │ │ │ ├── emoji_utils.js │ │ │ │ ├── unicode_to_filename.js │ │ │ │ └── unicode_to_unified_name.js │ │ │ ├── explore │ │ │ │ ├── components │ │ │ │ │ ├── search_section.jsx │ │ │ │ │ └── story.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── links.jsx │ │ │ │ ├── results.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.jsx │ │ │ │ ├── containers │ │ │ │ │ └── column_settings_container.js │ │ │ │ └── index.jsx │ │ │ ├── home_timeline │ │ │ │ ├── components │ │ │ │ │ ├── column_settings.tsx │ │ │ │ │ ├── critical_update_banner.tsx │ │ │ │ │ └── explore_prompt.tsx │ │ │ │ └── index.jsx │ │ │ ├── interaction_modal │ │ │ │ └── index.jsx │ │ │ ├── keyboard_shortcuts │ │ │ │ └── index.jsx │ │ │ ├── list_adder │ │ │ │ ├── components │ │ │ │ │ ├── account.jsx │ │ │ │ │ └── list.jsx │ │ │ │ └── index.jsx │ │ │ ├── list_editor │ │ │ │ ├── components │ │ │ │ │ ├── account.jsx │ │ │ │ │ ├── edit_list_form.jsx │ │ │ │ │ └── search.jsx │ │ │ │ └── index.jsx │ │ │ ├── list_timeline │ │ │ │ └── index.jsx │ │ │ ├── lists │ │ │ │ ├── components │ │ │ │ │ └── new_list_form.jsx │ │ │ │ └── index.jsx │ │ │ ├── mutes │ │ │ │ └── index.jsx │ │ │ ├── notifications │ │ │ │ ├── components │ │ │ │ │ ├── clear_column_button.jsx │ │ │ │ │ ├── column_settings.jsx │ │ │ │ │ ├── filter_bar.jsx │ │ │ │ │ ├── follow_request.jsx │ │ │ │ │ ├── grant_permission_button.jsx │ │ │ │ │ ├── notification.jsx │ │ │ │ │ ├── notifications_permission_banner.jsx │ │ │ │ │ ├── report.jsx │ │ │ │ │ └── setting_toggle.jsx │ │ │ │ ├── containers │ │ │ │ │ ├── column_settings_container.js │ │ │ │ │ ├── filter_bar_container.js │ │ │ │ │ ├── follow_request_container.js │ │ │ │ │ └── notification_container.js │ │ │ │ └── index.jsx │ │ │ ├── onboarding │ │ │ │ ├── components │ │ │ │ │ ├── arrow_small_right.jsx │ │ │ │ │ ├── progress_indicator.jsx │ │ │ │ │ └── step.jsx │ │ │ │ ├── follows.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── share.jsx │ │ │ ├── picture_in_picture │ │ │ │ ├── components │ │ │ │ │ ├── footer.jsx │ │ │ │ │ └── header.jsx │ │ │ │ └── index.jsx │ │ │ ├── pinned_statuses │ │ │ │ └── index.jsx │ │ │ ├── privacy_policy │ │ │ │ └── index.jsx │ │ │ ├── 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 │ │ │ ├── standalone │ │ │ │ └── compose │ │ │ │ │ └── index.jsx │ │ │ ├── status │ │ │ │ ├── components │ │ │ │ │ ├── action_bar.jsx │ │ │ │ │ ├── card.jsx │ │ │ │ │ └── detailed_status.jsx │ │ │ │ ├── containers │ │ │ │ │ └── detailed_status_container.js │ │ │ │ └── index.jsx │ │ │ ├── subscribed_languages_modal │ │ │ │ └── index.jsx │ │ │ ├── ui │ │ │ │ ├── components │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── column-test.jsx │ │ │ │ │ ├── actions_modal.jsx │ │ │ │ │ ├── audio_modal.jsx │ │ │ │ │ ├── block_modal.jsx │ │ │ │ │ ├── boost_modal.jsx │ │ │ │ │ ├── bundle.jsx │ │ │ │ │ ├── bundle_column_error.jsx │ │ │ │ │ ├── bundle_modal_error.jsx │ │ │ │ │ ├── column.jsx │ │ │ │ │ ├── column_header.jsx │ │ │ │ │ ├── column_link.jsx │ │ │ │ │ ├── column_loading.jsx │ │ │ │ │ ├── column_subheading.jsx │ │ │ │ │ ├── columns_area.jsx │ │ │ │ │ ├── compare_history_modal.jsx │ │ │ │ │ ├── compose_panel.jsx │ │ │ │ │ ├── confirmation_modal.jsx │ │ │ │ │ ├── disabled_account_banner.jsx │ │ │ │ │ ├── drawer_loading.jsx │ │ │ │ │ ├── embed_modal.jsx │ │ │ │ │ ├── filter_modal.jsx │ │ │ │ │ ├── focal_point_modal.jsx │ │ │ │ │ ├── follow_requests_column_link.jsx │ │ │ │ │ ├── header.jsx │ │ │ │ │ ├── image_loader.jsx │ │ │ │ │ ├── image_modal.jsx │ │ │ │ │ ├── link_footer.jsx │ │ │ │ │ ├── list_panel.jsx │ │ │ │ │ ├── media_modal.jsx │ │ │ │ │ ├── modal_loading.jsx │ │ │ │ │ ├── modal_root.jsx │ │ │ │ │ ├── mute_modal.jsx │ │ │ │ │ ├── navigation_panel.jsx │ │ │ │ │ ├── notifications_counter_icon.js │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ └── video │ │ │ │ └── index.jsx │ │ ├── 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.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-QC.json │ │ │ ├── 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 │ │ │ ├── uz.json │ │ │ ├── vi.json │ │ │ ├── zgh.json │ │ │ ├── zh-CN.json │ │ │ ├── zh-HK.json │ │ │ └── zh-TW.json │ │ ├── main.jsx │ │ ├── performance.js │ │ ├── permissions.ts │ │ ├── polyfills │ │ │ ├── base_polyfills.ts │ │ │ ├── extra_polyfills.ts │ │ │ ├── index.ts │ │ │ └── intl.ts │ │ ├── ready.js │ │ ├── reducers │ │ │ ├── accounts.js │ │ │ ├── accounts_counters.js │ │ │ ├── accounts_map.js │ │ │ ├── alerts.js │ │ │ ├── announcements.js │ │ │ ├── blocks.js │ │ │ ├── boosts.js │ │ │ ├── compose.js │ │ │ ├── contexts.js │ │ │ ├── conversations.js │ │ │ ├── custom_emojis.js │ │ │ ├── domain_lists.js │ │ │ ├── dropdown_menu.js │ │ │ ├── filters.js │ │ │ ├── followed_tags.js │ │ │ ├── height_cache.js │ │ │ ├── history.js │ │ │ ├── index.ts │ │ │ ├── list_adder.js │ │ │ ├── list_editor.js │ │ │ ├── lists.js │ │ │ ├── markers.js │ │ │ ├── media_attachments.js │ │ │ ├── meta.js │ │ │ ├── modal.ts │ │ │ ├── mutes.js │ │ │ ├── notifications.js │ │ │ ├── picture_in_picture.js │ │ │ ├── polls.js │ │ │ ├── push_notifications.js │ │ │ ├── relationships.js │ │ │ ├── search.js │ │ │ ├── server.js │ │ │ ├── settings.js │ │ │ ├── status_lists.js │ │ │ ├── statuses.js │ │ │ ├── suggestions.js │ │ │ ├── tags.js │ │ │ ├── timelines.js │ │ │ ├── trends.js │ │ │ └── user_lists.js │ │ ├── scroll.ts │ │ ├── selectors │ │ │ └── index.js │ │ ├── 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 │ │ ├── svg_select.js │ │ ├── test_setup.js │ │ ├── utils │ │ │ ├── __tests__ │ │ │ │ ├── base64-test.js │ │ │ │ └── html-test.js │ │ │ ├── base64.ts │ │ │ ├── config.js │ │ │ ├── filters.ts │ │ │ ├── hashtags.ts │ │ │ ├── html.js │ │ │ ├── icons.jsx │ │ │ ├── log_out.js │ │ │ ├── notifications.js │ │ │ ├── numbers.ts │ │ │ └── scrollbar.js │ │ └── uuid.ts │ ├── packs │ │ ├── admin.jsx │ │ ├── application.js │ │ ├── error.js │ │ ├── mailer.js │ │ ├── public-path.js │ │ ├── public.jsx │ │ ├── remote_interaction_helper.ts │ │ ├── share.jsx │ │ ├── sign_up.js │ │ └── two_factor_authentication.js │ ├── styles │ │ ├── application.scss │ │ ├── contrast.scss │ │ ├── contrast │ │ │ ├── diff.scss │ │ │ └── variables.scss │ │ ├── fairy-floss.scss │ │ ├── fairy-floss │ │ │ ├── diff.scss │ │ │ └── variables.scss │ │ ├── fonts │ │ │ ├── roboto-mono.scss │ │ │ └── roboto.scss │ │ ├── hometown.scss │ │ ├── macaron.scss │ │ ├── macaron │ │ │ ├── diff.scss │ │ │ └── variables.scss │ │ ├── mailer.scss │ │ ├── mastodon-light.scss │ │ ├── mastodon-light │ │ │ ├── diff.scss │ │ │ └── variables.scss │ │ ├── mastodon │ │ │ ├── _mixins.scss │ │ │ ├── about.scss │ │ │ ├── accessibility.scss │ │ │ ├── accounts.scss │ │ │ ├── admin.scss │ │ │ ├── basics.scss │ │ │ ├── boost.scss │ │ │ ├── branding.scss │ │ │ ├── components.scss │ │ │ ├── containers.scss │ │ │ ├── dashboard.scss │ │ │ ├── emoji_picker.scss │ │ │ ├── footer.scss │ │ │ ├── forms.scss │ │ │ ├── lists.scss │ │ │ ├── modal.scss │ │ │ ├── polls.scss │ │ │ ├── reset.scss │ │ │ ├── rich_text.scss │ │ │ ├── rtl.scss │ │ │ ├── statuses.scss │ │ │ ├── tables.scss │ │ │ ├── variables.scss │ │ │ └── widgets.scss │ │ └── merveilles.scss │ └── types │ │ ├── image.d.ts │ │ ├── resources.ts │ │ └── util.ts ├── lib │ ├── 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 │ │ │ ├── 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 │ ├── application_extension.rb │ ├── ascii_folding.rb │ ├── attachment_batch.rb │ ├── cache_buster.rb │ ├── connection_pool │ │ ├── shared_connection_pool.rb │ │ └── shared_timed_stack.rb │ ├── delivery_failure_tracker.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 │ ├── nodeinfo │ │ └── adapter.rb │ ├── ostatus │ │ └── tag_manager.rb │ ├── permalink_redirector.rb │ ├── plain_text_formatter.rb │ ├── potential_friendship_tracker.rb │ ├── rate_limiter.rb │ ├── redis_configuration.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 │ ├── settings │ │ └── scoped_settings.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 │ │ └── system_keys_vacuum.rb │ ├── validation_error_formatter.rb │ ├── video_metadata_extractor.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_stat.rb │ ├── account_statuses_cleanup_policy.rb │ ├── account_suggestions.rb │ ├── account_suggestions │ │ ├── global_source.rb │ │ ├── past_interactions_source.rb │ │ ├── setting_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 │ ├── announcement.rb │ ├── announcement_filter.rb │ ├── announcement_mute.rb │ ├── announcement_reaction.rb │ ├── appeal.rb │ ├── application_record.rb │ ├── backup.rb │ ├── block.rb │ ├── bookmark.rb │ ├── bulk_import.rb │ ├── bulk_import_row.rb │ ├── canonical_email_block.rb │ ├── concerns │ │ ├── account_associations.rb │ │ ├── account_avatar.rb │ │ ├── account_counters.rb │ │ ├── account_finder_concern.rb │ │ ├── account_header.rb │ │ ├── account_interactions.rb │ │ ├── account_merging.rb │ │ ├── account_search.rb │ │ ├── account_statuses_search.rb │ │ ├── attachmentable.rb │ │ ├── cacheable.rb │ │ ├── domain_materializable.rb │ │ ├── domain_normalizable.rb │ │ ├── expireable.rb │ │ ├── follow_limitable.rb │ │ ├── has_user_settings.rb │ │ ├── ldap_authenticable.rb │ │ ├── lockable.rb │ │ ├── omniauthable.rb │ │ ├── paginable.rb │ │ ├── pam_authenticable.rb │ │ ├── rate_limitable.rb │ │ ├── redisable.rb │ │ ├── relationship_cacheable.rb │ │ ├── remotable.rb │ │ ├── status_safe_reblog_insert.rb │ │ ├── status_search_concern.rb │ │ ├── status_snapshot_concern.rb │ │ └── status_threading_concern.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 │ ├── device.rb │ ├── domain_allow.rb │ ├── domain_block.rb │ ├── email_domain_block.rb │ ├── encrypted_message.rb │ ├── export.rb │ ├── extended_description.rb │ ├── favourite.rb │ ├── featured_tag.rb │ ├── feed.rb │ ├── follow.rb │ ├── follow_recommendation.rb │ ├── follow_recommendation_filter.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 │ ├── home_feed.rb │ ├── identity.rb │ ├── import.rb │ ├── instance.rb │ ├── instance_filter.rb │ ├── invite.rb │ ├── invite_filter.rb │ ├── ip_block.rb │ ├── list.rb │ ├── list_account.rb │ ├── list_feed.rb │ ├── login_activity.rb │ ├── marker.rb │ ├── media_attachment.rb │ ├── mention.rb │ ├── message_franking.rb │ ├── mute.rb │ ├── notification.rb │ ├── one_time_key.rb │ ├── poll.rb │ ├── poll_vote.rb │ ├── preview_card.rb │ ├── preview_card_provider.rb │ ├── preview_card_trend.rb │ ├── privacy_policy.rb │ ├── public_feed.rb │ ├── relationship_filter.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 │ ├── site_upload.rb │ ├── software_update.rb │ ├── status.rb │ ├── status_edit.rb │ ├── status_pin.rb │ ├── status_stat.rb │ ├── status_trend.rb │ ├── system_key.rb │ ├── tag.rb │ ├── tag_feed.rb │ ├── tag_follow.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 │ ├── 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 │ ├── user_policy.rb │ ├── user_role_policy.rb │ └── webhook_policy.rb ├── presenters │ ├── account_relationships_presenter.rb │ ├── activitypub │ │ ├── activity_presenter.rb │ │ └── collection_presenter.rb │ ├── familiar_followers_presenter.rb │ ├── filter_result_presenter.rb │ ├── initial_state_presenter.rb │ ├── instance_presenter.rb │ ├── language_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 │ │ ├── device_serializer.rb │ │ ├── emoji_serializer.rb │ │ ├── encrypted_message_serializer.rb │ │ ├── flag_serializer.rb │ │ ├── follow_serializer.rb │ │ ├── hashtag_serializer.rb │ │ ├── image_serializer.rb │ │ ├── like_serializer.rb │ │ ├── move_serializer.rb │ │ ├── note_serializer.rb │ │ ├── one_time_key_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_follow_serializer.rb │ │ ├── undo_like_serializer.rb │ │ ├── update_poll_serializer.rb │ │ ├── update_serializer.rb │ │ └── vote_serializer.rb │ ├── initial_state_serializer.rb │ ├── manifest_serializer.rb │ ├── nodeinfo │ │ ├── discovery_serializer.rb │ │ └── serializer.rb │ ├── oembed_serializer.rb │ ├── rest │ │ ├── account_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 │ │ ├── application_serializer.rb │ │ ├── context_serializer.rb │ │ ├── conversation_serializer.rb │ │ ├── credential_account_serializer.rb │ │ ├── custom_emoji_serializer.rb │ │ ├── domain_block_serializer.rb │ │ ├── encrypted_message_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 │ │ ├── keys │ │ │ ├── claim_result_serializer.rb │ │ │ ├── device_serializer.rb │ │ │ └── query_result_serializer.rb │ │ ├── language_serializer.rb │ │ ├── list_serializer.rb │ │ ├── marker_serializer.rb │ │ ├── media_attachment_serializer.rb │ │ ├── muted_account_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_serializer.rb │ │ ├── status_source_serializer.rb │ │ ├── suggestion_serializer.rb │ │ ├── tag_serializer.rb │ │ ├── translation_serializer.rb │ │ ├── trends │ │ │ └── link_serializer.rb │ │ ├── v1 │ │ │ ├── filter_serializer.rb │ │ │ └── instance_serializer.rb │ │ └── web_push_subscription_serializer.rb │ ├── web │ │ └── notification_serializer.rb │ └── webfinger_serializer.rb ├── services │ ├── account_search_service.rb │ ├── account_statuses_cleanup_service.rb │ ├── activitypub │ │ ├── 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 │ ├── 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 │ ├── deliver_to_device_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 │ ├── keys │ │ ├── claim_service.rb │ │ └── query_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 │ ├── reblog_service.rb │ ├── reject_follow_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 │ ├── unsuspend_account_service.rb │ ├── update_account_service.rb │ ├── update_status_service.rb │ ├── verify_link_service.rb │ ├── vote_service.rb │ └── webhook_service.rb ├── validators │ ├── blacklisted_email_validator.rb │ ├── disallowed_hashtags_validator.rb │ ├── domain_validator.rb │ ├── ed25519_key_validator.rb │ ├── ed25519_signature_validator.rb │ ├── email_address_validator.rb │ ├── email_mx_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 │ ├── registration_form_time_validator.rb │ ├── status_length_validator.rb │ ├── status_pin_validator.rb │ ├── unique_username_validator.rb │ ├── unreserved_username_validator.rb │ ├── url_validator.rb │ └── vote_validator.rb ├── views │ ├── about │ │ ├── _domain_blocks.html.haml │ │ └── 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 │ │ │ ├── index.html.haml │ │ │ └── show.html.haml │ │ ├── action_logs │ │ │ ├── _action_log.html.haml │ │ │ └── index.html.haml │ │ ├── announcements │ │ │ ├── _announcement.html.haml │ │ │ ├── edit.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 │ │ │ ├── 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 │ │ │ ├── _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 │ │ │ ├── _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 │ │ │ ├── _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 │ │ │ ├── hometown │ │ │ │ └── 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 │ │ │ └── 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 │ │ │ ├── _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 │ ├── 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 │ │ │ ├── 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 │ ├── 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 │ │ ├── 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 │ │ ├── plain_mailer.html.haml │ │ └── public.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 │ │ ├── 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 │ ├── relationships │ │ ├── _account.html.haml │ │ └── show.html.haml │ ├── remote_interaction_helper │ │ └── index.html.haml │ ├── settings │ │ ├── aliases │ │ │ └── index.html.haml │ │ ├── applications │ │ │ ├── _fields.html.haml │ │ │ ├── index.html.haml │ │ │ ├── new.html.haml │ │ │ └── show.html.haml │ │ ├── deletes │ │ │ └── show.html.haml │ │ ├── exports │ │ │ └── show.html.haml │ │ ├── featured_tags │ │ │ └── index.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 │ ├── shared │ │ ├── _error_messages.html.haml │ │ ├── _og.html.haml │ │ └── _web_app.html.haml │ ├── shares │ │ └── show.html.haml │ ├── statuses │ │ ├── _attachment_list.html.haml │ │ ├── _detailed_status.html.haml │ │ ├── _og_description.html.haml │ │ ├── _og_image.html.haml │ │ ├── _poll.html.haml │ │ ├── _simple_status.html.haml │ │ ├── _status.html.haml │ │ ├── embed.html.haml │ │ └── show.html.haml │ ├── statuses_cleanup │ │ └── show.html.haml │ ├── tags │ │ ├── show.html.haml │ │ └── show.rss.ruby │ ├── user_mailer │ │ ├── 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 │ │ ├── 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 │ │ ├── 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_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 │ ├── 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 │ ├── import │ ├── relationship_worker.rb │ └── row_worker.rb │ ├── import_worker.rb │ ├── link_crawl_worker.rb │ ├── local_notification_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_encrypted_message_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 │ ├── 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 │ ├── 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 │ ├── unfollow_follow_worker.rb │ ├── unmerge_worker.rb │ ├── unpublish_announcement_worker.rb │ ├── verify_account_links_worker.rb │ ├── web │ └── push_notification_worker.rb │ └── webhooks │ └── delivery_worker.rb ├── babel.config.js ├── bin ├── bundle ├── heroku-web ├── rails ├── rake ├── retry ├── rspec ├── setup ├── tootctl ├── update ├── webpack ├── webpack-dev-server └── yarn ├── chart └── README.md ├── config.ru ├── config ├── application.rb ├── boot.rb ├── brakeman.ignore ├── brakeman.yml ├── database.yml ├── deploy.rb ├── 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 │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── blacklists.rb │ ├── cache_buster.rb │ ├── cache_logging.rb │ ├── chewy.rb │ ├── content_security_policy.rb │ ├── cookie_rotator.rb │ ├── cookies_serializer.rb │ ├── cors.rb │ ├── devise.rb │ ├── doorkeeper.rb │ ├── fast_blank.rb │ ├── ffmpeg.rb │ ├── filter_parameter_logging.rb │ ├── http_client_proxy.rb │ ├── httplog.rb │ ├── inflections.rb │ ├── json_ld.rb │ ├── kaminari_config.rb │ ├── mail_delivery_job.rb │ ├── mime_types.rb │ ├── new_framework_defaults_7_0.rb │ ├── oj.rb │ ├── open_uri_redirection.rb │ ├── paperclip.rb │ ├── permissions_policy.rb │ ├── pghero.rb │ ├── preload_link_headers.rb │ ├── premailer_rails.rb │ ├── rack_attack.rb │ ├── rack_attack_logging.rb │ ├── redis.rb │ ├── session_activations.rb │ ├── session_store.rb │ ├── sidekiq.rb │ ├── simple_form.rb │ ├── single_user_mode.rb │ ├── statsd.rb │ ├── stoplight.rb │ ├── strong_migrations.rb │ ├── suppress_csrf_warnings.rb │ ├── trusted_proxies.rb │ ├── twitter_regex.rb │ ├── vapid.rb │ ├── webauthn.rb │ └── wrap_parameters.rb ├── locales │ ├── activerecord.af.yml │ ├── activerecord.an.yml │ ├── activerecord.ar.yml │ ├── activerecord.ast.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.fo.yml │ ├── activerecord.fr-QC.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.id.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.lt.yml │ ├── activerecord.lv.yml │ ├── activerecord.mk.yml │ ├── activerecord.ml.yml │ ├── activerecord.mr.yml │ ├── activerecord.ms.yml │ ├── activerecord.my.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.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.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 │ ├── 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.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.fo.yml │ ├── devise.fr-QC.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.id.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.lt.yml │ ├── devise.lv.yml │ ├── devise.mk.yml │ ├── devise.ml.yml │ ├── devise.mr.yml │ ├── devise.ms.yml │ ├── devise.my.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.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.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.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.fo.yml │ ├── doorkeeper.fr-QC.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.id.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.lt.yml │ ├── doorkeeper.lv.yml │ ├── doorkeeper.mk.yml │ ├── doorkeeper.ml.yml │ ├── doorkeeper.mr.yml │ ├── doorkeeper.ms.yml │ ├── doorkeeper.my.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.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.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 │ ├── fo.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-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.szl.yml │ ├── simple_form.ta.yml │ ├── simple_form.tai.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.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 │ ├── 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 ├── navigation.rb ├── pghero.yml ├── puma.rb ├── roles.yml ├── routes.rb ├── routes │ ├── admin.rb │ ├── api.rb │ └── settings.rb ├── secrets.yml ├── settings.yml ├── sidekiq.yml ├── storage.yml ├── themes.yml ├── webpack │ ├── configuration.js │ ├── development.js │ ├── production.js │ ├── rules │ │ ├── babel.js │ │ ├── css.js │ │ ├── file.js │ │ ├── index.js │ │ ├── mark.js │ │ ├── material_icons.js │ │ ├── node_modules.js │ │ └── tesseract.js │ ├── shared.js │ └── tests.js └── webpacker.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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 20190712233435_add_activitypub_type_to_statuses.rb │ ├── 20190715164535_add_instance_actor.rb │ ├── 20190726034905_add_is_exclusive_to_lists.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 │ ├── 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 │ ├── 20221202035831_add_keep_local_to_account_statuses_cleanup_policies.rb │ ├── 20230129023109_add_template_to_webhooks.rb │ ├── 20230215074327_add_settings_to_users.rb │ ├── 20230215074423_move_user_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 │ └── 20231123195926_migrate_hometown_exclusive_lists_to_mastodon.rb ├── post_migrate │ ├── .gitkeep │ ├── 20180813113448_copy_status_stats_cleanup.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 ├── 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 ├── 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 │ ├── two_factor_ldap_authenticatable.rb │ └── two_factor_pam_authenticatable.rb ├── exceptions.rb ├── generators │ └── post_deployment_migration │ │ ├── USAGE │ │ ├── post_deployment_migration_generator.rb │ │ └── templates │ │ └── migration.erb ├── http_extensions.rb ├── json_ld │ ├── identity.rb │ └── security.rb ├── linter │ ├── haml_middle_dot.rb │ └── rubocop_middle_dot.rb ├── mastodon │ ├── cli │ │ ├── accounts.rb │ │ ├── base.rb │ │ ├── cache.rb │ │ ├── canonical_email_blocks.rb │ │ ├── domains.rb │ │ ├── email_domain_blocks.rb │ │ ├── emoji.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 │ ├── migration_helpers.rb │ ├── migration_warning.rb │ ├── premailer_webpack_strategy.rb │ ├── rack_middleware.rb │ ├── redis_config.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 │ ├── response_with_limit_adapter.rb │ ├── transcoder.rb │ ├── type_corrector.rb │ └── url_generator_extensions.rb ├── public_file_server_middleware.rb ├── rails │ └── engine_extensions.rb ├── redis │ └── namespace_extensions.rb ├── sanitize_ext │ └── sanitize_config.rb ├── simple_navigation │ └── item_extensions.rb ├── tasks │ ├── assets.rake │ ├── auto_annotate_models.rake │ ├── branding.rake │ ├── db.rake │ ├── emojis.rake │ ├── mastodon.rake │ ├── repo.rake │ ├── sidekiq_unique_jobs.rake │ ├── spec.rake │ ├── statistics.rake │ └── tests.rake ├── templates │ └── haml │ │ └── scaffold │ │ └── _form.html.haml ├── terrapin │ └── multi_pipe_extensions.rb └── webpacker │ ├── helper_extensions.rb │ └── manifest_extensions.rb ├── log └── .keep ├── package.json ├── postcss.config.js ├── priv-config ├── public ├── 500.html ├── android-chrome-192x192.png ├── apple-touch-icon.png ├── avatars │ └── original │ │ ├── missing-mastodon.png │ │ └── missing.png ├── badge.png ├── embed.js ├── emoji │ ├── 1f004.svg │ ├── 1f0cf.svg │ ├── 1f170.svg │ ├── 1f171.svg │ ├── 1f17e.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.svg │ ├── 1f21a.svg │ ├── 1f22f.svg │ ├── 1f232.svg │ ├── 1f233.svg │ ├── 1f234.svg │ ├── 1f235.svg │ ├── 1f236.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.svg │ ├── 1f324.svg │ ├── 1f325.svg │ ├── 1f326.svg │ ├── 1f327.svg │ ├── 1f327_border.svg │ ├── 1f328.svg │ ├── 1f328_border.svg │ ├── 1f329.svg │ ├── 1f329_border.svg │ ├── 1f32a.svg │ ├── 1f32b.svg │ ├── 1f32c.svg │ ├── 1f32d.svg │ ├── 1f32e.svg │ ├── 1f32f.svg │ ├── 1f330.svg │ ├── 1f331.svg │ ├── 1f332.svg │ ├── 1f333.svg │ ├── 1f334.svg │ ├── 1f335.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.svg │ ├── 1f345.svg │ ├── 1f346.svg │ ├── 1f347.svg │ ├── 1f348.svg │ ├── 1f349.svg │ ├── 1f34a.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.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.svg │ ├── 1f397.svg │ ├── 1f399.svg │ ├── 1f39a.svg │ ├── 1f39b.svg │ ├── 1f39e.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.svg │ ├── 1f3c3-1f3fb-200d-2642-fe0f.svg │ ├── 1f3c3-1f3fb.svg │ ├── 1f3c3-1f3fc-200d-2640-fe0f.svg │ ├── 1f3c3-1f3fc-200d-2642-fe0f.svg │ ├── 1f3c3-1f3fc.svg │ ├── 1f3c3-1f3fd-200d-2640-fe0f.svg │ ├── 1f3c3-1f3fd-200d-2642-fe0f.svg │ ├── 1f3c3-1f3fd.svg │ ├── 1f3c3-1f3fe-200d-2640-fe0f.svg │ ├── 1f3c3-1f3fe-200d-2642-fe0f.svg │ ├── 1f3c3-1f3fe.svg │ ├── 1f3c3-1f3ff-200d-2640-fe0f.svg │ ├── 1f3c3-1f3ff-200d-2642-fe0f.svg │ ├── 1f3c3-1f3ff.svg │ ├── 1f3c3-200d-2640-fe0f.svg │ ├── 1f3c3-200d-2642-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.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.svg │ ├── 1f3cd.svg │ ├── 1f3ce.svg │ ├── 1f3cf.svg │ ├── 1f3d0.svg │ ├── 1f3d0_border.svg │ ├── 1f3d1.svg │ ├── 1f3d2.svg │ ├── 1f3d3.svg │ ├── 1f3d4.svg │ ├── 1f3d5.svg │ ├── 1f3d6.svg │ ├── 1f3d7.svg │ ├── 1f3d8.svg │ ├── 1f3d9.svg │ ├── 1f3da.svg │ ├── 1f3db.svg │ ├── 1f3dc.svg │ ├── 1f3dd.svg │ ├── 1f3de.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.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.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.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.svg │ ├── 1f440.svg │ ├── 1f440_border.svg │ ├── 1f441-200d-1f5e8.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 │ ├── 1f447-1f3fb.svg │ ├── 1f447-1f3fc.svg │ ├── 1f447-1f3fd.svg │ ├── 1f447-1f3fe.svg │ ├── 1f447-1f3ff.svg │ ├── 1f447.svg │ ├── 1f448-1f3fb.svg │ ├── 1f448-1f3fc.svg │ ├── 1f448-1f3fd.svg │ ├── 1f448-1f3fe.svg │ ├── 1f448-1f3ff.svg │ ├── 1f448.svg │ ├── 1f449-1f3fb.svg │ ├── 1f449-1f3fc.svg │ ├── 1f449-1f3fd.svg │ ├── 1f449-1f3fe.svg │ ├── 1f449-1f3ff.svg │ ├── 1f449.svg │ ├── 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 │ ├── 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.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.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.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.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.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.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.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.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.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.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.svg │ ├── 1f468-200d-1f9b0.svg │ ├── 1f468-200d-1f9b1.svg │ ├── 1f468-200d-1f9b2.svg │ ├── 1f468-200d-1f9b3.svg │ ├── 1f468-200d-1f9bc.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.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.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.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.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.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.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.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.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.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.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.svg │ ├── 1f469-200d-1f9b0.svg │ ├── 1f469-200d-1f9b1.svg │ ├── 1f469-200d-1f9b2.svg │ ├── 1f469-200d-1f9b3.svg │ ├── 1f469-200d-1f9bc.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 │ ├── 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 │ ├── 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.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.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.svg │ ├── 1f570.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.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.svg │ ├── 1f576.svg │ ├── 1f576_border.svg │ ├── 1f577.svg │ ├── 1f577_border.svg │ ├── 1f578.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.svg │ ├── 1f58a.svg │ ├── 1f58a_border.svg │ ├── 1f58b.svg │ ├── 1f58b_border.svg │ ├── 1f58c.svg │ ├── 1f58d.svg │ ├── 1f590-1f3fb.svg │ ├── 1f590-1f3fc.svg │ ├── 1f590-1f3fd.svg │ ├── 1f590-1f3fe.svg │ ├── 1f590-1f3ff.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.svg │ ├── 1f5a8.svg │ ├── 1f5b1.svg │ ├── 1f5b2.svg │ ├── 1f5bc.svg │ ├── 1f5c2.svg │ ├── 1f5c3.svg │ ├── 1f5c4.svg │ ├── 1f5d1.svg │ ├── 1f5d2.svg │ ├── 1f5d3.svg │ ├── 1f5dc.svg │ ├── 1f5dd.svg │ ├── 1f5de.svg │ ├── 1f5e1.svg │ ├── 1f5e3.svg │ ├── 1f5e3_border.svg │ ├── 1f5e8.svg │ ├── 1f5ef.svg │ ├── 1f5f3.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.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.svg │ ├── 1f6b6-1f3fb-200d-2642-fe0f.svg │ ├── 1f6b6-1f3fb.svg │ ├── 1f6b6-1f3fc-200d-2640-fe0f.svg │ ├── 1f6b6-1f3fc-200d-2642-fe0f.svg │ ├── 1f6b6-1f3fc.svg │ ├── 1f6b6-1f3fd-200d-2640-fe0f.svg │ ├── 1f6b6-1f3fd-200d-2642-fe0f.svg │ ├── 1f6b6-1f3fd.svg │ ├── 1f6b6-1f3fe-200d-2640-fe0f.svg │ ├── 1f6b6-1f3fe-200d-2642-fe0f.svg │ ├── 1f6b6-1f3fe.svg │ ├── 1f6b6-1f3ff-200d-2640-fe0f.svg │ ├── 1f6b6-1f3ff-200d-2642-fe0f.svg │ ├── 1f6b6-1f3ff.svg │ ├── 1f6b6-200d-2640-fe0f.svg │ ├── 1f6b6-200d-2642-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.svg │ ├── 1f6cc-1f3fb.svg │ ├── 1f6cc-1f3fc.svg │ ├── 1f6cc-1f3fd.svg │ ├── 1f6cc-1f3fe.svg │ ├── 1f6cc-1f3ff.svg │ ├── 1f6cc.svg │ ├── 1f6cd.svg │ ├── 1f6ce.svg │ ├── 1f6cf.svg │ ├── 1f6d0.svg │ ├── 1f6d1.svg │ ├── 1f6d2.svg │ ├── 1f6d5.svg │ ├── 1f6d6.svg │ ├── 1f6d7.svg │ ├── 1f6dd.svg │ ├── 1f6de.svg │ ├── 1f6df.svg │ ├── 1f6e0.svg │ ├── 1f6e1.svg │ ├── 1f6e2.svg │ ├── 1f6e3.svg │ ├── 1f6e4.svg │ ├── 1f6e5.svg │ ├── 1f6e9.svg │ ├── 1f6eb.svg │ ├── 1f6ec.svg │ ├── 1f6f0.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 │ ├── 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.svg │ ├── 1f9ce-1f3fb-200d-2642-fe0f.svg │ ├── 1f9ce-1f3fb.svg │ ├── 1f9ce-1f3fc-200d-2640-fe0f.svg │ ├── 1f9ce-1f3fc-200d-2642-fe0f.svg │ ├── 1f9ce-1f3fc.svg │ ├── 1f9ce-1f3fd-200d-2640-fe0f.svg │ ├── 1f9ce-1f3fd-200d-2642-fe0f.svg │ ├── 1f9ce-1f3fd.svg │ ├── 1f9ce-1f3fe-200d-2640-fe0f.svg │ ├── 1f9ce-1f3fe-200d-2642-fe0f.svg │ ├── 1f9ce-1f3fe.svg │ ├── 1f9ce-1f3ff-200d-2640-fe0f.svg │ ├── 1f9ce-1f3ff-200d-2642-fe0f.svg │ ├── 1f9ce-1f3ff.svg │ ├── 1f9ce-200d-2640-fe0f.svg │ ├── 1f9ce-200d-2642-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.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.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.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.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.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.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.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.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.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.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-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-1f692.svg │ ├── 1f9d1-200d-1f91d-200d-1f9d1.svg │ ├── 1f9d1-200d-1f9af.svg │ ├── 1f9d1-200d-1f9b0.svg │ ├── 1f9d1-200d-1f9b1.svg │ ├── 1f9d1-200d-1f9b2.svg │ ├── 1f9d1-200d-1f9b3.svg │ ├── 1f9d1-200d-1f9bc.svg │ ├── 1f9d1-200d-1f9bd.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 │ ├── 1fa78.svg │ ├── 1fa79.svg │ ├── 1fa7a.svg │ ├── 1fa7b.svg │ ├── 1fa7c.svg │ ├── 1fa80.svg │ ├── 1fa81.svg │ ├── 1fa82.svg │ ├── 1fa83.svg │ ├── 1fa84.svg │ ├── 1fa85.svg │ ├── 1fa86.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 │ ├── 1fab0.svg │ ├── 1fab1.svg │ ├── 1fab2.svg │ ├── 1fab3.svg │ ├── 1fab4.svg │ ├── 1fab5.svg │ ├── 1fab6.svg │ ├── 1fab7.svg │ ├── 1fab8.svg │ ├── 1fab9.svg │ ├── 1faba.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 │ ├── 1fad0.svg │ ├── 1fad1.svg │ ├── 1fad2.svg │ ├── 1fad3.svg │ ├── 1fad4.svg │ ├── 1fad5.svg │ ├── 1fad6.svg │ ├── 1fad7.svg │ ├── 1fad8.svg │ ├── 1fad9.svg │ ├── 1fae0.svg │ ├── 1fae1.svg │ ├── 1fae2.svg │ ├── 1fae3.svg │ ├── 1fae4.svg │ ├── 1fae5.svg │ ├── 1fae6.svg │ ├── 1fae7.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 │ ├── 203c.svg │ ├── 2049.svg │ ├── 2122.svg │ ├── 2122_border.svg │ ├── 2139.svg │ ├── 2194.svg │ ├── 2195.svg │ ├── 2196.svg │ ├── 2197.svg │ ├── 2198.svg │ ├── 2199.svg │ ├── 21a9.svg │ ├── 21aa.svg │ ├── 23-20e3.svg │ ├── 231a.svg │ ├── 231b.svg │ ├── 2328.svg │ ├── 23cf.svg │ ├── 23e9.svg │ ├── 23ea.svg │ ├── 23eb.svg │ ├── 23ec.svg │ ├── 23ed.svg │ ├── 23ee.svg │ ├── 23ef.svg │ ├── 23f0.svg │ ├── 23f1.svg │ ├── 23f2.svg │ ├── 23f3.svg │ ├── 23f8.svg │ ├── 23f9.svg │ ├── 23fa.svg │ ├── 24c2.svg │ ├── 25aa.svg │ ├── 25aa_border.svg │ ├── 25ab.svg │ ├── 25ab_border.svg │ ├── 25b6.svg │ ├── 25c0.svg │ ├── 25fb.svg │ ├── 25fb_border.svg │ ├── 25fc.svg │ ├── 25fc_border.svg │ ├── 25fd.svg │ ├── 25fd_border.svg │ ├── 25fe.svg │ ├── 25fe_border.svg │ ├── 2600.svg │ ├── 2601.svg │ ├── 2601_border.svg │ ├── 2602.svg │ ├── 2603.svg │ ├── 2604.svg │ ├── 260e.svg │ ├── 2611.svg │ ├── 2614.svg │ ├── 2615.svg │ ├── 2618.svg │ ├── 261d-1f3fb.svg │ ├── 261d-1f3fc.svg │ ├── 261d-1f3fd.svg │ ├── 261d-1f3fe.svg │ ├── 261d-1f3ff.svg │ ├── 261d.svg │ ├── 2620.svg │ ├── 2620_border.svg │ ├── 2622.svg │ ├── 2623.svg │ ├── 2626.svg │ ├── 262a.svg │ ├── 262e.svg │ ├── 262f.svg │ ├── 2638.svg │ ├── 2639.svg │ ├── 263a.svg │ ├── 2640.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.svg │ ├── 2660.svg │ ├── 2660_border.svg │ ├── 2663.svg │ ├── 2663_border.svg │ ├── 2665.svg │ ├── 2666.svg │ ├── 2668.svg │ ├── 267b.svg │ ├── 267e.svg │ ├── 267f.svg │ ├── 2692.svg │ ├── 2693.svg │ ├── 2694.svg │ ├── 2695.svg │ ├── 2696.svg │ ├── 2697.svg │ ├── 2699.svg │ ├── 269b.svg │ ├── 269c.svg │ ├── 26a0.svg │ ├── 26a1.svg │ ├── 26a7.svg │ ├── 26aa.svg │ ├── 26aa_border.svg │ ├── 26ab.svg │ ├── 26ab_border.svg │ ├── 26b0.svg │ ├── 26b1.svg │ ├── 26bd.svg │ ├── 26be.svg │ ├── 26be_border.svg │ ├── 26c4.svg │ ├── 26c5.svg │ ├── 26c8.svg │ ├── 26ce.svg │ ├── 26cf.svg │ ├── 26d1.svg │ ├── 26d3.svg │ ├── 26d4.svg │ ├── 26e9.svg │ ├── 26ea.svg │ ├── 26f0.svg │ ├── 26f1.svg │ ├── 26f2.svg │ ├── 26f3.svg │ ├── 26f4.svg │ ├── 26f5.svg │ ├── 26f7-1f3fb.svg │ ├── 26f7-1f3fc.svg │ ├── 26f7-1f3fd.svg │ ├── 26f7-1f3fe.svg │ ├── 26f7-1f3ff.svg │ ├── 26f7.svg │ ├── 26f8.svg │ ├── 26f8_border.svg │ ├── 26f9-1f3fb-200d-2640-fe0f.svg │ ├── 26f9-1f3fb-200d-2642-fe0f.svg │ ├── 26f9-1f3fb.svg │ ├── 26f9-1f3fc-200d-2640-fe0f.svg │ ├── 26f9-1f3fc-200d-2642-fe0f.svg │ ├── 26f9-1f3fc.svg │ ├── 26f9-1f3fd-200d-2640-fe0f.svg │ ├── 26f9-1f3fd-200d-2642-fe0f.svg │ ├── 26f9-1f3fd.svg │ ├── 26f9-1f3fe-200d-2640-fe0f.svg │ ├── 26f9-1f3fe-200d-2642-fe0f.svg │ ├── 26f9-1f3fe.svg │ ├── 26f9-1f3ff-200d-2640-fe0f.svg │ ├── 26f9-1f3ff-200d-2642-fe0f.svg │ ├── 26f9-1f3ff.svg │ ├── 26f9-fe0f-200d-2640-fe0f.svg │ ├── 26f9-fe0f-200d-2642-fe0f.svg │ ├── 26f9.svg │ ├── 26fa.svg │ ├── 26fd.svg │ ├── 2702.svg │ ├── 2705.svg │ ├── 2708.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.svg │ ├── 270d-1f3fb.svg │ ├── 270d-1f3fc.svg │ ├── 270d-1f3fd.svg │ ├── 270d-1f3fe.svg │ ├── 270d-1f3ff.svg │ ├── 270d.svg │ ├── 270f.svg │ ├── 2712.svg │ ├── 2712_border.svg │ ├── 2714.svg │ ├── 2714_border.svg │ ├── 2716.svg │ ├── 2716_border.svg │ ├── 271d.svg │ ├── 2721.svg │ ├── 2728.svg │ ├── 2733.svg │ ├── 2734.svg │ ├── 2734_border.svg │ ├── 2744.svg │ ├── 2747.svg │ ├── 274c.svg │ ├── 274e.svg │ ├── 2753.svg │ ├── 2754.svg │ ├── 2754_border.svg │ ├── 2755.svg │ ├── 2755_border.svg │ ├── 2757.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.svg │ ├── 27b0.svg │ ├── 27b0_border.svg │ ├── 27bf.svg │ ├── 2934.svg │ ├── 2935.svg │ ├── 2a-20e3.svg │ ├── 2b05.svg │ ├── 2b06.svg │ ├── 2b07.svg │ ├── 2b1b.svg │ ├── 2b1b_border.svg │ ├── 2b1c.svg │ ├── 2b1c_border.svg │ ├── 2b50.svg │ ├── 2b55.svg │ ├── 30-20e3.svg │ ├── 3030.svg │ ├── 3030_border.svg │ ├── 303d.svg │ ├── 31-20e3.svg │ ├── 32-20e3.svg │ ├── 3297.svg │ ├── 3299.svg │ ├── 33-20e3.svg │ ├── 34-20e3.svg │ ├── 35-20e3.svg │ ├── 36-20e3.svg │ ├── 37-20e3.svg │ ├── 38-20e3.svg │ ├── 39-20e3.svg │ ├── a9.svg │ ├── ae.svg │ ├── e50a.svg │ └── sheet_13.png ├── favicon.ico ├── headers │ └── original │ │ └── missing.png ├── inert.css ├── mask-icon.svg ├── mstile-150x150.png ├── ocr │ └── lang-data │ │ └── eng.traineddata.gz ├── oops.gif ├── oops.png ├── robots.txt ├── sounds │ ├── boop.mp3 │ └── boop.ogg ├── sw.js ├── sw.js.map ├── 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 │ ├── .rubocop.yml │ ├── about_controller_spec.rb │ ├── accounts_controller_spec.rb │ ├── activitypub │ │ ├── claims_controller_spec.rb │ │ ├── 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 │ │ ├── account_moderation_notes_controller_spec.rb │ │ ├── accounts_controller_spec.rb │ │ ├── action_logs_controller_spec.rb │ │ ├── announcements_controller_spec.rb │ │ ├── base_controller_spec.rb │ │ ├── change_emails_controller_spec.rb │ │ ├── confirmations_controller_spec.rb │ │ ├── custom_emojis_controller_spec.rb │ │ ├── dashboard_controller_spec.rb │ │ ├── disputes │ │ │ └── appeals_controller_spec.rb │ │ ├── domain_allows_controller_spec.rb │ │ ├── domain_blocks_controller_spec.rb │ │ ├── email_domain_blocks_controller_spec.rb │ │ ├── export_domain_allows_controller_spec.rb │ │ ├── export_domain_blocks_controller_spec.rb │ │ ├── follow_recommendations_controller_spec.rb │ │ ├── instances_controller_spec.rb │ │ ├── invites_controller_spec.rb │ │ ├── ip_blocks_controller_spec.rb │ │ ├── relationships_controller_spec.rb │ │ ├── relays_controller_spec.rb │ │ ├── report_notes_controller_spec.rb │ │ ├── reports │ │ │ └── actions_controller_spec.rb │ │ ├── reports_controller_spec.rb │ │ ├── resets_controller_spec.rb │ │ ├── roles_controller_spec.rb │ │ ├── rules_controller_spec.rb │ │ ├── settings │ │ │ ├── about_controller_spec.rb │ │ │ ├── appearance_controller_spec.rb │ │ │ ├── branding_controller_spec.rb │ │ │ ├── content_retention_controller_spec.rb │ │ │ ├── discovery_controller_spec.rb │ │ │ └── registrations_controller_spec.rb │ │ ├── site_uploads_controller_spec.rb │ │ ├── statuses_controller_spec.rb │ │ ├── tags_controller_spec.rb │ │ ├── trends │ │ │ ├── links │ │ │ │ └── preview_card_providers_controller_spec.rb │ │ │ ├── links_controller_spec.rb │ │ │ ├── statuses_controller_spec.rb │ │ │ └── tags_controller_spec.rb │ │ ├── users │ │ │ ├── roles_controller_spec.rb │ │ │ └── two_factor_authentications_controller_spec.rb │ │ ├── warning_presets_controller_spec.rb │ │ ├── webhooks │ │ │ └── secrets_controller_spec.rb │ │ └── webhooks_controller_spec.rb │ ├── api │ │ ├── base_controller_spec.rb │ │ ├── oembed_controller_spec.rb │ │ ├── v1 │ │ │ ├── accounts │ │ │ │ ├── credentials_controller_spec.rb │ │ │ │ ├── familiar_followers_controller_spec.rb │ │ │ │ ├── follower_accounts_controller_spec.rb │ │ │ │ ├── following_accounts_controller_spec.rb │ │ │ │ ├── identity_proofs_controller_spec.rb │ │ │ │ ├── lists_controller_spec.rb │ │ │ │ ├── lookup_controller_spec.rb │ │ │ │ ├── notes_controller_spec.rb │ │ │ │ ├── pins_controller_spec.rb │ │ │ │ ├── relationships_controller_spec.rb │ │ │ │ ├── search_controller_spec.rb │ │ │ │ └── statuses_controller_spec.rb │ │ │ ├── accounts_controller_spec.rb │ │ │ ├── admin │ │ │ │ ├── accounts_controller_spec.rb │ │ │ │ ├── dimensions_controller_spec.rb │ │ │ │ ├── measures_controller_spec.rb │ │ │ │ ├── retention_controller_spec.rb │ │ │ │ └── trends │ │ │ │ │ ├── links │ │ │ │ │ └── preview_card_providers_controller_spec.rb │ │ │ │ │ ├── links_controller_spec.rb │ │ │ │ │ ├── statuses_controller_spec.rb │ │ │ │ │ └── tags_controller_spec.rb │ │ │ ├── announcements │ │ │ │ └── reactions_controller_spec.rb │ │ │ ├── announcements_controller_spec.rb │ │ │ ├── blocks_controller_spec.rb │ │ │ ├── conversations_controller_spec.rb │ │ │ ├── custom_emojis_controller_spec.rb │ │ │ ├── directories_controller_spec.rb │ │ │ ├── endorsements_controller_spec.rb │ │ │ ├── favourites_controller_spec.rb │ │ │ ├── featured_tags │ │ │ │ └── suggestions_controller_spec.rb │ │ │ ├── filters_controller_spec.rb │ │ │ ├── followed_tags_controller_spec.rb │ │ │ ├── instances │ │ │ │ ├── activity_controller_spec.rb │ │ │ │ ├── domain_blocks_controller_spec.rb │ │ │ │ ├── extended_descriptions_controller_spec.rb │ │ │ │ ├── peers_controller_spec.rb │ │ │ │ ├── privacy_policies_controller_spec.rb │ │ │ │ ├── rules_controller_spec.rb │ │ │ │ └── translation_languages_controller_spec.rb │ │ │ ├── instances_controller_spec.rb │ │ │ ├── lists │ │ │ │ └── accounts_controller_spec.rb │ │ │ ├── markers_controller_spec.rb │ │ │ ├── media_controller_spec.rb │ │ │ ├── notifications_controller_spec.rb │ │ │ ├── polls │ │ │ │ └── votes_controller_spec.rb │ │ │ ├── preferences_controller_spec.rb │ │ │ ├── push │ │ │ │ └── subscriptions_controller_spec.rb │ │ │ ├── reports_controller_spec.rb │ │ │ ├── scheduled_statuses_controller_spec.rb │ │ │ ├── statuses │ │ │ │ ├── favourited_by_accounts_controller_spec.rb │ │ │ │ ├── histories_controller_spec.rb │ │ │ │ ├── mutes_controller_spec.rb │ │ │ │ ├── reblogged_by_accounts_controller_spec.rb │ │ │ │ ├── reblogs_controller_spec.rb │ │ │ │ ├── sources_controller_spec.rb │ │ │ │ └── translations_controller_spec.rb │ │ │ ├── statuses_controller_spec.rb │ │ │ ├── streaming_controller_spec.rb │ │ │ ├── timelines │ │ │ │ ├── list_controller_spec.rb │ │ │ │ └── tag_controller_spec.rb │ │ │ └── trends │ │ │ │ ├── links_controller_spec.rb │ │ │ │ ├── statuses_controller_spec.rb │ │ │ │ └── tags_controller_spec.rb │ │ ├── v2 │ │ │ ├── admin │ │ │ │ └── accounts_controller_spec.rb │ │ │ ├── filters │ │ │ │ ├── keywords_controller_spec.rb │ │ │ │ └── statuses_controller_spec.rb │ │ │ ├── instances_controller_spec.rb │ │ │ ├── search_controller_spec.rb │ │ │ └── suggestions_controller_spec.rb │ │ └── web │ │ │ ├── push_subscriptions_controller_spec.rb │ │ │ └── settings_controller_spec.rb │ ├── application_controller_spec.rb │ ├── auth │ │ ├── challenges_controller_spec.rb │ │ ├── confirmations_controller_spec.rb │ │ ├── passwords_controller_spec.rb │ │ ├── registrations_controller_spec.rb │ │ ├── sessions_controller_spec.rb │ │ └── setup_controller_spec.rb │ ├── authorize_interactions_controller_spec.rb │ ├── concerns │ │ ├── account_controller_concern_spec.rb │ │ ├── accountable_concern_spec.rb │ │ ├── cache_concern_spec.rb │ │ ├── challengable_concern_spec.rb │ │ ├── export_controller_concern_spec.rb │ │ ├── localized_spec.rb │ │ ├── rate_limit_headers_spec.rb │ │ └── user_tracking_concern_spec.rb │ ├── custom_css_controller_spec.rb │ ├── disputes │ │ ├── appeals_controller_spec.rb │ │ └── strikes_controller_spec.rb │ ├── emojis_controller_spec.rb │ ├── filters │ │ └── statuses_controller_spec.rb │ ├── filters_controller_spec.rb │ ├── follower_accounts_controller_spec.rb │ ├── following_accounts_controller_spec.rb │ ├── health_controller_spec.rb │ ├── home_controller_spec.rb │ ├── instance_actors_controller_spec.rb │ ├── intents_controller_spec.rb │ ├── invites_controller_spec.rb │ ├── manifests_controller_spec.rb │ ├── media_controller_spec.rb │ ├── media_proxy_controller_spec.rb │ ├── oauth │ │ ├── authorizations_controller_spec.rb │ │ ├── authorized_applications_controller_spec.rb │ │ └── tokens_controller_spec.rb │ ├── privacy_controller_spec.rb │ ├── relationships_controller_spec.rb │ ├── settings │ │ ├── aliases_controller_spec.rb │ │ ├── applications_controller_spec.rb │ │ ├── deletes_controller_spec.rb │ │ ├── exports │ │ │ ├── blocked_accounts_controller_spec.rb │ │ │ ├── blocked_domains_controller_spec.rb │ │ │ ├── bookmarks_controller_spec.rb │ │ │ ├── following_accounts_controller_spec.rb │ │ │ ├── lists_controller_spec.rb │ │ │ └── muted_accounts_controller_spec.rb │ │ ├── exports_controller_spec.rb │ │ ├── featured_tags_controller_spec.rb │ │ ├── imports_controller_spec.rb │ │ ├── login_activities_controller_spec.rb │ │ ├── migration │ │ │ └── redirects_controller_spec.rb │ │ ├── migrations_controller_spec.rb │ │ ├── pictures_controller_spec.rb │ │ ├── preferences │ │ │ ├── appearance_controller_spec.rb │ │ │ ├── base_controller_spec.rb │ │ │ ├── notifications_controller_spec.rb │ │ │ └── other_controller_spec.rb │ │ ├── profiles_controller_spec.rb │ │ ├── sessions_controller_spec.rb │ │ ├── two_factor_authentication │ │ │ ├── confirmations_controller_spec.rb │ │ │ ├── otp_authentication_controller_spec.rb │ │ │ ├── recovery_codes_controller_spec.rb │ │ │ └── webauthn_credentials_controller_spec.rb │ │ └── two_factor_authentication_methods_controller_spec.rb │ ├── shares_controller_spec.rb │ ├── statuses_cleanup_controller_spec.rb │ ├── statuses_controller_spec.rb │ ├── tags_controller_spec.rb │ └── well_known │ │ ├── host_meta_controller_spec.rb │ │ ├── nodeinfo_controller_spec.rb │ │ └── webfinger_controller_spec.rb ├── fabrication │ └── fabricators_spec.rb ├── fabricators │ ├── access_grant_fabricator.rb │ ├── access_token_fabricator.rb │ ├── accessible_access_token_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_stat_fabricator.rb │ ├── account_statuses_cleanup_policy_fabricator.rb │ ├── account_warning_fabricator.rb │ ├── account_warning_preset_fabricator.rb │ ├── admin_action_log_fabricator.rb │ ├── announcement_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_fabricator.rb │ ├── custom_filter_fabricator.rb │ ├── custom_filter_keyword_fabricator.rb │ ├── custom_filter_status_fabricator.rb │ ├── device_fabricator.rb │ ├── domain_allow_fabricator.rb │ ├── domain_block_fabricator.rb │ ├── email_domain_block_fabricator.rb │ ├── encrypted_message_fabricator.rb │ ├── favourite_fabricator.rb │ ├── featured_tag_fabricator.rb │ ├── follow_fabricator.rb │ ├── follow_request_fabricator.rb │ ├── identity_fabricator.rb │ ├── invite_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 │ ├── one_time_key_fabricator.rb │ ├── poll_fabricator.rb │ ├── poll_vote_fabricator.rb │ ├── preview_card_fabricator.rb │ ├── preview_card_provider_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 │ ├── site_upload_fabricator.rb │ ├── software_update_fabricator.rb │ ├── status_fabricator.rb │ ├── status_pin_fabricator.rb │ ├── status_stat_fabricator.rb │ ├── system_key_fabricator.rb │ ├── tag_fabricator.rb │ ├── tag_follow_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 ├── features │ ├── admin │ │ ├── domain_blocks_spec.rb │ │ └── software_updates_spec.rb │ ├── captcha_spec.rb │ ├── log_in_spec.rb │ ├── oauth_spec.rb │ └── profile_spec.rb ├── fixtures │ ├── files │ │ ├── 4096x4097.png │ │ ├── 600x400.avif │ │ ├── 600x400.heic │ │ ├── 600x400.jpeg │ │ ├── 600x400.png │ │ ├── 600x400.webp │ │ ├── attachment-jpg.123456_abcd │ │ ├── attachment.gif │ │ ├── attachment.jpg │ │ ├── attachment.webm │ │ ├── avatar.gif │ │ ├── bookmark-imports.txt │ │ ├── boop.mp3 │ │ ├── boop.ogg │ │ ├── domain_allows.csv │ │ ├── domain_blocks.csv │ │ ├── domain_blocks_list.txt │ │ ├── emojo.png │ │ ├── empty.csv │ │ ├── following_accounts.csv │ │ ├── imports.txt │ │ ├── lists.csv │ │ ├── mini-static.gif │ │ ├── mute-imports.txt │ │ ├── muted_accounts.csv │ │ ├── new-following-imports.txt │ │ ├── new-mute-imports.txt │ │ └── 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 │ │ ├── attachment1.txt │ │ ├── attachment2.txt │ │ ├── avatar.txt │ │ ├── feed.txt │ │ ├── json-ld.activitystreams.txt │ │ ├── json-ld.identity.txt │ │ ├── json-ld.security.txt │ │ ├── koi8-r.txt │ │ ├── localdomain-feed.txt │ │ ├── localdomain-hostmeta.txt │ │ ├── localdomain-webfinger.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 │ │ ├── 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 ├── generators │ └── post_deployment_migration_generator_spec.rb ├── helpers │ ├── accounts_helper_spec.rb │ ├── admin │ │ ├── account_moderation_notes_helper_spec.rb │ │ ├── dashboard_helper_spec.rb │ │ ├── filter_helper_spec.rb │ │ └── trends │ │ │ └── statuses_helper_spec.rb │ ├── application_helper_spec.rb │ ├── flashes_helper_spec.rb │ ├── formatting_helper_spec.rb │ ├── home_helper_spec.rb │ ├── instance_helper_spec.rb │ ├── jsonld_helper_spec.rb │ ├── languages_helper_spec.rb │ ├── media_component_helper_spec.rb │ ├── react_component_helper_spec.rb │ ├── routing_helper_spec.rb │ ├── settings_helper_spec.rb │ └── statuses_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 │ │ │ ├── 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 │ │ │ └── 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 │ │ ├── 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 │ ├── cache_buster_spec.rb │ ├── connection_pool │ │ ├── shared_connection_pool_spec.rb │ │ └── shared_timed_stack_spec.rb │ ├── delivery_failure_tracker_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 │ │ └── migration_warning_spec.rb │ ├── ostatus │ │ └── tag_manager_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 │ ├── 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 │ │ └── system_keys_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_conversation_spec.rb │ ├── account_domain_block_spec.rb │ ├── account_filter_spec.rb │ ├── account_migration_spec.rb │ ├── account_spec.rb │ ├── account_statuses_cleanup_policy_spec.rb │ ├── account_warning_preset_spec.rb │ ├── admin │ │ ├── account_action_spec.rb │ │ ├── action_log_spec.rb │ │ └── appeal_filter_spec.rb │ ├── appeal_spec.rb │ ├── block_spec.rb │ ├── canonical_email_block_spec.rb │ ├── concerns │ │ ├── account_counters_spec.rb │ │ ├── account_finder_concern_spec.rb │ │ ├── account_interactions_spec.rb │ │ ├── account_statuses_search_spec.rb │ │ ├── remotable_spec.rb │ │ └── status_threading_concern_spec.rb │ ├── conversation_spec.rb │ ├── custom_emoji_category_spec.rb │ ├── custom_emoji_filter_spec.rb │ ├── custom_emoji_spec.rb │ ├── domain_allow_spec.rb │ ├── domain_block_spec.rb │ ├── email_domain_block_spec.rb │ ├── export_spec.rb │ ├── extended_description_spec.rb │ ├── favourite_spec.rb │ ├── follow_request_spec.rb │ ├── follow_spec.rb │ ├── form │ │ ├── account_batch_spec.rb │ │ ├── admin_settings_spec.rb │ │ ├── import_spec.rb │ │ └── status_filter_batch_action_spec.rb │ ├── home_feed_spec.rb │ ├── identity_spec.rb │ ├── import_spec.rb │ ├── invite_spec.rb │ ├── ip_block_spec.rb │ ├── marker_spec.rb │ ├── media_attachment_spec.rb │ ├── mention_spec.rb │ ├── notification_spec.rb │ ├── one_time_key_spec.rb │ ├── poll_spec.rb │ ├── poll_vote_spec.rb │ ├── preview_card_provider_spec.rb │ ├── privacy_policy_spec.rb │ ├── public_feed_spec.rb │ ├── relationship_filter_spec.rb │ ├── remote_follow_spec.rb │ ├── report_filter_spec.rb │ ├── report_spec.rb │ ├── rule_spec.rb │ ├── session_activation_spec.rb │ ├── setting_spec.rb │ ├── site_upload_spec.rb │ ├── software_update_spec.rb │ ├── status_edit_spec.rb │ ├── status_pin_spec.rb │ ├── status_spec.rb │ ├── tag_feed_spec.rb │ ├── tag_spec.rb │ ├── trends │ │ ├── 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_credentials_spec.rb │ └── webhook_spec.rb ├── policies │ ├── account_moderation_note_policy_spec.rb │ ├── account_policy_spec.rb │ ├── account_warning_preset_policy_spec.rb │ ├── admin │ │ └── status_policy_spec.rb │ ├── announcement_policy_spec.rb │ ├── appeal_policy_spec.rb │ ├── backup_policy_spec.rb │ ├── canonical_email_block_policy_spec.rb │ ├── custom_emoji_policy_spec.rb │ ├── delivery_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 │ ├── 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 │ ├── user_policy_spec.rb │ └── webhook_policy_spec.rb ├── presenters │ ├── account_relationships_presenter_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 │ ├── anonymous_cookies_spec.rb │ ├── api │ │ ├── v1 │ │ │ ├── accounts │ │ │ │ ├── credentials_spec.rb │ │ │ │ └── featured_tags_spec.rb │ │ │ ├── accounts_show_spec.rb │ │ │ ├── admin │ │ │ │ ├── account_actions_spec.rb │ │ │ │ ├── canonical_email_blocks_spec.rb │ │ │ │ ├── domain_allows_spec.rb │ │ │ │ ├── domain_blocks_spec.rb │ │ │ │ ├── email_domain_blocks_spec.rb │ │ │ │ ├── ip_blocks_spec.rb │ │ │ │ ├── reports_spec.rb │ │ │ │ └── tags_spec.rb │ │ │ ├── apps │ │ │ │ └── credentials_spec.rb │ │ │ ├── apps_spec.rb │ │ │ ├── bookmarks_spec.rb │ │ │ ├── domain_blocks_spec.rb │ │ │ ├── emails │ │ │ │ └── confirmations_spec.rb │ │ │ ├── featured_tags_spec.rb │ │ │ ├── follow_requests_spec.rb │ │ │ ├── instances │ │ │ │ ├── domain_blocks_spec.rb │ │ │ │ └── languages_spec.rb │ │ │ ├── lists_spec.rb │ │ │ ├── mutes_spec.rb │ │ │ ├── polls_spec.rb │ │ │ ├── profiles_spec.rb │ │ │ ├── statuses │ │ │ │ ├── bookmarks_spec.rb │ │ │ │ ├── favourites_spec.rb │ │ │ │ └── pins_spec.rb │ │ │ ├── suggestions_spec.rb │ │ │ ├── tags_spec.rb │ │ │ └── timelines │ │ │ │ ├── home_spec.rb │ │ │ │ └── public_spec.rb │ │ ├── v2 │ │ │ ├── filters │ │ │ │ └── filters_spec.rb │ │ │ └── media_spec.rb │ │ └── web │ │ │ └── embeds_spec.rb │ ├── backups_spec.rb │ ├── cache_spec.rb │ ├── catch_all_route_request_spec.rb │ ├── content_security_policy_spec.rb │ ├── disabled_oauth_endpoints_spec.rb │ ├── follower_accounts_spec.rb │ ├── following_accounts_spec.rb │ ├── host_meta_request_spec.rb │ ├── link_headers_spec.rb │ ├── localization_spec.rb │ ├── mail_subscriptions_spec.rb │ ├── omniauth_callbacks_spec.rb │ ├── signature_verification_spec.rb │ └── webfinger_request_spec.rb ├── routing │ ├── accounts_routing_spec.rb │ ├── api_routing_spec.rb │ └── well_known_routes_spec.rb ├── search │ └── models │ │ └── concerns │ │ ├── account_search_spec.rb │ │ └── account_statuses_search_spec.rb ├── serializers │ ├── activitypub │ │ ├── device_serializer_spec.rb │ │ ├── note_serializer_spec.rb │ │ ├── one_time_key_serializer_spec.rb │ │ ├── undo_like_serializer_spec.rb │ │ ├── update_poll_serializer_spec.rb │ │ └── vote_serializer_spec.rb │ └── rest │ │ ├── account_serializer_spec.rb │ │ ├── encrypted_message_serializer_spec.rb │ │ ├── instance_serializer_spec.rb │ │ ├── keys │ │ ├── claim_result_serializer_spec.rb │ │ ├── device_serializer_spec.rb │ │ └── query_result_serializer_spec.rb │ │ └── suggestion_serializer_spec.rb ├── services │ ├── account_search_service_spec.rb │ ├── account_statuses_cleanup_service_spec.rb │ ├── activitypub │ │ ├── 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 │ ├── app_sign_up_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 │ ├── delete_account_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 │ ├── mute_service_spec.rb │ ├── notify_service_spec.rb │ ├── post_status_service_spec.rb │ ├── precompute_feed_service_spec.rb │ ├── process_mentions_service_spec.rb │ ├── purge_domain_service_spec.rb │ ├── reblog_service_spec.rb │ ├── reject_follow_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 │ ├── translate_status_service_spec.rb │ ├── unallow_domain_service_spec.rb │ ├── unblock_domain_service_spec.rb │ ├── unblock_service_spec.rb │ ├── unfollow_service_spec.rb │ ├── unsuspend_account_service_spec.rb │ ├── update_account_service_spec.rb │ ├── update_status_service_spec.rb │ └── verify_link_service_spec.rb ├── spec_helper.rb ├── support │ ├── examples │ │ ├── api.rb │ │ ├── lib │ │ │ └── admin │ │ │ │ └── checks.rb │ │ ├── mailers.rb │ │ └── models │ │ │ └── concerns │ │ │ ├── account_avatar.rb │ │ │ └── account_header.rb │ ├── matchers │ │ ├── json │ │ │ └── match_json_schema.rb │ │ └── model │ │ │ └── model_have_error_on_field.rb │ ├── omniauth_mocks.rb │ ├── schema │ │ └── nodeinfo_2.0.json │ └── stories │ │ └── profile_stories.rb ├── system │ └── new_statuses_spec.rb ├── validators │ ├── blacklisted_email_validator_spec.rb │ ├── disallowed_hashtags_validator_spec.rb │ ├── email_mx_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 │ ├── unique_username_validator_spec.rb │ ├── unreserved_username_validator_spec.rb │ └── url_validator_spec.rb ├── views │ └── statuses │ │ └── show.html.haml_spec.rb └── workers │ ├── activitypub │ ├── delivery_worker_spec.rb │ ├── distribute_poll_update_worker_spec.rb │ ├── distribution_worker_spec.rb │ ├── fetch_replies_worker_spec.rb │ ├── move_distribution_worker_spec.rb │ ├── processing_worker_spec.rb │ ├── status_update_distribution_worker_spec.rb │ └── update_distribution_worker_spec.rb │ ├── add_to_public_statuses_index_worker_spec.rb │ ├── admin │ ├── account_deletion_worker_spec.rb │ └── domain_purge_worker_spec.rb │ ├── bulk_import_worker_spec.rb │ ├── cache_buster_worker_spec.rb │ ├── domain_block_worker_spec.rb │ ├── domain_clear_media_worker_spec.rb │ ├── feed_insert_worker_spec.rb │ ├── import │ └── row_worker_spec.rb │ ├── move_worker_spec.rb │ ├── poll_expiration_notify_worker_spec.rb │ ├── post_process_media_worker_spec.rb │ ├── publish_scheduled_announcement_worker_spec.rb │ ├── publish_scheduled_status_worker_spec.rb │ ├── push_conversation_worker_spec.rb │ ├── push_encrypted_message_worker_spec.rb │ ├── push_update_worker_spec.rb │ ├── redownload_avatar_worker_spec.rb │ ├── redownload_header_worker_spec.rb │ ├── refollow_worker_spec.rb │ ├── regeneration_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 │ ├── 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 │ ├── unfollow_follow_worker_spec.rb │ ├── unpublish_announcement_worker_spec.rb │ ├── verify_account_links_worker_spec.rb │ ├── web │ └── push_notification_worker_spec.rb │ └── webhooks │ └── delivery_worker_spec.rb ├── streaming └── index.js ├── stylelint.config.js ├── tsconfig.json ├── vendor └── .keep └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.buildpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.buildpacks -------------------------------------------------------------------------------- /.bundler-audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.bundler-audit.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.production.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.env.production.sample -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.env.test -------------------------------------------------------------------------------- /.env.vagrant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.env.vagrant -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.foreman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.foreman -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.gitignore -------------------------------------------------------------------------------- /.haml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.haml-lint.yml -------------------------------------------------------------------------------- /.haml-lint_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.haml-lint_todo.yml -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /.nanoignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.nanoignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.7 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.profile -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --format Fuubar 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | mastodon 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.3 2 | -------------------------------------------------------------------------------- /.slugignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .cache/ 3 | docs/ 4 | spec/ 5 | -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/.yarnclean -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/Aptfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/Capfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/Dockerfile -------------------------------------------------------------------------------- /FEDERATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/FEDERATION.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/Procfile -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app.json -------------------------------------------------------------------------------- /app/chewy/tags_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/chewy/tags_index.rb -------------------------------------------------------------------------------- /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/cache_buster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/cache_buster.rb -------------------------------------------------------------------------------- /app/lib/entity_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/entity_cache.rb -------------------------------------------------------------------------------- /app/lib/extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/extractor.rb -------------------------------------------------------------------------------- /app/lib/fast_ip_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/fast_ip_map.rb -------------------------------------------------------------------------------- /app/lib/feed_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/feed_manager.rb -------------------------------------------------------------------------------- /app/lib/rate_limiter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/rate_limiter.rb -------------------------------------------------------------------------------- /app/lib/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/request.rb -------------------------------------------------------------------------------- /app/lib/request_pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/request_pool.rb -------------------------------------------------------------------------------- /app/lib/rss/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/rss/builder.rb -------------------------------------------------------------------------------- /app/lib/rss/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/rss/channel.rb -------------------------------------------------------------------------------- /app/lib/rss/element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/rss/element.rb -------------------------------------------------------------------------------- /app/lib/rss/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/rss/item.rb -------------------------------------------------------------------------------- /app/lib/scope_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/scope_parser.rb -------------------------------------------------------------------------------- /app/lib/tag_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/lib/tag_manager.rb -------------------------------------------------------------------------------- /app/lib/themes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/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/merveilles/merveilles-town/HEAD/app/lib/webfinger.rb -------------------------------------------------------------------------------- /app/models/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/account.rb -------------------------------------------------------------------------------- /app/models/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/admin.rb -------------------------------------------------------------------------------- /app/models/appeal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/appeal.rb -------------------------------------------------------------------------------- /app/models/backup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/backup.rb -------------------------------------------------------------------------------- /app/models/block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/block.rb -------------------------------------------------------------------------------- /app/models/bookmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/bookmark.rb -------------------------------------------------------------------------------- /app/models/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/context.rb -------------------------------------------------------------------------------- /app/models/device.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/device.rb -------------------------------------------------------------------------------- /app/models/export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/export.rb -------------------------------------------------------------------------------- /app/models/favourite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/favourite.rb -------------------------------------------------------------------------------- /app/models/feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/feed.rb -------------------------------------------------------------------------------- /app/models/follow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/follow.rb -------------------------------------------------------------------------------- /app/models/home_feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/home_feed.rb -------------------------------------------------------------------------------- /app/models/identity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/identity.rb -------------------------------------------------------------------------------- /app/models/import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/import.rb -------------------------------------------------------------------------------- /app/models/instance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/instance.rb -------------------------------------------------------------------------------- /app/models/invite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/invite.rb -------------------------------------------------------------------------------- /app/models/ip_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/ip_block.rb -------------------------------------------------------------------------------- /app/models/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/list.rb -------------------------------------------------------------------------------- /app/models/list_feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/list_feed.rb -------------------------------------------------------------------------------- /app/models/marker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/marker.rb -------------------------------------------------------------------------------- /app/models/mention.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/mention.rb -------------------------------------------------------------------------------- /app/models/mute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/mute.rb -------------------------------------------------------------------------------- /app/models/poll.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/poll.rb -------------------------------------------------------------------------------- /app/models/poll_vote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/poll_vote.rb -------------------------------------------------------------------------------- /app/models/relay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/relay.rb -------------------------------------------------------------------------------- /app/models/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/report.rb -------------------------------------------------------------------------------- /app/models/rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/rule.rb -------------------------------------------------------------------------------- /app/models/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/search.rb -------------------------------------------------------------------------------- /app/models/setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/setting.rb -------------------------------------------------------------------------------- /app/models/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/status.rb -------------------------------------------------------------------------------- /app/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/tag.rb -------------------------------------------------------------------------------- /app/models/tag_feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/tag_feed.rb -------------------------------------------------------------------------------- /app/models/tombstone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/tombstone.rb -------------------------------------------------------------------------------- /app/models/trends.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/trends.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/user_ip.rb -------------------------------------------------------------------------------- /app/models/user_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/user_role.rb -------------------------------------------------------------------------------- /app/models/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/web.rb -------------------------------------------------------------------------------- /app/models/webhook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/app/models/webhook.rb -------------------------------------------------------------------------------- /app/views/layouts/plain_mailer.html.haml: -------------------------------------------------------------------------------- 1 | = yield 2 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/heroku-web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/bin/heroku-web -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/retry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/bin/retry -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/tootctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/bin/tootctl -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/bin/update -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/bin/yarn -------------------------------------------------------------------------------- /chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/chart/README.md -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/brakeman.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/brakeman.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/i18n-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/i18n-tasks.yml -------------------------------------------------------------------------------- /config/initializers/redis.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | Redis.sadd_returns_boolean = false 4 | -------------------------------------------------------------------------------- /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.lt.yml: -------------------------------------------------------------------------------- 1 | lt: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.mk.yml: -------------------------------------------------------------------------------- 1 | mk: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.pa.yml: -------------------------------------------------------------------------------- 1 | pa: 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.ug.yml: -------------------------------------------------------------------------------- 1 | ug: 2 | -------------------------------------------------------------------------------- /config/locales/activerecord.ur.yml: -------------------------------------------------------------------------------- 1 | ur: 2 | -------------------------------------------------------------------------------- /config/locales/af.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/af.yml -------------------------------------------------------------------------------- /config/locales/an.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/an.yml -------------------------------------------------------------------------------- /config/locales/ar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ar.yml -------------------------------------------------------------------------------- /config/locales/ast.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ast.yml -------------------------------------------------------------------------------- /config/locales/be.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/be.yml -------------------------------------------------------------------------------- /config/locales/bg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/bg.yml -------------------------------------------------------------------------------- /config/locales/bn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/bn.yml -------------------------------------------------------------------------------- /config/locales/br.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/br.yml -------------------------------------------------------------------------------- /config/locales/bs.yml: -------------------------------------------------------------------------------- 1 | bs: 2 | -------------------------------------------------------------------------------- /config/locales/ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ca.yml -------------------------------------------------------------------------------- /config/locales/ckb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ckb.yml -------------------------------------------------------------------------------- /config/locales/co.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/co.yml -------------------------------------------------------------------------------- /config/locales/cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/cs.yml -------------------------------------------------------------------------------- /config/locales/cy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/cy.yml -------------------------------------------------------------------------------- /config/locales/da.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/da.yml -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/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.la.yml: -------------------------------------------------------------------------------- 1 | la: 2 | -------------------------------------------------------------------------------- /config/locales/devise.lt.yml: -------------------------------------------------------------------------------- 1 | lt: 2 | -------------------------------------------------------------------------------- /config/locales/devise.mk.yml: -------------------------------------------------------------------------------- 1 | mk: 2 | -------------------------------------------------------------------------------- /config/locales/devise.mr.yml: -------------------------------------------------------------------------------- 1 | mr: 2 | -------------------------------------------------------------------------------- /config/locales/devise.pa.yml: -------------------------------------------------------------------------------- 1 | pa: 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.ug.yml: -------------------------------------------------------------------------------- 1 | ug: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.bn.yml: -------------------------------------------------------------------------------- 1 | bn: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.bs.yml: -------------------------------------------------------------------------------- 1 | bs: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.ig.yml: -------------------------------------------------------------------------------- 1 | ig: 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.lt.yml: -------------------------------------------------------------------------------- 1 | lt: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.mk.yml: -------------------------------------------------------------------------------- 1 | mk: 2 | -------------------------------------------------------------------------------- /config/locales/doorkeeper.pa.yml: -------------------------------------------------------------------------------- 1 | pa: 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.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/merveilles/merveilles-town/HEAD/config/locales/el.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/eo.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/et.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/et.yml -------------------------------------------------------------------------------- /config/locales/eu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/eu.yml -------------------------------------------------------------------------------- /config/locales/fa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/fa.yml -------------------------------------------------------------------------------- /config/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/fi.yml -------------------------------------------------------------------------------- /config/locales/fo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/fo.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/fy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/fy.yml -------------------------------------------------------------------------------- /config/locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ga.yml -------------------------------------------------------------------------------- /config/locales/gd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/gd.yml -------------------------------------------------------------------------------- /config/locales/gl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/gl.yml -------------------------------------------------------------------------------- /config/locales/he.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/he.yml -------------------------------------------------------------------------------- /config/locales/hi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/hi.yml -------------------------------------------------------------------------------- /config/locales/hr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/hr.yml -------------------------------------------------------------------------------- /config/locales/hu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/hu.yml -------------------------------------------------------------------------------- /config/locales/hy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/hy.yml -------------------------------------------------------------------------------- /config/locales/id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/id.yml -------------------------------------------------------------------------------- /config/locales/ig.yml: -------------------------------------------------------------------------------- 1 | ig: 2 | -------------------------------------------------------------------------------- /config/locales/io.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/io.yml -------------------------------------------------------------------------------- /config/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/is.yml -------------------------------------------------------------------------------- /config/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/it.yml -------------------------------------------------------------------------------- /config/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ja.yml -------------------------------------------------------------------------------- /config/locales/ka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ka.yml -------------------------------------------------------------------------------- /config/locales/kab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/kab.yml -------------------------------------------------------------------------------- /config/locales/kk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/kk.yml -------------------------------------------------------------------------------- /config/locales/kn.yml: -------------------------------------------------------------------------------- 1 | kn: 2 | -------------------------------------------------------------------------------- /config/locales/ko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ko.yml -------------------------------------------------------------------------------- /config/locales/ku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ku.yml -------------------------------------------------------------------------------- /config/locales/kw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/kw.yml -------------------------------------------------------------------------------- /config/locales/la.yml: -------------------------------------------------------------------------------- 1 | la: 2 | -------------------------------------------------------------------------------- /config/locales/lt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/lt.yml -------------------------------------------------------------------------------- /config/locales/lv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/lv.yml -------------------------------------------------------------------------------- /config/locales/mk.yml: -------------------------------------------------------------------------------- 1 | mk: 2 | -------------------------------------------------------------------------------- /config/locales/ml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ml.yml -------------------------------------------------------------------------------- /config/locales/mr.yml: -------------------------------------------------------------------------------- 1 | mr: 2 | -------------------------------------------------------------------------------- /config/locales/ms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ms.yml -------------------------------------------------------------------------------- /config/locales/my.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/my.yml -------------------------------------------------------------------------------- /config/locales/nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/nl.yml -------------------------------------------------------------------------------- /config/locales/nn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/nn.yml -------------------------------------------------------------------------------- /config/locales/no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/no.yml -------------------------------------------------------------------------------- /config/locales/oc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/oc.yml -------------------------------------------------------------------------------- /config/locales/pa.yml: -------------------------------------------------------------------------------- 1 | pa: 2 | -------------------------------------------------------------------------------- /config/locales/pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/pl.yml -------------------------------------------------------------------------------- /config/locales/ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ro.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/locales/sa.yml: -------------------------------------------------------------------------------- 1 | sa: 2 | -------------------------------------------------------------------------------- /config/locales/sc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/sc.yml -------------------------------------------------------------------------------- /config/locales/sco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/sco.yml -------------------------------------------------------------------------------- /config/locales/si.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/si.yml -------------------------------------------------------------------------------- /config/locales/simple_form.bs.yml: -------------------------------------------------------------------------------- 1 | bs: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.hi.yml: -------------------------------------------------------------------------------- 1 | hi: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.ig.yml: -------------------------------------------------------------------------------- 1 | ig: 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.lt.yml: -------------------------------------------------------------------------------- 1 | lt: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.mk.yml: -------------------------------------------------------------------------------- 1 | mk: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.mr.yml: -------------------------------------------------------------------------------- 1 | mr: 2 | -------------------------------------------------------------------------------- /config/locales/simple_form.pa.yml: -------------------------------------------------------------------------------- 1 | pa: 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.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/merveilles/merveilles-town/HEAD/config/locales/sk.yml -------------------------------------------------------------------------------- /config/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/sl.yml -------------------------------------------------------------------------------- /config/locales/sq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/sq.yml -------------------------------------------------------------------------------- /config/locales/sr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/sr.yml -------------------------------------------------------------------------------- /config/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/sv.yml -------------------------------------------------------------------------------- /config/locales/szl.yml: -------------------------------------------------------------------------------- 1 | szl: 2 | -------------------------------------------------------------------------------- /config/locales/ta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/ta.yml -------------------------------------------------------------------------------- /config/locales/tai.yml: -------------------------------------------------------------------------------- 1 | tai: 2 | -------------------------------------------------------------------------------- /config/locales/te.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/te.yml -------------------------------------------------------------------------------- /config/locales/th.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/th.yml -------------------------------------------------------------------------------- /config/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/tr.yml -------------------------------------------------------------------------------- /config/locales/tt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/tt.yml -------------------------------------------------------------------------------- /config/locales/ug.yml: -------------------------------------------------------------------------------- 1 | ug: 2 | -------------------------------------------------------------------------------- /config/locales/uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/uk.yml -------------------------------------------------------------------------------- /config/locales/ur.yml: -------------------------------------------------------------------------------- 1 | ur: 2 | -------------------------------------------------------------------------------- /config/locales/uz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/uz.yml -------------------------------------------------------------------------------- /config/locales/vi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/vi.yml -------------------------------------------------------------------------------- /config/locales/zgh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/locales/zgh.yml -------------------------------------------------------------------------------- /config/navigation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/navigation.rb -------------------------------------------------------------------------------- /config/pghero.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/pghero.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/roles.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/routes/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/routes/admin.rb -------------------------------------------------------------------------------- /config/routes/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/routes/api.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/settings.yml -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/themes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/themes.yml -------------------------------------------------------------------------------- /config/webpack/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/webpack/tests.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/crowdin.yml -------------------------------------------------------------------------------- /db/post_migrate/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds/01_web_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/db/seeds/01_web_app.rb -------------------------------------------------------------------------------- /db/seeds/03_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/db/seeds/03_roles.rb -------------------------------------------------------------------------------- /db/seeds/04_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/db/seeds/04_admin.rb -------------------------------------------------------------------------------- /dist/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/dist/nginx.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ide-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/ide-helper.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/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/merveilles/merveilles-town/HEAD/lib/exceptions.rb -------------------------------------------------------------------------------- /lib/http_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/lib/http_extensions.rb -------------------------------------------------------------------------------- /lib/json_ld/identity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/lib/json_ld/identity.rb -------------------------------------------------------------------------------- /lib/json_ld/security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/lib/json_ld/security.rb -------------------------------------------------------------------------------- /lib/mastodon/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/lib/mastodon/version.rb -------------------------------------------------------------------------------- /lib/tasks/assets.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/lib/tasks/assets.rake -------------------------------------------------------------------------------- /lib/tasks/branding.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/lib/tasks/branding.rake -------------------------------------------------------------------------------- /lib/tasks/db.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/lib/tasks/db.rake -------------------------------------------------------------------------------- /lib/tasks/emojis.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/lib/tasks/emojis.rake -------------------------------------------------------------------------------- /lib/tasks/mastodon.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/lib/tasks/mastodon.rake -------------------------------------------------------------------------------- /lib/tasks/repo.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/lib/tasks/repo.rake -------------------------------------------------------------------------------- /lib/tasks/spec.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/lib/tasks/spec.rake -------------------------------------------------------------------------------- /lib/tasks/tests.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/lib/tasks/tests.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/postcss.config.js -------------------------------------------------------------------------------- /priv-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/priv-config -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- 1 | assets/500.html -------------------------------------------------------------------------------- /public/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/badge.png -------------------------------------------------------------------------------- /public/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/embed.js -------------------------------------------------------------------------------- /public/emoji/1f004.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f004.svg -------------------------------------------------------------------------------- /public/emoji/1f0cf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f0cf.svg -------------------------------------------------------------------------------- /public/emoji/1f170.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f170.svg -------------------------------------------------------------------------------- /public/emoji/1f171.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f171.svg -------------------------------------------------------------------------------- /public/emoji/1f17e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f17e.svg -------------------------------------------------------------------------------- /public/emoji/1f17f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f17f.svg -------------------------------------------------------------------------------- /public/emoji/1f18e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f18e.svg -------------------------------------------------------------------------------- /public/emoji/1f191.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f191.svg -------------------------------------------------------------------------------- /public/emoji/1f192.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f192.svg -------------------------------------------------------------------------------- /public/emoji/1f193.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f193.svg -------------------------------------------------------------------------------- /public/emoji/1f194.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f194.svg -------------------------------------------------------------------------------- /public/emoji/1f195.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f195.svg -------------------------------------------------------------------------------- /public/emoji/1f196.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f196.svg -------------------------------------------------------------------------------- /public/emoji/1f197.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f197.svg -------------------------------------------------------------------------------- /public/emoji/1f198.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f198.svg -------------------------------------------------------------------------------- /public/emoji/1f199.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f199.svg -------------------------------------------------------------------------------- /public/emoji/1f19a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f19a.svg -------------------------------------------------------------------------------- /public/emoji/1f1e6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1e6.svg -------------------------------------------------------------------------------- /public/emoji/1f1e7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1e7.svg -------------------------------------------------------------------------------- /public/emoji/1f1e8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1e8.svg -------------------------------------------------------------------------------- /public/emoji/1f1e9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1e9.svg -------------------------------------------------------------------------------- /public/emoji/1f1ea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1ea.svg -------------------------------------------------------------------------------- /public/emoji/1f1eb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1eb.svg -------------------------------------------------------------------------------- /public/emoji/1f1ec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1ec.svg -------------------------------------------------------------------------------- /public/emoji/1f1ed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1ed.svg -------------------------------------------------------------------------------- /public/emoji/1f1ee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1ee.svg -------------------------------------------------------------------------------- /public/emoji/1f1ef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1ef.svg -------------------------------------------------------------------------------- /public/emoji/1f1f0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1f0.svg -------------------------------------------------------------------------------- /public/emoji/1f1f1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1f1.svg -------------------------------------------------------------------------------- /public/emoji/1f1f2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1f2.svg -------------------------------------------------------------------------------- /public/emoji/1f1f3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1f3.svg -------------------------------------------------------------------------------- /public/emoji/1f1f4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1f4.svg -------------------------------------------------------------------------------- /public/emoji/1f1f5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1f5.svg -------------------------------------------------------------------------------- /public/emoji/1f1f6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1f6.svg -------------------------------------------------------------------------------- /public/emoji/1f1f7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1f7.svg -------------------------------------------------------------------------------- /public/emoji/1f1f8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1f8.svg -------------------------------------------------------------------------------- /public/emoji/1f1f9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1f9.svg -------------------------------------------------------------------------------- /public/emoji/1f1fa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1fa.svg -------------------------------------------------------------------------------- /public/emoji/1f1fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1fb.svg -------------------------------------------------------------------------------- /public/emoji/1f1fc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1fc.svg -------------------------------------------------------------------------------- /public/emoji/1f1fd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1fd.svg -------------------------------------------------------------------------------- /public/emoji/1f1fe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1fe.svg -------------------------------------------------------------------------------- /public/emoji/1f1ff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f1ff.svg -------------------------------------------------------------------------------- /public/emoji/1f201.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f201.svg -------------------------------------------------------------------------------- /public/emoji/1f202.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f202.svg -------------------------------------------------------------------------------- /public/emoji/1f21a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f21a.svg -------------------------------------------------------------------------------- /public/emoji/1f22f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f22f.svg -------------------------------------------------------------------------------- /public/emoji/1f232.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f232.svg -------------------------------------------------------------------------------- /public/emoji/1f233.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f233.svg -------------------------------------------------------------------------------- /public/emoji/1f234.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f234.svg -------------------------------------------------------------------------------- /public/emoji/1f235.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f235.svg -------------------------------------------------------------------------------- /public/emoji/1f236.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f236.svg -------------------------------------------------------------------------------- /public/emoji/1f237.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f237.svg -------------------------------------------------------------------------------- /public/emoji/1f238.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f238.svg -------------------------------------------------------------------------------- /public/emoji/1f239.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f239.svg -------------------------------------------------------------------------------- /public/emoji/1f23a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f23a.svg -------------------------------------------------------------------------------- /public/emoji/1f250.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f250.svg -------------------------------------------------------------------------------- /public/emoji/1f251.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f251.svg -------------------------------------------------------------------------------- /public/emoji/1f300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f300.svg -------------------------------------------------------------------------------- /public/emoji/1f301.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f301.svg -------------------------------------------------------------------------------- /public/emoji/1f302.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f302.svg -------------------------------------------------------------------------------- /public/emoji/1f303.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f303.svg -------------------------------------------------------------------------------- /public/emoji/1f304.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f304.svg -------------------------------------------------------------------------------- /public/emoji/1f305.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f305.svg -------------------------------------------------------------------------------- /public/emoji/1f306.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f306.svg -------------------------------------------------------------------------------- /public/emoji/1f307.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f307.svg -------------------------------------------------------------------------------- /public/emoji/1f308.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f308.svg -------------------------------------------------------------------------------- /public/emoji/1f309.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f309.svg -------------------------------------------------------------------------------- /public/emoji/1f30a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f30a.svg -------------------------------------------------------------------------------- /public/emoji/1f30b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f30b.svg -------------------------------------------------------------------------------- /public/emoji/1f30c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f30c.svg -------------------------------------------------------------------------------- /public/emoji/1f30d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f30d.svg -------------------------------------------------------------------------------- /public/emoji/1f30e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f30e.svg -------------------------------------------------------------------------------- /public/emoji/1f30f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f30f.svg -------------------------------------------------------------------------------- /public/emoji/1f310.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f310.svg -------------------------------------------------------------------------------- /public/emoji/1f311.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f311.svg -------------------------------------------------------------------------------- /public/emoji/1f312.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f312.svg -------------------------------------------------------------------------------- /public/emoji/1f313.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f313.svg -------------------------------------------------------------------------------- /public/emoji/1f314.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f314.svg -------------------------------------------------------------------------------- /public/emoji/1f315.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f315.svg -------------------------------------------------------------------------------- /public/emoji/1f316.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f316.svg -------------------------------------------------------------------------------- /public/emoji/1f317.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f317.svg -------------------------------------------------------------------------------- /public/emoji/1f318.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f318.svg -------------------------------------------------------------------------------- /public/emoji/1f319.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f319.svg -------------------------------------------------------------------------------- /public/emoji/1f31a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f31a.svg -------------------------------------------------------------------------------- /public/emoji/1f31b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f31b.svg -------------------------------------------------------------------------------- /public/emoji/1f31c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f31c.svg -------------------------------------------------------------------------------- /public/emoji/1f31d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f31d.svg -------------------------------------------------------------------------------- /public/emoji/1f31e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f31e.svg -------------------------------------------------------------------------------- /public/emoji/1f31f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f31f.svg -------------------------------------------------------------------------------- /public/emoji/1f320.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f320.svg -------------------------------------------------------------------------------- /public/emoji/1f321.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f321.svg -------------------------------------------------------------------------------- /public/emoji/1f324.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f324.svg -------------------------------------------------------------------------------- /public/emoji/1f325.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f325.svg -------------------------------------------------------------------------------- /public/emoji/1f326.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f326.svg -------------------------------------------------------------------------------- /public/emoji/1f327.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f327.svg -------------------------------------------------------------------------------- /public/emoji/1f328.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f328.svg -------------------------------------------------------------------------------- /public/emoji/1f329.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f329.svg -------------------------------------------------------------------------------- /public/emoji/1f32a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f32a.svg -------------------------------------------------------------------------------- /public/emoji/1f32b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f32b.svg -------------------------------------------------------------------------------- /public/emoji/1f32c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f32c.svg -------------------------------------------------------------------------------- /public/emoji/1f32d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f32d.svg -------------------------------------------------------------------------------- /public/emoji/1f32e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f32e.svg -------------------------------------------------------------------------------- /public/emoji/1f32f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f32f.svg -------------------------------------------------------------------------------- /public/emoji/1f330.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f330.svg -------------------------------------------------------------------------------- /public/emoji/1f331.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f331.svg -------------------------------------------------------------------------------- /public/emoji/1f332.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f332.svg -------------------------------------------------------------------------------- /public/emoji/1f333.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f333.svg -------------------------------------------------------------------------------- /public/emoji/1f334.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f334.svg -------------------------------------------------------------------------------- /public/emoji/1f335.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f335.svg -------------------------------------------------------------------------------- /public/emoji/1f336.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f336.svg -------------------------------------------------------------------------------- /public/emoji/1f337.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f337.svg -------------------------------------------------------------------------------- /public/emoji/1f338.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f338.svg -------------------------------------------------------------------------------- /public/emoji/1f339.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f339.svg -------------------------------------------------------------------------------- /public/emoji/1f33a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f33a.svg -------------------------------------------------------------------------------- /public/emoji/1f33b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f33b.svg -------------------------------------------------------------------------------- /public/emoji/1f33c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f33c.svg -------------------------------------------------------------------------------- /public/emoji/1f33d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f33d.svg -------------------------------------------------------------------------------- /public/emoji/1f33e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f33e.svg -------------------------------------------------------------------------------- /public/emoji/1f33f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f33f.svg -------------------------------------------------------------------------------- /public/emoji/1f340.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f340.svg -------------------------------------------------------------------------------- /public/emoji/1f341.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f341.svg -------------------------------------------------------------------------------- /public/emoji/1f342.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f342.svg -------------------------------------------------------------------------------- /public/emoji/1f343.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f343.svg -------------------------------------------------------------------------------- /public/emoji/1f344.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f344.svg -------------------------------------------------------------------------------- /public/emoji/1f345.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f345.svg -------------------------------------------------------------------------------- /public/emoji/1f346.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f346.svg -------------------------------------------------------------------------------- /public/emoji/1f347.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f347.svg -------------------------------------------------------------------------------- /public/emoji/1f348.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f348.svg -------------------------------------------------------------------------------- /public/emoji/1f349.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f349.svg -------------------------------------------------------------------------------- /public/emoji/1f34a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f34a.svg -------------------------------------------------------------------------------- /public/emoji/1f34b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f34b.svg -------------------------------------------------------------------------------- /public/emoji/1f34c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f34c.svg -------------------------------------------------------------------------------- /public/emoji/1f34d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f34d.svg -------------------------------------------------------------------------------- /public/emoji/1f34e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f34e.svg -------------------------------------------------------------------------------- /public/emoji/1f34f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f34f.svg -------------------------------------------------------------------------------- /public/emoji/1f350.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f350.svg -------------------------------------------------------------------------------- /public/emoji/1f351.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f351.svg -------------------------------------------------------------------------------- /public/emoji/1f352.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f352.svg -------------------------------------------------------------------------------- /public/emoji/1f353.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f353.svg -------------------------------------------------------------------------------- /public/emoji/1f354.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f354.svg -------------------------------------------------------------------------------- /public/emoji/1f355.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f355.svg -------------------------------------------------------------------------------- /public/emoji/1f356.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f356.svg -------------------------------------------------------------------------------- /public/emoji/1f357.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f357.svg -------------------------------------------------------------------------------- /public/emoji/1f358.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f358.svg -------------------------------------------------------------------------------- /public/emoji/1f359.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f359.svg -------------------------------------------------------------------------------- /public/emoji/1f35a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f35a.svg -------------------------------------------------------------------------------- /public/emoji/1f35b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f35b.svg -------------------------------------------------------------------------------- /public/emoji/1f35c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f35c.svg -------------------------------------------------------------------------------- /public/emoji/1f35d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f35d.svg -------------------------------------------------------------------------------- /public/emoji/1f35e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f35e.svg -------------------------------------------------------------------------------- /public/emoji/1f35f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f35f.svg -------------------------------------------------------------------------------- /public/emoji/1f360.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f360.svg -------------------------------------------------------------------------------- /public/emoji/1f361.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f361.svg -------------------------------------------------------------------------------- /public/emoji/1f362.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f362.svg -------------------------------------------------------------------------------- /public/emoji/1f363.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f363.svg -------------------------------------------------------------------------------- /public/emoji/1f364.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f364.svg -------------------------------------------------------------------------------- /public/emoji/1f365.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f365.svg -------------------------------------------------------------------------------- /public/emoji/1f366.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f366.svg -------------------------------------------------------------------------------- /public/emoji/1f367.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f367.svg -------------------------------------------------------------------------------- /public/emoji/1f368.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f368.svg -------------------------------------------------------------------------------- /public/emoji/1f369.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f369.svg -------------------------------------------------------------------------------- /public/emoji/1f36a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f36a.svg -------------------------------------------------------------------------------- /public/emoji/1f36b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f36b.svg -------------------------------------------------------------------------------- /public/emoji/1f36c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f36c.svg -------------------------------------------------------------------------------- /public/emoji/1f36d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f36d.svg -------------------------------------------------------------------------------- /public/emoji/1f36e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f36e.svg -------------------------------------------------------------------------------- /public/emoji/1f36f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f36f.svg -------------------------------------------------------------------------------- /public/emoji/1f370.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f370.svg -------------------------------------------------------------------------------- /public/emoji/1f371.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f371.svg -------------------------------------------------------------------------------- /public/emoji/1f372.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f372.svg -------------------------------------------------------------------------------- /public/emoji/1f373.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f373.svg -------------------------------------------------------------------------------- /public/emoji/1f374.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f374.svg -------------------------------------------------------------------------------- /public/emoji/1f375.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f375.svg -------------------------------------------------------------------------------- /public/emoji/1f376.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f376.svg -------------------------------------------------------------------------------- /public/emoji/1f377.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f377.svg -------------------------------------------------------------------------------- /public/emoji/1f378.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f378.svg -------------------------------------------------------------------------------- /public/emoji/1f379.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f379.svg -------------------------------------------------------------------------------- /public/emoji/1f37a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f37a.svg -------------------------------------------------------------------------------- /public/emoji/1f37b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f37b.svg -------------------------------------------------------------------------------- /public/emoji/1f37c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f37c.svg -------------------------------------------------------------------------------- /public/emoji/1f37d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f37d.svg -------------------------------------------------------------------------------- /public/emoji/1f37e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f37e.svg -------------------------------------------------------------------------------- /public/emoji/1f37f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f37f.svg -------------------------------------------------------------------------------- /public/emoji/1f380.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f380.svg -------------------------------------------------------------------------------- /public/emoji/1f381.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f381.svg -------------------------------------------------------------------------------- /public/emoji/1f382.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f382.svg -------------------------------------------------------------------------------- /public/emoji/1f383.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f383.svg -------------------------------------------------------------------------------- /public/emoji/1f384.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f384.svg -------------------------------------------------------------------------------- /public/emoji/1f385.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f385.svg -------------------------------------------------------------------------------- /public/emoji/1f386.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f386.svg -------------------------------------------------------------------------------- /public/emoji/1f387.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f387.svg -------------------------------------------------------------------------------- /public/emoji/1f388.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f388.svg -------------------------------------------------------------------------------- /public/emoji/1f389.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f389.svg -------------------------------------------------------------------------------- /public/emoji/1f38a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f38a.svg -------------------------------------------------------------------------------- /public/emoji/1f38b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f38b.svg -------------------------------------------------------------------------------- /public/emoji/1f38c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f38c.svg -------------------------------------------------------------------------------- /public/emoji/1f38d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f38d.svg -------------------------------------------------------------------------------- /public/emoji/1f38e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f38e.svg -------------------------------------------------------------------------------- /public/emoji/1f38f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f38f.svg -------------------------------------------------------------------------------- /public/emoji/1f390.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f390.svg -------------------------------------------------------------------------------- /public/emoji/1f391.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f391.svg -------------------------------------------------------------------------------- /public/emoji/1f392.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f392.svg -------------------------------------------------------------------------------- /public/emoji/1f393.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f393.svg -------------------------------------------------------------------------------- /public/emoji/1f396.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f396.svg -------------------------------------------------------------------------------- /public/emoji/1f397.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f397.svg -------------------------------------------------------------------------------- /public/emoji/1f399.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f399.svg -------------------------------------------------------------------------------- /public/emoji/1f39a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f39a.svg -------------------------------------------------------------------------------- /public/emoji/1f39b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f39b.svg -------------------------------------------------------------------------------- /public/emoji/1f39e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f39e.svg -------------------------------------------------------------------------------- /public/emoji/1f39f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f39f.svg -------------------------------------------------------------------------------- /public/emoji/1f3a0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3a0.svg -------------------------------------------------------------------------------- /public/emoji/1f3a1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3a1.svg -------------------------------------------------------------------------------- /public/emoji/1f3a2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3a2.svg -------------------------------------------------------------------------------- /public/emoji/1f3a3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3a3.svg -------------------------------------------------------------------------------- /public/emoji/1f3a4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3a4.svg -------------------------------------------------------------------------------- /public/emoji/1f3a5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3a5.svg -------------------------------------------------------------------------------- /public/emoji/1f3a6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3a6.svg -------------------------------------------------------------------------------- /public/emoji/1f3a7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3a7.svg -------------------------------------------------------------------------------- /public/emoji/1f3a8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3a8.svg -------------------------------------------------------------------------------- /public/emoji/1f3a9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3a9.svg -------------------------------------------------------------------------------- /public/emoji/1f3aa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3aa.svg -------------------------------------------------------------------------------- /public/emoji/1f3ab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3ab.svg -------------------------------------------------------------------------------- /public/emoji/1f3ac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3ac.svg -------------------------------------------------------------------------------- /public/emoji/1f3ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3ad.svg -------------------------------------------------------------------------------- /public/emoji/1f3ae.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3ae.svg -------------------------------------------------------------------------------- /public/emoji/1f3af.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3af.svg -------------------------------------------------------------------------------- /public/emoji/1f3b0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3b0.svg -------------------------------------------------------------------------------- /public/emoji/1f3b1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3b1.svg -------------------------------------------------------------------------------- /public/emoji/1f3b2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3b2.svg -------------------------------------------------------------------------------- /public/emoji/1f3b3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3b3.svg -------------------------------------------------------------------------------- /public/emoji/1f3b4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3b4.svg -------------------------------------------------------------------------------- /public/emoji/1f3b5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3b5.svg -------------------------------------------------------------------------------- /public/emoji/1f3b6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3b6.svg -------------------------------------------------------------------------------- /public/emoji/1f3b7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3b7.svg -------------------------------------------------------------------------------- /public/emoji/1f3b8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3b8.svg -------------------------------------------------------------------------------- /public/emoji/1f3b9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3b9.svg -------------------------------------------------------------------------------- /public/emoji/1f3ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3ba.svg -------------------------------------------------------------------------------- /public/emoji/1f3bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3bb.svg -------------------------------------------------------------------------------- /public/emoji/1f3bc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3bc.svg -------------------------------------------------------------------------------- /public/emoji/1f3bd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3bd.svg -------------------------------------------------------------------------------- /public/emoji/1f3be.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3be.svg -------------------------------------------------------------------------------- /public/emoji/1f3bf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3bf.svg -------------------------------------------------------------------------------- /public/emoji/1f3c0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3c0.svg -------------------------------------------------------------------------------- /public/emoji/1f3c1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3c1.svg -------------------------------------------------------------------------------- /public/emoji/1f3c2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3c2.svg -------------------------------------------------------------------------------- /public/emoji/1f3c3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3c3.svg -------------------------------------------------------------------------------- /public/emoji/1f3c4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3c4.svg -------------------------------------------------------------------------------- /public/emoji/1f3c5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3c5.svg -------------------------------------------------------------------------------- /public/emoji/1f3c6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3c6.svg -------------------------------------------------------------------------------- /public/emoji/1f3c7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3c7.svg -------------------------------------------------------------------------------- /public/emoji/1f3c8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3c8.svg -------------------------------------------------------------------------------- /public/emoji/1f3c9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3c9.svg -------------------------------------------------------------------------------- /public/emoji/1f3ca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3ca.svg -------------------------------------------------------------------------------- /public/emoji/1f3cb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3cb.svg -------------------------------------------------------------------------------- /public/emoji/1f3cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3cc.svg -------------------------------------------------------------------------------- /public/emoji/1f3cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3cd.svg -------------------------------------------------------------------------------- /public/emoji/1f3ce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3ce.svg -------------------------------------------------------------------------------- /public/emoji/1f3cf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3cf.svg -------------------------------------------------------------------------------- /public/emoji/1f3d0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3d0.svg -------------------------------------------------------------------------------- /public/emoji/1f3d1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3d1.svg -------------------------------------------------------------------------------- /public/emoji/1f3d2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3d2.svg -------------------------------------------------------------------------------- /public/emoji/1f3d3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3d3.svg -------------------------------------------------------------------------------- /public/emoji/1f3d4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3d4.svg -------------------------------------------------------------------------------- /public/emoji/1f3d5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3d5.svg -------------------------------------------------------------------------------- /public/emoji/1f3d6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3d6.svg -------------------------------------------------------------------------------- /public/emoji/1f3d7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3d7.svg -------------------------------------------------------------------------------- /public/emoji/1f3d8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3d8.svg -------------------------------------------------------------------------------- /public/emoji/1f3d9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3d9.svg -------------------------------------------------------------------------------- /public/emoji/1f3da.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3da.svg -------------------------------------------------------------------------------- /public/emoji/1f3db.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3db.svg -------------------------------------------------------------------------------- /public/emoji/1f3dc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3dc.svg -------------------------------------------------------------------------------- /public/emoji/1f3dd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3dd.svg -------------------------------------------------------------------------------- /public/emoji/1f3de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3de.svg -------------------------------------------------------------------------------- /public/emoji/1f3df.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3df.svg -------------------------------------------------------------------------------- /public/emoji/1f3e0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3e0.svg -------------------------------------------------------------------------------- /public/emoji/1f3e1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3e1.svg -------------------------------------------------------------------------------- /public/emoji/1f3e2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3e2.svg -------------------------------------------------------------------------------- /public/emoji/1f3e3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3e3.svg -------------------------------------------------------------------------------- /public/emoji/1f3e4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3e4.svg -------------------------------------------------------------------------------- /public/emoji/1f3e5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3e5.svg -------------------------------------------------------------------------------- /public/emoji/1f3e6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3e6.svg -------------------------------------------------------------------------------- /public/emoji/1f3e7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3e7.svg -------------------------------------------------------------------------------- /public/emoji/1f3e8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3e8.svg -------------------------------------------------------------------------------- /public/emoji/1f3e9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3e9.svg -------------------------------------------------------------------------------- /public/emoji/1f3ea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3ea.svg -------------------------------------------------------------------------------- /public/emoji/1f3eb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3eb.svg -------------------------------------------------------------------------------- /public/emoji/1f3ec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3ec.svg -------------------------------------------------------------------------------- /public/emoji/1f3ed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3ed.svg -------------------------------------------------------------------------------- /public/emoji/1f3ee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3ee.svg -------------------------------------------------------------------------------- /public/emoji/1f3ef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3ef.svg -------------------------------------------------------------------------------- /public/emoji/1f3f0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3f0.svg -------------------------------------------------------------------------------- /public/emoji/1f3f3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3f3.svg -------------------------------------------------------------------------------- /public/emoji/1f3f4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3f4.svg -------------------------------------------------------------------------------- /public/emoji/1f3f5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3f5.svg -------------------------------------------------------------------------------- /public/emoji/1f3f7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3f7.svg -------------------------------------------------------------------------------- /public/emoji/1f3f8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3f8.svg -------------------------------------------------------------------------------- /public/emoji/1f3f9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3f9.svg -------------------------------------------------------------------------------- /public/emoji/1f3fa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3fa.svg -------------------------------------------------------------------------------- /public/emoji/1f3fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3fb.svg -------------------------------------------------------------------------------- /public/emoji/1f3fc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3fc.svg -------------------------------------------------------------------------------- /public/emoji/1f3fd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3fd.svg -------------------------------------------------------------------------------- /public/emoji/1f3fe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3fe.svg -------------------------------------------------------------------------------- /public/emoji/1f3ff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f3ff.svg -------------------------------------------------------------------------------- /public/emoji/1f400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f400.svg -------------------------------------------------------------------------------- /public/emoji/1f401.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f401.svg -------------------------------------------------------------------------------- /public/emoji/1f402.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f402.svg -------------------------------------------------------------------------------- /public/emoji/1f403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f403.svg -------------------------------------------------------------------------------- /public/emoji/1f404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f404.svg -------------------------------------------------------------------------------- /public/emoji/1f405.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f405.svg -------------------------------------------------------------------------------- /public/emoji/1f406.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f406.svg -------------------------------------------------------------------------------- /public/emoji/1f407.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f407.svg -------------------------------------------------------------------------------- /public/emoji/1f408.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f408.svg -------------------------------------------------------------------------------- /public/emoji/1f409.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f409.svg -------------------------------------------------------------------------------- /public/emoji/1f40a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f40a.svg -------------------------------------------------------------------------------- /public/emoji/1f40b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f40b.svg -------------------------------------------------------------------------------- /public/emoji/1f40c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f40c.svg -------------------------------------------------------------------------------- /public/emoji/1f40d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f40d.svg -------------------------------------------------------------------------------- /public/emoji/1f40e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f40e.svg -------------------------------------------------------------------------------- /public/emoji/1f40f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f40f.svg -------------------------------------------------------------------------------- /public/emoji/1f410.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f410.svg -------------------------------------------------------------------------------- /public/emoji/1f411.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f411.svg -------------------------------------------------------------------------------- /public/emoji/1f412.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f412.svg -------------------------------------------------------------------------------- /public/emoji/1f413.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f413.svg -------------------------------------------------------------------------------- /public/emoji/1f414.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f414.svg -------------------------------------------------------------------------------- /public/emoji/1f415.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f415.svg -------------------------------------------------------------------------------- /public/emoji/1f416.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f416.svg -------------------------------------------------------------------------------- /public/emoji/1f417.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f417.svg -------------------------------------------------------------------------------- /public/emoji/1f418.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f418.svg -------------------------------------------------------------------------------- /public/emoji/1f419.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f419.svg -------------------------------------------------------------------------------- /public/emoji/1f41a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f41a.svg -------------------------------------------------------------------------------- /public/emoji/1f41b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f41b.svg -------------------------------------------------------------------------------- /public/emoji/1f41c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f41c.svg -------------------------------------------------------------------------------- /public/emoji/1f41d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f41d.svg -------------------------------------------------------------------------------- /public/emoji/1f41e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f41e.svg -------------------------------------------------------------------------------- /public/emoji/1f41f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f41f.svg -------------------------------------------------------------------------------- /public/emoji/1f420.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f420.svg -------------------------------------------------------------------------------- /public/emoji/1f421.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f421.svg -------------------------------------------------------------------------------- /public/emoji/1f422.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f422.svg -------------------------------------------------------------------------------- /public/emoji/1f423.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f423.svg -------------------------------------------------------------------------------- /public/emoji/1f424.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f424.svg -------------------------------------------------------------------------------- /public/emoji/1f425.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f425.svg -------------------------------------------------------------------------------- /public/emoji/1f426.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f426.svg -------------------------------------------------------------------------------- /public/emoji/1f427.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f427.svg -------------------------------------------------------------------------------- /public/emoji/1f428.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f428.svg -------------------------------------------------------------------------------- /public/emoji/1f429.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f429.svg -------------------------------------------------------------------------------- /public/emoji/1f42a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f42a.svg -------------------------------------------------------------------------------- /public/emoji/1f42b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f42b.svg -------------------------------------------------------------------------------- /public/emoji/1f42c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f42c.svg -------------------------------------------------------------------------------- /public/emoji/1f42d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f42d.svg -------------------------------------------------------------------------------- /public/emoji/1f42e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f42e.svg -------------------------------------------------------------------------------- /public/emoji/1f42f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f42f.svg -------------------------------------------------------------------------------- /public/emoji/1f430.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f430.svg -------------------------------------------------------------------------------- /public/emoji/1f431.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f431.svg -------------------------------------------------------------------------------- /public/emoji/1f432.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f432.svg -------------------------------------------------------------------------------- /public/emoji/1f433.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f433.svg -------------------------------------------------------------------------------- /public/emoji/1f434.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f434.svg -------------------------------------------------------------------------------- /public/emoji/1f435.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f435.svg -------------------------------------------------------------------------------- /public/emoji/1f436.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f436.svg -------------------------------------------------------------------------------- /public/emoji/1f437.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f437.svg -------------------------------------------------------------------------------- /public/emoji/1f438.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f438.svg -------------------------------------------------------------------------------- /public/emoji/1f439.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f439.svg -------------------------------------------------------------------------------- /public/emoji/1f43a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f43a.svg -------------------------------------------------------------------------------- /public/emoji/1f43b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f43b.svg -------------------------------------------------------------------------------- /public/emoji/1f43c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f43c.svg -------------------------------------------------------------------------------- /public/emoji/1f43d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f43d.svg -------------------------------------------------------------------------------- /public/emoji/1f43e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f43e.svg -------------------------------------------------------------------------------- /public/emoji/1f43f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f43f.svg -------------------------------------------------------------------------------- /public/emoji/1f440.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f440.svg -------------------------------------------------------------------------------- /public/emoji/1f441.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f441.svg -------------------------------------------------------------------------------- /public/emoji/1f442.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f442.svg -------------------------------------------------------------------------------- /public/emoji/1f443.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f443.svg -------------------------------------------------------------------------------- /public/emoji/1f444.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f444.svg -------------------------------------------------------------------------------- /public/emoji/1f445.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f445.svg -------------------------------------------------------------------------------- /public/emoji/1f446.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f446.svg -------------------------------------------------------------------------------- /public/emoji/1f447.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f447.svg -------------------------------------------------------------------------------- /public/emoji/1f448.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f448.svg -------------------------------------------------------------------------------- /public/emoji/1f449.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f449.svg -------------------------------------------------------------------------------- /public/emoji/1f44a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f44a.svg -------------------------------------------------------------------------------- /public/emoji/1f44b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f44b.svg -------------------------------------------------------------------------------- /public/emoji/1f44c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f44c.svg -------------------------------------------------------------------------------- /public/emoji/1f44d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f44d.svg -------------------------------------------------------------------------------- /public/emoji/1f44e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f44e.svg -------------------------------------------------------------------------------- /public/emoji/1f44f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f44f.svg -------------------------------------------------------------------------------- /public/emoji/1f450.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f450.svg -------------------------------------------------------------------------------- /public/emoji/1f451.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f451.svg -------------------------------------------------------------------------------- /public/emoji/1f452.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f452.svg -------------------------------------------------------------------------------- /public/emoji/1f453.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f453.svg -------------------------------------------------------------------------------- /public/emoji/1f454.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f454.svg -------------------------------------------------------------------------------- /public/emoji/1f455.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f455.svg -------------------------------------------------------------------------------- /public/emoji/1f456.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f456.svg -------------------------------------------------------------------------------- /public/emoji/1f457.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f457.svg -------------------------------------------------------------------------------- /public/emoji/1f458.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f458.svg -------------------------------------------------------------------------------- /public/emoji/1f459.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f459.svg -------------------------------------------------------------------------------- /public/emoji/1f45a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f45a.svg -------------------------------------------------------------------------------- /public/emoji/1f45b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f45b.svg -------------------------------------------------------------------------------- /public/emoji/1f45c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f45c.svg -------------------------------------------------------------------------------- /public/emoji/1f45d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f45d.svg -------------------------------------------------------------------------------- /public/emoji/1f45e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f45e.svg -------------------------------------------------------------------------------- /public/emoji/1f45f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f45f.svg -------------------------------------------------------------------------------- /public/emoji/1f460.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f460.svg -------------------------------------------------------------------------------- /public/emoji/1f461.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f461.svg -------------------------------------------------------------------------------- /public/emoji/1f462.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f462.svg -------------------------------------------------------------------------------- /public/emoji/1f463.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f463.svg -------------------------------------------------------------------------------- /public/emoji/1f464.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f464.svg -------------------------------------------------------------------------------- /public/emoji/1f465.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f465.svg -------------------------------------------------------------------------------- /public/emoji/1f466.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f466.svg -------------------------------------------------------------------------------- /public/emoji/1f467.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f467.svg -------------------------------------------------------------------------------- /public/emoji/1f468.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f468.svg -------------------------------------------------------------------------------- /public/emoji/1f469.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f469.svg -------------------------------------------------------------------------------- /public/emoji/1f46a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f46a.svg -------------------------------------------------------------------------------- /public/emoji/1f46b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f46b.svg -------------------------------------------------------------------------------- /public/emoji/1f46c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f46c.svg -------------------------------------------------------------------------------- /public/emoji/1f46d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f46d.svg -------------------------------------------------------------------------------- /public/emoji/1f46e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f46e.svg -------------------------------------------------------------------------------- /public/emoji/1f46f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f46f.svg -------------------------------------------------------------------------------- /public/emoji/1f470.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f470.svg -------------------------------------------------------------------------------- /public/emoji/1f471.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f471.svg -------------------------------------------------------------------------------- /public/emoji/1f472.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f472.svg -------------------------------------------------------------------------------- /public/emoji/1f473.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f473.svg -------------------------------------------------------------------------------- /public/emoji/1f474.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f474.svg -------------------------------------------------------------------------------- /public/emoji/1f475.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f475.svg -------------------------------------------------------------------------------- /public/emoji/1f476.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f476.svg -------------------------------------------------------------------------------- /public/emoji/1f477.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f477.svg -------------------------------------------------------------------------------- /public/emoji/1f478.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f478.svg -------------------------------------------------------------------------------- /public/emoji/1f479.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f479.svg -------------------------------------------------------------------------------- /public/emoji/1f47a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f47a.svg -------------------------------------------------------------------------------- /public/emoji/1f47b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f47b.svg -------------------------------------------------------------------------------- /public/emoji/1f47c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f47c.svg -------------------------------------------------------------------------------- /public/emoji/1f47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f47d.svg -------------------------------------------------------------------------------- /public/emoji/1f47e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f47e.svg -------------------------------------------------------------------------------- /public/emoji/1f47f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f47f.svg -------------------------------------------------------------------------------- /public/emoji/1f480.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f480.svg -------------------------------------------------------------------------------- /public/emoji/1f481.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f481.svg -------------------------------------------------------------------------------- /public/emoji/1f482.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f482.svg -------------------------------------------------------------------------------- /public/emoji/1f483.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f483.svg -------------------------------------------------------------------------------- /public/emoji/1f484.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f484.svg -------------------------------------------------------------------------------- /public/emoji/1f485.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f485.svg -------------------------------------------------------------------------------- /public/emoji/1f486.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f486.svg -------------------------------------------------------------------------------- /public/emoji/1f487.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f487.svg -------------------------------------------------------------------------------- /public/emoji/1f488.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f488.svg -------------------------------------------------------------------------------- /public/emoji/1f489.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f489.svg -------------------------------------------------------------------------------- /public/emoji/1f48a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f48a.svg -------------------------------------------------------------------------------- /public/emoji/1f48b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f48b.svg -------------------------------------------------------------------------------- /public/emoji/1f48c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f48c.svg -------------------------------------------------------------------------------- /public/emoji/1f48d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f48d.svg -------------------------------------------------------------------------------- /public/emoji/1f48e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f48e.svg -------------------------------------------------------------------------------- /public/emoji/1f48f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f48f.svg -------------------------------------------------------------------------------- /public/emoji/1f490.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f490.svg -------------------------------------------------------------------------------- /public/emoji/1f491.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f491.svg -------------------------------------------------------------------------------- /public/emoji/1f492.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f492.svg -------------------------------------------------------------------------------- /public/emoji/1f493.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f493.svg -------------------------------------------------------------------------------- /public/emoji/1f494.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f494.svg -------------------------------------------------------------------------------- /public/emoji/1f495.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f495.svg -------------------------------------------------------------------------------- /public/emoji/1f496.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f496.svg -------------------------------------------------------------------------------- /public/emoji/1f497.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f497.svg -------------------------------------------------------------------------------- /public/emoji/1f498.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f498.svg -------------------------------------------------------------------------------- /public/emoji/1f499.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f499.svg -------------------------------------------------------------------------------- /public/emoji/1f49a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f49a.svg -------------------------------------------------------------------------------- /public/emoji/1f49b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f49b.svg -------------------------------------------------------------------------------- /public/emoji/1f49c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f49c.svg -------------------------------------------------------------------------------- /public/emoji/1f49d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f49d.svg -------------------------------------------------------------------------------- /public/emoji/1f49e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f49e.svg -------------------------------------------------------------------------------- /public/emoji/1f49f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f49f.svg -------------------------------------------------------------------------------- /public/emoji/1f4a0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4a0.svg -------------------------------------------------------------------------------- /public/emoji/1f4a1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4a1.svg -------------------------------------------------------------------------------- /public/emoji/1f4a2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4a2.svg -------------------------------------------------------------------------------- /public/emoji/1f4a3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4a3.svg -------------------------------------------------------------------------------- /public/emoji/1f4a4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4a4.svg -------------------------------------------------------------------------------- /public/emoji/1f4a5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4a5.svg -------------------------------------------------------------------------------- /public/emoji/1f4a6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4a6.svg -------------------------------------------------------------------------------- /public/emoji/1f4a7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4a7.svg -------------------------------------------------------------------------------- /public/emoji/1f4a8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4a8.svg -------------------------------------------------------------------------------- /public/emoji/1f4a9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4a9.svg -------------------------------------------------------------------------------- /public/emoji/1f4aa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4aa.svg -------------------------------------------------------------------------------- /public/emoji/1f4ab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4ab.svg -------------------------------------------------------------------------------- /public/emoji/1f4ac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4ac.svg -------------------------------------------------------------------------------- /public/emoji/1f4ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4ad.svg -------------------------------------------------------------------------------- /public/emoji/1f4ae.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4ae.svg -------------------------------------------------------------------------------- /public/emoji/1f4af.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4af.svg -------------------------------------------------------------------------------- /public/emoji/1f4b0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4b0.svg -------------------------------------------------------------------------------- /public/emoji/1f4b1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4b1.svg -------------------------------------------------------------------------------- /public/emoji/1f4b2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4b2.svg -------------------------------------------------------------------------------- /public/emoji/1f4b3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4b3.svg -------------------------------------------------------------------------------- /public/emoji/1f4b4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4b4.svg -------------------------------------------------------------------------------- /public/emoji/1f4b5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4b5.svg -------------------------------------------------------------------------------- /public/emoji/1f4b6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4b6.svg -------------------------------------------------------------------------------- /public/emoji/1f4b7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4b7.svg -------------------------------------------------------------------------------- /public/emoji/1f4b8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4b8.svg -------------------------------------------------------------------------------- /public/emoji/1f4b9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4b9.svg -------------------------------------------------------------------------------- /public/emoji/1f4ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4ba.svg -------------------------------------------------------------------------------- /public/emoji/1f4bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4bb.svg -------------------------------------------------------------------------------- /public/emoji/1f4bc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4bc.svg -------------------------------------------------------------------------------- /public/emoji/1f4bd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4bd.svg -------------------------------------------------------------------------------- /public/emoji/1f4be.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4be.svg -------------------------------------------------------------------------------- /public/emoji/1f4bf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4bf.svg -------------------------------------------------------------------------------- /public/emoji/1f4c0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4c0.svg -------------------------------------------------------------------------------- /public/emoji/1f4c1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4c1.svg -------------------------------------------------------------------------------- /public/emoji/1f4c2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4c2.svg -------------------------------------------------------------------------------- /public/emoji/1f4c3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4c3.svg -------------------------------------------------------------------------------- /public/emoji/1f4c4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4c4.svg -------------------------------------------------------------------------------- /public/emoji/1f4c5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4c5.svg -------------------------------------------------------------------------------- /public/emoji/1f4c6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4c6.svg -------------------------------------------------------------------------------- /public/emoji/1f4c7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4c7.svg -------------------------------------------------------------------------------- /public/emoji/1f4c8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4c8.svg -------------------------------------------------------------------------------- /public/emoji/1f4c9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4c9.svg -------------------------------------------------------------------------------- /public/emoji/1f4ca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4ca.svg -------------------------------------------------------------------------------- /public/emoji/1f4cb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4cb.svg -------------------------------------------------------------------------------- /public/emoji/1f4cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4cc.svg -------------------------------------------------------------------------------- /public/emoji/1f4cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4cd.svg -------------------------------------------------------------------------------- /public/emoji/1f4ce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4ce.svg -------------------------------------------------------------------------------- /public/emoji/1f4cf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4cf.svg -------------------------------------------------------------------------------- /public/emoji/1f4d0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4d0.svg -------------------------------------------------------------------------------- /public/emoji/1f4d1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4d1.svg -------------------------------------------------------------------------------- /public/emoji/1f4d2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4d2.svg -------------------------------------------------------------------------------- /public/emoji/1f4d3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4d3.svg -------------------------------------------------------------------------------- /public/emoji/1f4d4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4d4.svg -------------------------------------------------------------------------------- /public/emoji/1f4d5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4d5.svg -------------------------------------------------------------------------------- /public/emoji/1f4d6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4d6.svg -------------------------------------------------------------------------------- /public/emoji/1f4d7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4d7.svg -------------------------------------------------------------------------------- /public/emoji/1f4d8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4d8.svg -------------------------------------------------------------------------------- /public/emoji/1f4d9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4d9.svg -------------------------------------------------------------------------------- /public/emoji/1f4da.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4da.svg -------------------------------------------------------------------------------- /public/emoji/1f4db.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4db.svg -------------------------------------------------------------------------------- /public/emoji/1f4dc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4dc.svg -------------------------------------------------------------------------------- /public/emoji/1f4dd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4dd.svg -------------------------------------------------------------------------------- /public/emoji/1f4de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4de.svg -------------------------------------------------------------------------------- /public/emoji/1f4df.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4df.svg -------------------------------------------------------------------------------- /public/emoji/1f4e0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4e0.svg -------------------------------------------------------------------------------- /public/emoji/1f4e1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4e1.svg -------------------------------------------------------------------------------- /public/emoji/1f4e2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4e2.svg -------------------------------------------------------------------------------- /public/emoji/1f4e3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4e3.svg -------------------------------------------------------------------------------- /public/emoji/1f4e4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4e4.svg -------------------------------------------------------------------------------- /public/emoji/1f4e5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4e5.svg -------------------------------------------------------------------------------- /public/emoji/1f4e6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4e6.svg -------------------------------------------------------------------------------- /public/emoji/1f4e7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4e7.svg -------------------------------------------------------------------------------- /public/emoji/1f4e8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4e8.svg -------------------------------------------------------------------------------- /public/emoji/1f4e9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4e9.svg -------------------------------------------------------------------------------- /public/emoji/1f4ea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4ea.svg -------------------------------------------------------------------------------- /public/emoji/1f4eb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4eb.svg -------------------------------------------------------------------------------- /public/emoji/1f4ec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4ec.svg -------------------------------------------------------------------------------- /public/emoji/1f4ed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4ed.svg -------------------------------------------------------------------------------- /public/emoji/1f4ee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4ee.svg -------------------------------------------------------------------------------- /public/emoji/1f4ef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4ef.svg -------------------------------------------------------------------------------- /public/emoji/1f4f0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4f0.svg -------------------------------------------------------------------------------- /public/emoji/1f4f1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4f1.svg -------------------------------------------------------------------------------- /public/emoji/1f4f2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4f2.svg -------------------------------------------------------------------------------- /public/emoji/1f4f3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4f3.svg -------------------------------------------------------------------------------- /public/emoji/1f4f4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4f4.svg -------------------------------------------------------------------------------- /public/emoji/1f4f5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4f5.svg -------------------------------------------------------------------------------- /public/emoji/1f4f6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4f6.svg -------------------------------------------------------------------------------- /public/emoji/1f4f7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4f7.svg -------------------------------------------------------------------------------- /public/emoji/1f4f8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4f8.svg -------------------------------------------------------------------------------- /public/emoji/1f4f9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4f9.svg -------------------------------------------------------------------------------- /public/emoji/1f4fa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4fa.svg -------------------------------------------------------------------------------- /public/emoji/1f4fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4fb.svg -------------------------------------------------------------------------------- /public/emoji/1f4fc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4fc.svg -------------------------------------------------------------------------------- /public/emoji/1f4fd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4fd.svg -------------------------------------------------------------------------------- /public/emoji/1f4ff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f4ff.svg -------------------------------------------------------------------------------- /public/emoji/1f500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f500.svg -------------------------------------------------------------------------------- /public/emoji/1f501.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f501.svg -------------------------------------------------------------------------------- /public/emoji/1f502.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f502.svg -------------------------------------------------------------------------------- /public/emoji/1f503.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f503.svg -------------------------------------------------------------------------------- /public/emoji/1f504.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f504.svg -------------------------------------------------------------------------------- /public/emoji/1f505.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f505.svg -------------------------------------------------------------------------------- /public/emoji/1f506.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f506.svg -------------------------------------------------------------------------------- /public/emoji/1f507.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f507.svg -------------------------------------------------------------------------------- /public/emoji/1f508.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f508.svg -------------------------------------------------------------------------------- /public/emoji/1f509.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f509.svg -------------------------------------------------------------------------------- /public/emoji/1f50a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f50a.svg -------------------------------------------------------------------------------- /public/emoji/1f50b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f50b.svg -------------------------------------------------------------------------------- /public/emoji/1f50c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/1f50c.svg -------------------------------------------------------------------------------- /public/emoji/a9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/a9.svg -------------------------------------------------------------------------------- /public/emoji/ae.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/emoji/ae.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/inert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/inert.css -------------------------------------------------------------------------------- /public/mask-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/mask-icon.svg -------------------------------------------------------------------------------- /public/oops.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/oops.gif -------------------------------------------------------------------------------- /public/oops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/oops.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- 1 | packs/sw.js -------------------------------------------------------------------------------- /public/sw.js.map: -------------------------------------------------------------------------------- 1 | packs/sw.js.map -------------------------------------------------------------------------------- /scalingo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/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/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /streaming/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/streaming/index.js -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveilles/merveilles-town/HEAD/yarn.lock --------------------------------------------------------------------------------