├── .claude ├── docs │ ├── DATABASE.md │ ├── OAUTH2.md │ ├── TESTING.md │ ├── TROUBLESHOOTING.md │ └── WORKFLOWS.md ├── scripts │ └── format.sh └── settings.json ├── .cursorrules ├── .devcontainer ├── devcontainer.json ├── filebrowser │ ├── devcontainer-feature.json │ └── install.sh └── scripts │ ├── post_create.sh │ └── post_start.sh ├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── .linkspector.yml ├── ISSUE_TEMPLATE │ ├── 1-bug.yaml │ └── config.yml ├── actions │ ├── embedded-pg-cache │ │ ├── download │ │ │ └── action.yml │ │ └── upload │ │ │ └── action.yml │ ├── install-cosign │ │ └── action.yaml │ ├── install-syft │ │ └── action.yaml │ ├── setup-embedded-pg-cache-paths │ │ └── action.yml │ ├── setup-go-paths │ │ └── action.yml │ ├── setup-go-tools │ │ └── action.yaml │ ├── setup-go │ │ └── action.yaml │ ├── setup-node │ │ └── action.yaml │ ├── setup-sqlc │ │ └── action.yaml │ ├── setup-tf │ │ └── action.yaml │ ├── test-cache │ │ ├── download │ │ │ └── action.yml │ │ └── upload │ │ │ └── action.yml │ └── upload-datadog │ │ └── action.yaml ├── cherry-pick-bot.yml ├── dependabot.yaml ├── fly-wsproxies │ ├── jnb-coder.toml │ ├── paris-coder.toml │ ├── sao-paulo-coder.toml │ └── sydney-coder.toml ├── pr-deployments │ ├── certificate.yaml │ ├── rbac.yaml │ ├── template │ │ └── main.tf │ └── values.yaml └── workflows │ ├── ci.yaml │ ├── contrib.yaml │ ├── dependabot.yaml │ ├── docker-base.yaml │ ├── docs-ci.yaml │ ├── dogfood.yaml │ ├── pr-auto-assign.yaml │ ├── pr-cleanup.yaml │ ├── pr-deploy.yaml │ ├── release-validation.yaml │ ├── release.yaml │ ├── scorecard.yml │ ├── security.yaml │ ├── stale.yaml │ ├── start-workspace.yaml │ ├── typos.toml │ └── weekly-docs.yaml ├── .gitignore ├── .golangci.yaml ├── .markdownlint.jsonc ├── .mcp.json ├── .prettierrc.yaml ├── .swaggo ├── .vscode ├── extensions.json ├── markdown.code-snippets └── settings.json ├── CLAUDE.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE.enterprise ├── Makefile ├── README.md ├── SECURITY.md ├── agent ├── agent.go ├── agent_test.go ├── agentcontainers │ ├── acmock │ │ ├── acmock.go │ │ └── doc.go │ ├── api.go │ ├── api_internal_test.go │ ├── api_test.go │ ├── containers.go │ ├── containers_dockercli.go │ ├── containers_dockercli_test.go │ ├── containers_internal_test.go │ ├── containers_test.go │ ├── dcspec │ │ ├── dcspec_gen.go │ │ ├── dcspec_test.go │ │ ├── devContainer.base.schema.json │ │ ├── doc.go │ │ ├── gen.sh │ │ └── testdata │ │ │ ├── arrays.json │ │ │ ├── devcontainers-template-starter.json │ │ │ └── minimal.json │ ├── devcontainer.go │ ├── devcontainercli.go │ ├── devcontainercli_test.go │ ├── execer.go │ ├── subagent.go │ ├── subagent_test.go │ ├── testdata │ │ ├── container_binds │ │ │ └── docker_inspect.json │ │ ├── container_differentport │ │ │ └── docker_inspect.json │ │ ├── container_labels │ │ │ └── docker_inspect.json │ │ ├── container_sameport │ │ │ └── docker_inspect.json │ │ ├── container_sameportdiffip │ │ │ └── docker_inspect.json │ │ ├── container_simple │ │ │ └── docker_inspect.json │ │ ├── container_volume │ │ │ └── docker_inspect.json │ │ ├── devcontainer_appport │ │ │ └── docker_inspect.json │ │ ├── devcontainer_forwardport │ │ │ └── docker_inspect.json │ │ ├── devcontainer_simple │ │ │ └── docker_inspect.json │ │ └── devcontainercli │ │ │ ├── parse │ │ │ ├── up-already-exists.log │ │ │ ├── up-error-bad-outcome.log │ │ │ ├── up-error-docker.log │ │ │ ├── up-error-does-not-exist.log │ │ │ ├── up-remove-existing.log │ │ │ ├── up.golden │ │ │ └── up.log │ │ │ └── readconfig │ │ │ ├── read-config-error-not-found.log │ │ │ ├── read-config-with-coder-customization.log │ │ │ └── read-config-without-coder-customization.log │ └── watcher │ │ ├── noop.go │ │ ├── noop_test.go │ │ ├── watcher.go │ │ └── watcher_test.go ├── agentexec │ ├── cli_linux.go │ ├── cli_linux_test.go │ ├── cli_other.go │ ├── cmdtest │ │ └── main_linux.go │ ├── exec.go │ ├── exec_internal_test.go │ └── main_linux_test.go ├── agentrsa │ ├── key.go │ └── key_test.go ├── agentscripts │ ├── agentscripts.go │ ├── agentscripts_other.go │ ├── agentscripts_test.go │ └── agentscripts_windows.go ├── agentssh │ ├── agentssh.go │ ├── agentssh_internal_test.go │ ├── agentssh_test.go │ ├── bicopy.go │ ├── exec_other.go │ ├── exec_windows.go │ ├── forward.go │ ├── jetbrainstrack.go │ ├── metrics.go │ ├── portinspection_supported.go │ ├── portinspection_unsupported.go │ ├── signal_other.go │ ├── signal_windows.go │ ├── x11.go │ ├── x11_internal_test.go │ └── x11_test.go ├── agenttest │ ├── agent.go │ └── client.go ├── api.go ├── apphealth.go ├── apphealth_test.go ├── checkpoint.go ├── checkpoint_internal_test.go ├── health.go ├── ls.go ├── ls_internal_test.go ├── metrics.go ├── ports_supported.go ├── ports_unsupported.go ├── proto │ ├── agent.pb.go │ ├── agent.proto │ ├── agent_drpc.pb.go │ ├── agent_drpc_old.go │ ├── compare.go │ ├── compare_test.go │ ├── resourcesmonitor │ │ ├── fetcher.go │ │ ├── fetcher_test.go │ │ ├── queue.go │ │ ├── queue_test.go │ │ ├── resources_monitor.go │ │ └── resources_monitor_test.go │ └── version.go ├── reaper │ ├── doc.go │ ├── reaper.go │ ├── reaper_stub.go │ ├── reaper_test.go │ └── reaper_unix.go ├── reconnectingpty │ ├── buffered.go │ ├── reconnectingpty.go │ ├── screen.go │ └── server.go ├── stats.go ├── stats_internal_test.go └── usershell │ ├── usershell.go │ ├── usershell_darwin.go │ ├── usershell_other.go │ ├── usershell_test.go │ └── usershell_windows.go ├── apiversion ├── apiversion.go ├── apiversion_test.go └── doc.go ├── archive ├── archive.go ├── archive_test.go ├── archivetest │ ├── archivetest.go │ └── testdata │ │ ├── test.tar │ │ └── test.zip └── fs │ ├── tar.go │ └── zip.go ├── buildinfo ├── boring.go ├── buildinfo.go ├── buildinfo_site.go ├── buildinfo_slim.go ├── buildinfo_test.go ├── notboring.go └── resources │ ├── .gitignore │ └── resources.go ├── cli ├── agent.go ├── agent_internal_test.go ├── agent_test.go ├── autoupdate.go ├── autoupdate_test.go ├── clilog │ ├── clilog.go │ ├── clilog_test.go │ └── doc.go ├── clitest │ ├── clitest.go │ ├── clitest_test.go │ ├── golden.go │ ├── handlers.go │ └── signal.go ├── cliui │ ├── agent.go │ ├── agent_test.go │ ├── cliui.go │ ├── deprecation.go │ ├── externalauth.go │ ├── externalauth_test.go │ ├── filter.go │ ├── log.go │ ├── output.go │ ├── output_test.go │ ├── parameter.go │ ├── prompt.go │ ├── prompt_test.go │ ├── provisionerjob.go │ ├── provisionerjob_test.go │ ├── resources.go │ ├── resources_internal_test.go │ ├── resources_test.go │ ├── select.go │ ├── select_test.go │ ├── table.go │ └── table_test.go ├── cliutil │ ├── awscheck.go │ ├── awscheck_internal_test.go │ ├── hostname.go │ ├── levenshtein │ │ ├── levenshtein.go │ │ └── levenshtein_test.go │ ├── license.go │ ├── provisionerwarn.go │ ├── provisionerwarn_test.go │ ├── queue.go │ ├── queue_test.go │ ├── sink.go │ └── sink_test.go ├── completion.go ├── config │ ├── file.go │ ├── file_test.go │ └── server.yaml ├── configssh.go ├── configssh_internal_test.go ├── configssh_other.go ├── configssh_test.go ├── configssh_windows.go ├── connect.go ├── connect_test.go ├── create.go ├── create_test.go ├── delete.go ├── delete_test.go ├── dotfiles.go ├── dotfiles_other.go ├── dotfiles_test.go ├── dotfiles_windows.go ├── exp.go ├── exp_errors.go ├── exp_errors_test.go ├── exp_mcp.go ├── exp_mcp_test.go ├── exp_prompts.go ├── exp_rpty.go ├── exp_rpty_test.go ├── exp_scaletest.go ├── exp_scaletest_slim.go ├── exp_scaletest_test.go ├── exptest │ └── exptest_scaletest_test.go ├── externalauth.go ├── externalauth_test.go ├── favorite.go ├── favorite_test.go ├── gitaskpass.go ├── gitaskpass_test.go ├── gitauth │ ├── askpass.go │ ├── askpass_test.go │ ├── vscode.go │ └── vscode_test.go ├── gitssh.go ├── gitssh_test.go ├── help.go ├── help.tpl ├── list.go ├── list_test.go ├── login.go ├── login_test.go ├── logout.go ├── logout_test.go ├── netcheck.go ├── netcheck_test.go ├── notifications.go ├── notifications_test.go ├── open.go ├── open_internal_test.go ├── open_test.go ├── organization.go ├── organization_test.go ├── organizationmanage.go ├── organizationmembers.go ├── organizationmembers_test.go ├── organizationroles.go ├── organizationroles_test.go ├── organizationsettings.go ├── parameter.go ├── parameter_internal_test.go ├── parameterresolver.go ├── ping.go ├── ping_internal_test.go ├── ping_test.go ├── portforward.go ├── portforward_internal_test.go ├── portforward_test.go ├── provisionerjobs.go ├── provisionerjobs_test.go ├── provisioners.go ├── provisioners_test.go ├── publickey.go ├── publickey_test.go ├── remoteforward.go ├── rename.go ├── rename_test.go ├── resetpassword.go ├── resetpassword_slim.go ├── resetpassword_test.go ├── restart.go ├── restart_test.go ├── root.go ├── root_internal_test.go ├── root_test.go ├── schedule.go ├── schedule_internal_test.go ├── schedule_test.go ├── server.go ├── server_createadminuser.go ├── server_createadminuser_test.go ├── server_internal_test.go ├── server_regenerate_vapid_keypair.go ├── server_regenerate_vapid_keypair_test.go ├── server_slim.go ├── server_test.go ├── show.go ├── show_test.go ├── signal_unix.go ├── signal_windows.go ├── speedtest.go ├── speedtest_test.go ├── ssh.go ├── ssh_internal_test.go ├── ssh_other.go ├── ssh_test.go ├── ssh_windows.go ├── start.go ├── start_test.go ├── stat.go ├── stat_test.go ├── state.go ├── state_test.go ├── stop.go ├── support.go ├── support_test.go ├── telemetry │ └── telemetry.go ├── templatecreate.go ├── templatecreate_test.go ├── templatedelete.go ├── templatedelete_test.go ├── templateedit.go ├── templateedit_test.go ├── templateinit.go ├── templateinit_test.go ├── templatelist.go ├── templatelist_test.go ├── templatepull.go ├── templatepull_test.go ├── templatepush.go ├── templatepush_test.go ├── templates.go ├── templateversionarchive.go ├── templateversionarchive_test.go ├── templateversions.go ├── templateversions_test.go ├── testdata │ ├── TestProvisioners_Golden │ │ ├── jobs_list.golden │ │ └── list.golden │ ├── TestShowDevcontainers_Golden │ │ ├── error_devcontainer.golden │ │ ├── long_error_message.golden │ │ ├── long_error_message_with_detail.golden │ │ ├── mixed_devcontainer_states.golden │ │ ├── running_devcontainer_with_agent.golden │ │ ├── running_devcontainer_with_agent_and_error.golden │ │ ├── running_devcontainer_without_agent.golden │ │ ├── starting_devcontainer.golden │ │ └── stopped_devcontainer.golden │ ├── coder_--help.golden │ ├── coder_agent_--help.golden │ ├── coder_autoupdate_--help.golden │ ├── coder_completion_--help.golden │ ├── coder_config-ssh_--help.golden │ ├── coder_create_--help.golden │ ├── coder_delete_--help.golden │ ├── coder_dotfiles_--help.golden │ ├── coder_exp_example-error_api.golden │ ├── coder_exp_example-error_arg-required.golden │ ├── coder_exp_example-error_cmd.golden │ ├── coder_exp_example-error_multi-error.golden │ ├── coder_exp_example-error_multi-multi-error.golden │ ├── coder_exp_example-error_validation.golden │ ├── coder_external-auth_--help.golden │ ├── coder_external-auth_access-token_--help.golden │ ├── coder_favorite_--help.golden │ ├── coder_list_--help.golden │ ├── coder_list_--output_json.golden │ ├── coder_login_--help.golden │ ├── coder_logout_--help.golden │ ├── coder_netcheck_--help.golden │ ├── coder_notifications_--help.golden │ ├── coder_notifications_pause_--help.golden │ ├── coder_notifications_resume_--help.golden │ ├── coder_notifications_test_--help.golden │ ├── coder_open_--help.golden │ ├── coder_open_app_--help.golden │ ├── coder_open_vscode_--help.golden │ ├── coder_organizations_--help.golden │ ├── coder_organizations_create_--help.golden │ ├── coder_organizations_members_--help.golden │ ├── coder_organizations_members_add_--help.golden │ ├── coder_organizations_members_edit-roles_--help.golden │ ├── coder_organizations_members_list_--help.golden │ ├── coder_organizations_members_remove_--help.golden │ ├── coder_organizations_roles_--help.golden │ ├── coder_organizations_roles_create_--help.golden │ ├── coder_organizations_roles_show_--help.golden │ ├── coder_organizations_roles_update_--help.golden │ ├── coder_organizations_settings_--help.golden │ ├── coder_organizations_settings_set_--help.golden │ ├── coder_organizations_settings_set_--help_--help.golden │ ├── coder_organizations_settings_show_--help.golden │ ├── coder_organizations_settings_show_--help_--help.golden │ ├── coder_organizations_show_--help.golden │ ├── coder_ping_--help.golden │ ├── coder_port-forward_--help.golden │ ├── coder_provisioner_--help.golden │ ├── coder_provisioner_jobs_--help.golden │ ├── coder_provisioner_jobs_cancel_--help.golden │ ├── coder_provisioner_jobs_list.golden │ ├── coder_provisioner_jobs_list_--help.golden │ ├── coder_provisioner_jobs_list_--output_json.golden │ ├── coder_provisioner_list.golden │ ├── coder_provisioner_list_--help.golden │ ├── coder_provisioner_list_--output_json.golden │ ├── coder_publickey_--help.golden │ ├── coder_rename_--help.golden │ ├── coder_reset-password_--help.golden │ ├── coder_restart_--help.golden │ ├── coder_schedule_--help.golden │ ├── coder_schedule_extend_--help.golden │ ├── coder_schedule_show_--help.golden │ ├── coder_schedule_start_--help.golden │ ├── coder_schedule_stop_--help.golden │ ├── coder_server_--help.golden │ ├── coder_server_create-admin-user_--help.golden │ ├── coder_server_postgres-builtin-serve_--help.golden │ ├── coder_server_postgres-builtin-url_--help.golden │ ├── coder_show_--help.golden │ ├── coder_speedtest_--help.golden │ ├── coder_ssh_--help.golden │ ├── coder_start_--help.golden │ ├── coder_stat_--help.golden │ ├── coder_stat_cpu_--help.golden │ ├── coder_stat_disk_--help.golden │ ├── coder_stat_mem_--help.golden │ ├── coder_state_--help.golden │ ├── coder_state_pull_--help.golden │ ├── coder_state_push_--help.golden │ ├── coder_stop_--help.golden │ ├── coder_support_--help.golden │ ├── coder_support_bundle_--help.golden │ ├── coder_templates_--help.golden │ ├── coder_templates_archive_--help.golden │ ├── coder_templates_create_--help.golden │ ├── coder_templates_delete_--help.golden │ ├── coder_templates_edit_--help.golden │ ├── coder_templates_init_--help.golden │ ├── coder_templates_list_--help.golden │ ├── coder_templates_pull_--help.golden │ ├── coder_templates_push_--help.golden │ ├── coder_templates_versions_--help.golden │ ├── coder_templates_versions_archive_--help.golden │ ├── coder_templates_versions_list_--help.golden │ ├── coder_templates_versions_promote_--help.golden │ ├── coder_templates_versions_unarchive_--help.golden │ ├── coder_tokens_--help.golden │ ├── coder_tokens_create_--help.golden │ ├── coder_tokens_list_--help.golden │ ├── coder_tokens_remove_--help.golden │ ├── coder_unfavorite_--help.golden │ ├── coder_update_--help.golden │ ├── coder_users_--help.golden │ ├── coder_users_activate_--help.golden │ ├── coder_users_create_--help.golden │ ├── coder_users_delete_--help.golden │ ├── coder_users_edit-roles_--help.golden │ ├── coder_users_list.golden │ ├── coder_users_list_--help.golden │ ├── coder_users_list_--output_json.golden │ ├── coder_users_show_--help.golden │ ├── coder_users_suspend_--help.golden │ ├── coder_version_--help.golden │ ├── coder_whoami_--help.golden │ └── server-config.yaml.golden ├── tokens.go ├── tokens_test.go ├── update.go ├── update_test.go ├── user_delete_test.go ├── usercreate.go ├── usercreate_test.go ├── userdelete.go ├── usereditroles.go ├── usereditroles_test.go ├── userlist.go ├── userlist_test.go ├── users.go ├── userstatus.go ├── userstatus_test.go ├── util.go ├── util_internal_test.go ├── version.go ├── version_test.go ├── vpndaemon.go ├── vpndaemon_other.go ├── vpndaemon_windows.go ├── vpndaemon_windows_test.go ├── vscodessh.go ├── vscodessh_test.go ├── whoami.go └── whoami_test.go ├── cmd ├── cliui │ └── main.go └── coder │ ├── .gitignore │ └── main.go ├── coder.env ├── coderd ├── activitybump_test.go ├── agentapi │ ├── announcement_banners.go │ ├── announcement_banners_internal_test.go │ ├── api.go │ ├── apps.go │ ├── apps_test.go │ ├── connectionlog.go │ ├── connectionlog_test.go │ ├── lifecycle.go │ ├── lifecycle_test.go │ ├── logs.go │ ├── logs_test.go │ ├── manifest.go │ ├── manifest_internal_test.go │ ├── manifest_test.go │ ├── metadata.go │ ├── metadata_test.go │ ├── resources_monitoring.go │ ├── resources_monitoring_test.go │ ├── resourcesmonitor │ │ └── resources_monitor.go │ ├── scripts.go │ ├── scripts_test.go │ ├── stats.go │ ├── stats_test.go │ ├── subagent.go │ └── subagent_test.go ├── agentmetrics │ ├── labels.go │ └── labels_test.go ├── aitasks.go ├── aitasks_test.go ├── apidoc │ ├── docs.go │ └── swagger.json ├── apikey.go ├── apikey │ ├── apikey.go │ └── apikey_test.go ├── apikey_test.go ├── apiroot.go ├── appearance │ └── appearance.go ├── audit.go ├── audit │ ├── audit.go │ ├── diff.go │ ├── fields.go │ ├── request.go │ └── request_test.go ├── audit_internal_test.go ├── audit_test.go ├── authorize.go ├── authorize_test.go ├── autobuild │ ├── doc.go │ ├── lifecycle_executor.go │ ├── lifecycle_executor_internal_test.go │ ├── lifecycle_executor_test.go │ └── notify │ │ ├── notifier.go │ │ └── notifier_test.go ├── awsidentity │ ├── awsidentity.go │ └── awsidentity_test.go ├── azureidentity │ ├── azureidentity.go │ ├── azureidentity_test.go │ └── generate.sh ├── client_test.go ├── coderd.go ├── coderd_internal_test.go ├── coderd_test.go ├── coderdtest │ ├── authorize.go │ ├── authorize_test.go │ ├── coderdtest.go │ ├── coderdtest_test.go │ ├── dynamicparameters.go │ ├── oidctest │ │ ├── helper.go │ │ ├── idp.go │ │ └── idp_test.go │ ├── promhelp │ │ ├── doc.go │ │ └── metrics.go │ ├── stream.go │ ├── swagger_test.go │ ├── swaggerparser.go │ ├── testjar │ │ └── cookiejar.go │ ├── uuids.go │ └── uuids_test.go ├── connectionlog │ └── connectionlog.go ├── cryptokeys │ ├── cache.go │ ├── cache_test.go │ ├── doc.go │ ├── rotate.go │ ├── rotate_internal_test.go │ └── rotate_test.go ├── csp.go ├── database │ ├── .gitignore │ ├── awsiamrds │ │ ├── awsiamrds.go │ │ └── awsiamrds_test.go │ ├── connector.go │ ├── constants.go │ ├── db.go │ ├── db2sdk │ │ ├── db2sdk.go │ │ └── db2sdk_test.go │ ├── db_test.go │ ├── dbauthz │ │ ├── accesscontrol.go │ │ ├── customroles_test.go │ │ ├── dbauthz.go │ │ ├── dbauthz_test.go │ │ ├── doc.go │ │ ├── groupsauth_test.go │ │ └── setup_test.go │ ├── dbfake │ │ ├── builder.go │ │ └── dbfake.go │ ├── dbgen │ │ ├── dbgen.go │ │ └── dbgen_test.go │ ├── dbmetrics │ │ ├── dbmetrics.go │ │ ├── dbmetrics_test.go │ │ └── querymetrics.go │ ├── dbmock │ │ ├── dbmock.go │ │ └── doc.go │ ├── dbpurge │ │ ├── dbpurge.go │ │ └── dbpurge_test.go │ ├── dbrollup │ │ ├── dbrollup.go │ │ └── dbrollup_test.go │ ├── dbtestutil │ │ ├── db.go │ │ ├── driver.go │ │ ├── postgres.go │ │ ├── postgres_test.go │ │ ├── randtz │ │ │ └── randtz.go │ │ └── tx.go │ ├── dbtime │ │ └── dbtime.go │ ├── dump.sql │ ├── errors.go │ ├── foreign_key_constraint.go │ ├── gen │ │ └── dump │ │ │ └── main.go │ ├── generate.sh │ ├── gentest │ │ ├── doc.go │ │ ├── modelqueries_test.go │ │ └── models_test.go │ ├── lock.go │ ├── migrations │ │ ├── 000001_base.down.sql │ │ ├── 000001_base.up.sql │ │ ├── 000002_templates.down.sql │ │ ├── 000002_templates.up.sql │ │ ├── 000003_workspaces.down.sql │ │ ├── 000003_workspaces.up.sql │ │ ├── 000004_jobs.down.sql │ │ ├── 000004_jobs.up.sql │ │ ├── 000005_gitsshkey.down.sql │ │ ├── 000005_gitsshkey.up.sql │ │ ├── 000006_workspace_autostartstop.down.sql │ │ ├── 000006_workspace_autostartstop.up.sql │ │ ├── 000007_user_status.down.sql │ │ ├── 000007_user_status.up.sql │ │ ├── 000008_rbac_roles.down.sql │ │ ├── 000008_rbac_roles.up.sql │ │ ├── 000009_agent_directory.down.sql │ │ ├── 000009_agent_directory.up.sql │ │ ├── 000010_audit_logs.down.sql │ │ ├── 000010_audit_logs.up.sql │ │ ├── 000011_template_description.down.sql │ │ ├── 000011_template_description.up.sql │ │ ├── 000012_template_version_readme.down.sql │ │ ├── 000012_template_version_readme.up.sql │ │ ├── 000013_autostop_ttl.down.sql │ │ ├── 000013_autostop_ttl.up.sql │ │ ├── 000014_provisioner_daemons_organization_id.down.sql │ │ ├── 000014_provisioner_daemons_organization_id.up.sql │ │ ├── 000015_workspacebuild_deadline.down.sql │ │ ├── 000015_workspacebuild_deadline.up.sql │ │ ├── 000016_api_key_lifetime.down.sql │ │ ├── 000016_api_key_lifetime.up.sql │ │ ├── 000017_drop_member_roles.down.sql │ │ ├── 000017_drop_member_roles.up.sql │ │ ├── 000018_provisioner_job_type_dry_run.down.sql │ │ ├── 000018_provisioner_job_type_dry_run.up.sql │ │ ├── 000019_drop_org_user_parameter_scope.down.sql │ │ ├── 000019_drop_org_user_parameter_scope.up.sql │ │ ├── 000020_workspace_apps.down.sql │ │ ├── 000020_workspace_apps.up.sql │ │ ├── 000021_template_autobuild_constraints.down.sql │ │ ├── 000021_template_autobuild_constraints.up.sql │ │ ├── 000022_template_created_by.down.sql │ │ ├── 000022_template_created_by.up.sql │ │ ├── 000023_template_created_by_not_null.down.sql │ │ ├── 000023_template_created_by_not_null.up.sql │ │ ├── 000024_site_config.down.sql │ │ ├── 000024_site_config.up.sql │ │ ├── 000025_workspace_build_reason.down.sql │ │ ├── 000025_workspace_build_reason.up.sql │ │ ├── 000026_allow_template_name_re_use.down.sql │ │ ├── 000026_allow_template_name_re_use.up.sql │ │ ├── 000027_apikey_ip.down.sql │ │ ├── 000027_apikey_ip.up.sql │ │ ├── 000028_wireguard.down.sql │ │ ├── 000028_wireguard.up.sql │ │ ├── 000029_variable_order.down.sql │ │ ├── 000029_variable_order.up.sql │ │ ├── 000030_template_version_created_by.down.sql │ │ ├── 000030_template_version_created_by.up.sql │ │ ├── 000031_agent_auth_instance_id.down.sql │ │ ├── 000031_agent_auth_instance_id.up.sql │ │ ├── 000032_oidc.down.sql │ │ ├── 000032_oidc.up.sql │ │ ├── 000033_resource_metadata.down.sql │ │ ├── 000033_resource_metadata.up.sql │ │ ├── 000034_remove_admin_role.down.sql │ │ ├── 000034_remove_admin_role.up.sql │ │ ├── 000035_linked_user_id.down.sql │ │ ├── 000035_linked_user_id.up.sql │ │ ├── 000036_template_icon.down.sql │ │ ├── 000036_template_icon.up.sql │ │ ├── 000037_jwt_licenses.down.sql │ │ ├── 000037_jwt_licenses.up.sql │ │ ├── 000038_template_max_ttl_cap_7_days.down.sql │ │ ├── 000038_template_max_ttl_cap_7_days.up.sql │ │ ├── 000039_add_workspace_agent_version.down.sql │ │ ├── 000039_add_workspace_agent_version.up.sql │ │ ├── 000040_audit_addtl_fields.down.sql │ │ ├── 000040_audit_addtl_fields.up.sql │ │ ├── 000041_tailnet.down.sql │ │ ├── 000041_tailnet.up.sql │ │ ├── 000042_agent_stats.down.sql │ │ ├── 000042_agent_stats.up.sql │ │ ├── 000043_workspace_last_used.down.sql │ │ ├── 000043_workspace_last_used.up.sql │ │ ├── 000044_user_avatars.down.sql │ │ ├── 000044_user_avatars.up.sql │ │ ├── 000045_workspacebuildname.down.sql │ │ ├── 000045_workspacebuildname.up.sql │ │ ├── 000046_more_resource_types.down.sql │ │ ├── 000046_more_resource_types.up.sql │ │ ├── 000047_workspace_resource_hide.down.sql │ │ ├── 000047_workspace_resource_hide.up.sql │ │ ├── 000048_userdelete.down.sql │ │ ├── 000048_userdelete.up.sql │ │ ├── 000049_workspace_resource_icon.down.sql │ │ ├── 000049_workspace_resource_icon.up.sql │ │ ├── 000050_apikey_scope.down.sql │ │ ├── 000050_apikey_scope.up.sql │ │ ├── 000051_comment_on_api_key_secret.down.sql │ │ ├── 000051_comment_on_api_key_secret.up.sql │ │ ├── 000052_workspace_app_health.down.sql │ │ ├── 000052_workspace_app_health.up.sql │ │ ├── 000053_last_seen_at.down.sql │ │ ├── 000053_last_seen_at.up.sql │ │ ├── 000054_email_case.down.sql │ │ ├── 000054_email_case.up.sql │ │ ├── 000055_relative_path_to_subdomain.down.sql │ │ ├── 000055_relative_path_to_subdomain.up.sql │ │ ├── 000056_app_subdomain_fix.down.sql │ │ ├── 000056_app_subdomain_fix.up.sql │ │ ├── 000057_api_key_token.down.sql │ │ ├── 000057_api_key_token.up.sql │ │ ├── 000058_template_acl.down.sql │ │ ├── 000058_template_acl.up.sql │ │ ├── 000059_file_id.down.sql │ │ ├── 000059_file_id.up.sql │ │ ├── 000060_app_sharing_level.down.sql │ │ ├── 000060_app_sharing_level.up.sql │ │ ├── 000061_replicas.down.sql │ │ ├── 000061_replicas.up.sql │ │ ├── 000062_group_avatars.down.sql │ │ ├── 000062_group_avatars.up.sql │ │ ├── 000063_resource_type_group.down.sql │ │ ├── 000063_resource_type_group.up.sql │ │ ├── 000064_gitauth.down.sql │ │ ├── 000064_gitauth.up.sql │ │ ├── 000065_add_audit_enums.down.sql │ │ ├── 000065_add_audit_enums.up.sql │ │ ├── 000066_app_slug.down.sql │ │ ├── 000066_app_slug.up.sql │ │ ├── 000067_app_display_name.down.sql │ │ ├── 000067_app_display_name.up.sql │ │ ├── 000068_update_template_version_created_by.down.sql │ │ ├── 000068_update_template_version_created_by.up.sql │ │ ├── 000069_resource_instance_type.down.sql │ │ ├── 000069_resource_instance_type.up.sql │ │ ├── 000070_deployment_graph.down.sql │ │ ├── 000070_deployment_graph.up.sql │ │ ├── 000071_provisioner_log_lines.down.sql │ │ ├── 000071_provisioner_log_lines.up.sql │ │ ├── 000072_add_agent_connection_timeout_and_troubleshooting_url.down.sql │ │ ├── 000072_add_agent_connection_timeout_and_troubleshooting_url.up.sql │ │ ├── 000073_remove_min_autostart.down.sql │ │ ├── 000073_remove_min_autostart.up.sql │ │ ├── 000074_workspace_resources_job_id_idx.down.sql │ │ ├── 000074_workspace_resources_job_id_idx.up.sql │ │ ├── 000075_template_display_name.down.sql │ │ ├── 000075_template_display_name.up.sql │ │ ├── 000076_cost.down.sql │ │ ├── 000076_cost.up.sql │ │ ├── 000077_job_logs_job_id_id_index.down.sql │ │ ├── 000077_job_logs_job_id_id_index.up.sql │ │ ├── 000078_workspace_agents_resource_id_idx.down.sql │ │ ├── 000078_workspace_agents_resource_id_idx.up.sql │ │ ├── 000079_provisioner_daemon_tags.down.sql │ │ ├── 000079_provisioner_daemon_tags.up.sql │ │ ├── 000080_license_ids.down.sql │ │ ├── 000080_license_ids.up.sql │ │ ├── 000081_template_allow_user_cancel_workspace_jobs.down.sql │ │ ├── 000081_template_allow_user_cancel_workspace_jobs.up.sql │ │ ├── 000082_add_audit_log_nullable_fields.down.sql │ │ ├── 000082_add_audit_log_nullable_fields.up.sql │ │ ├── 000083_add_motd_file_to_coder_agents.down.sql │ │ ├── 000083_add_motd_file_to_coder_agents.up.sql │ │ ├── 000084_workspace_agents_auth_token_index.down.sql │ │ ├── 000084_workspace_agents_auth_token_index.up.sql │ │ ├── 000085_acquire_job_index.down.sql │ │ ├── 000085_acquire_job_index.up.sql │ │ ├── 000086_no_org_admins.down.sql │ │ ├── 000086_no_org_admins.up.sql │ │ ├── 000087_resource_metadata_order.down.sql │ │ ├── 000087_resource_metadata_order.up.sql │ │ ├── 000088_external_app_url.down.sql │ │ ├── 000088_external_app_url.up.sql │ │ ├── 000089_rich_parameters.down.sql │ │ ├── 000089_rich_parameters.up.sql │ │ ├── 000090_sqlc_upgrade_fix_nullable_values.down.sql │ │ ├── 000090_sqlc_upgrade_fix_nullable_values.up.sql │ │ ├── 000091_add_workspace_agent_state.down.sql │ │ ├── 000091_add_workspace_agent_state.up.sql │ │ ├── 000092_rich_parameters_validation_error.down.sql │ │ ├── 000092_rich_parameters_validation_error.up.sql │ │ ├── 000093_add_workspace_agent_invert_delay_login_until_ready_to_login_before_ready.down.sql │ │ ├── 000093_add_workspace_agent_invert_delay_login_until_ready_to_login_before_ready.up.sql │ │ ├── 000094_add_resource_type_api_key.down.sql │ │ ├── 000094_add_resource_type_api_key.up.sql │ │ ├── 000095_rich_parameters_validation_monotonic.down.sql │ │ ├── 000095_rich_parameters_validation_monotonic.up.sql │ │ ├── 000096_agent_resolved_directory.down.sql │ │ ├── 000096_agent_resolved_directory.up.sql │ │ ├── 000097_license_not_null_uuid.down.sql │ │ ├── 000097_license_not_null_uuid.up.sql │ │ ├── 000098_add_resource_type_license.down.sql │ │ ├── 000098_add_resource_type_license.up.sql │ │ ├── 000099_template_version_variables.down.sql │ │ ├── 000099_template_version_variables.up.sql │ │ ├── 000100_template_version_gitauth.down.sql │ │ ├── 000100_template_version_gitauth.up.sql │ │ ├── 000101_workspace_agent_stats_tableify.down.sql │ │ ├── 000101_workspace_agent_stats_tableify.up.sql │ │ ├── 000102_workspace_agent_stats_types.down.sql │ │ ├── 000102_workspace_agent_stats_types.up.sql │ │ ├── 000103_add_apikey_name.down.sql │ │ ├── 000103_add_apikey_name.up.sql │ │ ├── 000104_add_shutdown_script_to_coder_agents.down.sql │ │ ├── 000104_add_shutdown_script_to_coder_agents.up.sql │ │ ├── 000105_rich_parameter_required.down.sql │ │ ├── 000105_rich_parameter_required.up.sql │ │ ├── 000106_workspace_build_max_deadline.down.sql │ │ ├── 000106_workspace_build_max_deadline.up.sql │ │ ├── 000107_provisioner_jobs_error_code.down.sql │ │ ├── 000107_provisioner_jobs_error_code.up.sql │ │ ├── 000108_workspace_agent_stats_connection_latency.down.sql │ │ ├── 000108_workspace_agent_stats_connection_latency.up.sql │ │ ├── 000109_rich_parameter_legacy_variable.down.sql │ │ ├── 000109_rich_parameter_legacy_variable.up.sql │ │ ├── 000110_add_startup_logs.down.sql │ │ ├── 000110_add_startup_logs.up.sql │ │ ├── 000111_workspace_agent_metadata.down.sql │ │ ├── 000111_workspace_agent_metadata.up.sql │ │ ├── 000112_rich_parameter_display_name.down.sql │ │ ├── 000112_rich_parameter_display_name.up.sql │ │ ├── 000113_template_disable_user_scheduling.down.sql │ │ ├── 000113_template_disable_user_scheduling.up.sql │ │ ├── 000114_workspace_proxy.down.sql │ │ ├── 000114_workspace_proxy.up.sql │ │ ├── 000115_workspace_proxy_resource.down.sql │ │ ├── 000115_workspace_proxy_resource.up.sql │ │ ├── 000116_startup_logs_level.down.sql │ │ ├── 000116_startup_logs_level.up.sql │ │ ├── 000117_add_audit_action_register.down.sql │ │ ├── 000117_add_audit_action_register.up.sql │ │ ├── 000118_workspace_proxy_token.down.sql │ │ ├── 000118_workspace_proxy_token.up.sql │ │ ├── 000119_workspace_proxy_name_idx.down.sql │ │ ├── 000119_workspace_proxy_name_idx.up.sql │ │ ├── 000120_trigger_delete_user_apikey.down.sql │ │ ├── 000120_trigger_delete_user_apikey.up.sql │ │ ├── 000121_provisioner_job_tracing.down.sql │ │ ├── 000121_provisioner_job_tracing.up.sql │ │ ├── 000122_add_template_cleanup_ttls.down.sql │ │ ├── 000122_add_template_cleanup_ttls.up.sql │ │ ├── 000123_workspace_agent_subsystem.down.sql │ │ ├── 000123_workspace_agent_subsystem.up.sql │ │ ├── 000124_validation_min_max_nullable.down.sql │ │ ├── 000124_validation_min_max_nullable.up.sql │ │ ├── 000125_rename_login_before_ready_to_startup_script_behavior.down.sql │ │ ├── 000125_rename_login_before_ready_to_startup_script_behavior.up.sql │ │ ├── 000126_login_type_none.down.sql │ │ ├── 000126_login_type_none.up.sql │ │ ├── 000127_add_startup_logs_eof.down.sql │ │ ├── 000127_add_startup_logs_eof.up.sql │ │ ├── 000128_template_locked_ttl.down.sql │ │ ├── 000128_template_locked_ttl.up.sql │ │ ├── 000129_drop_startup_logs_eof_and_add_completion.down.sql │ │ ├── 000129_drop_startup_logs_eof_and_add_completion.up.sql │ │ ├── 000130_ha_coordinator.down.sql │ │ ├── 000130_ha_coordinator.up.sql │ │ ├── 000131_workspace_locked.down.sql │ │ ├── 000131_workspace_locked.up.sql │ │ ├── 000132_parameters_order.down.sql │ │ ├── 000132_parameters_order.up.sql │ │ ├── 000133_oauth_convert_audit.down.sql │ │ ├── 000133_oauth_convert_audit.up.sql │ │ ├── 000134_workspace_build_reason.down.sql │ │ ├── 000134_workspace_build_reason.up.sql │ │ ├── 000135_drop_rich_parameter_legacy_variable.down.sql │ │ ├── 000135_drop_rich_parameter_legacy_variable.up.sql │ │ ├── 000136_ephemeral_parameters.down.sql │ │ ├── 000136_ephemeral_parameters.up.sql │ │ ├── 000137_add_template_version_message.down.sql │ │ ├── 000137_add_template_version_message.up.sql │ │ ├── 000138_join_users.down.sql │ │ ├── 000138_join_users.up.sql │ │ ├── 000139_template_restart_requirement.down.sql │ │ ├── 000139_template_restart_requirement.up.sql │ │ ├── 000140_workspace_deleting_at.down.sql │ │ ├── 000140_workspace_deleting_at.up.sql │ │ ├── 000141_join_users_build_version.down.sql │ │ ├── 000141_join_users_build_version.up.sql │ │ ├── 000142_proxy_derp.down.sql │ │ ├── 000142_proxy_derp.up.sql │ │ ├── 000143_workspace_agent_logs.down.sql │ │ ├── 000143_workspace_agent_logs.up.sql │ │ ├── 000144_user_status_dormant.down.sql │ │ ├── 000144_user_status_dormant.up.sql │ │ ├── 000145_user_status_default_dormant.down.sql │ │ ├── 000145_user_status_default_dormant.up.sql │ │ ├── 000146_proxy_derp_only.down.sql │ │ ├── 000146_proxy_derp_only.up.sql │ │ ├── 000147_group_display_name.down.sql │ │ ├── 000147_group_display_name.up.sql │ │ ├── 000148_group_source.down.sql │ │ ├── 000148_group_source.up.sql │ │ ├── 000149_agent_multiple_subsystems.down.sql │ │ ├── 000149_agent_multiple_subsystems.up.sql │ │ ├── 000150_workspace_app_stats.down.sql │ │ ├── 000150_workspace_app_stats.up.sql │ │ ├── 000151_rename_locked.down.sql │ │ ├── 000151_rename_locked.up.sql │ │ ├── 000152_rename_template_restart_requirement.down.sql │ │ ├── 000152_rename_template_restart_requirement.up.sql │ │ ├── 000153_agent_default_apps.down.sql │ │ ├── 000153_agent_default_apps.up.sql │ │ ├── 000154_dbcrypt_key_ids.down.sql │ │ ├── 000154_dbcrypt_key_ids.up.sql │ │ ├── 000155_workspaces_last_used_at_timestamptz.down.sql │ │ ├── 000155_workspaces_last_used_at_timestamptz.up.sql │ │ ├── 000156_pg_coordinator_single_tailnet.down.sql │ │ ├── 000156_pg_coordinator_single_tailnet.up.sql │ │ ├── 000157_workspace_agent_script.down.sql │ │ ├── 000157_workspace_agent_script.up.sql │ │ ├── 000158_external_auth.down.sql │ │ ├── 000158_external_auth.up.sql │ │ ├── 000159_workspace_agent_stats_template_id_created_at_user_id_idx.down.sql │ │ ├── 000159_workspace_agent_stats_template_id_created_at_user_id_idx.up.sql │ │ ├── 000160_provisioner_job_status.down.sql │ │ ├── 000160_provisioner_job_status.up.sql │ │ ├── 000161_workspace_agent_stats_template_id_created_at_user_id_include_sessions.down.sql │ │ ├── 000161_workspace_agent_stats_template_id_created_at_user_id_include_sessions.up.sql │ │ ├── 000162_workspace_automatic_updates.down.sql │ │ ├── 000162_workspace_automatic_updates.up.sql │ │ ├── 000163_external_auth_extra.down.sql │ │ ├── 000163_external_auth_extra.up.sql │ │ ├── 000164_archive_template_versions.down.sql │ │ ├── 000164_archive_template_versions.up.sql │ │ ├── 000165_prevent_autostart_days.down.sql │ │ ├── 000165_prevent_autostart_days.up.sql │ │ ├── 000166_template_active_version.down.sql │ │ ├── 000166_template_active_version.up.sql │ │ ├── 000167_workspace_agent_api_version.down.sql │ │ ├── 000167_workspace_agent_api_version.up.sql │ │ ├── 000168_pg_coord_tailnet_v2_api.down.sql │ │ ├── 000168_pg_coord_tailnet_v2_api.up.sql │ │ ├── 000169_deprecate_template.down.sql │ │ ├── 000169_deprecate_template.up.sql │ │ ├── 000170_workspaceproxy_version.down.sql │ │ ├── 000170_workspaceproxy_version.up.sql │ │ ├── 000171_oidc_debug_claims.down.sql │ │ ├── 000171_oidc_debug_claims.up.sql │ │ ├── 000172_health_settings_audit.down.sql │ │ ├── 000172_health_settings_audit.up.sql │ │ ├── 000173_provisioner_last_seen_at.down.sql │ │ ├── 000173_provisioner_last_seen_at.up.sql │ │ ├── 000174_rename_autolock.down.sql │ │ ├── 000174_rename_autolock.up.sql │ │ ├── 000175_add_user_theme_preference.down.sql │ │ ├── 000175_add_user_theme_preference.up.sql │ │ ├── 000176_not_null_users_avatar_url.down.sql │ │ ├── 000176_not_null_users_avatar_url.up.sql │ │ ├── 000177_drop_provisioner_updated_at.down.sql │ │ ├── 000177_drop_provisioner_updated_at.up.sql │ │ ├── 000178_provisioner_daemon_idx_owner.down.sql │ │ ├── 000178_provisioner_daemon_idx_owner.up.sql │ │ ├── 000179_provisionerdaemon_add_apiversion.down.sql │ │ ├── 000179_provisionerdaemon_add_apiversion.up.sql │ │ ├── 000180_template_use_max_ttl.down.sql │ │ ├── 000180_template_use_max_ttl.up.sql │ │ ├── 000181_coalesce_provisioner_daemon_idx_owner.down.sql │ │ ├── 000181_coalesce_provisioner_daemon_idx_owner.up.sql │ │ ├── 000182_oauth2_provider.down.sql │ │ ├── 000182_oauth2_provider.up.sql │ │ ├── 000183_provisionerd_api_version_prefix.down.sql │ │ ├── 000183_provisionerd_api_version_prefix.up.sql │ │ ├── 000184_provisionerd_api_version_rm_prefix.down.sql │ │ ├── 000184_provisionerd_api_version_rm_prefix.up.sql │ │ ├── 000185_add_user_name.down.sql │ │ ├── 000185_add_user_name.up.sql │ │ ├── 000186_user_favorite_workspaces.down.sql │ │ ├── 000186_user_favorite_workspaces.up.sql │ │ ├── 000187_jfrog_xray.down.sql │ │ ├── 000187_jfrog_xray.up.sql │ │ ├── 000188_workspace_agent_metadata_order.down.sql │ │ ├── 000188_workspace_agent_metadata_order.up.sql │ │ ├── 000189_workspace_app_order.down.sql │ │ ├── 000189_workspace_app_order.up.sql │ │ ├── 000190_template_activity_bump_duration.down.sql │ │ ├── 000190_template_activity_bump_duration.up.sql │ │ ├── 000191_workspace_agent_port_sharing.down.sql │ │ ├── 000191_workspace_agent_port_sharing.up.sql │ │ ├── 000192_workspace_agent_order.down.sql │ │ ├── 000192_workspace_agent_order.up.sql │ │ ├── 000193_default_organization.down.sql │ │ ├── 000193_default_organization.up.sql │ │ ├── 000194_trigger_delete_user_user_link.down.sql │ │ ├── 000194_trigger_delete_user_user_link.up.sql │ │ ├── 000195_oauth2_provider_codes.down.sql │ │ ├── 000195_oauth2_provider_codes.up.sql │ │ ├── 000196_external_auth_providers_jsonb.down.sql │ │ ├── 000196_external_auth_providers_jsonb.up.sql │ │ ├── 000197_oauth2_provider_app_audit.down.sql │ │ ├── 000197_oauth2_provider_app_audit.up.sql │ │ ├── 000198_ensure_default_org.down.sql │ │ ├── 000198_ensure_default_org.up.sql │ │ ├── 000199_port_share_protocol.down.sql │ │ ├── 000199_port_share_protocol.up.sql │ │ ├── 000200_org_provisioners.down.sql │ │ ├── 000200_org_provisioners.up.sql │ │ ├── 000201_ensure_default_everyone_group.down.sql │ │ ├── 000201_ensure_default_everyone_group.up.sql │ │ ├── 000202_remove_max_ttl.down.sql │ │ ├── 000202_remove_max_ttl.up.sql │ │ ├── 000203_template_usage_stats.down.sql │ │ ├── 000203_template_usage_stats.up.sql │ │ ├── 000204_add_workspace_agent_scripts_fk_index.down.sql │ │ ├── 000204_add_workspace_agent_scripts_fk_index.up.sql │ │ ├── 000205_unique_linked_id.down.sql │ │ ├── 000205_unique_linked_id.up.sql │ │ ├── 000206_add_tailnet_tunnels_indexes.down.sql │ │ ├── 000206_add_tailnet_tunnels_indexes.up.sql │ │ ├── 000207_site_configs_text.down.sql │ │ ├── 000207_site_configs_text.up.sql │ │ ├── 000208_notification_banners.down.sql │ │ ├── 000208_notification_banners.up.sql │ │ ├── 000209_custom_roles.down.sql │ │ ├── 000209_custom_roles.up.sql │ │ ├── 000210_unique_org_name.down.sql │ │ ├── 000210_unique_org_name.up.sql │ │ ├── 000211_workspace_tags.down.sql │ │ ├── 000211_workspace_tags.up.sql │ │ ├── 000212_custom_role_orgs.down.sql │ │ ├── 000212_custom_role_orgs.up.sql │ │ ├── 000213_announcement_banners.down.sql │ │ ├── 000213_announcement_banners.up.sql │ │ ├── 000214_org_custom_role_array.down.sql │ │ ├── 000214_org_custom_role_array.up.sql │ │ ├── 000215_scoped_org_db_roles.down.sql │ │ ├── 000215_scoped_org_db_roles.up.sql │ │ ├── 000216_organization_display_name.down.sql │ │ ├── 000216_organization_display_name.up.sql │ │ ├── 000217_custom_role_pair_parameter.down.sql │ │ ├── 000217_custom_role_pair_parameter.up.sql │ │ ├── 000218_org_custom_role_audit.down.sql │ │ ├── 000218_org_custom_role_audit.up.sql │ │ ├── 000219_organization_icon.down.sql │ │ ├── 000219_organization_icon.up.sql │ │ ├── 000220_audit_org_member.down.sql │ │ ├── 000220_audit_org_member.up.sql │ │ ├── 000221_notifications.down.sql │ │ ├── 000221_notifications.up.sql │ │ ├── 000222_template_organization_name.down.sql │ │ ├── 000222_template_organization_name.up.sql │ │ ├── 000223_notifications_settings_audit.down.sql │ │ ├── 000223_notifications_settings_audit.up.sql │ │ ├── 000224_template_display_name.down.sql │ │ ├── 000224_template_display_name.up.sql │ │ ├── 000225_notifications_metrics.down.sql │ │ ├── 000225_notifications_metrics.up.sql │ │ ├── 000226_notifications_autobuild_failed.down.sql │ │ ├── 000226_notifications_autobuild_failed.up.sql │ │ ├── 000227_provisioner_keys.down.sql │ │ ├── 000227_provisioner_keys.up.sql │ │ ├── 000228_notifications_workspace_autoupdated.down.sql │ │ ├── 000228_notifications_workspace_autoupdated.up.sql │ │ ├── 000229_dormancy_notification_template.down.sql │ │ ├── 000229_dormancy_notification_template.up.sql │ │ ├── 000230_notifications_fix_username.down.sql │ │ ├── 000230_notifications_fix_username.up.sql │ │ ├── 000231_provisioner_key_tags.down.sql │ │ ├── 000231_provisioner_key_tags.up.sql │ │ ├── 000232_update_dormancy_notification_template.down.sql │ │ ├── 000232_update_dormancy_notification_template.up.sql │ │ ├── 000233_notifications_user_created.down.sql │ │ ├── 000233_notifications_user_created.up.sql │ │ ├── 000234_fix_notifications_user_created.down.sql │ │ ├── 000234_fix_notifications_user_created.up.sql │ │ ├── 000235_fix_notifications_group.down.sql │ │ ├── 000235_fix_notifications_group.up.sql │ │ ├── 000236_notifications_user_deleted.down.sql │ │ ├── 000236_notifications_user_deleted.up.sql │ │ ├── 000237_github_com_user_id.down.sql │ │ ├── 000237_github_com_user_id.up.sql │ │ ├── 000238_notification_preferences.down.sql │ │ ├── 000238_notification_preferences.up.sql │ │ ├── 000239_provisioner_daemon_org_constraint.down.sql │ │ ├── 000239_provisioner_daemon_org_constraint.up.sql │ │ ├── 000240_notification_workspace_updated_version_message.down.sql │ │ ├── 000240_notification_workspace_updated_version_message.up.sql │ │ ├── 000241_delete_user_roles.down.sql │ │ ├── 000241_delete_user_roles.up.sql │ │ ├── 000242_group_members_view.down.sql │ │ ├── 000242_group_members_view.up.sql │ │ ├── 000243_custom_role_pkey_fix.down.sql │ │ ├── 000243_custom_role_pkey_fix.up.sql │ │ ├── 000244_notifications_delete_template.down.sql │ │ ├── 000244_notifications_delete_template.up.sql │ │ ├── 000245_notifications_dedupe.down.sql │ │ ├── 000245_notifications_dedupe.up.sql │ │ ├── 000246_provisioner_job_timings.down.sql │ │ ├── 000246_provisioner_job_timings.up.sql │ │ ├── 000247_notifications_user_suspended.down.sql │ │ ├── 000247_notifications_user_suspended.up.sql │ │ ├── 000248_notifications_manual_build_failed.down.sql │ │ ├── 000248_notifications_manual_build_failed.up.sql │ │ ├── 000249_workspace_app_hidden.down.sql │ │ ├── 000249_workspace_app_hidden.up.sql │ │ ├── 000250_built_in_psk_provisioner_keys.down.sql │ │ ├── 000250_built_in_psk_provisioner_keys.up.sql │ │ ├── 000251_crypto_keys.down.sql │ │ ├── 000251_crypto_keys.up.sql │ │ ├── 000252_group_member_trigger.down.sql │ │ ├── 000252_group_member_trigger.up.sql │ │ ├── 000253_email_reports.down.sql │ │ ├── 000253_email_reports.up.sql │ │ ├── 000254_fix_report_float.down.sql │ │ ├── 000254_fix_report_float.up.sql │ │ ├── 000255_agent_stats_usage.down.sql │ │ ├── 000255_agent_stats_usage.up.sql │ │ ├── 000256_add_display_name_to_workspace_agent_scripts.down.sql │ │ ├── 000256_add_display_name_to_workspace_agent_scripts.up.sql │ │ ├── 000257_workspace_agent_script_timings.down.sql │ │ ├── 000257_workspace_agent_script_timings.up.sql │ │ ├── 000258_add_otp_reset_to_user.down.sql │ │ ├── 000258_add_otp_reset_to_user.up.sql │ │ ├── 000259_rename_first_organization.down.sql │ │ ├── 000259_rename_first_organization.up.sql │ │ ├── 000260_remove_dark_blue_theme.down.sql │ │ ├── 000260_remove_dark_blue_theme.up.sql │ │ ├── 000261_notifications_forgot_password.down.sql │ │ ├── 000261_notifications_forgot_password.up.sql │ │ ├── 000262_improve_notification_templates.down.sql │ │ ├── 000262_improve_notification_templates.up.sql │ │ ├── 000263_consistent_notification_initiator_naming.down.sql │ │ ├── 000263_consistent_notification_initiator_naming.up.sql │ │ ├── 000264_manual_build_failed_notification_template.down.sql │ │ ├── 000264_manual_build_failed_notification_template.up.sql │ │ ├── 000265_default_values_for_notifications.down.sql │ │ ├── 000265_default_values_for_notifications.up.sql │ │ ├── 000266_update_forgot_password_notification.down.sql │ │ ├── 000266_update_forgot_password_notification.up.sql │ │ ├── 000267_fix_password_reset_notification_link.down.sql │ │ ├── 000267_fix_password_reset_notification_link.up.sql │ │ ├── 000268_add_audit_action_request_password_reset.down.sql │ │ ├── 000268_add_audit_action_request_password_reset.up.sql │ │ ├── 000269_workspace_with_names.down.sql │ │ ├── 000269_workspace_with_names.up.sql │ │ ├── 000270_template_deprecation_notification.down.sql │ │ ├── 000270_template_deprecation_notification.up.sql │ │ ├── 000271_cryptokey_features.down.sql │ │ ├── 000271_cryptokey_features.up.sql │ │ ├── 000272_remove_must_reset_password.down.sql │ │ ├── 000272_remove_must_reset_password.up.sql │ │ ├── 000273_workspace_updates.down.sql │ │ ├── 000273_workspace_updates.up.sql │ │ ├── 000274_rename_user_link_claims.down.sql │ │ ├── 000274_rename_user_link_claims.up.sql │ │ ├── 000275_check_tags.down.sql │ │ ├── 000275_check_tags.up.sql │ │ ├── 000276_workspace_modules.down.sql │ │ ├── 000276_workspace_modules.up.sql │ │ ├── 000277_template_version_example_ids.down.sql │ │ ├── 000277_template_version_example_ids.up.sql │ │ ├── 000278_workspace_next_start_at.down.sql │ │ ├── 000278_workspace_next_start_at.up.sql │ │ ├── 000279_workspace_create_notification.down.sql │ │ ├── 000279_workspace_create_notification.up.sql │ │ ├── 000280_workspace_update_notification.down.sql │ │ ├── 000280_workspace_update_notification.up.sql │ │ ├── 000281_idpsync_settings.down.sql │ │ ├── 000281_idpsync_settings.up.sql │ │ ├── 000282_workspace_app_add_open_in.down.sql │ │ ├── 000282_workspace_app_add_open_in.up.sql │ │ ├── 000283_user_status_changes.down.sql │ │ ├── 000283_user_status_changes.up.sql │ │ ├── 000284_allow_disabling_notification_templates_by_default.down.sql │ │ ├── 000284_allow_disabling_notification_templates_by_default.up.sql │ │ ├── 000285_disable_workspace_created_and_manually_updated_notifications_by_default.down.sql │ │ ├── 000285_disable_workspace_created_and_manually_updated_notifications_by_default.up.sql │ │ ├── 000286_provisioner_daemon_status.down.sql │ │ ├── 000286_provisioner_daemon_status.up.sql │ │ ├── 000287_template_read_to_use.down.sql │ │ ├── 000287_template_read_to_use.up.sql │ │ ├── 000288_telemetry_items.down.sql │ │ ├── 000288_telemetry_items.up.sql │ │ ├── 000289_agent_resource_monitors.down.sql │ │ ├── 000289_agent_resource_monitors.up.sql │ │ ├── 000290_oom_and_ood_notification.down.sql │ │ ├── 000290_oom_and_ood_notification.up.sql │ │ ├── 000291_workspace_parameter_presets.down.sql │ │ ├── 000291_workspace_parameter_presets.up.sql │ │ ├── 000292_generate_default_preset_parameter_ids.down.sql │ │ ├── 000292_generate_default_preset_parameter_ids.up.sql │ │ ├── 000293_add_audit_types_for_connect_and_open.down.sql │ │ ├── 000293_add_audit_types_for_connect_and_open.up.sql │ │ ├── 000294_workspace_monitors_state.down.sql │ │ ├── 000294_workspace_monitors_state.up.sql │ │ ├── 000295_test_notification.down.sql │ │ ├── 000295_test_notification.up.sql │ │ ├── 000296_organization_soft_delete.down.sql │ │ ├── 000296_organization_soft_delete.up.sql │ │ ├── 000297_notifications_inbox.down.sql │ │ ├── 000297_notifications_inbox.up.sql │ │ ├── 000298_provisioner_jobs_status_idx.down.sql │ │ ├── 000298_provisioner_jobs_status_idx.up.sql │ │ ├── 000299_user_configs.down.sql │ │ ├── 000299_user_configs.up.sql │ │ ├── 000300_notifications_method_inbox.down.sql │ │ ├── 000300_notifications_method_inbox.up.sql │ │ ├── 000301_add_workspace_app_audit_sessions.down.sql │ │ ├── 000301_add_workspace_app_audit_sessions.up.sql │ │ ├── 000302_fix_app_audit_session_race.down.sql │ │ ├── 000302_fix_app_audit_session_race.up.sql │ │ ├── 000303_add_workspace_agent_devcontainers.down.sql │ │ ├── 000303_add_workspace_agent_devcontainers.up.sql │ │ ├── 000304_github_com_user_id_comment.down.sql │ │ ├── 000304_github_com_user_id_comment.up.sql │ │ ├── 000305_remove_greetings_notifications_templates.down.sql │ │ ├── 000305_remove_greetings_notifications_templates.up.sql │ │ ├── 000306_template_version_terraform_values.down.sql │ │ ├── 000306_template_version_terraform_values.up.sql │ │ ├── 000307_fix_notifications_actions_url.down.sql │ │ ├── 000307_fix_notifications_actions_url.up.sql │ │ ├── 000308_system_user.down.sql │ │ ├── 000308_system_user.up.sql │ │ ├── 000309_add_devcontainer_name.down.sql │ │ ├── 000309_add_devcontainer_name.up.sql │ │ ├── 000310_update_protect_deleting_organization_function.down.sql │ │ ├── 000310_update_protect_deleting_organization_function.up.sql │ │ ├── 000311_improve_dormant_workspace_notification.down.sql │ │ ├── 000311_improve_dormant_workspace_notification.up.sql │ │ ├── 000312_webpush_subscriptions.down.sql │ │ ├── 000312_webpush_subscriptions.up.sql │ │ ├── 000313_workspace_app_statuses.down.sql │ │ ├── 000313_workspace_app_statuses.up.sql │ │ ├── 000314_prebuilds.down.sql │ │ ├── 000314_prebuilds.up.sql │ │ ├── 000315_preset_prebuilds.down.sql │ │ ├── 000315_preset_prebuilds.up.sql │ │ ├── 000316_group_build_failure_notifications.down.sql │ │ ├── 000316_group_build_failure_notifications.up.sql │ │ ├── 000317_workspace_app_status_drop_fields.down.sql │ │ ├── 000317_workspace_app_status_drop_fields.up.sql │ │ ├── 000318_update_protect_deleting_orgs_to_filter_deleted_users.down.sql │ │ ├── 000318_update_protect_deleting_orgs_to_filter_deleted_users.up.sql │ │ ├── 000319_chat.down.sql │ │ ├── 000319_chat.up.sql │ │ ├── 000320_terraform_cached_modules.down.sql │ │ ├── 000320_terraform_cached_modules.up.sql │ │ ├── 000321_add_parent_id_to_workspace_agents.down.sql │ │ ├── 000321_add_parent_id_to_workspace_agents.up.sql │ │ ├── 000322_rename_test_notification.down.sql │ │ ├── 000322_rename_test_notification.up.sql │ │ ├── 000323_workspace_latest_builds_optimization.down.sql │ │ ├── 000323_workspace_latest_builds_optimization.up.sql │ │ ├── 000324_resource_replacements_notification.down.sql │ │ ├── 000324_resource_replacements_notification.up.sql │ │ ├── 000325_dynamic_parameters_metadata.down.sql │ │ ├── 000325_dynamic_parameters_metadata.up.sql │ │ ├── 000326_add_api_key_scope_to_workspace_agents.down.sql │ │ ├── 000326_add_api_key_scope_to_workspace_agents.up.sql │ │ ├── 000327_version_dynamic_parameter_flow.down.sql │ │ ├── 000327_version_dynamic_parameter_flow.up.sql │ │ ├── 000328_prebuild_failure_limit_notification.down.sql │ │ ├── 000328_prebuild_failure_limit_notification.up.sql │ │ ├── 000329_add_status_to_template_presets.down.sql │ │ ├── 000329_add_status_to_template_presets.up.sql │ │ ├── 000330_workspace_with_correct_owner_names.down.sql │ │ ├── 000330_workspace_with_correct_owner_names.up.sql │ │ ├── 000331_app_group.down.sql │ │ ├── 000331_app_group.up.sql │ │ ├── 000332_workspace_agent_name_unique_trigger.down.sql │ │ ├── 000332_workspace_agent_name_unique_trigger.up.sql │ │ ├── 000333_parameter_form_type.down.sql │ │ ├── 000333_parameter_form_type.up.sql │ │ ├── 000334_dynamic_parameters_opt_out.down.sql │ │ ├── 000334_dynamic_parameters_opt_out.up.sql │ │ ├── 000335_ai_tasks.down.sql │ │ ├── 000335_ai_tasks.up.sql │ │ ├── 000336_add_organization_port_sharing_level.down.sql │ │ ├── 000336_add_organization_port_sharing_level.up.sql │ │ ├── 000337_nullable_has_ai_task.down.sql │ │ ├── 000337_nullable_has_ai_task.up.sql │ │ ├── 000338_use_deleted_boolean_for_subagents.down.sql │ │ ├── 000338_use_deleted_boolean_for_subagents.up.sql │ │ ├── 000339_add_scheduling_to_presets.down.sql │ │ ├── 000339_add_scheduling_to_presets.up.sql │ │ ├── 000340_workspace_app_status_idle.down.sql │ │ ├── 000340_workspace_app_status_idle.up.sql │ │ ├── 000341_template_version_preset_default.down.sql │ │ ├── 000341_template_version_preset_default.up.sql │ │ ├── 000342_ai_task_sidebar_app_id_column_and_constraint.down.sql │ │ ├── 000342_ai_task_sidebar_app_id_column_and_constraint.up.sql │ │ ├── 000343_delete_chats.down.sql │ │ ├── 000343_delete_chats.up.sql │ │ ├── 000344_oauth2_extensions.down.sql │ │ ├── 000344_oauth2_extensions.up.sql │ │ ├── 000345_audit_prebuilds_settings.down.sql │ │ ├── 000345_audit_prebuilds_settings.up.sql │ │ ├── 000346_oauth2_provider_app_tokens_denormalize_user_id.down.sql │ │ ├── 000346_oauth2_provider_app_tokens_denormalize_user_id.up.sql │ │ ├── 000347_oauth2_dynamic_registration.down.sql │ │ ├── 000347_oauth2_dynamic_registration.up.sql │ │ ├── 000348_remove_oauth2_app_name_unique_constraint.down.sql │ │ ├── 000348_remove_oauth2_app_name_unique_constraint.up.sql │ │ ├── 000349_connection_logs.down.sql │ │ ├── 000349_connection_logs.up.sql │ │ ├── create_fixture.sh │ │ ├── create_migration.sh │ │ ├── fix_migration_numbers.sh │ │ ├── migrate.go │ │ ├── migrate_test.go │ │ ├── testdata │ │ │ ├── fixtures │ │ │ │ ├── 000022_initial_v0.6.6.up.sql │ │ │ │ ├── 000024_example.up.sql │ │ │ │ ├── 000048_userdelete.up.sql │ │ │ │ ├── 000091_lifecycle.up.sql │ │ │ │ ├── 000104_lifecycle.up.sql │ │ │ │ ├── 000106_pre_workspace_agent_stats_connection_latency.up.sql │ │ │ │ ├── 000107_post_workspace_agent_stats_connection_latency.up.sql │ │ │ │ ├── 000110_workspace_agent_startup_logs.up.sql │ │ │ │ ├── 000111_workspace_agent_metadata.up.sql │ │ │ │ ├── 000119_workspace_proxy_token.up.sql │ │ │ │ ├── 000130_ha_coordinator.up.sql │ │ │ │ ├── 000150_workspace_app_usage_stats.up.sql │ │ │ │ ├── 000156_pg_coordinator_single_tailnet.up.sql │ │ │ │ ├── 000157_workspace_agent_script.up.sql │ │ │ │ ├── 000168_pg_coord_tailnet_v2_api.up.sql │ │ │ │ ├── 000182_oauth2_provider.up.sql │ │ │ │ ├── 000187_jfrog_xray.up.sql │ │ │ │ ├── 000191_ workspace_agent_port_share.up.sql │ │ │ │ ├── 000195_oauth2_provider_codes.up.sql │ │ │ │ ├── 000203_template_usage_stats.up.sql │ │ │ │ ├── 000209_custom_roles.up.sql │ │ │ │ ├── 000221_notifications.up.sql │ │ │ │ ├── 000227_provisioner_keys.up.sql │ │ │ │ ├── 000238_notifications_preferences.up.sql │ │ │ │ ├── 000246_provisioner_job_timings.up.sql │ │ │ │ ├── 000251_crypto_keys.up.sql │ │ │ │ ├── 000257_workspace_agent_script_timings.up.sql │ │ │ │ ├── 000271_cryptokey_features.up.sql │ │ │ │ ├── 000276_workspace_modules.up.sql │ │ │ │ ├── 000283_user_status_changes.up.sql │ │ │ │ ├── 000288_telemetry_items.up.sql │ │ │ │ ├── 000289_agent_resource_monitors.up.sql │ │ │ │ ├── 000291_workspace_parameter_presets.up.sql │ │ │ │ ├── 000297_notifications_inbox.up.sql │ │ │ │ ├── 000301_add_workspace_app_audit_sessions.up.sql │ │ │ │ ├── 000303_add_workspace_agent_devcontainers.up.sql │ │ │ │ ├── 000306_add_terraform_plans.up.sql │ │ │ │ ├── 000312_webpush_subscriptions.up.sql │ │ │ │ ├── 000313_workspace_app_statuses.up.sql │ │ │ │ ├── 000315_preset_prebuilds.up.sql │ │ │ │ ├── 000319_chat.up.sql │ │ │ │ ├── 000339_add_scheduling_to_presets.up.sql │ │ │ │ └── 000349_connection_logs.up.sql │ │ │ └── full_dumps │ │ │ │ ├── v0.6.6 │ │ │ │ └── 000022_dump_v0.6.6.up.sql │ │ │ │ ├── v0.7.12 │ │ │ │ └── 000028_dump_v0.7.12.up.sql │ │ │ │ └── v0.8.15 │ │ │ │ └── 000049_dump_v0.8.15.up.sql │ │ └── txnmigrator.go │ ├── modelmethods.go │ ├── modelqueries.go │ ├── modelqueries_internal_test.go │ ├── models.go │ ├── no_slim.go │ ├── oidcclaims_test.go │ ├── pglocks.go │ ├── provisionerjobs │ │ └── provisionerjobs.go │ ├── pubsub │ │ ├── latency.go │ │ ├── psmock │ │ │ ├── doc.go │ │ │ └── psmock.go │ │ ├── pubsub.go │ │ ├── pubsub_internal_test.go │ │ ├── pubsub_linux_test.go │ │ ├── pubsub_memory.go │ │ ├── pubsub_memory_test.go │ │ ├── pubsub_test.go │ │ ├── watchdog.go │ │ └── watchdog_test.go │ ├── querier.go │ ├── querier_test.go │ ├── queries.sql.go │ ├── queries │ │ ├── README.md │ │ ├── activitybump.sql │ │ ├── apikeys.sql │ │ ├── auditlogs.sql │ │ ├── connectionlogs.sql │ │ ├── crypto_keys.sql │ │ ├── dbcrypt.sql │ │ ├── externalauth.sql │ │ ├── files.sql │ │ ├── gitsshkeys.sql │ │ ├── groupmembers.sql │ │ ├── groups.sql │ │ ├── insights.sql │ │ ├── licenses.sql │ │ ├── lock.sql │ │ ├── notifications.sql │ │ ├── notificationsinbox.sql │ │ ├── oauth2.sql │ │ ├── organizationmembers.sql │ │ ├── organizations.sql │ │ ├── parameterschemas.sql │ │ ├── prebuilds.sql │ │ ├── presets.sql │ │ ├── provisionerdaemons.sql │ │ ├── provisionerjoblogs.sql │ │ ├── provisionerjobs.sql │ │ ├── provisionerkeys.sql │ │ ├── proxies.sql │ │ ├── quotas.sql │ │ ├── replicas.sql │ │ ├── roles.sql │ │ ├── siteconfig.sql │ │ ├── tailnet.sql │ │ ├── telemetryitems.sql │ │ ├── templates.sql │ │ ├── templateversionparameters.sql │ │ ├── templateversions.sql │ │ ├── templateversionterraformvalues.sql │ │ ├── templateversionvariables.sql │ │ ├── templateversionworkspacetags.sql │ │ ├── testadmin.sql │ │ ├── user_links.sql │ │ ├── users.sql │ │ ├── workspaceagentdevcontainers.sql │ │ ├── workspaceagentportshare.sql │ │ ├── workspaceagentresourcemonitors.sql │ │ ├── workspaceagents.sql │ │ ├── workspaceagentstats.sql │ │ ├── workspaceappaudit.sql │ │ ├── workspaceapps.sql │ │ ├── workspaceappstats.sql │ │ ├── workspacebuildparameters.sql │ │ ├── workspacebuilds.sql │ │ ├── workspacemodules.sql │ │ ├── workspaceresources.sql │ │ ├── workspaces.sql │ │ └── workspacescripts.sql │ ├── sqlc.yaml │ ├── tx.go │ ├── tx_test.go │ ├── types.go │ └── unique_constraint.go ├── debug.go ├── debug_test.go ├── deployment.go ├── deployment_test.go ├── deprecated.go ├── devtunnel │ ├── servers.go │ ├── tunnel.go │ └── tunnel_test.go ├── dynamicparameters │ ├── error.go │ ├── render.go │ ├── render_test.go │ ├── rendermock │ │ ├── mock.go │ │ └── rendermock.go │ ├── resolver.go │ ├── resolver_test.go │ ├── static.go │ ├── tags.go │ └── tags_internal_test.go ├── entitlements │ ├── entitlements.go │ └── entitlements_test.go ├── experiments.go ├── experiments_test.go ├── externalauth.go ├── externalauth │ ├── externalauth.go │ ├── externalauth_internal_test.go │ └── externalauth_test.go ├── externalauth_test.go ├── files.go ├── files │ ├── cache.go │ ├── cache_internal_test.go │ ├── cache_test.go │ ├── closer.go │ ├── overlay.go │ └── overlay_test.go ├── files_test.go ├── gitsshkey.go ├── gitsshkey │ ├── ed25519.go │ ├── gitsshkey.go │ └── gitsshkey_test.go ├── gitsshkey_test.go ├── healthcheck │ ├── accessurl.go │ ├── accessurl_test.go │ ├── database.go │ ├── database_test.go │ ├── derphealth │ │ ├── derp.go │ │ ├── derp_test.go │ │ └── doc.go │ ├── health │ │ ├── model.go │ │ └── model_test.go │ ├── healthcheck.go │ ├── healthcheck_test.go │ ├── provisioner.go │ ├── provisioner_test.go │ ├── websocket.go │ ├── websocket_test.go │ ├── workspaceproxy.go │ ├── workspaceproxy_internal_test.go │ └── workspaceproxy_test.go ├── httpapi │ ├── authz.go │ ├── authz_slim.go │ ├── cookie.go │ ├── cookie_test.go │ ├── httpapi.go │ ├── httpapi_test.go │ ├── httpapiconstraints │ │ └── httpapiconstraints.go │ ├── httperror │ │ ├── doc.go │ │ ├── responserror.go │ │ └── wsbuild.go │ ├── json.go │ ├── json_test.go │ ├── noop.go │ ├── queryparams.go │ ├── queryparams_test.go │ ├── request.go │ └── websocket.go ├── httpmw │ ├── actor.go │ ├── actor_test.go │ ├── apikey.go │ ├── apikey_test.go │ ├── authorize_test.go │ ├── authz.go │ ├── authz_test.go │ ├── clitelemetry.go │ ├── cors.go │ ├── cors_test.go │ ├── csp.go │ ├── csp_test.go │ ├── csrf.go │ ├── csrf_test.go │ ├── experiments.go │ ├── externalauthparam.go │ ├── externalauthparam_test.go │ ├── groupparam.go │ ├── groupparam_test.go │ ├── hsts.go │ ├── hsts_test.go │ ├── httpmw.go │ ├── httpmw_internal_test.go │ ├── loggermw │ │ ├── logger.go │ │ ├── logger_internal_test.go │ │ └── loggermock │ │ │ └── loggermock.go │ ├── notificationtemplateparam.go │ ├── oauth2.go │ ├── oauth2_test.go │ ├── organizationparam.go │ ├── organizationparam_test.go │ ├── patternmatcher │ │ ├── routepatterns.go │ │ └── routepatterns_test.go │ ├── prometheus.go │ ├── prometheus_test.go │ ├── provisionerdaemon.go │ ├── provisionerkey.go │ ├── ratelimit.go │ ├── ratelimit_test.go │ ├── realip.go │ ├── realip_test.go │ ├── recover.go │ ├── recover_test.go │ ├── requestid.go │ ├── requestid_test.go │ ├── rfc6750_extended_test.go │ ├── rfc6750_test.go │ ├── templateparam.go │ ├── templateparam_test.go │ ├── templateversionparam.go │ ├── templateversionparam_test.go │ ├── userparam.go │ ├── userparam_test.go │ ├── workspaceagent.go │ ├── workspaceagent_test.go │ ├── workspaceagentparam.go │ ├── workspaceagentparam_test.go │ ├── workspacebuildparam.go │ ├── workspacebuildparam_test.go │ ├── workspaceparam.go │ ├── workspaceparam_test.go │ ├── workspaceproxy.go │ ├── workspaceproxy_test.go │ ├── workspaceresourceparam.go │ └── workspaceresourceparam_test.go ├── idpsync │ ├── group.go │ ├── group_test.go │ ├── idpsync.go │ ├── idpsync_test.go │ ├── organization.go │ ├── organizations_test.go │ ├── role.go │ └── role_test.go ├── inboxnotifications.go ├── inboxnotifications_internal_test.go ├── inboxnotifications_test.go ├── insights.go ├── insights_internal_test.go ├── insights_test.go ├── jobreaper │ ├── detector.go │ └── detector_test.go ├── jwtutils │ ├── jwe.go │ ├── jws.go │ └── jwt_test.go ├── latencycheck.go ├── mcp │ ├── mcp.go │ ├── mcp_e2e_test.go │ └── mcp_test.go ├── mcp_http.go ├── members.go ├── members_test.go ├── metricscache │ ├── metricscache.go │ └── metricscache_test.go ├── notifications.go ├── notifications │ ├── dispatch │ │ ├── inbox.go │ │ ├── inbox_test.go │ │ ├── smtp.go │ │ ├── smtp │ │ │ ├── html.gotmpl │ │ │ └── plaintext.gotmpl │ │ ├── smtp_test.go │ │ ├── smtptest │ │ │ ├── fixtures │ │ │ │ ├── ca.conf │ │ │ │ ├── ca.crt │ │ │ │ ├── ca.key │ │ │ │ ├── ca.srl │ │ │ │ ├── generate.sh │ │ │ │ ├── password.txt │ │ │ │ ├── server.conf │ │ │ │ ├── server.crt │ │ │ │ ├── server.csr │ │ │ │ ├── server.key │ │ │ │ └── v3_ext.conf │ │ │ └── server.go │ │ ├── spec.go │ │ ├── utils_test.go │ │ ├── webhook.go │ │ └── webhook_test.go │ ├── enqueuer.go │ ├── events.go │ ├── fetcher.go │ ├── fetcher_internal_test.go │ ├── manager.go │ ├── manager_test.go │ ├── metrics.go │ ├── metrics_test.go │ ├── notifications_test.go │ ├── notificationstest │ │ └── fake_enqueuer.go │ ├── notifier.go │ ├── render │ │ ├── gotmpl.go │ │ └── gotmpl_test.go │ ├── reports │ │ ├── generator.go │ │ └── generator_internal_test.go │ ├── spec.go │ ├── testdata │ │ └── rendered-templates │ │ │ ├── smtp │ │ │ ├── PrebuildFailureLimitReached.html.golden │ │ │ ├── TemplateTemplateDeleted.html.golden │ │ │ ├── TemplateTemplateDeprecated.html.golden │ │ │ ├── TemplateTestNotification.html.golden │ │ │ ├── TemplateUserAccountActivated.html.golden │ │ │ ├── TemplateUserAccountCreated.html.golden │ │ │ ├── TemplateUserAccountDeleted.html.golden │ │ │ ├── TemplateUserAccountSuspended.html.golden │ │ │ ├── TemplateUserRequestedOneTimePasscode.html.golden │ │ │ ├── TemplateWorkspaceAutoUpdated.html.golden │ │ │ ├── TemplateWorkspaceAutobuildFailed.html.golden │ │ │ ├── TemplateWorkspaceBuildsFailedReport.html.golden │ │ │ ├── TemplateWorkspaceCreated.html.golden │ │ │ ├── TemplateWorkspaceDeleted.html.golden │ │ │ ├── TemplateWorkspaceDeleted_CustomAppearance.html.golden │ │ │ ├── TemplateWorkspaceDormant.html.golden │ │ │ ├── TemplateWorkspaceManualBuildFailed.html.golden │ │ │ ├── TemplateWorkspaceManuallyUpdated.html.golden │ │ │ ├── TemplateWorkspaceMarkedForDeletion.html.golden │ │ │ ├── TemplateWorkspaceOutOfDisk.html.golden │ │ │ ├── TemplateWorkspaceOutOfDisk_MultipleVolumes.html.golden │ │ │ ├── TemplateWorkspaceOutOfMemory.html.golden │ │ │ ├── TemplateWorkspaceResourceReplaced.html.golden │ │ │ ├── TemplateYourAccountActivated.html.golden │ │ │ └── TemplateYourAccountSuspended.html.golden │ │ │ └── webhook │ │ │ ├── PrebuildFailureLimitReached.json.golden │ │ │ ├── TemplateTemplateDeleted.json.golden │ │ │ ├── TemplateTemplateDeprecated.json.golden │ │ │ ├── TemplateTestNotification.json.golden │ │ │ ├── TemplateUserAccountActivated.json.golden │ │ │ ├── TemplateUserAccountCreated.json.golden │ │ │ ├── TemplateUserAccountDeleted.json.golden │ │ │ ├── TemplateUserAccountSuspended.json.golden │ │ │ ├── TemplateUserRequestedOneTimePasscode.json.golden │ │ │ ├── TemplateWorkspaceAutoUpdated.json.golden │ │ │ ├── TemplateWorkspaceAutobuildFailed.json.golden │ │ │ ├── TemplateWorkspaceBuildsFailedReport.json.golden │ │ │ ├── TemplateWorkspaceCreated.json.golden │ │ │ ├── TemplateWorkspaceDeleted.json.golden │ │ │ ├── TemplateWorkspaceDeleted_CustomAppearance.json.golden │ │ │ ├── TemplateWorkspaceDormant.json.golden │ │ │ ├── TemplateWorkspaceManualBuildFailed.json.golden │ │ │ ├── TemplateWorkspaceManuallyUpdated.json.golden │ │ │ ├── TemplateWorkspaceMarkedForDeletion.json.golden │ │ │ ├── TemplateWorkspaceOutOfDisk.json.golden │ │ │ ├── TemplateWorkspaceOutOfDisk_MultipleVolumes.json.golden │ │ │ ├── TemplateWorkspaceOutOfMemory.json.golden │ │ │ ├── TemplateWorkspaceResourceReplaced.json.golden │ │ │ ├── TemplateYourAccountActivated.json.golden │ │ │ └── TemplateYourAccountSuspended.json.golden │ ├── types │ │ ├── cta.go │ │ └── payload.go │ └── utils_test.go ├── notifications_test.go ├── oauth2.go ├── oauth2_error_compliance_test.go ├── oauth2_metadata_test.go ├── oauth2_metadata_validation_test.go ├── oauth2_security_test.go ├── oauth2_test.go ├── oauth2provider │ ├── app_secrets.go │ ├── apps.go │ ├── authorize.go │ ├── metadata.go │ ├── metadata_test.go │ ├── middleware.go │ ├── oauth2providertest │ │ ├── fixtures.go │ │ ├── helpers.go │ │ └── oauth2_test.go │ ├── pkce.go │ ├── pkce_test.go │ ├── provider_test.go │ ├── registration.go │ ├── revoke.go │ ├── secrets.go │ ├── tokens.go │ └── validation_test.go ├── oauthpki │ ├── oidcpki.go │ └── okidcpki_test.go ├── organizations.go ├── organizations_test.go ├── pagination.go ├── pagination_test.go ├── parameters.go ├── parameters_test.go ├── portsharing │ └── portsharing.go ├── prebuilds │ ├── api.go │ ├── claim.go │ ├── claim_test.go │ ├── global_snapshot.go │ ├── noop.go │ ├── preset_snapshot.go │ ├── preset_snapshot_test.go │ └── util.go ├── presets.go ├── presets_test.go ├── prometheusmetrics │ ├── aggregator.go │ ├── aggregator_test.go │ ├── collector.go │ ├── collector_test.go │ ├── insights │ │ ├── metricscollector.go │ │ ├── metricscollector_test.go │ │ └── testdata │ │ │ └── insights-metrics.json │ ├── prometheusmetrics.go │ ├── prometheusmetrics_internal_test.go │ ├── prometheusmetrics_test.go │ └── testdata │ │ └── agent-stats.json ├── promoauth │ ├── doc.go │ ├── github.go │ ├── oauth2.go │ └── oauth2_test.go ├── provisionerdaemons.go ├── provisionerdaemons_test.go ├── provisionerdserver │ ├── acquirer.go │ ├── acquirer_test.go │ ├── provisionerdserver.go │ ├── provisionerdserver_internal_test.go │ ├── provisionerdserver_test.go │ └── upload_file_test.go ├── provisionerjobs.go ├── provisionerjobs_internal_test.go ├── provisionerjobs_test.go ├── provisionerkey │ └── provisionerkey.go ├── proxyhealth │ └── proxyhealth.go ├── pubsub │ └── inboxnotification.go ├── rbac │ ├── README.md │ ├── USAGE.md │ ├── astvalue.go │ ├── authz.go │ ├── authz_internal_test.go │ ├── authz_test.go │ ├── error.go │ ├── error_test.go │ ├── input.json │ ├── no_slim.go │ ├── object.go │ ├── object_gen.go │ ├── object_test.go │ ├── policy.rego │ ├── policy │ │ └── policy.go │ ├── regosql │ │ ├── acl_group_var.go │ │ ├── compile.go │ │ ├── compile_test.go │ │ ├── configs.go │ │ ├── doc.go │ │ └── sqltypes │ │ │ ├── always_false.go │ │ │ ├── array.go │ │ │ ├── binary.go │ │ │ ├── bool.go │ │ │ ├── doc.go │ │ │ ├── equality.go │ │ │ ├── equality_test.go │ │ │ ├── gen.go │ │ │ ├── member.go │ │ │ ├── member_test.go │ │ │ ├── node.go │ │ │ ├── number.go │ │ │ ├── parens.go │ │ │ ├── string.go │ │ │ └── variable.go │ ├── roles.go │ ├── roles_internal_test.go │ ├── roles_test.go │ ├── rolestore │ │ ├── rolestore.go │ │ └── rolestore_test.go │ ├── scopes.go │ └── subject_test.go ├── render │ ├── markdown.go │ └── markdown_test.go ├── roles.go ├── roles_test.go ├── runtimeconfig │ ├── doc.go │ ├── entry.go │ ├── entry_test.go │ ├── manager.go │ ├── resolver.go │ ├── spec.go │ └── util.go ├── schedule │ ├── autostart.go │ ├── autostart_test.go │ ├── autostop.go │ ├── autostop_test.go │ ├── cron │ │ ├── cron.go │ │ └── cron_test.go │ ├── mock.go │ ├── template.go │ └── user.go ├── searchquery │ ├── search.go │ └── search_test.go ├── tailnet.go ├── tailnet_test.go ├── telemetry │ ├── telemetry.go │ └── telemetry_test.go ├── templates.go ├── templates_test.go ├── templateversions.go ├── templateversions_test.go ├── testdata │ ├── insights │ │ ├── template │ │ │ ├── multiple_users_and_workspaces_three_weeks_second_template.json.golden │ │ │ ├── multiple_users_and_workspaces_three_weeks_second_template_only_interval_reports.json.golden │ │ │ ├── multiple_users_and_workspaces_three_weeks_second_template_only_report.json.golden │ │ │ ├── multiple_users_and_workspaces_week_all_templates.json.golden │ │ │ ├── multiple_users_and_workspaces_week_deployment_wide.json.golden │ │ │ ├── multiple_users_and_workspaces_week_first_template.json.golden │ │ │ ├── multiple_users_and_workspaces_week_other_timezone_(São_Paulo).json.golden │ │ │ ├── multiple_users_and_workspaces_week_second_template.json.golden │ │ │ ├── multiple_users_and_workspaces_week_third_template.json.golden │ │ │ ├── multiple_users_and_workspaces_weekly_aggregated_deployment_wide.json.golden │ │ │ ├── multiple_users_and_workspaces_weekly_aggregated_first_template.json.golden │ │ │ ├── multiple_users_and_workspaces_weekly_aggregated_templates.json.golden │ │ │ ├── parameters_two_days_ago,_no_data.json.golden │ │ │ └── parameters_yesterday_and_today_deployment_wide.json.golden │ │ └── user-activity │ │ │ ├── multiple_users_and_workspaces_three_weeks_second_template.json.golden │ │ │ ├── multiple_users_and_workspaces_week_all_templates.json.golden │ │ │ ├── multiple_users_and_workspaces_week_deployment_wide.json.golden │ │ │ ├── multiple_users_and_workspaces_week_first_template.json.golden │ │ │ ├── multiple_users_and_workspaces_week_other_timezone_(São_Paulo).json.golden │ │ │ ├── multiple_users_and_workspaces_week_second_template.json.golden │ │ │ ├── multiple_users_and_workspaces_week_third_template.json.golden │ │ │ ├── multiple_users_and_workspaces_weekly_aggregated_deployment_wide.json.golden │ │ │ ├── multiple_users_and_workspaces_weekly_aggregated_first_template.json.golden │ │ │ └── multiple_users_and_workspaces_weekly_aggregated_templates.json.golden │ └── parameters │ │ ├── modules │ │ ├── .terraform │ │ │ └── modules │ │ │ │ ├── jetbrains_gateway │ │ │ │ └── main.tf │ │ │ │ └── modules.json │ │ └── main.tf │ │ └── public_key │ │ ├── main.tf │ │ └── plan.json ├── tracing │ ├── drpc.go │ ├── exporter.go │ ├── httpmw.go │ ├── httpmw_test.go │ ├── postgres.go │ ├── slog.go │ ├── slog_test.go │ ├── status_writer.go │ ├── status_writer_test.go │ ├── util.go │ └── util_test.go ├── updatecheck.go ├── updatecheck │ ├── updatecheck.go │ └── updatecheck_test.go ├── updatecheck_test.go ├── userauth.go ├── userauth_test.go ├── userpassword │ ├── hashing_bench_test.go │ ├── userpassword.go │ └── userpassword_test.go ├── users.go ├── users_test.go ├── util │ ├── lazy │ │ ├── value.go │ │ ├── valuewitherror.go │ │ └── valuewitherror_test.go │ ├── maps │ │ ├── maps.go │ │ └── maps_test.go │ ├── ptr │ │ ├── ptr.go │ │ └── ptr_test.go │ ├── slice │ │ ├── example_test.go │ │ ├── slice.go │ │ └── slice_test.go │ ├── strings │ │ ├── strings.go │ │ └── strings_test.go │ ├── syncmap │ │ └── map.go │ ├── tz │ │ ├── tz.go │ │ ├── tz_darwin.go │ │ ├── tz_linux.go │ │ ├── tz_test.go │ │ └── tz_windows.go │ └── xio │ │ ├── limitwriter.go │ │ └── limitwriter_test.go ├── webpush.go ├── webpush │ ├── webpush.go │ └── webpush_test.go ├── webpush_test.go ├── workspaceagentportshare.go ├── workspaceagentportshare_test.go ├── workspaceagents.go ├── workspaceagents_test.go ├── workspaceagentsrpc.go ├── workspaceagentsrpc_internal_test.go ├── workspaceagentsrpc_test.go ├── workspaceapps.go ├── workspaceapps │ ├── apptest │ │ ├── apptest.go │ │ └── setup.go │ ├── appurl │ │ ├── appurl.go │ │ ├── appurl_test.go │ │ └── doc.go │ ├── cookies.go │ ├── db.go │ ├── db_test.go │ ├── errors.go │ ├── provider.go │ ├── proxy.go │ ├── proxy_test.go │ ├── request.go │ ├── request_test.go │ ├── stats.go │ ├── stats_test.go │ ├── token.go │ └── token_test.go ├── workspaceapps_test.go ├── workspacebuilds.go ├── workspacebuilds_test.go ├── workspaceproxies.go ├── workspaceproxies_test.go ├── workspaceresourceauth.go ├── workspaceresourceauth_test.go ├── workspaces.go ├── workspaces_test.go ├── workspacestats │ ├── activitybump.go │ ├── activitybump_test.go │ ├── batcher.go │ ├── batcher_internal_test.go │ ├── reporter.go │ ├── tracker.go │ ├── tracker_test.go │ └── workspacestatstest │ │ └── batcher.go ├── workspaceupdates.go ├── workspaceupdates_test.go ├── wsbuilder │ ├── wsbuilder.go │ └── wsbuilder_test.go └── wspubsub │ └── wspubsub.go ├── codersdk ├── agentsdk │ ├── agentsdk.go │ ├── agentsdk_test.go │ ├── convert.go │ ├── convert_test.go │ ├── logs.go │ ├── logs_internal_test.go │ └── logs_test.go ├── aitasks.go ├── apikey.go ├── audit.go ├── authorization.go ├── client.go ├── client_experimental.go ├── client_internal_test.go ├── connectionlog.go ├── countries.go ├── database.go ├── deployment.go ├── deployment_internal_test.go ├── deployment_test.go ├── drpcsdk │ └── transport.go ├── externalauth.go ├── files.go ├── gitsshkey.go ├── groups.go ├── healthsdk │ ├── healthsdk.go │ ├── healthsdk_test.go │ ├── interfaces.go │ └── interfaces_internal_test.go ├── idpsync.go ├── inboxnotification.go ├── insights.go ├── licenses.go ├── name.go ├── name_test.go ├── notifications.go ├── oauth2.go ├── oauth2_validation.go ├── organizations.go ├── pagination.go ├── pagination_test.go ├── parameters.go ├── prebuilds.go ├── presets.go ├── provisionerdaemons.go ├── rbacresources_gen.go ├── rbacroles.go ├── replicas.go ├── richparameters.go ├── richparameters_internal_test.go ├── richparameters_test.go ├── roles.go ├── serversentevents.go ├── templates.go ├── templatevariables.go ├── templatevariables_test.go ├── templateversions.go ├── testdata │ └── githubcfg.yaml ├── time.go ├── time_test.go ├── toolsdk │ ├── toolsdk.go │ └── toolsdk_test.go ├── updatecheck.go ├── users.go ├── users_test.go ├── websocket.go ├── websocket_test.go ├── workspaceagentportshare.go ├── workspaceagents.go ├── workspaceapps.go ├── workspacebuilds.go ├── workspacedisplaystatus.go ├── workspacedisplaystatus_internal_test.go ├── workspaceproxy.go ├── workspaces.go ├── workspacesdk │ ├── agentconn.go │ ├── dialer.go │ ├── dialer_test.go │ ├── workspacesdk.go │ └── workspacesdk_test.go └── wsjson │ ├── decoder.go │ ├── encoder.go │ └── stream.go ├── cryptorand ├── errors_go123_test.go ├── errors_test.go ├── numbers.go ├── numbers_test.go ├── slices.go ├── slices_test.go ├── strings.go └── strings_test.go ├── docker-compose.yaml ├── docs ├── README.md ├── about │ ├── contributing │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── SECURITY.md │ │ ├── backend.md │ │ ├── documentation.md │ │ └── frontend.md │ ├── screenshots.md │ └── why-coder.md ├── admin │ ├── external-auth │ │ └── index.md │ ├── index.md │ ├── infrastructure │ │ ├── architecture.md │ │ ├── index.md │ │ ├── scale-testing.md │ │ ├── scale-utility.md │ │ └── validated-architectures │ │ │ ├── 1k-users.md │ │ │ ├── 2k-users.md │ │ │ ├── 3k-users.md │ │ │ └── index.md │ ├── integrations │ │ ├── dx-data-cloud.md │ │ ├── index.md │ │ ├── island.md │ │ ├── istio.md │ │ ├── jfrog-artifactory.md │ │ ├── jfrog-xray.md │ │ ├── kubernetes-logs.md │ │ ├── multiple-kube-clusters.md │ │ ├── opentofu.md │ │ ├── platformx.md │ │ ├── prometheus.md │ │ └── vault.md │ ├── licensing │ │ └── index.md │ ├── monitoring │ │ ├── connection-logs.md │ │ ├── health-check.md │ │ ├── index.md │ │ ├── logs.md │ │ ├── metrics.md │ │ └── notifications │ │ │ ├── index.md │ │ │ ├── slack.md │ │ │ └── teams.md │ ├── networking │ │ ├── high-availability.md │ │ ├── index.md │ │ ├── port-forwarding.md │ │ ├── stun.md │ │ ├── troubleshooting.md │ │ └── workspace-proxies.md │ ├── provisioners │ │ ├── index.md │ │ └── manage-provisioner-jobs.md │ ├── security │ │ ├── 0001_user_apikeys_invalidation.md │ │ ├── audit-logs.md │ │ ├── database-encryption.md │ │ ├── index.md │ │ └── secrets.md │ ├── setup │ │ ├── appearance.md │ │ ├── index.md │ │ └── telemetry.md │ ├── templates │ │ ├── creating-templates.md │ │ ├── extending-templates │ │ │ ├── agent-metadata.md │ │ │ ├── devcontainers.md │ │ │ ├── docker-in-workspaces.md │ │ │ ├── dynamic-parameters.md │ │ │ ├── external-auth.md │ │ │ ├── icons.md │ │ │ ├── index.md │ │ │ ├── jetbrains-airgapped.md │ │ │ ├── jetbrains-preinstall.md │ │ │ ├── modules.md │ │ │ ├── parameters.md │ │ │ ├── prebuilt-workspaces.md │ │ │ ├── process-logging.md │ │ │ ├── provider-authentication.md │ │ │ ├── resource-metadata.md │ │ │ ├── resource-monitoring.md │ │ │ ├── resource-ordering.md │ │ │ ├── resource-persistence.md │ │ │ ├── variables.md │ │ │ ├── web-ides.md │ │ │ └── workspace-tags.md │ │ ├── index.md │ │ ├── managing-templates │ │ │ ├── change-management.md │ │ │ ├── dependencies.md │ │ │ ├── devcontainers │ │ │ │ ├── add-devcontainer.md │ │ │ │ ├── devcontainer-releases-known-issues.md │ │ │ │ ├── devcontainer-security-caching.md │ │ │ │ └── index.md │ │ │ ├── image-management.md │ │ │ ├── index.md │ │ │ └── schedule.md │ │ ├── open-in-coder.md │ │ ├── template-permissions.md │ │ └── troubleshooting.md │ └── users │ │ ├── github-auth.md │ │ ├── groups-roles.md │ │ ├── headless-auth.md │ │ ├── idp-sync.md │ │ ├── index.md │ │ ├── oidc-auth │ │ ├── index.md │ │ └── refresh-tokens.md │ │ ├── organizations.md │ │ ├── password-auth.md │ │ ├── quotas.md │ │ └── sessions-tokens.md ├── ai-coder │ ├── best-practices.md │ ├── custom-agents.md │ ├── ide-agents.md │ ├── index.md │ ├── mcp-server.md │ ├── security.md │ └── tasks.md ├── changelogs │ ├── images │ │ ├── activity-bump.png │ │ ├── autostop-visibility.png │ │ ├── bulk-updates.png │ │ ├── favorite_workspace.png │ │ ├── health-check.png │ │ ├── light-theme.png │ │ ├── owner-name.png │ │ ├── parameter-autofill.png │ │ ├── sharable-ports.png │ │ ├── support-bundle.png │ │ ├── workspace-cleanup.png │ │ └── workspace-page.png │ ├── index.md │ ├── v0.25.0.md │ ├── v0.26.0.md │ ├── v0.26.1.md │ ├── v0.27.0.md │ ├── v0.27.1.md │ ├── v0.27.3.md │ ├── v2.0.0.md │ ├── v2.0.2.md │ ├── v2.1.0.md │ ├── v2.1.1.md │ ├── v2.1.2.md │ ├── v2.1.3.md │ ├── v2.1.4.md │ ├── v2.1.5.md │ ├── v2.10.0.md │ ├── v2.2.0.md │ ├── v2.2.1.md │ ├── v2.3.0.md │ ├── v2.3.1.md │ ├── v2.3.2.md │ ├── v2.3.3.md │ ├── v2.4.0.md │ ├── v2.5.0.md │ ├── v2.5.1.md │ ├── v2.6.0.md │ ├── v2.6.1.md │ ├── v2.7.0.md │ ├── v2.7.1.md │ ├── v2.7.2.md │ ├── v2.7.3.md │ ├── v2.8.0.md │ ├── v2.8.2.md │ ├── v2.8.4.md │ └── v2.9.0.md ├── images │ ├── admin │ │ ├── admin-settings-general.png │ │ ├── deployment-id-copy-clipboard.png │ │ ├── git-auth-template.png │ │ ├── github-app-install.png │ │ ├── github-app-permissions.png │ │ ├── github-app-register.png │ │ ├── group-allowlist.png │ │ ├── integrations │ │ │ ├── coder-logstream-kube-logs-normal.png │ │ │ ├── coder-logstream-kube-logs-pod-crashed.png │ │ │ ├── coder-logstream-kube-logs-quota-exceeded.png │ │ │ ├── coder-logstream-kube-logs-wrong-image.png │ │ │ └── kube-region-picker.png │ │ ├── licenses │ │ │ ├── add-license-ui.png │ │ │ ├── licenses-nolicense.png │ │ │ └── licenses-screen.png │ │ ├── monitoring │ │ │ ├── grafana-dashboard.png │ │ │ ├── health-check.png │ │ │ ├── logstream-kube.png │ │ │ └── notifications │ │ │ │ ├── notification-admin-prefs.png │ │ │ │ ├── notification-states.png │ │ │ │ └── user-notification-preferences.png │ │ ├── networking │ │ │ └── workspace-proxies │ │ │ │ └── ws-proxy-picker.png │ │ ├── provisioner-tags.png │ │ ├── provisioners │ │ │ ├── provisioner-jobs-status-flow.png │ │ │ └── provisioner-jobs.png │ │ ├── quota-buildlog.png │ │ ├── secret-metadata.PNG │ │ ├── service-banner-config.png │ │ ├── service-banner-maintenance.png │ │ ├── setup │ │ │ └── appearance │ │ │ │ ├── announcement_banner_settings.png │ │ │ │ ├── application-name-logo-url.png │ │ │ │ ├── multiple-banners.PNG │ │ │ │ ├── service-banner-secret.png │ │ │ │ └── support-links.png │ │ ├── templates │ │ │ ├── agent-metadata-ui.png │ │ │ ├── coder-apps-ui.png │ │ │ ├── coder-metadata-ui.png │ │ │ ├── create-template.png │ │ │ ├── duplicate-menu.png │ │ │ ├── duplicate-page.png │ │ │ ├── extend-templates │ │ │ │ ├── dyn-params │ │ │ │ │ ├── dynamic-params-compare.png │ │ │ │ │ └── enable-dynamic-parameters.png │ │ │ │ ├── prebuilt │ │ │ │ │ ├── prebuilt-workspaces.png │ │ │ │ │ └── replacement-notification.png │ │ │ │ └── template-preset-dropdown.png │ │ │ ├── import-template.png │ │ │ ├── new-duplicate-template.png │ │ │ ├── schedule │ │ │ │ ├── template-schedule-settings.png │ │ │ │ └── user-quiet-hours.png │ │ │ ├── starter-templates.png │ │ │ └── troubleshooting │ │ │ │ └── workspace-build-timings-ui.png │ │ ├── users │ │ │ ├── create-token.png │ │ │ ├── headless-user.png │ │ │ ├── organizations │ │ │ │ ├── admin-settings-orgs.png │ │ │ │ ├── custom-roles.png │ │ │ │ ├── default-organization-settings.png │ │ │ │ ├── diagram.png │ │ │ │ ├── group-sync-empty.png │ │ │ │ ├── group-sync.png │ │ │ │ ├── idp-org-sync.png │ │ │ │ ├── new-organization.png │ │ │ │ ├── org-dropdown-create.png │ │ │ │ ├── organization-members.png │ │ │ │ ├── role-sync-empty.png │ │ │ │ ├── role-sync.png │ │ │ │ ├── template-org-picker.png │ │ │ │ └── workspace-list.png │ │ │ ├── quotas │ │ │ │ └── quota-groups.png │ │ │ └── roles │ │ │ │ ├── assigning-custom-role.PNG │ │ │ │ ├── creating-custom-role.PNG │ │ │ │ └── custom-roles.PNG │ │ └── workspace-proxy-picker.png │ ├── agent-metadata.png │ ├── airflow-port-forward.png │ ├── architecture-air-gapped.png │ ├── architecture-devcontainers.png │ ├── architecture-diagram.png │ ├── architecture-multi-cloud.png │ ├── architecture-multi-region.png │ ├── architecture-single-region.png │ ├── aws.svg │ ├── azure.svg │ ├── banner-black.png │ ├── banner-white.png │ ├── best-practice │ │ ├── build-timeline.png │ │ └── organizations-architecture.png │ ├── code-server-ide.png │ ├── code-server.png │ ├── coderapp-port-forward.png │ ├── create-workspace-from-templates-ui.png │ ├── creating-workspace-ui.png │ ├── custom-app.png │ ├── delete-template.png │ ├── deploy-pr-manually.png │ ├── display-apps.png │ ├── editors.png │ ├── external-apps.png │ ├── file-browser.png │ ├── fleet │ │ └── ssh-connect-to-coder.png │ ├── gateway │ │ ├── gateway-add-ssh-configuration.png │ │ ├── gateway-choose-ide.png │ │ ├── gateway-continue.png │ │ ├── gateway-create-ssh-configuration.png │ │ ├── gateway-home.png │ │ ├── gateway-intellij-opened.png │ │ ├── gateway-new-connection.png │ │ ├── gateway-welcome.png │ │ ├── jetbrains-offline-windows.png │ │ ├── offline-gateway.png │ │ ├── plugin-connect-to-coder.png │ │ ├── plugin-ide-list.png │ │ ├── plugin-select-ide.png │ │ ├── plugin-session-token.png │ │ └── plugin-settings-marketplace.png │ ├── gcp.png │ ├── google-cloud.svg │ ├── guides │ │ ├── ai-agents │ │ │ ├── architecture-high-level.png │ │ │ ├── duplicate.png │ │ │ ├── landing.png │ │ │ ├── realworld-ui.png │ │ │ ├── tasks-ui.png │ │ │ └── workspace-page.png │ │ ├── artifactory-integration │ │ │ └── jfrog-oauth-app.png │ │ ├── gcp-to-aws │ │ │ └── aws-create-role.png │ │ ├── okta │ │ │ ├── add_attribute.png │ │ │ ├── add_claim.png │ │ │ ├── add_claim_with_roles.png │ │ │ ├── add_scope.png │ │ │ ├── api_view.png │ │ │ ├── oidc_id_token.png │ │ │ └── token_preview.png │ │ ├── using-organizations │ │ │ ├── deployment-organizations.png │ │ │ ├── new-organization.png │ │ │ ├── organization-members.png │ │ │ ├── template-org-picker.png │ │ │ └── workspace-list.png │ │ └── xray-integration │ │ │ └── example.png │ ├── hero-image.png │ ├── icons-gallery.png │ ├── icons │ │ ├── access.svg │ │ ├── api.svg │ │ ├── art-pad.svg │ │ ├── circle-dot.svg │ │ ├── cloud.svg │ │ ├── code.svg │ │ ├── computer-code.svg │ │ ├── container.svg │ │ ├── contributing.svg │ │ ├── dependency.svg │ │ ├── docker.svg │ │ ├── document.svg │ │ ├── dollar.svg │ │ ├── download.svg │ │ ├── frontend.svg │ │ ├── gear.svg │ │ ├── generic.svg │ │ ├── git.svg │ │ ├── group.svg │ │ ├── health.svg │ │ ├── home.svg │ │ ├── hydra.svg │ │ ├── infinity.svg │ │ ├── info.svg │ │ ├── key.svg │ │ ├── kubernetes.svg │ │ ├── lan.svg │ │ ├── layers.svg │ │ ├── licensing.svg │ │ ├── link.svg │ │ ├── lock.svg │ │ ├── networking.svg │ │ ├── notes.svg │ │ ├── openshift.svg │ │ ├── orgs.svg │ │ ├── picture.svg │ │ ├── plug.svg │ │ ├── protractor.svg │ │ ├── puzzle.svg │ │ ├── queue.svg │ │ ├── radar.svg │ │ ├── rancher.svg │ │ ├── rbac.svg │ │ ├── scale.svg │ │ ├── science.svg │ │ ├── secrets.svg │ │ ├── security.svg │ │ ├── speed.svg │ │ ├── stairs.svg │ │ ├── star.svg │ │ ├── stopwatch.svg │ │ ├── system.svg │ │ ├── table-rows.svg │ │ ├── terminal.svg │ │ ├── toggle_on.svg │ │ ├── trash.svg │ │ ├── upgrade.svg │ │ ├── users.svg │ │ ├── wand.svg │ │ └── wrench.svg │ ├── ide-icons.svg │ ├── ide-row.png │ ├── ides │ │ ├── code-web-extensions.png │ │ └── copilot.png │ ├── install │ │ ├── coder-rancher.png │ │ ├── homebrew.png │ │ └── windows-installer.png │ ├── integrations │ │ └── platformx-screenshot.png │ ├── jupyter-notebook.png │ ├── jupyter.png │ ├── k8s.svg │ ├── logo-black.png │ ├── logo-white.png │ ├── metadata-ui.png │ ├── networking │ │ ├── annotatedports.png │ │ ├── listeningports.png │ │ ├── portforwarddashboard.png │ │ ├── portsharingmax.png │ │ ├── stun1.png │ │ ├── stun2.1.png │ │ ├── stun2.2.png │ │ └── stun3.png │ ├── oidc-sequence-diagram.svg │ ├── parameters.png │ ├── platforms │ │ ├── aws │ │ │ ├── aws-linux.png │ │ │ ├── instance-address.png │ │ │ ├── launch.mp4 │ │ │ ├── marketplace.png │ │ │ ├── modify-iam.png │ │ │ ├── security-groups.png │ │ │ └── workspace.png │ │ ├── azure │ │ │ ├── azure1.jpg │ │ │ ├── azure10.png │ │ │ ├── azure2.png │ │ │ ├── azure3.png │ │ │ ├── azure4.png │ │ │ ├── azure5.png │ │ │ ├── azure6.png │ │ │ ├── azure8.png │ │ │ └── azure9.png │ │ └── gcp │ │ │ ├── launch.mp4 │ │ │ ├── marketplace.png │ │ │ └── start.png │ ├── port-forward-dashboard.png │ ├── projector-intellij.png │ ├── providers-compute.png │ ├── readme-logos.png │ ├── rstudio-port-forward.png │ ├── schedule.png │ ├── screenshots │ │ ├── admin-settings.png │ │ ├── audit.png │ │ ├── coder-login.png │ │ ├── create-template.png │ │ ├── healthcheck.png │ │ ├── starter-templates.png │ │ ├── template-insights.png │ │ ├── templates-listing.png │ │ ├── terraform.png │ │ ├── welcome-create-admin-user.png │ │ ├── workspace-running-with-topbar.png │ │ └── workspaces-listing.png │ ├── secret-metadata-ui.png │ ├── ssh-keys.png │ ├── start │ │ ├── build-template.png │ │ ├── create-template.png │ │ ├── create-workspace.png │ │ ├── first-template.png │ │ ├── setup-page.png │ │ ├── starter-templates-annotated.png │ │ ├── starter-templates.png │ │ ├── template-edit-source-code.png │ │ ├── template-preview.png │ │ ├── template-publish.png │ │ ├── template-source-code.png │ │ ├── workspace-ready.png │ │ └── workspace-schedule-settings.png │ ├── template-rbac.png │ ├── template-scheduling.png │ ├── template-variables.png │ ├── templates │ │ ├── build-template.png │ │ ├── choosing-edit-template.gif │ │ ├── coder-session-token.png │ │ ├── create-template-permissions.png │ │ ├── create-template.png │ │ ├── create-workspace.png │ │ ├── devcontainers.png │ │ ├── develop-in-docker-template.png │ │ ├── edit-files.png │ │ ├── edit-source-code.png │ │ ├── general-settings.png │ │ ├── healthy-workspace-agent.png │ │ ├── new-workspace.png │ │ ├── open-in-coder.mp4 │ │ ├── open-in-coder.svg │ │ ├── permissions.png │ │ ├── pre-filled-parameters.png │ │ ├── publish.png │ │ ├── select-template.png │ │ ├── source-code.png │ │ ├── starter-templates-button.png │ │ ├── starter-templates.png │ │ ├── template-architecture.png │ │ ├── template-menu-settings.png │ │ ├── template-tour.png │ │ ├── template-variables.png │ │ ├── update-policies.png │ │ ├── update.png │ │ ├── upload-create-template-form.png │ │ ├── upload-create-your-first-template.png │ │ ├── use-template.png │ │ ├── workspace-apps.png │ │ └── workspace-ready.png │ ├── user-guides │ │ ├── create-workspace-ui.png │ │ ├── desktop │ │ │ ├── chrome-insecure-origin.png │ │ │ ├── coder-desktop-file-sync-add.png │ │ │ ├── coder-desktop-file-sync-conflicts-mouseover.png │ │ │ ├── coder-desktop-file-sync-staging.png │ │ │ ├── coder-desktop-file-sync-watching.png │ │ │ ├── coder-desktop-file-sync.png │ │ │ ├── coder-desktop-mac-pre-sign-in.png │ │ │ ├── coder-desktop-session-token.png │ │ │ ├── coder-desktop-sign-in.png │ │ │ ├── coder-desktop-win-enable-coder-connect.png │ │ │ ├── coder-desktop-win-pre-sign-in.png │ │ │ ├── coder-desktop-workspaces.png │ │ │ ├── firefox-insecure-origin.png │ │ │ └── mac-allow-vpn.png │ │ ├── devcontainers │ │ │ ├── devcontainer-agent-ports.png │ │ │ └── devcontainer-web-terminal.png │ │ ├── dotfiles-module.png │ │ ├── ides │ │ │ └── windsurf-coder-extension.png │ │ ├── jetbrains │ │ │ └── toolbox │ │ │ │ ├── certificate.png │ │ │ │ ├── install.png │ │ │ │ ├── login-token.png │ │ │ │ ├── login-url.png │ │ │ │ └── workspaces.png │ │ ├── remote-desktops │ │ │ ├── amazon-dcv-windows-demo.png │ │ │ ├── rdp-button.gif │ │ │ ├── vnc-desktop.png │ │ │ ├── web-rdp-demo.png │ │ │ └── windows_rdp_client.png │ │ ├── schedule-settings-workspace.png │ │ ├── terminal-access.png │ │ ├── workspace-bulk-actions.png │ │ ├── workspace-list-ui.png │ │ ├── workspace-settings-location.png │ │ └── workspace-view-connection-annotated.png │ ├── vscode-web.gif │ ├── workspace-automatic-updates.png │ ├── workspace-update.png │ ├── workspaces │ │ ├── autostart.png │ │ └── autostop.png │ └── zed │ │ └── zed-ssh-open-remote.png ├── install │ ├── cli.md │ ├── cloud │ │ ├── azure-vm.md │ │ ├── compute-engine.md │ │ ├── ec2.md │ │ └── index.md │ ├── docker.md │ ├── index.md │ ├── kubernetes.md │ ├── kubernetes │ │ └── kubernetes-azure-app-gateway.md │ ├── offline.md │ ├── openshift.md │ ├── other │ │ └── index.md │ ├── rancher.md │ ├── releases │ │ ├── feature-stages.md │ │ └── index.md │ ├── uninstall.md │ └── upgrade.md ├── manifest.json ├── reference │ ├── agent-api │ │ ├── debug.md │ │ ├── index.md │ │ └── schemas.md │ ├── api │ │ ├── agents.md │ │ ├── applications.md │ │ ├── audit.md │ │ ├── authentication.md │ │ ├── authorization.md │ │ ├── builds.md │ │ ├── debug.md │ │ ├── enterprise.md │ │ ├── files.md │ │ ├── general.md │ │ ├── git.md │ │ ├── index.md │ │ ├── insights.md │ │ ├── members.md │ │ ├── notifications.md │ │ ├── organizations.md │ │ ├── portsharing.md │ │ ├── prebuilds.md │ │ ├── provisioning.md │ │ ├── schemas.md │ │ ├── templates.md │ │ ├── users.md │ │ ├── workspaceproxies.md │ │ └── workspaces.md │ ├── cli │ │ ├── autoupdate.md │ │ ├── completion.md │ │ ├── config-ssh.md │ │ ├── create.md │ │ ├── delete.md │ │ ├── dotfiles.md │ │ ├── external-auth.md │ │ ├── external-auth_access-token.md │ │ ├── favorite.md │ │ ├── features.md │ │ ├── features_list.md │ │ ├── groups.md │ │ ├── groups_create.md │ │ ├── groups_delete.md │ │ ├── groups_edit.md │ │ ├── groups_list.md │ │ ├── index.md │ │ ├── licenses.md │ │ ├── licenses_add.md │ │ ├── licenses_delete.md │ │ ├── licenses_list.md │ │ ├── list.md │ │ ├── login.md │ │ ├── logout.md │ │ ├── netcheck.md │ │ ├── notifications.md │ │ ├── notifications_pause.md │ │ ├── notifications_resume.md │ │ ├── notifications_test.md │ │ ├── open.md │ │ ├── open_app.md │ │ ├── open_vscode.md │ │ ├── organizations.md │ │ ├── organizations_create.md │ │ ├── organizations_members.md │ │ ├── organizations_members_add.md │ │ ├── organizations_members_edit-roles.md │ │ ├── organizations_members_list.md │ │ ├── organizations_members_remove.md │ │ ├── organizations_roles.md │ │ ├── organizations_roles_create.md │ │ ├── organizations_roles_show.md │ │ ├── organizations_roles_update.md │ │ ├── organizations_settings.md │ │ ├── organizations_settings_set.md │ │ ├── organizations_settings_set_group-sync.md │ │ ├── organizations_settings_set_organization-sync.md │ │ ├── organizations_settings_set_role-sync.md │ │ ├── organizations_settings_show.md │ │ ├── organizations_settings_show_group-sync.md │ │ ├── organizations_settings_show_organization-sync.md │ │ ├── organizations_settings_show_role-sync.md │ │ ├── organizations_show.md │ │ ├── ping.md │ │ ├── port-forward.md │ │ ├── prebuilds.md │ │ ├── prebuilds_pause.md │ │ ├── prebuilds_resume.md │ │ ├── provisioner.md │ │ ├── provisioner_jobs.md │ │ ├── provisioner_jobs_cancel.md │ │ ├── provisioner_jobs_list.md │ │ ├── provisioner_keys.md │ │ ├── provisioner_keys_create.md │ │ ├── provisioner_keys_delete.md │ │ ├── provisioner_keys_list.md │ │ ├── provisioner_list.md │ │ ├── provisioner_start.md │ │ ├── publickey.md │ │ ├── rename.md │ │ ├── reset-password.md │ │ ├── restart.md │ │ ├── schedule.md │ │ ├── schedule_extend.md │ │ ├── schedule_show.md │ │ ├── schedule_start.md │ │ ├── schedule_stop.md │ │ ├── server.md │ │ ├── server_create-admin-user.md │ │ ├── server_dbcrypt.md │ │ ├── server_dbcrypt_decrypt.md │ │ ├── server_dbcrypt_delete.md │ │ ├── server_dbcrypt_rotate.md │ │ ├── server_postgres-builtin-serve.md │ │ ├── server_postgres-builtin-url.md │ │ ├── show.md │ │ ├── speedtest.md │ │ ├── ssh.md │ │ ├── start.md │ │ ├── stat.md │ │ ├── stat_cpu.md │ │ ├── stat_disk.md │ │ ├── stat_mem.md │ │ ├── state.md │ │ ├── state_pull.md │ │ ├── state_push.md │ │ ├── stop.md │ │ ├── support.md │ │ ├── support_bundle.md │ │ ├── templates.md │ │ ├── templates_archive.md │ │ ├── templates_create.md │ │ ├── templates_delete.md │ │ ├── templates_edit.md │ │ ├── templates_init.md │ │ ├── templates_list.md │ │ ├── templates_pull.md │ │ ├── templates_push.md │ │ ├── templates_versions.md │ │ ├── templates_versions_archive.md │ │ ├── templates_versions_list.md │ │ ├── templates_versions_promote.md │ │ ├── templates_versions_unarchive.md │ │ ├── tokens.md │ │ ├── tokens_create.md │ │ ├── tokens_list.md │ │ ├── tokens_remove.md │ │ ├── unfavorite.md │ │ ├── update.md │ │ ├── users.md │ │ ├── users_activate.md │ │ ├── users_create.md │ │ ├── users_delete.md │ │ ├── users_edit-roles.md │ │ ├── users_list.md │ │ ├── users_show.md │ │ ├── users_suspend.md │ │ ├── version.md │ │ └── whoami.md │ └── index.md ├── start │ ├── first-template.md │ ├── first-workspace.md │ └── local-deploy.md ├── support │ ├── index.md │ └── support-bundle.md ├── tutorials │ ├── azure-federation.md │ ├── best-practices │ │ ├── index.md │ │ ├── organizations.md │ │ ├── scale-coder.md │ │ ├── security-best-practices.md │ │ └── speed-up-templates.md │ ├── cloning-git-repositories.md │ ├── configuring-okta.md │ ├── example-guide.md │ ├── external-database.md │ ├── faqs.md │ ├── gcp-to-aws.md │ ├── image-pull-secret.md │ ├── index.md │ ├── postgres-ssl.md │ ├── quickstart.md │ ├── reverse-proxy-apache.md │ ├── reverse-proxy-caddy.md │ ├── reverse-proxy-nginx.md │ ├── template-from-scratch.md │ └── testing-templates.md └── user-guides │ ├── desktop │ ├── desktop-connect-sync.md │ └── index.md │ ├── devcontainers │ ├── index.md │ ├── troubleshooting-dev-containers.md │ └── working-with-dev-containers.md │ ├── index.md │ ├── workspace-access │ ├── cursor.md │ ├── emacs-tramp.md │ ├── filebrowser.md │ ├── index.md │ ├── jetbrains │ │ ├── fleet.md │ │ ├── gateway.md │ │ ├── index.md │ │ └── toolbox.md │ ├── port-forwarding.md │ ├── remote-desktops.md │ ├── vscode.md │ ├── web-ides.md │ ├── windsurf.md │ └── zed.md │ ├── workspace-dotfiles.md │ ├── workspace-lifecycle.md │ ├── workspace-management.md │ └── workspace-scheduling.md ├── dogfood ├── coder-envbuilder │ ├── README.md │ └── main.tf ├── coder │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── devcontainer.json │ ├── files │ │ ├── etc │ │ │ ├── apt │ │ │ │ ├── apt.conf.d │ │ │ │ │ ├── 80-no-recommends │ │ │ │ │ └── 80-retries │ │ │ │ ├── preferences.d │ │ │ │ │ ├── containerd │ │ │ │ │ ├── docker │ │ │ │ │ ├── github-cli │ │ │ │ │ ├── google-cloud │ │ │ │ │ ├── hashicorp │ │ │ │ │ └── ppa │ │ │ │ └── sources.list.d │ │ │ │ │ ├── docker.list │ │ │ │ │ ├── google-cloud.list │ │ │ │ │ ├── hashicorp.list │ │ │ │ │ ├── postgresql.list │ │ │ │ │ └── ppa.list │ │ │ └── docker │ │ │ │ └── daemon.json │ │ └── usr │ │ │ └── share │ │ │ └── keyrings │ │ │ ├── ansible.gpg │ │ │ ├── docker.gpg │ │ │ ├── fish-shell.gpg │ │ │ ├── git-core.gpg │ │ │ ├── github-cli.gpg │ │ │ ├── google-cloud.gpg │ │ │ ├── hashicorp.gpg │ │ │ ├── helix.gpg │ │ │ ├── neovim.gpg │ │ │ └── postgresql.gpg │ ├── guide.md │ ├── main.tf │ ├── nix.hash │ └── update-keys.sh └── main.tf ├── enterprise ├── audit │ ├── audit.go │ ├── audit_test.go │ ├── audittest │ │ └── rand.go │ ├── backends │ │ ├── postgres.go │ │ ├── postgres_test.go │ │ ├── slog.go │ │ └── slog_test.go │ ├── diff.go │ ├── diff_internal_test.go │ ├── filter.go │ ├── generate.sh │ ├── table.go │ └── table_internal_test.go ├── cli │ ├── create_test.go │ ├── features.go │ ├── features_test.go │ ├── groupcreate.go │ ├── groupcreate_test.go │ ├── groupdelete.go │ ├── groupdelete_test.go │ ├── groupedit.go │ ├── groupedit_test.go │ ├── grouplist.go │ ├── grouplist_test.go │ ├── groups.go │ ├── licenses.go │ ├── licenses_test.go │ ├── organization_test.go │ ├── organizationmembers_test.go │ ├── organizationsettings_test.go │ ├── prebuilds.go │ ├── prebuilds_test.go │ ├── provisionerdaemons.go │ ├── provisionerdaemonstart.go │ ├── provisionerdaemonstart_slim.go │ ├── provisionerdaemonstart_test.go │ ├── provisionerkeys.go │ ├── provisionerkeys_test.go │ ├── proxyserver.go │ ├── proxyserver_slim.go │ ├── proxyserver_test.go │ ├── root.go │ ├── root_internal_test.go │ ├── root_test.go │ ├── server.go │ ├── server_dbcrypt.go │ ├── server_dbcrypt_test.go │ ├── server_test.go │ ├── start_test.go │ ├── templatecreate_test.go │ ├── templateedit_test.go │ ├── templatelist_test.go │ ├── testdata │ │ ├── coder_--help.golden │ │ ├── coder_features_--help.golden │ │ ├── coder_features_list_--help.golden │ │ ├── coder_groups_--help.golden │ │ ├── coder_groups_create_--help.golden │ │ ├── coder_groups_delete_--help.golden │ │ ├── coder_groups_edit_--help.golden │ │ ├── coder_groups_list_--help.golden │ │ ├── coder_licenses_--help.golden │ │ ├── coder_licenses_add_--help.golden │ │ ├── coder_licenses_delete_--help.golden │ │ ├── coder_licenses_list_--help.golden │ │ ├── coder_prebuilds_--help.golden │ │ ├── coder_prebuilds_pause_--help.golden │ │ ├── coder_prebuilds_resume_--help.golden │ │ ├── coder_provisioner_--help.golden │ │ ├── coder_provisioner_jobs_--help.golden │ │ ├── coder_provisioner_jobs_cancel_--help.golden │ │ ├── coder_provisioner_jobs_list_--help.golden │ │ ├── coder_provisioner_keys_--help.golden │ │ ├── coder_provisioner_keys_create_--help.golden │ │ ├── coder_provisioner_keys_delete_--help.golden │ │ ├── coder_provisioner_keys_list_--help.golden │ │ ├── coder_provisioner_list_--help.golden │ │ ├── coder_provisioner_start_--help.golden │ │ ├── coder_server_--help.golden │ │ ├── coder_server_create-admin-user_--help.golden │ │ ├── coder_server_dbcrypt_--help.golden │ │ ├── coder_server_dbcrypt_decrypt_--help.golden │ │ ├── coder_server_dbcrypt_delete_--help.golden │ │ ├── coder_server_dbcrypt_rotate_--help.golden │ │ ├── coder_server_postgres-builtin-serve_--help.golden │ │ └── coder_server_postgres-builtin-url_--help.golden │ ├── workspaceproxy.go │ └── workspaceproxy_test.go ├── cmd │ └── coder │ │ └── main.go ├── coderd │ ├── appearance.go │ ├── appearance_test.go │ ├── audit_test.go │ ├── authorize_test.go │ ├── coderd.go │ ├── coderd_test.go │ ├── coderdenttest │ │ ├── coderdenttest.go │ │ ├── coderdenttest_test.go │ │ ├── proxytest.go │ │ └── swagger_test.go │ ├── connectionlog.go │ ├── connectionlog │ │ └── connectionlog.go │ ├── connectionlog_test.go │ ├── dbauthz │ │ └── accesscontrol.go │ ├── dormancy │ │ ├── dormantusersjob.go │ │ └── dormantusersjob_test.go │ ├── dynamicparameters_test.go │ ├── enidpsync │ │ ├── enidpsync.go │ │ ├── groups.go │ │ ├── groups_test.go │ │ ├── organizations.go │ │ ├── organizations_test.go │ │ ├── role.go │ │ └── role_test.go │ ├── gitsshkey_test.go │ ├── groups.go │ ├── groups_test.go │ ├── httpmw │ │ ├── doc.go │ │ └── provisionerdaemon_test.go │ ├── idpsync.go │ ├── idpsync_internal_test.go │ ├── idpsync_test.go │ ├── insights_test.go │ ├── keys │ │ └── 2022-08-12 │ ├── license │ │ ├── doc.go │ │ ├── license.go │ │ ├── license_test.go │ │ ├── metricscollector.go │ │ ├── metricscollector_test.go │ │ └── testdata │ │ │ └── license-metrics.json │ ├── licenses.go │ ├── licenses_test.go │ ├── notifications.go │ ├── notifications_test.go │ ├── organizations.go │ ├── organizations_test.go │ ├── parameters_test.go │ ├── portsharing │ │ └── portsharing.go │ ├── prebuilds.go │ ├── prebuilds │ │ ├── claim.go │ │ ├── claim_test.go │ │ ├── membership.go │ │ ├── membership_test.go │ │ ├── metricscollector.go │ │ ├── metricscollector_test.go │ │ ├── reconcile.go │ │ └── reconcile_test.go │ ├── provisionerdaemons.go │ ├── provisionerdaemons_test.go │ ├── provisionerkeys.go │ ├── provisionerkeys_test.go │ ├── proxyhealth │ │ ├── proxyhealth.go │ │ └── proxyhealth_test.go │ ├── replicas.go │ ├── replicas_test.go │ ├── roles.go │ ├── roles_test.go │ ├── schedule │ │ ├── template.go │ │ ├── template_test.go │ │ ├── user.go │ │ └── user_test.go │ ├── scim.go │ ├── scim │ │ └── scimtypes.go │ ├── scim_test.go │ ├── templates.go │ ├── templates_test.go │ ├── testdata │ │ └── parameters │ │ │ ├── dynamic │ │ │ └── main.tf │ │ │ ├── dynamicimmutable │ │ │ └── main.tf │ │ │ ├── ephemeral │ │ │ └── main.tf │ │ │ ├── groups │ │ │ ├── main.tf │ │ │ └── plan.json │ │ │ ├── immutable │ │ │ └── main.tf │ │ │ ├── none │ │ │ └── main.tf │ │ │ ├── numbers │ │ │ └── main.tf │ │ │ ├── regex │ │ │ └── main.tf │ │ │ └── workspacetags │ │ │ └── main.tf │ ├── userauth.go │ ├── userauth_test.go │ ├── users.go │ ├── users_test.go │ ├── workspaceagents.go │ ├── workspaceagents_test.go │ ├── workspacebuilds_test.go │ ├── workspaceportshare_test.go │ ├── workspaceproxy.go │ ├── workspaceproxy_internal_test.go │ ├── workspaceproxy_test.go │ ├── workspaceproxycoordinate.go │ ├── workspacequota.go │ ├── workspacequota_test.go │ └── workspaces_test.go ├── dbcrypt │ ├── cipher.go │ ├── cipher_internal_test.go │ ├── cliutil.go │ ├── dbcrypt.go │ ├── dbcrypt_internal_test.go │ └── doc.go ├── derpmesh │ ├── derpmesh.go │ └── derpmesh_test.go ├── members_test.go ├── provisionerd │ ├── remoteprovisioners.go │ └── remoteprovisioners_test.go ├── replicasync │ ├── replicasync.go │ └── replicasync_test.go ├── tailnet │ ├── connio.go │ ├── handshaker.go │ ├── handshaker_test.go │ ├── htmldebug.go │ ├── multiagent_test.go │ ├── pgcoord.go │ ├── pgcoord_internal_test.go │ ├── pgcoord_test.go │ ├── testdata │ │ └── debug.golden.html │ └── workspaceproxy.go ├── trialer │ ├── trialer.go │ └── trialer_test.go ├── workspaceapps_test.go └── wsproxy │ ├── appstatsreporter.go │ ├── keyfetcher.go │ ├── tokenprovider.go │ ├── wsproxy.go │ ├── wsproxy_test.go │ └── wsproxysdk │ ├── wsproxysdk.go │ └── wsproxysdk_test.go ├── examples ├── examples.gen.json ├── examples.go ├── examples_test.go ├── jfrog │ ├── docker │ │ ├── README.md │ │ ├── build │ │ │ └── Dockerfile │ │ └── main.tf │ └── remote │ │ └── main.tf ├── lima │ ├── README.md │ └── coder.yaml ├── monitoring │ └── dashboards │ │ └── grafana │ │ ├── README.md │ │ └── dashboard.json ├── parameters-dynamic-options │ ├── README.md │ ├── main.tf │ └── variables.yml ├── parameters │ ├── README.md │ ├── build │ │ └── Dockerfile │ └── main.tf ├── templates │ ├── README.md │ ├── aws-devcontainer │ │ ├── README.md │ │ ├── architecture.svg │ │ ├── cloud-init │ │ │ ├── cloud-config.yaml.tftpl │ │ │ └── userdata.sh.tftpl │ │ └── main.tf │ ├── aws-linux │ │ ├── README.md │ │ ├── cloud-init │ │ │ ├── cloud-config.yaml.tftpl │ │ │ └── userdata.sh.tftpl │ │ └── main.tf │ ├── aws-windows │ │ ├── README.md │ │ └── main.tf │ ├── azure-linux │ │ ├── README.md │ │ ├── cloud-init │ │ │ └── cloud-config.yaml.tftpl │ │ └── main.tf │ ├── azure-windows │ │ ├── FirstLogonCommands.xml │ │ ├── Initialize.ps1.tftpl │ │ ├── README.md │ │ └── main.tf │ ├── community-templates.md │ ├── digitalocean-linux │ │ ├── README.md │ │ ├── cloud-config.yaml.tftpl │ │ └── main.tf │ ├── docker-devcontainer │ │ ├── README.md │ │ ├── main.tf │ │ └── scripts │ │ │ └── init-docker-in-docker.sh │ ├── docker-envbuilder │ │ ├── README.md │ │ └── main.tf │ ├── docker │ │ ├── README.md │ │ └── main.tf │ ├── gcp-devcontainer │ │ ├── README.md │ │ ├── architecture.svg │ │ └── main.tf │ ├── gcp-linux │ │ ├── README.md │ │ └── main.tf │ ├── gcp-vm-container │ │ ├── README.md │ │ └── main.tf │ ├── gcp-windows │ │ ├── README.md │ │ └── main.tf │ ├── incus │ │ ├── README.md │ │ └── main.tf │ ├── kubernetes-devcontainer │ │ ├── README.md │ │ └── main.tf │ ├── kubernetes-envbox │ │ ├── README.md │ │ └── main.tf │ ├── kubernetes │ │ ├── README.md │ │ └── main.tf │ ├── nomad-docker │ │ ├── README.md │ │ ├── main.tf │ │ └── workspace.nomad.tpl │ └── scratch │ │ ├── README.md │ │ └── main.tf └── workspace-tags │ ├── README.md │ └── main.tf ├── flake.lock ├── flake.nix ├── go.mod ├── go.sum ├── helm ├── .gitignore ├── Makefile ├── artifacthub-repo.yml ├── coder │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _coder.tpl │ │ ├── coder.yaml │ │ ├── extra-templates.yaml │ │ ├── ingress.yaml │ │ ├── rbac.yaml │ │ └── service.yaml │ ├── tests │ │ ├── chart_test.go │ │ └── testdata │ │ │ ├── auto_access_url_1.golden │ │ │ ├── auto_access_url_1.yaml │ │ │ ├── auto_access_url_1_coder.golden │ │ │ ├── auto_access_url_2.golden │ │ │ ├── auto_access_url_2.yaml │ │ │ ├── auto_access_url_2_coder.golden │ │ │ ├── auto_access_url_3.golden │ │ │ ├── auto_access_url_3.yaml │ │ │ ├── auto_access_url_3_coder.golden │ │ │ ├── command.golden │ │ │ ├── command.yaml │ │ │ ├── command_args.golden │ │ │ ├── command_args.yaml │ │ │ ├── command_args_coder.golden │ │ │ ├── command_coder.golden │ │ │ ├── custom_resources.golden │ │ │ ├── custom_resources.yaml │ │ │ ├── custom_resources_coder.golden │ │ │ ├── default_values.golden │ │ │ ├── default_values.yaml │ │ │ ├── default_values_coder.golden │ │ │ ├── env_from.golden │ │ │ ├── env_from.yaml │ │ │ ├── env_from_coder.golden │ │ │ ├── extra_templates.golden │ │ │ ├── extra_templates.yaml │ │ │ ├── extra_templates_coder.golden │ │ │ ├── labels_annotations.golden │ │ │ ├── labels_annotations.yaml │ │ │ ├── labels_annotations_coder.golden │ │ │ ├── missing_values.yaml │ │ │ ├── partial_resources.golden │ │ │ ├── partial_resources.yaml │ │ │ ├── partial_resources_coder.golden │ │ │ ├── prometheus.golden │ │ │ ├── prometheus.yaml │ │ │ ├── prometheus_coder.golden │ │ │ ├── provisionerd_psk.golden │ │ │ ├── provisionerd_psk.yaml │ │ │ ├── provisionerd_psk_coder.golden │ │ │ ├── sa.golden │ │ │ ├── sa.yaml │ │ │ ├── sa_coder.golden │ │ │ ├── sa_disabled.golden │ │ │ ├── sa_disabled.yaml │ │ │ ├── sa_disabled_coder.golden │ │ │ ├── sa_extra_rules.golden │ │ │ ├── sa_extra_rules.yaml │ │ │ ├── sa_extra_rules_coder.golden │ │ │ ├── securitycontext.golden │ │ │ ├── securitycontext.yaml │ │ │ ├── securitycontext_coder.golden │ │ │ ├── svc_loadbalancer.golden │ │ │ ├── svc_loadbalancer.yaml │ │ │ ├── svc_loadbalancer_class.golden │ │ │ ├── svc_loadbalancer_class.yaml │ │ │ ├── svc_loadbalancer_class_coder.golden │ │ │ ├── svc_loadbalancer_coder.golden │ │ │ ├── svc_nodeport.golden │ │ │ ├── svc_nodeport.yaml │ │ │ ├── svc_nodeport_coder.golden │ │ │ ├── tls.golden │ │ │ ├── tls.yaml │ │ │ ├── tls_coder.golden │ │ │ ├── topology.golden │ │ │ ├── topology.yaml │ │ │ ├── topology_coder.golden │ │ │ ├── workspace_proxy.golden │ │ │ ├── workspace_proxy.yaml │ │ │ └── workspace_proxy_coder.golden │ └── values.yaml ├── libcoder │ ├── Chart.yaml │ └── templates │ │ ├── _coder.yaml │ │ ├── _helpers.tpl │ │ ├── _rbac.yaml │ │ └── _util.yaml └── provisioner │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _coder.tpl │ ├── coder.yaml │ ├── extra-templates.yaml │ └── rbac.yaml │ ├── tests │ ├── chart_test.go │ └── testdata │ │ ├── command.golden │ │ ├── command.yaml │ │ ├── command_args.golden │ │ ├── command_args.yaml │ │ ├── command_args_coder.golden │ │ ├── command_coder.golden │ │ ├── custom_resources.golden │ │ ├── custom_resources.yaml │ │ ├── custom_resources_coder.golden │ │ ├── default_values.golden │ │ ├── default_values.yaml │ │ ├── default_values_coder.golden │ │ ├── extra_templates.golden │ │ ├── extra_templates.yaml │ │ ├── extra_templates_coder.golden │ │ ├── labels_annotations.golden │ │ ├── labels_annotations.yaml │ │ ├── labels_annotations_coder.golden │ │ ├── missing_values.yaml │ │ ├── name_override.golden │ │ ├── name_override.yaml │ │ ├── name_override_coder.golden │ │ ├── name_override_existing_sa.golden │ │ ├── name_override_existing_sa.yaml │ │ ├── name_override_existing_sa_coder.golden │ │ ├── partial_resources.golden │ │ ├── partial_resources.yaml │ │ ├── partial_resources_coder.golden │ │ ├── provisionerd_key.golden │ │ ├── provisionerd_key.yaml │ │ ├── provisionerd_key_coder.golden │ │ ├── provisionerd_key_psk_empty_workaround.golden │ │ ├── provisionerd_key_psk_empty_workaround.yaml │ │ ├── provisionerd_key_psk_empty_workaround_coder.golden │ │ ├── provisionerd_key_tags.yaml │ │ ├── provisionerd_no_psk_or_key.yaml │ │ ├── provisionerd_psk.golden │ │ ├── provisionerd_psk.yaml │ │ ├── provisionerd_psk_and_key.yaml │ │ ├── provisionerd_psk_coder.golden │ │ ├── sa.golden │ │ ├── sa.yaml │ │ ├── sa_coder.golden │ │ ├── sa_disabled.golden │ │ ├── sa_disabled.yaml │ │ └── sa_disabled_coder.golden │ └── values.yaml ├── install.sh ├── nix └── docker.nix ├── offlinedocs ├── .eslintrc.json ├── .gitignore ├── .npmrc ├── .prettierignore ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── [[...slug]].tsx │ └── _app.tsx ├── pnpm-lock.yaml ├── public │ ├── favicon.png │ └── logo.svg ├── scripts │ └── copyImages.sh └── tsconfig.json ├── package.json ├── pnpm-lock.yaml ├── provisioner ├── echo │ ├── serve.go │ └── serve_test.go ├── regexes.go ├── regexes_test.go └── terraform │ ├── cleanup.go │ ├── cleanup_test.go │ ├── diagnostic.go │ ├── diagnostic_test.go │ ├── executor.go │ ├── executor_internal_test.go │ ├── install.go │ ├── install_test.go │ ├── internal │ └── timings_test_utils.go │ ├── modules.go │ ├── modules_internal_test.go │ ├── otelenv.go │ ├── otelenv_internal_test.go │ ├── parse.go │ ├── parse_test.go │ ├── provision.go │ ├── provision_test.go │ ├── resource_replacements.go │ ├── resource_replacements_internal_test.go │ ├── resources.go │ ├── resources_test.go │ ├── safeenv.go │ ├── serve.go │ ├── serve_internal_test.go │ ├── testdata │ ├── cleanup-stale-plugins │ │ ├── all_plugins_are_stale.txt.golden │ │ ├── one_plugin_file_is_touched.txt.golden │ │ └── one_plugin_is_stale.txt.golden │ ├── fake_cancel.sh │ ├── fake_cancel_hang.sh │ ├── fake_text_file_busy.sh │ ├── generate.sh │ ├── modules-source-caching │ │ └── .terraform │ │ │ └── modules │ │ │ ├── example_module │ │ │ └── main.tf │ │ │ ├── modules.json │ │ │ └── stuff_that_should_not_be_included │ │ │ └── nothing.txt │ ├── resources │ │ ├── ai-tasks-missing-prompt │ │ │ ├── ai-tasks-missing-prompt.tfplan.dot │ │ │ ├── ai-tasks-missing-prompt.tfplan.json │ │ │ ├── ai-tasks-missing-prompt.tfstate.dot │ │ │ ├── ai-tasks-missing-prompt.tfstate.json │ │ │ └── main.tf │ │ ├── ai-tasks-multiple │ │ │ ├── ai-tasks-multiple.tfplan.dot │ │ │ ├── ai-tasks-multiple.tfplan.json │ │ │ ├── ai-tasks-multiple.tfstate.dot │ │ │ ├── ai-tasks-multiple.tfstate.json │ │ │ └── main.tf │ │ ├── calling-module │ │ │ ├── calling-module.tf │ │ │ ├── calling-module.tfplan.dot │ │ │ ├── calling-module.tfplan.json │ │ │ ├── calling-module.tfstate.dot │ │ │ ├── calling-module.tfstate.json │ │ │ └── module │ │ │ │ └── module.tf │ │ ├── chaining-resources │ │ │ ├── chaining-resources.tf │ │ │ ├── chaining-resources.tfplan.dot │ │ │ ├── chaining-resources.tfplan.json │ │ │ ├── chaining-resources.tfstate.dot │ │ │ └── chaining-resources.tfstate.json │ │ ├── conflicting-resources │ │ │ ├── conflicting-resources.tf │ │ │ ├── conflicting-resources.tfplan.dot │ │ │ ├── conflicting-resources.tfplan.json │ │ │ ├── conflicting-resources.tfstate.dot │ │ │ └── conflicting-resources.tfstate.json │ │ ├── devcontainer │ │ │ ├── devcontainer.tf │ │ │ ├── devcontainer.tfplan.dot │ │ │ ├── devcontainer.tfplan.json │ │ │ ├── devcontainer.tfstate.dot │ │ │ └── devcontainer.tfstate.json │ │ ├── display-apps-disabled │ │ │ ├── display-apps-disabled.tf │ │ │ ├── display-apps-disabled.tfplan.dot │ │ │ ├── display-apps-disabled.tfplan.json │ │ │ ├── display-apps-disabled.tfstate.dot │ │ │ └── display-apps-disabled.tfstate.json │ │ ├── display-apps │ │ │ ├── display-apps.tf │ │ │ ├── display-apps.tfplan.dot │ │ │ ├── display-apps.tfplan.json │ │ │ ├── display-apps.tfstate.dot │ │ │ └── display-apps.tfstate.json │ │ ├── external-auth-providers │ │ │ ├── external-auth-providers.tf │ │ │ ├── external-auth-providers.tfplan.dot │ │ │ ├── external-auth-providers.tfplan.json │ │ │ ├── external-auth-providers.tfstate.dot │ │ │ └── external-auth-providers.tfstate.json │ │ ├── instance-id │ │ │ ├── instance-id.tf │ │ │ ├── instance-id.tfplan.dot │ │ │ ├── instance-id.tfplan.json │ │ │ ├── instance-id.tfstate.dot │ │ │ └── instance-id.tfstate.json │ │ ├── kubernetes-metadata │ │ │ ├── kubernetes-metadata.tf │ │ │ ├── kubernetes-metadata.tfplan.dot │ │ │ ├── kubernetes-metadata.tfplan.json │ │ │ ├── kubernetes-metadata.tfstate.dot │ │ │ └── kubernetes-metadata.tfstate.json │ │ ├── mapped-apps │ │ │ ├── mapped-apps.tf │ │ │ ├── mapped-apps.tfplan.dot │ │ │ ├── mapped-apps.tfplan.json │ │ │ ├── mapped-apps.tfstate.dot │ │ │ └── mapped-apps.tfstate.json │ │ ├── multiple-agents-multiple-apps │ │ │ ├── multiple-agents-multiple-apps.tf │ │ │ ├── multiple-agents-multiple-apps.tfplan.dot │ │ │ ├── multiple-agents-multiple-apps.tfplan.json │ │ │ ├── multiple-agents-multiple-apps.tfstate.dot │ │ │ └── multiple-agents-multiple-apps.tfstate.json │ │ ├── multiple-agents-multiple-envs │ │ │ ├── multiple-agents-multiple-envs.tf │ │ │ ├── multiple-agents-multiple-envs.tfplan.dot │ │ │ ├── multiple-agents-multiple-envs.tfplan.json │ │ │ ├── multiple-agents-multiple-envs.tfstate.dot │ │ │ └── multiple-agents-multiple-envs.tfstate.json │ │ ├── multiple-agents-multiple-monitors │ │ │ ├── multiple-agents-multiple-monitors.tf │ │ │ ├── multiple-agents-multiple-monitors.tfplan.dot │ │ │ ├── multiple-agents-multiple-monitors.tfplan.json │ │ │ ├── multiple-agents-multiple-monitors.tfstate.dot │ │ │ └── multiple-agents-multiple-monitors.tfstate.json │ │ ├── multiple-agents-multiple-scripts │ │ │ ├── multiple-agents-multiple-scripts.tf │ │ │ ├── multiple-agents-multiple-scripts.tfplan.dot │ │ │ ├── multiple-agents-multiple-scripts.tfplan.json │ │ │ ├── multiple-agents-multiple-scripts.tfstate.dot │ │ │ └── multiple-agents-multiple-scripts.tfstate.json │ │ ├── multiple-agents │ │ │ ├── multiple-agents.tf │ │ │ ├── multiple-agents.tfplan.dot │ │ │ ├── multiple-agents.tfplan.json │ │ │ ├── multiple-agents.tfstate.dot │ │ │ └── multiple-agents.tfstate.json │ │ ├── multiple-apps │ │ │ ├── multiple-apps.tf │ │ │ ├── multiple-apps.tfplan.dot │ │ │ ├── multiple-apps.tfplan.json │ │ │ ├── multiple-apps.tfstate.dot │ │ │ └── multiple-apps.tfstate.json │ │ ├── presets-multiple-defaults │ │ │ ├── multiple-defaults.tf │ │ │ ├── presets-multiple-defaults.tfplan.dot │ │ │ ├── presets-multiple-defaults.tfplan.json │ │ │ ├── presets-multiple-defaults.tfstate.dot │ │ │ └── presets-multiple-defaults.tfstate.json │ │ ├── presets-single-default │ │ │ ├── presets-single-default.tfplan.dot │ │ │ ├── presets-single-default.tfplan.json │ │ │ ├── presets-single-default.tfstate.dot │ │ │ ├── presets-single-default.tfstate.json │ │ │ └── single-default.tf │ │ ├── presets │ │ │ ├── external-module │ │ │ │ ├── child-external-module │ │ │ │ │ └── main.tf │ │ │ │ └── main.tf │ │ │ ├── presets.tf │ │ │ ├── presets.tfplan.dot │ │ │ ├── presets.tfplan.json │ │ │ ├── presets.tfstate.dot │ │ │ └── presets.tfstate.json │ │ ├── resource-metadata-duplicate │ │ │ ├── resource-metadata-duplicate.tf │ │ │ ├── resource-metadata-duplicate.tfplan.dot │ │ │ ├── resource-metadata-duplicate.tfplan.json │ │ │ ├── resource-metadata-duplicate.tfstate.dot │ │ │ └── resource-metadata-duplicate.tfstate.json │ │ ├── resource-metadata │ │ │ ├── resource-metadata.tf │ │ │ ├── resource-metadata.tfplan.dot │ │ │ ├── resource-metadata.tfplan.json │ │ │ ├── resource-metadata.tfstate.dot │ │ │ └── resource-metadata.tfstate.json │ │ ├── rich-parameters-order │ │ │ ├── rich-parameters-order.tf │ │ │ ├── rich-parameters-order.tfplan.dot │ │ │ ├── rich-parameters-order.tfplan.json │ │ │ ├── rich-parameters-order.tfstate.dot │ │ │ └── rich-parameters-order.tfstate.json │ │ ├── rich-parameters-validation │ │ │ ├── rich-parameters-validation.tf │ │ │ ├── rich-parameters-validation.tfplan.dot │ │ │ ├── rich-parameters-validation.tfplan.json │ │ │ ├── rich-parameters-validation.tfstate.dot │ │ │ └── rich-parameters-validation.tfstate.json │ │ ├── rich-parameters │ │ │ ├── external-module │ │ │ │ ├── child-external-module │ │ │ │ │ └── main.tf │ │ │ │ └── main.tf │ │ │ ├── rich-parameters.tf │ │ │ ├── rich-parameters.tfplan.dot │ │ │ ├── rich-parameters.tfplan.json │ │ │ ├── rich-parameters.tfstate.dot │ │ │ └── rich-parameters.tfstate.json │ │ └── version.txt │ ├── timings-aggregation │ │ ├── complete.txtar │ │ ├── error.txtar │ │ ├── fake-terraform.sh │ │ ├── faster-than-light.txtar │ │ ├── incomplete.txtar │ │ ├── init.txtar │ │ ├── multiple-resource-actions.txtar │ │ └── simple.txtar │ └── version.txt │ ├── tfparse │ ├── funcs.go │ ├── tfparse.go │ └── tfparse_test.go │ ├── timings.go │ ├── timings_internal_test.go │ └── timings_test.go ├── provisionerd ├── localprovisioners.go ├── proto │ ├── provisionerd.pb.go │ ├── provisionerd.proto │ ├── provisionerd_drpc.pb.go │ ├── quota.go │ └── version.go ├── provisionerd.go ├── provisionerd_test.go └── runner │ ├── quota.go │ └── runner.go ├── provisionersdk ├── agent.go ├── agent_test.go ├── archive.go ├── archive_test.go ├── cleanup.go ├── cleanup_test.go ├── errors.go ├── logs.go ├── proto │ ├── converter.go │ ├── converter_test.go │ ├── dataupload.go │ ├── dataupload_test.go │ ├── prebuilt_workspace.go │ ├── provisioner.pb.go │ ├── provisioner.proto │ └── provisioner_drpc.pb.go ├── provisionertags.go ├── provisionertags_test.go ├── scripts │ ├── bootstrap_darwin.sh │ ├── bootstrap_linux.sh │ └── bootstrap_windows.ps1 ├── serve.go ├── serve_test.go └── session.go ├── pty ├── pty.go ├── pty_linux.go ├── pty_other.go ├── pty_windows.go ├── ptytest │ ├── ptytest.go │ ├── ptytest_internal_test.go │ └── ptytest_test.go ├── ssh_other.go ├── start.go ├── start_other.go ├── start_other_test.go ├── start_test.go ├── start_windows.go ├── start_windows_test.go ├── terminal.go ├── terminal_other.go └── terminal_windows.go ├── release.key ├── scaletest ├── README.md ├── agentconn │ ├── config.go │ ├── config_test.go │ ├── run.go │ └── run_test.go ├── createworkspaces │ ├── config.go │ ├── config_test.go │ ├── run.go │ └── run_test.go ├── dashboard │ ├── chromedp.go │ ├── config.go │ ├── metrics.go │ ├── run.go │ └── run_test.go ├── harness │ ├── harness.go │ ├── harness_test.go │ ├── results.go │ ├── results_test.go │ ├── run.go │ ├── run_test.go │ ├── strategies.go │ └── strategies_test.go ├── lib │ ├── coder_init.sh │ ├── coder_shim.sh │ └── coder_workspacetraffic.sh ├── loadtestutil │ └── syncwriter.go ├── placebo │ ├── config.go │ ├── config_test.go │ ├── run.go │ └── run_test.go ├── reconnectingpty │ ├── config.go │ ├── config_test.go │ ├── run.go │ └── run_test.go ├── scaletest.sh ├── scaletest_dashboard.json ├── setup │ └── scaletest-sa.yaml ├── templates │ ├── kubernetes-large │ │ ├── README.md │ │ └── main.tf │ ├── kubernetes-medium-greedy │ │ ├── README.md │ │ └── main.tf │ ├── kubernetes-medium │ │ ├── README.md │ │ └── main.tf │ ├── kubernetes-minimal │ │ ├── README.md │ │ └── main.tf │ ├── kubernetes-small │ │ ├── README.md │ │ └── main.tf │ └── scaletest-runner │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── main.tf │ │ ├── metadata_phase.sh │ │ ├── metadata_previous_phase.sh │ │ ├── metadata_status.sh │ │ ├── scripts │ │ ├── cleanup.sh │ │ ├── lib.sh │ │ ├── prepare.sh │ │ ├── report.sh │ │ └── run.sh │ │ ├── shutdown.sh │ │ └── startup.sh ├── terraform │ ├── action │ │ ├── cf_dns.tf │ │ ├── coder_helm_values.tftpl │ │ ├── coder_proxies.tf │ │ ├── coder_templates.tf │ │ ├── coder_traffic.tf │ │ ├── coder_workspaces.tf │ │ ├── gcp_clusters.tf │ │ ├── gcp_db.tf │ │ ├── gcp_project.tf │ │ ├── gcp_vpc.tf │ │ ├── k8s_coder_asia.tf │ │ ├── k8s_coder_europe.tf │ │ ├── k8s_coder_primary.tf │ │ ├── kubeconfig.tftpl │ │ ├── main.tf │ │ ├── prometheus.tf │ │ ├── prometheus_helm_values.tftpl │ │ ├── scenarios.tf │ │ └── vars.tf │ ├── infra │ │ ├── gcp_cluster.tf │ │ ├── gcp_db.tf │ │ ├── gcp_project.tf │ │ ├── gcp_vpc.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── vars.tf │ ├── k8s │ │ ├── cert-manager.tf │ │ ├── coder.tf │ │ ├── main.tf │ │ ├── otel.tf │ │ ├── prometheus.tf │ │ └── vars.tf │ ├── scenario-large.tfvars │ ├── scenario-medium.tfvars │ ├── scenario-small.tfvars │ └── secrets.tfvars.tpl ├── workspacebuild │ ├── config.go │ ├── config_test.go │ ├── run.go │ └── run_test.go └── workspacetraffic │ ├── config.go │ ├── conn.go │ ├── countreadwriter.go │ ├── metrics.go │ ├── run.go │ └── run_test.go ├── scripts ├── Dockerfile ├── Dockerfile.base ├── apidocgen │ ├── .prettierignore │ ├── generate.sh │ ├── markdown-template │ │ ├── authentication.def │ │ ├── code_shell.dot │ │ ├── main.dot │ │ ├── operation.dot │ │ ├── parameters.def │ │ ├── responses.def │ │ └── security.def │ ├── package.json │ ├── pnpm-lock.yaml │ └── postprocess │ │ └── main.go ├── apitypings │ ├── README.md │ ├── main.go │ ├── main_test.go │ └── testdata │ │ ├── README.md │ │ ├── enums │ │ ├── enums.go │ │ └── enums.ts │ │ ├── genericmap │ │ ├── genericmap.go │ │ └── genericmap.ts │ │ ├── generics │ │ ├── generics.go │ │ └── generics.ts │ │ ├── genericslice │ │ ├── genericslice.go │ │ └── genericslice.ts │ │ └── overrides │ │ ├── overrides.go │ │ └── overrides.ts ├── archive.sh ├── auditdocgen │ └── main.go ├── audittypegen │ └── main.go ├── build_docker.sh ├── build_docker_multiarch.sh ├── build_go.sh ├── build_windows_installer.sh ├── check_codersdk_imports.sh ├── check_enterprise_imports.sh ├── check_go_versions.sh ├── check_site_icons.sh ├── check_unstaged.sh ├── clidocgen │ ├── command.tpl │ ├── gen.go │ └── main.go ├── coder-dev.sh ├── dbgen │ └── main.go ├── deploy-pr.sh ├── dev-oidc.sh ├── develop.sh ├── echoserver │ └── main.go ├── embedded-pg │ └── main.go ├── examplegen │ └── main.go ├── gensite │ ├── generateIconList.go │ └── main.go ├── helm.sh ├── image_tag.sh ├── ironbank │ ├── .gitignore │ ├── Dockerfile │ ├── build_ironbank.sh │ ├── hardening_manifest.yaml │ └── terraform-filesystem-mirror.tfrc ├── lib.sh ├── linux-pkg │ ├── coder-workspace-proxy.service │ ├── coder.service │ ├── nfpm.yaml │ └── preinstall.sh ├── list_dependencies.sh ├── metricsdocgen │ ├── main.go │ └── metrics ├── migrate-ci │ └── main.go ├── migrate-test │ └── main.go ├── normalize_path.sh ├── notarize_darwin.sh ├── oauth2 │ ├── README.md │ ├── cleanup-test-app.sh │ ├── generate-pkce.sh │ ├── oauth2-test-server.go │ ├── setup-test-app.sh │ ├── test-manual-flow.sh │ └── test-mcp-oauth2.sh ├── package.sh ├── pnpm_install.sh ├── rbac-authz │ ├── benchmark_authz.sh │ └── gen_input.go ├── release.sh ├── release │ ├── check_commit_metadata.sh │ ├── docs_update_experiments.sh │ ├── generate_release_notes.sh │ ├── main.go │ ├── main_internal_test.go │ ├── publish.sh │ ├── tag_version.sh │ └── testdata │ │ └── autoversion │ │ └── docs │ │ ├── kubernetes.md │ │ ├── kubernetes.md.golden │ │ ├── random.md │ │ └── random.md.golden ├── release_promote_stable.sh ├── releasemigrations │ ├── README.md │ └── main.go ├── remote_playwright.sh ├── rules.go ├── sign_darwin.sh ├── sign_windows.sh ├── sign_with_gpg.sh ├── testidp │ ├── README.md │ └── main.go ├── typegen │ ├── codersdk.gotmpl │ ├── countries.tstmpl │ ├── main.go │ ├── rbacobject.gotmpl │ └── typescript.tstmpl ├── update-flake.sh ├── update-release-calendar.sh ├── version.sh ├── which-release.sh └── win-installer │ ├── banner.bmp │ ├── coder.ico │ ├── installer.nsi │ └── path.nsh ├── shell.nix ├── site ├── .editorconfig ├── .knip.jsonc ├── .npmrc ├── .storybook │ ├── main.js │ └── preview.jsx ├── CLAUDE.md ├── biome.jsonc ├── components.json ├── e2e │ ├── README.md │ ├── api.ts │ ├── constants.ts │ ├── expectUrl.ts │ ├── google │ │ └── protobuf │ │ │ └── timestampGenerated.ts │ ├── helpers.ts │ ├── hooks.ts │ ├── parameters.ts │ ├── playwright.config.ts │ ├── provisionerGenerated.ts │ ├── proxy.ts │ ├── reporter.ts │ ├── setup │ │ ├── addUsersAndLicense.spec.ts │ │ └── preflight.ts │ └── tests │ │ ├── app.spec.ts │ │ ├── auditLogs.spec.ts │ │ ├── deployment │ │ ├── appearance.spec.ts │ │ ├── general.spec.ts │ │ ├── idpOrgSync.spec.ts │ │ ├── licenses.spec.ts │ │ ├── network.spec.ts │ │ ├── observability.spec.ts │ │ ├── security.spec.ts │ │ ├── userAuth.spec.ts │ │ └── workspaceProxies.spec.ts │ │ ├── externalAuth.spec.ts │ │ ├── groups │ │ ├── addMembers.spec.ts │ │ ├── addUsersToDefaultGroup.spec.ts │ │ ├── createGroup.spec.ts │ │ ├── removeGroup.spec.ts │ │ └── removeMember.spec.ts │ │ ├── organizationGroups.spec.ts │ │ ├── organizationMembers.spec.ts │ │ ├── organizations.spec.ts │ │ ├── organizations │ │ ├── auditLogs.spec.ts │ │ ├── customRoles │ │ │ └── customRoles.spec.ts │ │ ├── idpGroupSync.spec.ts │ │ └── idpRoleSync.spec.ts │ │ ├── outdatedAgent.spec.ts │ │ ├── outdatedCLI.spec.ts │ │ ├── roles.spec.ts │ │ ├── templates │ │ ├── listTemplates.spec.ts │ │ └── updateTemplateSchedule.spec.ts │ │ ├── updateTemplate.spec.ts │ │ ├── users │ │ ├── createUserWithPassword.spec.ts │ │ ├── removeUser.spec.ts │ │ └── userSettings.spec.ts │ │ ├── webTerminal.spec.ts │ │ └── workspaces │ │ ├── autoCreateWorkspace.spec.ts │ │ ├── createWorkspace.spec.ts │ │ ├── restartWorkspace.spec.ts │ │ ├── startWorkspace.spec.ts │ │ └── updateWorkspace.spec.ts ├── index.html ├── jest.config.ts ├── jest.polyfills.js ├── jest.setup.ts ├── out │ ├── GITKEEP │ └── bin │ │ └── GITKEEP ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── site.go ├── site_embed.go ├── site_slim.go ├── site_test.go ├── src │ ├── @types │ │ ├── emoji-mart.d.ts │ │ ├── emotion.d.ts │ │ ├── mui.d.ts │ │ └── storybook.d.ts │ ├── App.tsx │ ├── __mocks__ │ │ ├── js-untar.ts │ │ └── monaco-editor.ts │ ├── api │ │ ├── api.test.ts │ │ ├── api.ts │ │ ├── countriesGenerated.ts │ │ ├── errors.test.ts │ │ ├── errors.ts │ │ ├── queries │ │ │ ├── appearance.ts │ │ │ ├── audits.ts │ │ │ ├── authCheck.ts │ │ │ ├── buildInfo.ts │ │ │ ├── connectionlog.ts │ │ │ ├── debug.ts │ │ │ ├── deployment.ts │ │ │ ├── entitlements.ts │ │ │ ├── experiments.ts │ │ │ ├── externalAuth.ts │ │ │ ├── files.ts │ │ │ ├── groups.ts │ │ │ ├── idpsync.ts │ │ │ ├── insights.ts │ │ │ ├── notifications.ts │ │ │ ├── oauth2.ts │ │ │ ├── organizations.ts │ │ │ ├── roles.ts │ │ │ ├── settings.ts │ │ │ ├── sshKeys.ts │ │ │ ├── templates.ts │ │ │ ├── updateCheck.ts │ │ │ ├── users.ts │ │ │ ├── util.ts │ │ │ ├── workspaceBuilds.ts │ │ │ ├── workspaceQuota.ts │ │ │ ├── workspaceportsharing.ts │ │ │ └── workspaces.ts │ │ ├── rbacresourcesGenerated.ts │ │ └── typesGenerated.ts │ ├── components │ │ ├── Abbr │ │ │ ├── Abbr.stories.tsx │ │ │ ├── Abbr.test.tsx │ │ │ └── Abbr.tsx │ │ ├── ActiveUserChart │ │ │ ├── ActiveUserChart.stories.tsx │ │ │ └── ActiveUserChart.tsx │ │ ├── Alert │ │ │ ├── Alert.stories.tsx │ │ │ ├── Alert.tsx │ │ │ ├── ErrorAlert.stories.tsx │ │ │ └── ErrorAlert.tsx │ │ ├── Avatar │ │ │ ├── Avatar.stories.tsx │ │ │ ├── Avatar.tsx │ │ │ ├── AvatarCard.stories.tsx │ │ │ ├── AvatarCard.tsx │ │ │ ├── AvatarData.stories.tsx │ │ │ ├── AvatarData.tsx │ │ │ ├── AvatarDataSkeleton.stories.tsx │ │ │ └── AvatarDataSkeleton.tsx │ │ ├── Badge │ │ │ ├── Badge.stories.tsx │ │ │ └── Badge.tsx │ │ ├── Badges │ │ │ ├── Badges.stories.tsx │ │ │ └── Badges.tsx │ │ ├── Breadcrumb │ │ │ ├── Breadcrumb.stories.tsx │ │ │ └── Breadcrumb.tsx │ │ ├── BuildIcon │ │ │ ├── BuildIcon.stories.tsx │ │ │ └── BuildIcon.tsx │ │ ├── Button │ │ │ ├── Button.stories.tsx │ │ │ └── Button.tsx │ │ ├── Chart │ │ │ ├── Chart.stories.tsx │ │ │ └── Chart.tsx │ │ ├── Checkbox │ │ │ ├── Checkbox.stories.tsx │ │ │ └── Checkbox.tsx │ │ ├── CodeExample │ │ │ ├── CodeExample.stories.tsx │ │ │ └── CodeExample.tsx │ │ ├── Collapsible │ │ │ ├── Collapsible.stories.tsx │ │ │ └── Collapsible.tsx │ │ ├── CollapsibleSummary │ │ │ ├── CollapsibleSummary.stories.tsx │ │ │ └── CollapsibleSummary.tsx │ │ ├── Combobox │ │ │ ├── Combobox.stories.tsx │ │ │ └── Combobox.tsx │ │ ├── Command │ │ │ └── Command.tsx │ │ ├── Conditionals │ │ │ ├── ChooseOne.stories.tsx │ │ │ └── ChooseOne.tsx │ │ ├── CopyButton │ │ │ ├── CopyButton.stories.tsx │ │ │ └── CopyButton.tsx │ │ ├── CopyableValue │ │ │ ├── CopyableValue.stories.tsx │ │ │ └── CopyableValue.tsx │ │ ├── CustomLogo │ │ │ └── CustomLogo.tsx │ │ ├── Dialog │ │ │ ├── Dialog.stories.tsx │ │ │ └── Dialog.tsx │ │ ├── Dialogs │ │ │ ├── ConfirmDialog │ │ │ │ ├── ConfirmDialog.stories.tsx │ │ │ │ ├── ConfirmDialog.test.tsx │ │ │ │ └── ConfirmDialog.tsx │ │ │ ├── DeleteDialog │ │ │ │ ├── DeleteDialog.stories.tsx │ │ │ │ ├── DeleteDialog.test.tsx │ │ │ │ └── DeleteDialog.tsx │ │ │ ├── Dialog.tsx │ │ │ └── types.ts │ │ ├── DropdownArrow │ │ │ ├── DropdownArrow.stories.tsx │ │ │ └── DropdownArrow.tsx │ │ ├── DropdownMenu │ │ │ ├── DropdownMenu.stories.tsx │ │ │ └── DropdownMenu.tsx │ │ ├── DurationField │ │ │ ├── DurationField.stories.tsx │ │ │ └── DurationField.tsx │ │ ├── EmptyState │ │ │ ├── EmptyState.stories.tsx │ │ │ └── EmptyState.tsx │ │ ├── ErrorBoundary │ │ │ ├── GlobalErrorBoundary.stories.tsx │ │ │ └── GlobalErrorBoundary.tsx │ │ ├── Expander │ │ │ ├── Expander.stories.tsx │ │ │ └── Expander.tsx │ │ ├── ExternalImage │ │ │ └── ExternalImage.tsx │ │ ├── FeatureStageBadge │ │ │ ├── FeatureStageBadge.stories.tsx │ │ │ └── FeatureStageBadge.tsx │ │ ├── FileUpload │ │ │ ├── FileUpload.stories.tsx │ │ │ ├── FileUpload.test.tsx │ │ │ └── FileUpload.tsx │ │ ├── Filter │ │ │ ├── Filter.tsx │ │ │ ├── SelectFilter.stories.tsx │ │ │ ├── SelectFilter.tsx │ │ │ ├── UserFilter.tsx │ │ │ ├── menu.ts │ │ │ └── storyHelpers.ts │ │ ├── Form │ │ │ ├── Form.stories.tsx │ │ │ └── Form.tsx │ │ ├── FullPageForm │ │ │ ├── FullPageForm.stories.tsx │ │ │ ├── FullPageForm.tsx │ │ │ └── FullPageHorizontalForm.tsx │ │ ├── FullPageLayout │ │ │ ├── Sidebar.tsx │ │ │ └── Topbar.tsx │ │ ├── GitDeviceAuth │ │ │ ├── GitDeviceAuth.test.ts │ │ │ └── GitDeviceAuth.tsx │ │ ├── GlobalSnackbar │ │ │ ├── EnterpriseSnackbar.stories.tsx │ │ │ ├── EnterpriseSnackbar.tsx │ │ │ ├── GlobalSnackbar.tsx │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── HelpTooltip │ │ │ ├── HelpTooltip.stories.tsx │ │ │ └── HelpTooltip.tsx │ │ ├── IconField │ │ │ ├── EmojiPicker.tsx │ │ │ ├── IconField.stories.tsx │ │ │ └── IconField.tsx │ │ ├── Icons │ │ │ ├── CoderIcon.tsx │ │ │ ├── DockerIcon.tsx │ │ │ ├── EditSquare.tsx │ │ │ ├── ErrorIcon.tsx │ │ │ ├── GitIcon.tsx │ │ │ ├── JetBrainsIcon.tsx │ │ │ ├── RocketIcon.tsx │ │ │ ├── TerminalIcon.tsx │ │ │ ├── VSCodeIcon.tsx │ │ │ └── VSCodeInsidersIcon.tsx │ │ ├── InfoTooltip │ │ │ ├── InfoTooltip.stories.tsx │ │ │ └── InfoTooltip.tsx │ │ ├── Input │ │ │ ├── Input.stories.tsx │ │ │ └── Input.tsx │ │ ├── InputGroup │ │ │ ├── InputGroup.stories.tsx │ │ │ └── InputGroup.tsx │ │ ├── Label │ │ │ ├── Label.stories.tsx │ │ │ └── Label.tsx │ │ ├── LastSeen │ │ │ ├── LastSeen.stories.tsx │ │ │ └── LastSeen.tsx │ │ ├── Latency │ │ │ ├── Latency.stories.tsx │ │ │ └── Latency.tsx │ │ ├── Link │ │ │ ├── Link.stories.tsx │ │ │ └── Link.tsx │ │ ├── Loader │ │ │ ├── Loader.stories.tsx │ │ │ └── Loader.tsx │ │ ├── Logs │ │ │ ├── LogLine.stories.tsx │ │ │ ├── LogLine.tsx │ │ │ ├── Logs.stories.tsx │ │ │ └── Logs.tsx │ │ ├── Margins │ │ │ ├── Margins.stories.tsx │ │ │ └── Margins.tsx │ │ ├── Markdown │ │ │ ├── Markdown.stories.tsx │ │ │ └── Markdown.tsx │ │ ├── Menu │ │ │ └── MenuSearch.tsx │ │ ├── MultiSelectCombobox │ │ │ ├── MultiSelectCombobox.stories.tsx │ │ │ └── MultiSelectCombobox.tsx │ │ ├── OrganizationAutocomplete │ │ │ ├── OrganizationAutocomplete.stories.tsx │ │ │ └── OrganizationAutocomplete.tsx │ │ ├── OverflowY │ │ │ ├── OverflowY.stories.tsx │ │ │ └── OverflowY.tsx │ │ ├── PageHeader │ │ │ ├── FullWidthPageHeader.tsx │ │ │ ├── PageHeader.stories.tsx │ │ │ └── PageHeader.tsx │ │ ├── PaginationWidget │ │ │ ├── PageButtons.tsx │ │ │ ├── PaginationContainer.mocks.ts │ │ │ ├── PaginationContainer.stories.tsx │ │ │ ├── PaginationContainer.tsx │ │ │ ├── PaginationHeader.tsx │ │ │ ├── PaginationNavButton.tsx │ │ │ ├── PaginationWidgetBase.stories.tsx │ │ │ ├── PaginationWidgetBase.test.tsx │ │ │ ├── PaginationWidgetBase.tsx │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── PasswordField │ │ │ ├── PasswordField.stories.tsx │ │ │ └── PasswordField.tsx │ │ ├── Paywall │ │ │ ├── Paywall.stories.tsx │ │ │ ├── Paywall.tsx │ │ │ ├── PopoverPaywall.stories.tsx │ │ │ └── PopoverPaywall.tsx │ │ ├── Pill │ │ │ ├── Pill.stories.tsx │ │ │ └── Pill.tsx │ │ ├── Popover │ │ │ ├── Popover.stories.tsx │ │ │ └── Popover.tsx │ │ ├── RadioGroup │ │ │ ├── RadioGroup.stories.tsx │ │ │ └── RadioGroup.tsx │ │ ├── RichParameterInput │ │ │ ├── RichParameterInput.stories.tsx │ │ │ └── RichParameterInput.tsx │ │ ├── ScrollArea │ │ │ └── ScrollArea.tsx │ │ ├── Search │ │ │ ├── Search.stories.tsx │ │ │ └── Search.tsx │ │ ├── SearchField │ │ │ ├── SearchField.stories.tsx │ │ │ └── SearchField.tsx │ │ ├── Select │ │ │ ├── Select.stories.tsx │ │ │ └── Select.tsx │ │ ├── SelectMenu │ │ │ ├── SelectMenu.stories.tsx │ │ │ └── SelectMenu.tsx │ │ ├── Separator │ │ │ └── Separator.tsx │ │ ├── SettingsHeader │ │ │ ├── SettingsHeader.stories.tsx │ │ │ └── SettingsHeader.tsx │ │ ├── Sidebar │ │ │ ├── Sidebar.stories.tsx │ │ │ └── Sidebar.tsx │ │ ├── SignInLayout │ │ │ └── SignInLayout.tsx │ │ ├── Skeleton │ │ │ └── Skeleton.tsx │ │ ├── Slider │ │ │ ├── Slider.stories.tsx │ │ │ └── Slider.tsx │ │ ├── Spinner │ │ │ ├── Spinner.stories.tsx │ │ │ └── Spinner.tsx │ │ ├── Stack │ │ │ ├── Stack.stories.tsx │ │ │ └── Stack.tsx │ │ ├── StackLabel │ │ │ └── StackLabel.tsx │ │ ├── Stats │ │ │ └── Stats.tsx │ │ ├── StatusIndicator │ │ │ ├── StatusIndicator.stories.tsx │ │ │ └── StatusIndicator.tsx │ │ ├── StatusPill │ │ │ └── StatusPill.tsx │ │ ├── Switch │ │ │ ├── Switch.stories.tsx │ │ │ └── Switch.tsx │ │ ├── SyntaxHighlighter │ │ │ ├── SyntaxHighlighter.tsx │ │ │ └── coderTheme.ts │ │ ├── Table │ │ │ ├── Table.stories.tsx │ │ │ └── Table.tsx │ │ ├── TableEmpty │ │ │ ├── TableEmpty.stories.tsx │ │ │ └── TableEmpty.tsx │ │ ├── TableLoader │ │ │ ├── TableLoader.stories.tsx │ │ │ └── TableLoader.tsx │ │ ├── TableToolbar │ │ │ ├── TableToolbar.stories.tsx │ │ │ └── TableToolbar.tsx │ │ ├── Tabs │ │ │ ├── Tabs.stories.tsx │ │ │ └── Tabs.tsx │ │ ├── TagInput │ │ │ ├── TagInput.stories.tsx │ │ │ └── TagInput.tsx │ │ ├── Textarea │ │ │ ├── Textarea.stories.tsx │ │ │ └── Textarea.tsx │ │ ├── Timeline │ │ │ ├── Timeline.tsx │ │ │ ├── TimelineDateRow.tsx │ │ │ ├── TimelineEntry.tsx │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── Tooltip │ │ │ ├── Tooltip.stories.tsx │ │ │ └── Tooltip.tsx │ │ ├── UserAutocomplete │ │ │ ├── MemberAutocomplete.stories.tsx │ │ │ ├── UserAutocomplete.stories.tsx │ │ │ └── UserAutocomplete.tsx │ │ ├── Welcome │ │ │ ├── Welcome.stories.tsx │ │ │ └── Welcome.tsx │ │ └── deprecated │ │ │ └── Popover │ │ │ ├── Popover.stories.tsx │ │ │ └── Popover.tsx │ ├── contexts │ │ ├── ProxyContext.test.tsx │ │ ├── ProxyContext.tsx │ │ ├── ThemeProvider.tsx │ │ ├── auth │ │ │ ├── AuthProvider.test.tsx │ │ │ ├── AuthProvider.tsx │ │ │ ├── RequireAuth.test.tsx │ │ │ └── RequireAuth.tsx │ │ ├── useProxyLatency.ts │ │ └── useWebpushNotifications.ts │ ├── hooks │ │ ├── debounce.test.ts │ │ ├── debounce.ts │ │ ├── events.test.ts │ │ ├── events.ts │ │ ├── hookPolyfills.test.ts │ │ ├── hookPolyfills.ts │ │ ├── index.ts │ │ ├── useAuthenticated.tsx │ │ ├── useClassName.ts │ │ ├── useClickable.test.tsx │ │ ├── useClickable.ts │ │ ├── useClickableTableRow.ts │ │ ├── useClipboard.test.tsx │ │ ├── useClipboard.ts │ │ ├── useEmbeddedMetadata.test.ts │ │ ├── useEmbeddedMetadata.ts │ │ ├── useExternalAuth.ts │ │ ├── usePaginatedQuery.test.ts │ │ ├── usePaginatedQuery.ts │ │ ├── usePagination.ts │ │ ├── useSearchParamsKey.test.ts │ │ ├── useSearchParamsKey.ts │ │ ├── useTime.ts │ │ ├── useWindowSize.ts │ │ └── useWorkspaceBuildLogs.ts │ ├── index.css │ ├── index.tsx │ ├── modules │ │ ├── apps │ │ │ ├── AppStatusStateIcon.tsx │ │ │ ├── apps.test.ts │ │ │ ├── apps.ts │ │ │ └── useAppLink.ts │ │ ├── builds │ │ │ └── BuildAvatar │ │ │ │ ├── BuildAvatar.stories.tsx │ │ │ │ └── BuildAvatar.tsx │ │ ├── dashboard │ │ │ ├── AnnouncementBanners │ │ │ │ ├── AnnouncementBannerView.stories.tsx │ │ │ │ ├── AnnouncementBannerView.tsx │ │ │ │ └── AnnouncementBanners.tsx │ │ │ ├── DashboardLayout.test.tsx │ │ │ ├── DashboardLayout.tsx │ │ │ ├── DashboardProvider.tsx │ │ │ ├── DeploymentBanner │ │ │ │ ├── DeploymentBanner.tsx │ │ │ │ ├── DeploymentBannerView.stories.tsx │ │ │ │ └── DeploymentBannerView.tsx │ │ │ ├── LicenseBanner │ │ │ │ ├── LicenseBanner.tsx │ │ │ │ ├── LicenseBannerView.stories.tsx │ │ │ │ └── LicenseBannerView.tsx │ │ │ ├── Navbar │ │ │ │ ├── DeploymentDropdown.tsx │ │ │ │ ├── MobileMenu.stories.tsx │ │ │ │ ├── MobileMenu.test.tsx │ │ │ │ ├── MobileMenu.tsx │ │ │ │ ├── Navbar.test.tsx │ │ │ │ ├── Navbar.tsx │ │ │ │ ├── NavbarView.stories.tsx │ │ │ │ ├── NavbarView.test.tsx │ │ │ │ ├── NavbarView.tsx │ │ │ │ ├── ProxyMenu.stories.tsx │ │ │ │ ├── ProxyMenu.tsx │ │ │ │ ├── UserDropdown │ │ │ │ │ ├── UserDropdown.stories.tsx │ │ │ │ │ ├── UserDropdown.tsx │ │ │ │ │ ├── UserDropdownContent.test.tsx │ │ │ │ │ └── UserDropdownContent.tsx │ │ │ │ └── proxyUtils.tsx │ │ │ ├── entitlements.test.ts │ │ │ ├── entitlements.ts │ │ │ ├── useDashboard.ts │ │ │ ├── useFeatureVisibility.ts │ │ │ ├── useUpdateCheck.test.tsx │ │ │ └── useUpdateCheck.ts │ │ ├── hooks │ │ │ └── useSyncFormParameters.ts │ │ ├── management │ │ │ ├── DeploymentConfigProvider.tsx │ │ │ ├── DeploymentSettingsLayout.tsx │ │ │ ├── DeploymentSidebar.tsx │ │ │ ├── DeploymentSidebarView.stories.tsx │ │ │ ├── DeploymentSidebarView.tsx │ │ │ ├── OrganizationSettingsLayout.tsx │ │ │ ├── OrganizationSidebar.tsx │ │ │ ├── OrganizationSidebarLayout.tsx │ │ │ ├── OrganizationSidebarView.stories.tsx │ │ │ └── OrganizationSidebarView.tsx │ │ ├── navigation.ts │ │ ├── notifications │ │ │ ├── NotificationsInbox │ │ │ │ ├── InboxAvatar.stories.tsx │ │ │ │ ├── InboxAvatar.tsx │ │ │ │ ├── InboxButton.stories.tsx │ │ │ │ ├── InboxButton.tsx │ │ │ │ ├── InboxItem.stories.tsx │ │ │ │ ├── InboxItem.tsx │ │ │ │ ├── InboxPopover.stories.tsx │ │ │ │ ├── InboxPopover.tsx │ │ │ │ ├── NotificationsInbox.stories.tsx │ │ │ │ ├── NotificationsInbox.tsx │ │ │ │ ├── UnreadBadge.stories.tsx │ │ │ │ └── UnreadBadge.tsx │ │ │ └── utils.tsx │ │ ├── permissions │ │ │ ├── RequirePermission.tsx │ │ │ ├── index.ts │ │ │ ├── organizations.ts │ │ │ └── workspaces.ts │ │ ├── provisioners │ │ │ ├── JobStatusIndicator.stories.tsx │ │ │ ├── JobStatusIndicator.tsx │ │ │ ├── Provisioner.tsx │ │ │ ├── ProvisionerAlert.stories.tsx │ │ │ ├── ProvisionerAlert.tsx │ │ │ ├── ProvisionerStatusAlert.stories.tsx │ │ │ ├── ProvisionerStatusAlert.tsx │ │ │ ├── ProvisionerTag.tsx │ │ │ ├── ProvisionerTags.stories.tsx │ │ │ ├── ProvisionerTags.tsx │ │ │ ├── ProvisionerTagsField.stories.tsx │ │ │ └── ProvisionerTagsField.tsx │ │ ├── resources │ │ │ ├── AgentApps │ │ │ │ └── AgentApps.tsx │ │ │ ├── AgentButton.tsx │ │ │ ├── AgentDevcontainerCard.stories.tsx │ │ │ ├── AgentDevcontainerCard.tsx │ │ │ ├── AgentLatency.tsx │ │ │ ├── AgentLogs │ │ │ │ ├── AgentLogLine.tsx │ │ │ │ ├── AgentLogs.stories.tsx │ │ │ │ ├── AgentLogs.tsx │ │ │ │ └── mocks.tsx │ │ │ ├── AgentMetadata.stories.tsx │ │ │ ├── AgentMetadata.tsx │ │ │ ├── AgentOutdatedTooltip.tsx │ │ │ ├── AgentRow.stories.tsx │ │ │ ├── AgentRow.test.tsx │ │ │ ├── AgentRow.tsx │ │ │ ├── AgentRowPreview.stories.tsx │ │ │ ├── AgentRowPreview.test.tsx │ │ │ ├── AgentRowPreview.tsx │ │ │ ├── AgentStatus.tsx │ │ │ ├── AgentVersion.tsx │ │ │ ├── AppLink │ │ │ │ ├── AppLink.stories.tsx │ │ │ │ ├── AppLink.tsx │ │ │ │ ├── AppPreview.tsx │ │ │ │ ├── BaseIcon.tsx │ │ │ │ └── ShareIcon.tsx │ │ │ ├── DownloadAgentLogsButton.stories.tsx │ │ │ ├── DownloadAgentLogsButton.tsx │ │ │ ├── PortForwardButton.stories.tsx │ │ │ ├── PortForwardButton.tsx │ │ │ ├── PortForwardPopoverView.stories.tsx │ │ │ ├── PortForwardPopoverView.test.tsx │ │ │ ├── ResourceAvatar.stories.tsx │ │ │ ├── ResourceAvatar.tsx │ │ │ ├── ResourceCard.stories.tsx │ │ │ ├── ResourceCard.test.tsx │ │ │ ├── ResourceCard.tsx │ │ │ ├── Resources.stories.tsx │ │ │ ├── Resources.tsx │ │ │ ├── SSHButton │ │ │ │ ├── SSHButton.stories.tsx │ │ │ │ └── SSHButton.tsx │ │ │ ├── SensitiveValue.tsx │ │ │ ├── SubAgentOutdatedTooltip.tsx │ │ │ ├── TerminalLink │ │ │ │ ├── TerminalLink.stories.tsx │ │ │ │ └── TerminalLink.tsx │ │ │ ├── VSCodeDesktopButton │ │ │ │ ├── VSCodeDesktopButton.stories.tsx │ │ │ │ └── VSCodeDesktopButton.tsx │ │ │ ├── VSCodeDevContainerButton │ │ │ │ ├── VSCodeDevContainerButton.stories.tsx │ │ │ │ └── VSCodeDevContainerButton.tsx │ │ │ ├── useAgentContainers.test.tsx │ │ │ ├── useAgentContainers.ts │ │ │ ├── useAgentLogs.test.ts │ │ │ └── useAgentLogs.ts │ │ ├── tableFiltering │ │ │ └── options.tsx │ │ ├── tasks │ │ │ └── tasks.ts │ │ ├── templates │ │ │ ├── TemplateExampleCard │ │ │ │ ├── TemplateExampleCard.stories.tsx │ │ │ │ └── TemplateExampleCard.tsx │ │ │ ├── TemplateFiles │ │ │ │ ├── TemplateFileTree.stories.tsx │ │ │ │ ├── TemplateFileTree.tsx │ │ │ │ ├── TemplateFiles.stories.tsx │ │ │ │ ├── TemplateFiles.tsx │ │ │ │ └── isBinaryData.ts │ │ │ ├── TemplateResourcesTable │ │ │ │ ├── TemplateResourcesTable.stories.tsx │ │ │ │ └── TemplateResourcesTable.tsx │ │ │ ├── TemplateUpdateMessage.stories.tsx │ │ │ ├── TemplateUpdateMessage.tsx │ │ │ └── useWatchVersionLogs.ts │ │ └── workspaces │ │ │ ├── DynamicParameter │ │ │ ├── DynamicParameter.stories.tsx │ │ │ ├── DynamicParameter.test.tsx │ │ │ └── DynamicParameter.tsx │ │ │ ├── EphemeralParametersDialog │ │ │ └── EphemeralParametersDialog.tsx │ │ │ ├── ErrorDialog │ │ │ └── WorkspaceErrorDialog.tsx │ │ │ ├── WorkspaceAppStatus │ │ │ ├── WorkspaceAppStatus.stories.tsx │ │ │ └── WorkspaceAppStatus.tsx │ │ │ ├── WorkspaceBuildCancelDialog │ │ │ └── WorkspaceBuildCancelDialog.tsx │ │ │ ├── WorkspaceBuildData │ │ │ ├── WorkspaceBuildData.stories.tsx │ │ │ └── WorkspaceBuildData.tsx │ │ │ ├── WorkspaceBuildLogs │ │ │ ├── WorkspaceBuildLogs.stories.tsx │ │ │ └── WorkspaceBuildLogs.tsx │ │ │ ├── WorkspaceDormantBadge │ │ │ ├── WorkspaceDormantBadge.stories.tsx │ │ │ └── WorkspaceDormantBadge.tsx │ │ │ ├── WorkspaceMoreActions │ │ │ ├── ChangeWorkspaceVersionDialog.stories.tsx │ │ │ ├── ChangeWorkspaceVersionDialog.tsx │ │ │ ├── DownloadLogsDialog.stories.tsx │ │ │ ├── DownloadLogsDialog.tsx │ │ │ ├── UpdateBuildParametersDialog.tsx │ │ │ ├── UpdateBuildParametersDialogExperimental.tsx │ │ │ ├── WorkspaceDeleteDialog.stories.tsx │ │ │ ├── WorkspaceDeleteDialog.tsx │ │ │ ├── WorkspaceMoreActions.tsx │ │ │ ├── useWorkspaceDuplication.test.tsx │ │ │ └── useWorkspaceDuplication.ts │ │ │ ├── WorkspaceOutdatedTooltip │ │ │ ├── WorkspaceOutdatedTooltip.stories.tsx │ │ │ └── WorkspaceOutdatedTooltip.tsx │ │ │ ├── WorkspaceStatusIndicator │ │ │ ├── WorkspaceStatusIndicator.stories.tsx │ │ │ └── WorkspaceStatusIndicator.tsx │ │ │ ├── WorkspaceTiming │ │ │ ├── Chart │ │ │ │ ├── Bar.tsx │ │ │ │ ├── Blocks.tsx │ │ │ │ ├── Chart.tsx │ │ │ │ ├── Tooltip.tsx │ │ │ │ ├── XAxis.tsx │ │ │ │ ├── YAxis.tsx │ │ │ │ └── utils.ts │ │ │ ├── ResourcesChart.tsx │ │ │ ├── ScriptsChart.tsx │ │ │ ├── StagesChart.tsx │ │ │ ├── WorkspaceTimings.stories.tsx │ │ │ ├── WorkspaceTimings.tsx │ │ │ └── storybookData.ts │ │ │ ├── WorkspaceUpdateDialogs.tsx │ │ │ ├── actions.ts │ │ │ ├── activity.ts │ │ │ ├── generateWorkspaceName.ts │ │ │ └── permissions.ts │ ├── pages │ │ ├── 404Page │ │ │ ├── 404Page.stories.tsx │ │ │ └── 404Page.tsx │ │ ├── AuditPage │ │ │ ├── AuditFilter.tsx │ │ │ ├── AuditHelpTooltip.tsx │ │ │ ├── AuditLogRow │ │ │ │ ├── AuditLogDescription │ │ │ │ │ ├── AuditLogDescription.stories.tsx │ │ │ │ │ ├── AuditLogDescription.tsx │ │ │ │ │ └── BuildAuditDescription.tsx │ │ │ │ ├── AuditLogDiff │ │ │ │ │ ├── AuditLogDiff.tsx │ │ │ │ │ ├── auditUtils.test.ts │ │ │ │ │ └── auditUtils.ts │ │ │ │ ├── AuditLogRow.stories.tsx │ │ │ │ └── AuditLogRow.tsx │ │ │ ├── AuditPage.test.tsx │ │ │ ├── AuditPage.tsx │ │ │ ├── AuditPageView.stories.tsx │ │ │ └── AuditPageView.tsx │ │ ├── CliAuthPage │ │ │ ├── CliAuthPage.tsx │ │ │ ├── CliAuthPageView.stories.tsx │ │ │ └── CliAuthPageView.tsx │ │ ├── CliInstallPage │ │ │ ├── CliInstallPage.tsx │ │ │ ├── CliInstallPageView.stories.tsx │ │ │ └── CliInstallPageView.tsx │ │ ├── ConnectionLogPage │ │ │ ├── ConnectionLogFilter.tsx │ │ │ ├── ConnectionLogHelpTooltip.tsx │ │ │ ├── ConnectionLogPage.test.tsx │ │ │ ├── ConnectionLogPage.tsx │ │ │ ├── ConnectionLogPageView.stories.tsx │ │ │ ├── ConnectionLogPageView.tsx │ │ │ └── ConnectionLogRow │ │ │ │ ├── ConnectionLogDescription │ │ │ │ ├── ConnectionLogDescription.stories.tsx │ │ │ │ └── ConnectionLogDescription.tsx │ │ │ │ ├── ConnectionLogRow.stories.tsx │ │ │ │ └── ConnectionLogRow.tsx │ │ ├── CreateTemplateGalleryPage │ │ │ ├── CreateTemplateGalleryPage.test.tsx │ │ │ ├── CreateTemplateGalleryPage.tsx │ │ │ ├── CreateTemplateGalleryPageView.stories.tsx │ │ │ ├── CreateTemplateGalleryPageView.tsx │ │ │ └── StarterTemplates.tsx │ │ ├── CreateTemplatePage │ │ │ ├── BuildLogsDrawer.stories.tsx │ │ │ ├── BuildLogsDrawer.tsx │ │ │ ├── CreateTemplateForm.stories.tsx │ │ │ ├── CreateTemplateForm.tsx │ │ │ ├── CreateTemplatePage.test.tsx │ │ │ ├── CreateTemplatePage.tsx │ │ │ ├── DuplicateTemplateView.tsx │ │ │ ├── ImportStarterTemplateView.tsx │ │ │ ├── TemplateUpload.tsx │ │ │ ├── UploadTemplateView.tsx │ │ │ ├── VariableInput.tsx │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── CreateTokenPage │ │ │ ├── CreateTokenForm.tsx │ │ │ ├── CreateTokenPage.stories.tsx │ │ │ ├── CreateTokenPage.test.tsx │ │ │ ├── CreateTokenPage.tsx │ │ │ ├── utils.test.tsx │ │ │ └── utils.ts │ │ ├── CreateUserPage │ │ │ ├── CreateUserForm.stories.tsx │ │ │ ├── CreateUserForm.tsx │ │ │ ├── CreateUserPage.test.tsx │ │ │ ├── CreateUserPage.tsx │ │ │ └── Language.ts │ │ ├── CreateWorkspacePage │ │ │ ├── CreateWorkspaceExperimentRouter.tsx │ │ │ ├── CreateWorkspacePage.test.tsx │ │ │ ├── CreateWorkspacePage.tsx │ │ │ ├── CreateWorkspacePageExperimental.tsx │ │ │ ├── CreateWorkspacePageView.stories.tsx │ │ │ ├── CreateWorkspacePageView.tsx │ │ │ ├── CreateWorkspacePageViewExperimental.stories.tsx │ │ │ ├── CreateWorkspacePageViewExperimental.tsx │ │ │ ├── ExternalAuthButton.stories.tsx │ │ │ ├── ExternalAuthButton.tsx │ │ │ ├── SelectedTemplate.stories.tsx │ │ │ ├── SelectedTemplate.tsx │ │ │ └── permissions.ts │ │ ├── DeploymentSettingsPage │ │ │ ├── AppearanceSettingsPage │ │ │ │ ├── AnnouncementBannerDialog.stories.tsx │ │ │ │ ├── AnnouncementBannerDialog.tsx │ │ │ │ ├── AnnouncementBannerItem.tsx │ │ │ │ ├── AnnouncementBannerSettings.tsx │ │ │ │ ├── AppearanceSettingsPage.tsx │ │ │ │ ├── AppearanceSettingsPageView.stories.tsx │ │ │ │ └── AppearanceSettingsPageView.tsx │ │ │ ├── ExternalAuthSettingsPage │ │ │ │ ├── ExternalAuthSettingsPage.tsx │ │ │ │ ├── ExternalAuthSettingsPageView.stories.tsx │ │ │ │ └── ExternalAuthSettingsPageView.tsx │ │ │ ├── Fieldset.tsx │ │ │ ├── IdpOrgSyncPage │ │ │ │ ├── ExportPolicyButton.stories.tsx │ │ │ │ ├── ExportPolicyButton.tsx │ │ │ │ ├── IdpOrgSyncPage.tsx │ │ │ │ ├── IdpOrgSyncPageView.stories.tsx │ │ │ │ ├── IdpOrgSyncPageView.tsx │ │ │ │ └── OrganizationPills.tsx │ │ │ ├── LicensesSettingsPage │ │ │ │ ├── AddNewLicensePage.tsx │ │ │ │ ├── AddNewLicensePageView.stories.tsx │ │ │ │ ├── AddNewLicensePageView.tsx │ │ │ │ ├── DividerWithText.tsx │ │ │ │ ├── LicenseCard.test.tsx │ │ │ │ ├── LicenseCard.tsx │ │ │ │ ├── LicenseSeatConsumptionChart.stories.tsx │ │ │ │ ├── LicenseSeatConsumptionChart.tsx │ │ │ │ ├── LicensesSettingsPage.tsx │ │ │ │ ├── LicensesSettingsPageView.stories.tsx │ │ │ │ └── LicensesSettingsPageView.tsx │ │ │ ├── NetworkSettingsPage │ │ │ │ ├── NetworkSettingsPage.tsx │ │ │ │ ├── NetworkSettingsPageView.stories.tsx │ │ │ │ └── NetworkSettingsPageView.tsx │ │ │ ├── NotificationsPage │ │ │ │ ├── NotificationEvents.stories.tsx │ │ │ │ ├── NotificationEvents.tsx │ │ │ │ ├── NotificationsPage.stories.tsx │ │ │ │ ├── NotificationsPage.tsx │ │ │ │ ├── Troubleshooting.stories.tsx │ │ │ │ ├── Troubleshooting.tsx │ │ │ │ └── storybookUtils.ts │ │ │ ├── OAuth2AppsSettingsPage │ │ │ │ ├── CreateOAuth2AppPage.tsx │ │ │ │ ├── CreateOAuth2AppPageView.stories.tsx │ │ │ │ ├── CreateOAuth2AppPageView.tsx │ │ │ │ ├── EditOAuth2AppPage.tsx │ │ │ │ ├── EditOAuth2AppPageView.stories.tsx │ │ │ │ ├── EditOAuth2AppPageView.tsx │ │ │ │ ├── OAuth2AppForm.tsx │ │ │ │ ├── OAuth2AppsSettingsPage.tsx │ │ │ │ ├── OAuth2AppsSettingsPageView.stories.tsx │ │ │ │ └── OAuth2AppsSettingsPageView.tsx │ │ │ ├── ObservabilitySettingsPage │ │ │ │ ├── ObservabilitySettingsPage.tsx │ │ │ │ ├── ObservabilitySettingsPageView.stories.tsx │ │ │ │ └── ObservabilitySettingsPageView.tsx │ │ │ ├── Option.tsx │ │ │ ├── OptionsTable.tsx │ │ │ ├── OverviewPage │ │ │ │ ├── OverviewPage.tsx │ │ │ │ ├── OverviewPageView.stories.tsx │ │ │ │ ├── OverviewPageView.tsx │ │ │ │ ├── UserEngagementChart.stories.tsx │ │ │ │ └── UserEngagementChart.tsx │ │ │ ├── PremiumPage │ │ │ │ ├── PremiumPage.tsx │ │ │ │ └── PremiumPageView.tsx │ │ │ ├── SecuritySettingsPage │ │ │ │ ├── SecuritySettingsPage.tsx │ │ │ │ ├── SecuritySettingsPageView.stories.tsx │ │ │ │ └── SecuritySettingsPageView.tsx │ │ │ ├── UserAuthSettingsPage │ │ │ │ ├── UserAuthSettingsPage.tsx │ │ │ │ ├── UserAuthSettingsPageView.stories.tsx │ │ │ │ └── UserAuthSettingsPageView.tsx │ │ │ ├── optionValue.test.ts │ │ │ └── optionValue.ts │ │ ├── ExternalAuthPage │ │ │ ├── ExternalAuthPage.tsx │ │ │ ├── ExternalAuthPageView.stories.tsx │ │ │ └── ExternalAuthPageView.tsx │ │ ├── GroupsPage │ │ │ ├── CreateGroupPage.tsx │ │ │ ├── CreateGroupPageView.stories.tsx │ │ │ ├── CreateGroupPageView.tsx │ │ │ ├── GroupPage.stories.tsx │ │ │ ├── GroupPage.tsx │ │ │ ├── GroupSettingsPage.tsx │ │ │ ├── GroupSettingsPageView.stories.tsx │ │ │ ├── GroupSettingsPageView.tsx │ │ │ ├── GroupsPage.tsx │ │ │ ├── GroupsPageProvider.tsx │ │ │ ├── GroupsPageView.stories.tsx │ │ │ └── GroupsPageView.tsx │ │ ├── HealthPage │ │ │ ├── AccessURLPage.stories.tsx │ │ │ ├── AccessURLPage.tsx │ │ │ ├── Content.tsx │ │ │ ├── DERPPage.stories.tsx │ │ │ ├── DERPPage.tsx │ │ │ ├── DERPRegionPage.stories.tsx │ │ │ ├── DERPRegionPage.tsx │ │ │ ├── DatabasePage.stories.tsx │ │ │ ├── DatabasePage.tsx │ │ │ ├── DismissWarningButton.tsx │ │ │ ├── HealthLayout.tsx │ │ │ ├── ProvisionerDaemonsPage.stories.tsx │ │ │ ├── ProvisionerDaemonsPage.tsx │ │ │ ├── WebsocketPage.stories.tsx │ │ │ ├── WebsocketPage.tsx │ │ │ ├── WorkspaceProxyPage.stories.tsx │ │ │ ├── WorkspaceProxyPage.tsx │ │ │ ├── healthyColor.ts │ │ │ └── storybook.tsx │ │ ├── IconsPage │ │ │ ├── IconsPage.stories.tsx │ │ │ └── IconsPage.tsx │ │ ├── LoginOAuthDevicePage │ │ │ ├── LoginOAuthDevicePage.tsx │ │ │ └── LoginOAuthDevicePageView.tsx │ │ ├── LoginPage │ │ │ ├── Language.ts │ │ │ ├── LoginPage.test.tsx │ │ │ ├── LoginPage.tsx │ │ │ ├── LoginPageView.stories.tsx │ │ │ ├── LoginPageView.tsx │ │ │ ├── OAuthSignInForm.tsx │ │ │ ├── PasswordSignInForm.tsx │ │ │ ├── SignInForm.stories.tsx │ │ │ ├── SignInForm.tsx │ │ │ └── TermsOfServiceLink.tsx │ │ ├── OrganizationSettingsPage │ │ │ ├── CreateOrganizationPage.tsx │ │ │ ├── CreateOrganizationPageView.stories.tsx │ │ │ ├── CreateOrganizationPageView.tsx │ │ │ ├── CustomRolesPage │ │ │ │ ├── CreateEditRolePage.tsx │ │ │ │ ├── CreateEditRolePageView.stories.tsx │ │ │ │ ├── CreateEditRolePageView.tsx │ │ │ │ ├── CustomRolesPage.tsx │ │ │ │ ├── CustomRolesPageView.stories.tsx │ │ │ │ ├── CustomRolesPageView.tsx │ │ │ │ ├── PermissionPillsList.stories.tsx │ │ │ │ └── PermissionPillsList.tsx │ │ │ ├── Horizontal.tsx │ │ │ ├── IdpSyncPage │ │ │ │ ├── ExportPolicyButton.stories.tsx │ │ │ │ ├── ExportPolicyButton.tsx │ │ │ │ ├── IdpGroupSyncForm.tsx │ │ │ │ ├── IdpMappingTable.tsx │ │ │ │ ├── IdpPillList.tsx │ │ │ │ ├── IdpRoleSyncForm.tsx │ │ │ │ ├── IdpSyncPage.tsx │ │ │ │ ├── IdpSyncPageView.stories.tsx │ │ │ │ └── IdpSyncPageView.tsx │ │ │ ├── OrganizationMembersPage.test.tsx │ │ │ ├── OrganizationMembersPage.tsx │ │ │ ├── OrganizationMembersPageView.stories.tsx │ │ │ ├── OrganizationMembersPageView.tsx │ │ │ ├── OrganizationProvisionerJobsPage │ │ │ │ ├── CancelJobButton.stories.tsx │ │ │ │ ├── CancelJobButton.tsx │ │ │ │ ├── CancelJobConfirmationDialog.stories.tsx │ │ │ │ ├── CancelJobConfirmationDialog.tsx │ │ │ │ ├── JobRow.stories.tsx │ │ │ │ ├── JobRow.tsx │ │ │ │ ├── OrganizationProvisionerJobsPage.tsx │ │ │ │ ├── OrganizationProvisionerJobsPageView.stories.tsx │ │ │ │ └── OrganizationProvisionerJobsPageView.tsx │ │ │ ├── OrganizationProvisionerKeysPage │ │ │ │ ├── OrganizationProvisionerKeysPage.tsx │ │ │ │ ├── OrganizationProvisionerKeysPageView.stories.tsx │ │ │ │ ├── OrganizationProvisionerKeysPageView.tsx │ │ │ │ └── ProvisionerKeyRow.tsx │ │ │ ├── OrganizationProvisionersPage │ │ │ │ ├── LastConnectionHead.stories.tsx │ │ │ │ ├── LastConnectionHead.tsx │ │ │ │ ├── OrganizationProvisionersPage.tsx │ │ │ │ ├── OrganizationProvisionersPageView.stories.tsx │ │ │ │ ├── OrganizationProvisionersPageView.tsx │ │ │ │ ├── ProvisionerKey.stories.tsx │ │ │ │ ├── ProvisionerKey.tsx │ │ │ │ ├── ProvisionerRow.stories.tsx │ │ │ │ ├── ProvisionerRow.tsx │ │ │ │ ├── ProvisionerVersion.stories.tsx │ │ │ │ └── ProvisionerVersion.tsx │ │ │ ├── OrganizationRedirect.test.tsx │ │ │ ├── OrganizationRedirect.tsx │ │ │ ├── OrganizationSettingsPage.tsx │ │ │ ├── OrganizationSettingsPageView.stories.tsx │ │ │ ├── OrganizationSettingsPageView.tsx │ │ │ └── UserTable │ │ │ │ ├── EditRolesButton.stories.tsx │ │ │ │ ├── EditRolesButton.tsx │ │ │ │ ├── TableColumnHelpTooltip.tsx │ │ │ │ └── UserRoleCell.tsx │ │ ├── ResetPasswordPage │ │ │ ├── ChangePasswordPage.stories.tsx │ │ │ ├── ChangePasswordPage.tsx │ │ │ ├── RequestOTPPage.stories.tsx │ │ │ └── RequestOTPPage.tsx │ │ ├── SetupPage │ │ │ ├── SetupPage.test.tsx │ │ │ ├── SetupPage.tsx │ │ │ ├── SetupPageView.stories.tsx │ │ │ └── SetupPageView.tsx │ │ ├── StarterTemplatePage │ │ │ ├── StarterTemplatePage.tsx │ │ │ ├── StarterTemplatePageView.stories.tsx │ │ │ └── StarterTemplatePageView.tsx │ │ ├── TaskPage │ │ │ ├── TaskAppIframe.tsx │ │ │ ├── TaskApps.tsx │ │ │ ├── TaskPage.stories.tsx │ │ │ ├── TaskPage.tsx │ │ │ ├── TaskSidebar.tsx │ │ │ ├── TaskStatusLink.stories.tsx │ │ │ └── TaskStatusLink.tsx │ │ ├── TasksPage │ │ │ ├── TasksPage.stories.tsx │ │ │ ├── TasksPage.tsx │ │ │ └── UsersCombobox.tsx │ │ ├── TemplatePage │ │ │ ├── TemplateDocsPage │ │ │ │ └── TemplateDocsPage.tsx │ │ │ ├── TemplateEmbedPage │ │ │ │ ├── TemplateEmbedExperimentRouter.tsx │ │ │ │ ├── TemplateEmbedPage.test.tsx │ │ │ │ ├── TemplateEmbedPage.tsx │ │ │ │ ├── TemplateEmbedPageExperimental.tsx │ │ │ │ └── TemplateEmbedPageView.stories.tsx │ │ │ ├── TemplateFilesPage │ │ │ │ ├── TemplateFilesPage.test.tsx │ │ │ │ └── TemplateFilesPage.tsx │ │ │ ├── TemplateInsightsPage │ │ │ │ ├── DateRange.tsx │ │ │ │ ├── IntervalMenu.tsx │ │ │ │ ├── TemplateInsightsPage.stories.tsx │ │ │ │ ├── TemplateInsightsPage.tsx │ │ │ │ ├── WeekPicker.tsx │ │ │ │ └── utils.ts │ │ │ ├── TemplateLayout.tsx │ │ │ ├── TemplatePageHeader.stories.tsx │ │ │ ├── TemplatePageHeader.tsx │ │ │ ├── TemplateRedirectController.test.tsx │ │ │ ├── TemplateRedirectController.tsx │ │ │ ├── TemplateResourcesPage │ │ │ │ ├── TemplateResourcesPage.tsx │ │ │ │ ├── TemplateResourcesPageView.stories.tsx │ │ │ │ └── TemplateResourcesPageView.tsx │ │ │ ├── TemplateStats.stories.tsx │ │ │ ├── TemplateStats.tsx │ │ │ ├── TemplateVersionsPage │ │ │ │ ├── TemplateVersionsPage.tsx │ │ │ │ ├── VersionRow.tsx │ │ │ │ ├── VersionsTable.stories.tsx │ │ │ │ └── VersionsTable.tsx │ │ │ ├── useDeletionDialogState.test.ts │ │ │ ├── useDeletionDialogState.ts │ │ │ └── utils.ts │ │ ├── TemplateSettingsPage │ │ │ ├── Sidebar.tsx │ │ │ ├── TemplateGeneralSettingsPage │ │ │ │ ├── TemplateSettingsForm.tsx │ │ │ │ ├── TemplateSettingsPage.test.tsx │ │ │ │ ├── TemplateSettingsPage.tsx │ │ │ │ ├── TemplateSettingsPageView.stories.tsx │ │ │ │ └── TemplateSettingsPageView.tsx │ │ │ ├── TemplatePermissionsPage │ │ │ │ ├── TemplatePermissionsPage.tsx │ │ │ │ ├── TemplatePermissionsPageView.stories.tsx │ │ │ │ ├── TemplatePermissionsPageView.tsx │ │ │ │ └── UserOrGroupAutocomplete.tsx │ │ │ ├── TemplateSchedulePage │ │ │ │ ├── AutostopRequirementHelperText.tsx │ │ │ │ ├── ScheduleDialog.stories.tsx │ │ │ │ ├── ScheduleDialog.tsx │ │ │ │ ├── TTLHelperText.tsx │ │ │ │ ├── TemplateScheduleAutostart.stories.tsx │ │ │ │ ├── TemplateScheduleAutostart.tsx │ │ │ │ ├── TemplateScheduleForm.tsx │ │ │ │ ├── TemplateSchedulePage.test.tsx │ │ │ │ ├── TemplateSchedulePage.tsx │ │ │ │ ├── TemplateSchedulePageView.stories.tsx │ │ │ │ ├── TemplateSchedulePageView.tsx │ │ │ │ ├── formHelpers.tsx │ │ │ │ └── useWorkspacesToBeDeleted.ts │ │ │ ├── TemplateSettingsLayout.tsx │ │ │ └── TemplateVariablesPage │ │ │ │ ├── TemplateVariableField.tsx │ │ │ │ ├── TemplateVariablesForm.tsx │ │ │ │ ├── TemplateVariablesPage.test.tsx │ │ │ │ ├── TemplateVariablesPage.tsx │ │ │ │ ├── TemplateVariablesPageView.stories.tsx │ │ │ │ └── TemplateVariablesPageView.tsx │ │ ├── TemplateVersionEditorPage │ │ │ ├── FileDialog.tsx │ │ │ ├── MissingTemplateVariablesDialog.tsx │ │ │ ├── MonacoEditor.tsx │ │ │ ├── ProvisionerTagsPopover.stories.tsx │ │ │ ├── ProvisionerTagsPopover.tsx │ │ │ ├── PublishTemplateVersionDialog.tsx │ │ │ ├── TemplateVersionEditor.stories.tsx │ │ │ ├── TemplateVersionEditor.tsx │ │ │ ├── TemplateVersionEditorPage.test.tsx │ │ │ ├── TemplateVersionEditorPage.tsx │ │ │ ├── TemplateVersionStatusBadge.tsx │ │ │ └── types.ts │ │ ├── TemplateVersionPage │ │ │ ├── TemplateVersionPage.test.tsx │ │ │ ├── TemplateVersionPage.tsx │ │ │ ├── TemplateVersionPageView.stories.tsx │ │ │ └── TemplateVersionPageView.tsx │ │ ├── TemplatesPage │ │ │ ├── EmptyTemplates.tsx │ │ │ ├── TemplatesFilter.tsx │ │ │ ├── TemplatesPage.tsx │ │ │ ├── TemplatesPageView.stories.tsx │ │ │ └── TemplatesPageView.tsx │ │ ├── TerminalPage │ │ │ ├── TerminalAlerts.tsx │ │ │ ├── TerminalPage.stories.tsx │ │ │ ├── TerminalPage.test.tsx │ │ │ ├── TerminalPage.tsx │ │ │ └── types.ts │ │ ├── UserSettingsPage │ │ │ ├── AccountPage │ │ │ │ ├── AccountForm.stories.tsx │ │ │ │ ├── AccountForm.test.tsx │ │ │ │ ├── AccountForm.tsx │ │ │ │ ├── AccountPage.test.tsx │ │ │ │ ├── AccountPage.tsx │ │ │ │ ├── AccountUserGroups.stories.tsx │ │ │ │ └── AccountUserGroups.tsx │ │ │ ├── AppearancePage │ │ │ │ ├── AppearanceForm.stories.tsx │ │ │ │ ├── AppearanceForm.tsx │ │ │ │ ├── AppearancePage.test.tsx │ │ │ │ └── AppearancePage.tsx │ │ │ ├── ExternalAuthPage │ │ │ │ ├── ExternalAuthPage.tsx │ │ │ │ ├── ExternalAuthPageView.stories.tsx │ │ │ │ └── ExternalAuthPageView.tsx │ │ │ ├── Layout.tsx │ │ │ ├── NotificationsPage │ │ │ │ ├── NotificationsPage.stories.tsx │ │ │ │ └── NotificationsPage.tsx │ │ │ ├── OAuth2ProviderPage │ │ │ │ ├── OAuth2ProviderPage.tsx │ │ │ │ ├── OAuth2ProviderPageView.stories.tsx │ │ │ │ └── OAuth2ProviderPageView.tsx │ │ │ ├── SSHKeysPage │ │ │ │ ├── SSHKeysPage.test.tsx │ │ │ │ ├── SSHKeysPage.tsx │ │ │ │ ├── SSHKeysPageView.stories.tsx │ │ │ │ └── SSHKeysPageView.tsx │ │ │ ├── SchedulePage │ │ │ │ ├── ScheduleForm.stories.tsx │ │ │ │ ├── ScheduleForm.tsx │ │ │ │ ├── SchedulePage.test.tsx │ │ │ │ └── SchedulePage.tsx │ │ │ ├── Section.tsx │ │ │ ├── SecurityPage │ │ │ │ ├── SecurityForm.stories.tsx │ │ │ │ ├── SecurityForm.tsx │ │ │ │ ├── SecurityPage.test.tsx │ │ │ │ ├── SecurityPage.tsx │ │ │ │ ├── SecurityPageView.stories.tsx │ │ │ │ └── SingleSignOnSection.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── TokensPage │ │ │ │ ├── ConfirmDeleteDialog.stories.tsx │ │ │ │ ├── ConfirmDeleteDialog.tsx │ │ │ │ ├── TokensPage.tsx │ │ │ │ ├── TokensPageView.stories.tsx │ │ │ │ ├── TokensPageView.tsx │ │ │ │ └── hooks.ts │ │ │ └── WorkspaceProxyPage │ │ │ │ ├── WorkspaceProxyPage.tsx │ │ │ │ ├── WorkspaceProxyRow.tsx │ │ │ │ ├── WorkspaceProxyView.stories.tsx │ │ │ │ └── WorkspaceProxyView.tsx │ │ ├── UsersPage │ │ │ ├── ResetPasswordDialog.stories.tsx │ │ │ ├── ResetPasswordDialog.tsx │ │ │ ├── UsersFilter.tsx │ │ │ ├── UsersPage.stories.tsx │ │ │ ├── UsersPage.tsx │ │ │ ├── UsersPageView.stories.tsx │ │ │ ├── UsersPageView.tsx │ │ │ ├── UsersTable │ │ │ │ ├── UserGroupsCell.tsx │ │ │ │ ├── UsersTable.stories.tsx │ │ │ │ ├── UsersTable.tsx │ │ │ │ └── UsersTableBody.tsx │ │ │ └── storybookData │ │ │ │ ├── groups.ts │ │ │ │ ├── roles.ts │ │ │ │ └── users.ts │ │ ├── WorkspaceBuildPage │ │ │ ├── Sidebar.tsx │ │ │ ├── WorkspaceBuildPage.test.tsx │ │ │ ├── WorkspaceBuildPage.tsx │ │ │ ├── WorkspaceBuildPageView.stories.tsx │ │ │ └── WorkspaceBuildPageView.tsx │ │ ├── WorkspacePage │ │ │ ├── AppStatuses.stories.tsx │ │ │ ├── AppStatuses.tsx │ │ │ ├── HistorySidebar.tsx │ │ │ ├── ResourceMetadata.stories.tsx │ │ │ ├── ResourceMetadata.tsx │ │ │ ├── ResourcesSidebar.tsx │ │ │ ├── Workspace.stories.tsx │ │ │ ├── Workspace.tsx │ │ │ ├── WorkspaceActions │ │ │ │ ├── BuildParametersPopover.tsx │ │ │ │ ├── Buttons.tsx │ │ │ │ ├── DebugButton.stories.tsx │ │ │ │ ├── DebugButton.tsx │ │ │ │ ├── RetryButton.stories.tsx │ │ │ │ ├── RetryButton.tsx │ │ │ │ ├── WorkspaceActions.stories.tsx │ │ │ │ └── WorkspaceActions.tsx │ │ │ ├── WorkspaceBuildLogsSection.tsx │ │ │ ├── WorkspaceBuildProgress.stories.tsx │ │ │ ├── WorkspaceBuildProgress.tsx │ │ │ ├── WorkspaceDeletedBanner.stories.tsx │ │ │ ├── WorkspaceDeletedBanner.tsx │ │ │ ├── WorkspaceNotifications │ │ │ │ ├── Notifications.tsx │ │ │ │ ├── WorkspaceNotifications.stories.tsx │ │ │ │ └── WorkspaceNotifications.tsx │ │ │ ├── WorkspacePage.test.tsx │ │ │ ├── WorkspacePage.tsx │ │ │ ├── WorkspaceReadyPage.tsx │ │ │ ├── WorkspaceScheduleControls.test.tsx │ │ │ ├── WorkspaceScheduleControls.tsx │ │ │ ├── WorkspaceTopbar.stories.tsx │ │ │ ├── WorkspaceTopbar.tsx │ │ │ ├── useResourcesNav.test.tsx │ │ │ └── useResourcesNav.ts │ │ ├── WorkspaceSettingsPage │ │ │ ├── Sidebar.tsx │ │ │ ├── WorkspaceParametersPage │ │ │ │ ├── WorkspaceParametersExperimentRouter.tsx │ │ │ │ ├── WorkspaceParametersForm.tsx │ │ │ │ ├── WorkspaceParametersPage.stories.tsx │ │ │ │ ├── WorkspaceParametersPage.test.tsx │ │ │ │ ├── WorkspaceParametersPage.tsx │ │ │ │ ├── WorkspaceParametersPageExperimental.tsx │ │ │ │ └── WorkspaceParametersPageViewExperimental.tsx │ │ │ ├── WorkspaceSchedulePage │ │ │ │ ├── WorkspaceScheduleForm.stories.tsx │ │ │ │ ├── WorkspaceScheduleForm.test.tsx │ │ │ │ ├── WorkspaceScheduleForm.tsx │ │ │ │ ├── WorkspaceSchedulePage.test.tsx │ │ │ │ ├── WorkspaceSchedulePage.tsx │ │ │ │ ├── formToRequest.ts │ │ │ │ ├── schedule.test.ts │ │ │ │ ├── schedule.ts │ │ │ │ └── ttl.ts │ │ │ ├── WorkspaceSettingsForm.tsx │ │ │ ├── WorkspaceSettingsLayout.tsx │ │ │ ├── WorkspaceSettingsPage.test.tsx │ │ │ ├── WorkspaceSettingsPage.tsx │ │ │ ├── WorkspaceSettingsPageView.stories.tsx │ │ │ └── WorkspaceSettingsPageView.tsx │ │ └── WorkspacesPage │ │ │ ├── BatchDeleteConfirmation.stories.tsx │ │ │ ├── BatchDeleteConfirmation.tsx │ │ │ ├── BatchUpdateConfirmation.stories.tsx │ │ │ ├── BatchUpdateConfirmation.tsx │ │ │ ├── WorkspaceHelpTooltip.tsx │ │ │ ├── WorkspacesButton.tsx │ │ │ ├── WorkspacesEmpty.tsx │ │ │ ├── WorkspacesPage.test.tsx │ │ │ ├── WorkspacesPage.tsx │ │ │ ├── WorkspacesPageView.stories.tsx │ │ │ ├── WorkspacesPageView.tsx │ │ │ ├── WorkspacesTable.tsx │ │ │ ├── batchActions.tsx │ │ │ └── filter │ │ │ ├── WorkspacesFilter.tsx │ │ │ └── menus.tsx │ ├── router.tsx │ ├── serviceWorker.ts │ ├── testHelpers │ │ ├── chromatic.ts │ │ ├── entities.ts │ │ ├── handlers.ts │ │ ├── hooks.tsx │ │ ├── localStorage.ts │ │ ├── renderHelpers.tsx │ │ ├── server.ts │ │ ├── storybook.tsx │ │ ├── styleMock.ts │ │ └── templateFiles.tar │ ├── theme │ │ ├── branding.ts │ │ ├── constants.ts │ │ ├── dark │ │ │ ├── branding.ts │ │ │ ├── experimental.ts │ │ │ ├── index.ts │ │ │ ├── monaco.ts │ │ │ ├── mui.ts │ │ │ └── roles.ts │ │ ├── experimental.ts │ │ ├── externalImages.test.ts │ │ ├── externalImages.ts │ │ ├── globalFonts.ts │ │ ├── icons.json │ │ ├── index.ts │ │ ├── light │ │ │ ├── branding.ts │ │ │ ├── experimental.ts │ │ │ ├── index.ts │ │ │ ├── monaco.ts │ │ │ ├── mui.ts │ │ │ └── roles.ts │ │ ├── mui.ts │ │ ├── roles.ts │ │ └── tailwindColors.ts │ └── utils │ │ ├── OneWayWebSocket.test.ts │ │ ├── OneWayWebSocket.ts │ │ ├── appearance.ts │ │ ├── buildInfo.ts │ │ ├── cn.ts │ │ ├── colors.test.ts │ │ ├── colors.ts │ │ ├── connection.ts │ │ ├── createDayString.ts │ │ ├── delay.ts │ │ ├── deployOptions.ts │ │ ├── docs.ts │ │ ├── dormant.test.ts │ │ ├── dormant.ts │ │ ├── ellipsizeText.test.ts │ │ ├── ellipsizeText.ts │ │ ├── events.test.ts │ │ ├── events.ts │ │ ├── filetree.test.ts │ │ ├── filetree.ts │ │ ├── filters.ts │ │ ├── formUtils.stories.tsx │ │ ├── formUtils.test.ts │ │ ├── formUtils.ts │ │ ├── groups.ts │ │ ├── http.ts │ │ ├── latency.ts │ │ ├── nullable.ts │ │ ├── page.ts │ │ ├── portForward.test.ts │ │ ├── portForward.ts │ │ ├── provisionerJob.ts │ │ ├── random.ts │ │ ├── redirect.test.ts │ │ ├── redirect.ts │ │ ├── richParameters.test.ts │ │ ├── richParameters.ts │ │ ├── schedule.test.ts │ │ ├── schedule.tsx │ │ ├── starterTemplates.ts │ │ ├── tar.test.ts │ │ ├── tar.ts │ │ ├── telemetry.ts │ │ ├── templateVersion.ts │ │ ├── templates.ts │ │ ├── terminal.ts │ │ ├── time.ts │ │ ├── timeZones.ts │ │ ├── uri.ts │ │ ├── uuid.ts │ │ ├── workspace.test.ts │ │ └── workspace.tsx ├── static │ ├── emojis │ │ ├── 0023-fe0f-20e3.png │ │ ├── 002a-fe0f-20e3.png │ │ ├── 0030-fe0f-20e3.png │ │ ├── 0031-fe0f-20e3.png │ │ ├── 0032-fe0f-20e3.png │ │ ├── 0033-fe0f-20e3.png │ │ ├── 0034-fe0f-20e3.png │ │ ├── 0035-fe0f-20e3.png │ │ ├── 0036-fe0f-20e3.png │ │ ├── 0037-fe0f-20e3.png │ │ ├── 0038-fe0f-20e3.png │ │ ├── 0039-fe0f-20e3.png │ │ ├── 00a9-fe0f.png │ │ ├── 00ae-fe0f.png │ │ ├── 1f004.png │ │ ├── 1f0cf.png │ │ ├── 1f170-fe0f.png │ │ ├── 1f171-fe0f.png │ │ ├── 1f17e-fe0f.png │ │ ├── 1f17f-fe0f.png │ │ ├── 1f18e.png │ │ ├── 1f191.png │ │ ├── 1f192.png │ │ ├── 1f193.png │ │ ├── 1f194.png │ │ ├── 1f195.png │ │ ├── 1f196.png │ │ ├── 1f197.png │ │ ├── 1f198.png │ │ ├── 1f199.png │ │ ├── 1f19a.png │ │ ├── 1f1e6-1f1e8.png │ │ ├── 1f1e6-1f1e9.png │ │ ├── 1f1e6-1f1ea.png │ │ ├── 1f1e6-1f1eb.png │ │ ├── 1f1e6-1f1ec.png │ │ ├── 1f1e6-1f1ee.png │ │ ├── 1f1e6-1f1f1.png │ │ ├── 1f1e6-1f1f2.png │ │ ├── 1f1e6-1f1f4.png │ │ ├── 1f1e6-1f1f6.png │ │ ├── 1f1e6-1f1f7.png │ │ ├── 1f1e6-1f1f8.png │ │ ├── 1f1e6-1f1f9.png │ │ ├── 1f1e6-1f1fa.png │ │ ├── 1f1e6-1f1fc.png │ │ ├── 1f1e6-1f1fd.png │ │ ├── 1f1e6-1f1ff.png │ │ ├── 1f1e7-1f1e6.png │ │ ├── 1f1e7-1f1e7.png │ │ ├── 1f1e7-1f1e9.png │ │ ├── 1f1e7-1f1ea.png │ │ ├── 1f1e7-1f1eb.png │ │ ├── 1f1e7-1f1ec.png │ │ ├── 1f1e7-1f1ed.png │ │ ├── 1f1e7-1f1ee.png │ │ ├── 1f1e7-1f1ef.png │ │ ├── 1f1e7-1f1f1.png │ │ ├── 1f1e7-1f1f2.png │ │ ├── 1f1e7-1f1f3.png │ │ ├── 1f1e7-1f1f4.png │ │ ├── 1f1e7-1f1f6.png │ │ ├── 1f1e7-1f1f7.png │ │ ├── 1f1e7-1f1f8.png │ │ ├── 1f1e7-1f1f9.png │ │ ├── 1f1e7-1f1fb.png │ │ ├── 1f1e7-1f1fc.png │ │ ├── 1f1e7-1f1fe.png │ │ ├── 1f1e7-1f1ff.png │ │ ├── 1f1e8-1f1e6.png │ │ ├── 1f1e8-1f1e8.png │ │ ├── 1f1e8-1f1e9.png │ │ ├── 1f1e8-1f1eb.png │ │ ├── 1f1e8-1f1ec.png │ │ ├── 1f1e8-1f1ed.png │ │ ├── 1f1e8-1f1ee.png │ │ ├── 1f1e8-1f1f0.png │ │ ├── 1f1e8-1f1f1.png │ │ ├── 1f1e8-1f1f2.png │ │ ├── 1f1e8-1f1f3.png │ │ ├── 1f1e8-1f1f4.png │ │ ├── 1f1e8-1f1f5.png │ │ ├── 1f1e8-1f1f7.png │ │ ├── 1f1e8-1f1fa.png │ │ ├── 1f1e8-1f1fb.png │ │ ├── 1f1e8-1f1fc.png │ │ ├── 1f1e8-1f1fd.png │ │ ├── 1f1e8-1f1fe.png │ │ ├── 1f1e8-1f1ff.png │ │ ├── 1f1e9-1f1ea.png │ │ ├── 1f1e9-1f1ec.png │ │ ├── 1f1e9-1f1ef.png │ │ ├── 1f1e9-1f1f0.png │ │ ├── 1f1e9-1f1f2.png │ │ ├── 1f1e9-1f1f4.png │ │ ├── 1f1e9-1f1ff.png │ │ ├── 1f1ea-1f1e6.png │ │ ├── 1f1ea-1f1e8.png │ │ ├── 1f1ea-1f1ea.png │ │ ├── 1f1ea-1f1ec.png │ │ ├── 1f1ea-1f1ed.png │ │ ├── 1f1ea-1f1f7.png │ │ ├── 1f1ea-1f1f8.png │ │ ├── 1f1ea-1f1f9.png │ │ ├── 1f1ea-1f1fa.png │ │ ├── 1f1eb-1f1ee.png │ │ ├── 1f1eb-1f1ef.png │ │ ├── 1f1eb-1f1f0.png │ │ ├── 1f1eb-1f1f2.png │ │ ├── 1f1eb-1f1f4.png │ │ ├── 1f1eb-1f1f7.png │ │ ├── 1f1ec-1f1e6.png │ │ ├── 1f1ec-1f1e7.png │ │ ├── 1f1ec-1f1e9.png │ │ ├── 1f1ec-1f1ea.png │ │ ├── 1f1ec-1f1eb.png │ │ ├── 1f1ec-1f1ec.png │ │ ├── 1f1ec-1f1ed.png │ │ ├── 1f1ec-1f1ee.png │ │ ├── 1f1ec-1f1f1.png │ │ ├── 1f1ec-1f1f2.png │ │ ├── 1f1ec-1f1f3.png │ │ ├── 1f1ec-1f1f5.png │ │ ├── 1f1ec-1f1f6.png │ │ ├── 1f1ec-1f1f7.png │ │ ├── 1f1ec-1f1f8.png │ │ ├── 1f1ec-1f1f9.png │ │ ├── 1f1ec-1f1fa.png │ │ ├── 1f1ec-1f1fc.png │ │ ├── 1f1ec-1f1fe.png │ │ ├── 1f1ed-1f1f0.png │ │ ├── 1f1ed-1f1f2.png │ │ ├── 1f1ed-1f1f3.png │ │ ├── 1f1ed-1f1f7.png │ │ ├── 1f1ed-1f1f9.png │ │ ├── 1f1ed-1f1fa.png │ │ ├── 1f1ee-1f1e8.png │ │ ├── 1f1ee-1f1e9.png │ │ ├── 1f1ee-1f1ea.png │ │ ├── 1f1ee-1f1f1.png │ │ ├── 1f1ee-1f1f2.png │ │ ├── 1f1ee-1f1f3.png │ │ ├── 1f1ee-1f1f4.png │ │ ├── 1f1ee-1f1f6.png │ │ ├── 1f1ee-1f1f7.png │ │ ├── 1f1ee-1f1f8.png │ │ ├── 1f1ee-1f1f9.png │ │ ├── 1f1ef-1f1ea.png │ │ ├── 1f1ef-1f1f2.png │ │ ├── 1f1ef-1f1f4.png │ │ ├── 1f1ef-1f1f5.png │ │ ├── 1f1f0-1f1ea.png │ │ ├── 1f1f0-1f1ec.png │ │ ├── 1f1f0-1f1ed.png │ │ ├── 1f1f0-1f1ee.png │ │ ├── 1f1f0-1f1f2.png │ │ ├── 1f1f0-1f1f3.png │ │ ├── 1f1f0-1f1f5.png │ │ ├── 1f1f0-1f1f7.png │ │ ├── 1f1f0-1f1fc.png │ │ ├── 1f1f0-1f1fe.png │ │ ├── 1f1f0-1f1ff.png │ │ ├── 1f1f1-1f1e6.png │ │ ├── 1f1f1-1f1e7.png │ │ ├── 1f1f1-1f1e8.png │ │ ├── 1f1f1-1f1ee.png │ │ ├── 1f1f1-1f1f0.png │ │ ├── 1f1f1-1f1f7.png │ │ ├── 1f1f1-1f1f8.png │ │ ├── 1f1f1-1f1f9.png │ │ ├── 1f1f1-1f1fa.png │ │ ├── 1f1f1-1f1fb.png │ │ ├── 1f1f1-1f1fe.png │ │ ├── 1f1f2-1f1e6.png │ │ ├── 1f1f2-1f1e8.png │ │ ├── 1f1f2-1f1e9.png │ │ ├── 1f1f2-1f1ea.png │ │ ├── 1f1f2-1f1eb.png │ │ ├── 1f1f2-1f1ec.png │ │ ├── 1f1f2-1f1ed.png │ │ ├── 1f1f2-1f1f0.png │ │ ├── 1f1f2-1f1f1.png │ │ ├── 1f1f2-1f1f2.png │ │ ├── 1f1f2-1f1f3.png │ │ ├── 1f1f2-1f1f4.png │ │ ├── 1f1f2-1f1f5.png │ │ ├── 1f1f2-1f1f6.png │ │ ├── 1f1f2-1f1f7.png │ │ ├── 1f1f2-1f1f8.png │ │ ├── 1f1f2-1f1f9.png │ │ ├── 1f1f2-1f1fa.png │ │ ├── 1f1f2-1f1fb.png │ │ ├── 1f1f2-1f1fc.png │ │ ├── 1f1f2-1f1fd.png │ │ ├── 1f1f2-1f1fe.png │ │ ├── 1f1f2-1f1ff.png │ │ ├── 1f1f3-1f1e6.png │ │ ├── 1f1f3-1f1e8.png │ │ ├── 1f1f3-1f1ea.png │ │ ├── 1f1f3-1f1eb.png │ │ ├── 1f1f3-1f1ec.png │ │ ├── 1f1f3-1f1ee.png │ │ ├── 1f1f3-1f1f1.png │ │ ├── 1f1f3-1f1f4.png │ │ ├── 1f1f3-1f1f5.png │ │ ├── 1f1f3-1f1f7.png │ │ ├── 1f1f3-1f1fa.png │ │ ├── 1f1f3-1f1ff.png │ │ ├── 1f1f4-1f1f2.png │ │ ├── 1f1f5-1f1e6.png │ │ ├── 1f1f5-1f1ea.png │ │ ├── 1f1f5-1f1eb.png │ │ ├── 1f1f5-1f1ec.png │ │ ├── 1f1f5-1f1ed.png │ │ ├── 1f1f5-1f1f0.png │ │ ├── 1f1f5-1f1f1.png │ │ ├── 1f1f5-1f1f2.png │ │ ├── 1f1f5-1f1f3.png │ │ ├── 1f1f5-1f1f7.png │ │ ├── 1f1f5-1f1f8.png │ │ ├── 1f1f5-1f1f9.png │ │ ├── 1f1f5-1f1fc.png │ │ ├── 1f1f5-1f1fe.png │ │ ├── 1f1f6-1f1e6.png │ │ ├── 1f1f7-1f1ea.png │ │ ├── 1f1f7-1f1f4.png │ │ ├── 1f1f7-1f1f8.png │ │ ├── 1f1f7-1f1fa.png │ │ ├── 1f1f7-1f1fc.png │ │ ├── 1f1f8-1f1e6.png │ │ ├── 1f1f8-1f1e7.png │ │ ├── 1f1f8-1f1e8.png │ │ ├── 1f1f8-1f1e9.png │ │ ├── 1f1f8-1f1ea.png │ │ ├── 1f1f8-1f1ec.png │ │ ├── 1f1f8-1f1ed.png │ │ ├── 1f1f8-1f1ee.png │ │ ├── 1f1f8-1f1ef.png │ │ ├── 1f1f8-1f1f0.png │ │ ├── 1f1f8-1f1f1.png │ │ ├── 1f1f8-1f1f2.png │ │ ├── 1f1f8-1f1f3.png │ │ ├── 1f1f8-1f1f4.png │ │ ├── 1f1f8-1f1f7.png │ │ ├── 1f1f8-1f1f8.png │ │ ├── 1f1f8-1f1f9.png │ │ ├── 1f1f8-1f1fb.png │ │ ├── 1f1f8-1f1fd.png │ │ ├── 1f1f8-1f1fe.png │ │ ├── 1f1f8-1f1ff.png │ │ ├── 1f1f9-1f1e6.png │ │ ├── 1f1f9-1f1e8.png │ │ ├── 1f1f9-1f1e9.png │ │ ├── 1f1f9-1f1eb.png │ │ ├── 1f1f9-1f1ec.png │ │ ├── 1f1f9-1f1ed.png │ │ ├── 1f1f9-1f1ef.png │ │ ├── 1f1f9-1f1f0.png │ │ ├── 1f1f9-1f1f1.png │ │ ├── 1f1f9-1f1f2.png │ │ ├── 1f1f9-1f1f3.png │ │ ├── 1f1f9-1f1f4.png │ │ ├── 1f1f9-1f1f7.png │ │ ├── 1f1f9-1f1f9.png │ │ ├── 1f1f9-1f1fb.png │ │ ├── 1f1f9-1f1fc.png │ │ ├── 1f1f9-1f1ff.png │ │ ├── 1f1fa-1f1e6.png │ │ ├── 1f1fa-1f1ec.png │ │ ├── 1f1fa-1f1f2.png │ │ ├── 1f1fa-1f1f3.png │ │ ├── 1f1fa-1f1f8.png │ │ ├── 1f1fa-1f1fe.png │ │ ├── 1f1fa-1f1ff.png │ │ ├── 1f1fb-1f1e6.png │ │ ├── 1f1fb-1f1e8.png │ │ ├── 1f1fb-1f1ea.png │ │ ├── 1f1fb-1f1ec.png │ │ ├── 1f1fb-1f1ee.png │ │ ├── 1f1fb-1f1f3.png │ │ ├── 1f1fb-1f1fa.png │ │ ├── 1f1fc-1f1eb.png │ │ ├── 1f1fc-1f1f8.png │ │ ├── 1f1fd-1f1f0.png │ │ ├── 1f1fe-1f1ea.png │ │ ├── 1f1fe-1f1f9.png │ │ ├── 1f1ff-1f1e6.png │ │ ├── 1f1ff-1f1f2.png │ │ ├── 1f1ff-1f1fc.png │ │ ├── 1f201.png │ │ ├── 1f202-fe0f.png │ │ ├── 1f21a.png │ │ ├── 1f22f.png │ │ ├── 1f232.png │ │ ├── 1f233.png │ │ ├── 1f234.png │ │ ├── 1f235.png │ │ ├── 1f236.png │ │ ├── 1f237-fe0f.png │ │ ├── 1f238.png │ │ ├── 1f239.png │ │ ├── 1f23a.png │ │ ├── 1f250.png │ │ ├── 1f251.png │ │ ├── 1f300.png │ │ ├── 1f301.png │ │ ├── 1f302.png │ │ ├── 1f303.png │ │ ├── 1f304.png │ │ ├── 1f305.png │ │ ├── 1f306.png │ │ ├── 1f307.png │ │ ├── 1f308.png │ │ ├── 1f309.png │ │ ├── 1f30a.png │ │ ├── 1f30b.png │ │ ├── 1f30c.png │ │ ├── 1f30d.png │ │ ├── 1f30e.png │ │ ├── 1f30f.png │ │ ├── 1f310.png │ │ ├── 1f311.png │ │ ├── 1f312.png │ │ ├── 1f313.png │ │ ├── 1f314.png │ │ ├── 1f315.png │ │ ├── 1f316.png │ │ ├── 1f317.png │ │ ├── 1f318.png │ │ ├── 1f319.png │ │ ├── 1f31a.png │ │ ├── 1f31b.png │ │ ├── 1f31c.png │ │ ├── 1f31d.png │ │ ├── 1f31e.png │ │ ├── 1f31f.png │ │ ├── 1f320.png │ │ ├── 1f321-fe0f.png │ │ ├── 1f324-fe0f.png │ │ ├── 1f325-fe0f.png │ │ ├── 1f326-fe0f.png │ │ ├── 1f327-fe0f.png │ │ ├── 1f328-fe0f.png │ │ ├── 1f329-fe0f.png │ │ ├── 1f32a-fe0f.png │ │ ├── 1f32b-fe0f.png │ │ ├── 1f32c-fe0f.png │ │ ├── 1f32d.png │ │ ├── 1f32e.png │ │ ├── 1f32f.png │ │ ├── 1f330.png │ │ ├── 1f331.png │ │ ├── 1f332.png │ │ ├── 1f333.png │ │ ├── 1f334.png │ │ ├── 1f335.png │ │ ├── 1f336-fe0f.png │ │ ├── 1f337.png │ │ ├── 1f338.png │ │ ├── 1f339.png │ │ ├── 1f33a.png │ │ ├── 1f33b.png │ │ ├── 1f33c.png │ │ ├── 1f33d.png │ │ ├── 1f33e.png │ │ ├── 1f33f.png │ │ ├── 1f340.png │ │ ├── 1f341.png │ │ ├── 1f342.png │ │ ├── 1f343.png │ │ ├── 1f344-200d-1f7eb.png │ │ ├── 1f344.png │ │ ├── 1f345.png │ │ ├── 1f346.png │ │ ├── 1f347.png │ │ ├── 1f348.png │ │ ├── 1f349.png │ │ ├── 1f34a.png │ │ ├── 1f34b-200d-1f7e9.png │ │ ├── 1f34b.png │ │ ├── 1f34c.png │ │ ├── 1f34d.png │ │ ├── 1f34e.png │ │ ├── 1f34f.png │ │ ├── 1f350.png │ │ ├── 1f351.png │ │ ├── 1f352.png │ │ ├── 1f353.png │ │ ├── 1f354.png │ │ ├── 1f355.png │ │ ├── 1f356.png │ │ ├── 1f357.png │ │ ├── 1f358.png │ │ ├── 1f359.png │ │ ├── 1f35a.png │ │ ├── 1f35b.png │ │ ├── 1f35c.png │ │ ├── 1f35d.png │ │ ├── 1f35e.png │ │ ├── 1f35f.png │ │ ├── 1f360.png │ │ ├── 1f361.png │ │ ├── 1f362.png │ │ ├── 1f363.png │ │ ├── 1f364.png │ │ ├── 1f365.png │ │ ├── 1f366.png │ │ ├── 1f367.png │ │ ├── 1f368.png │ │ ├── 1f369.png │ │ ├── 1f36a.png │ │ ├── 1f36b.png │ │ ├── 1f36c.png │ │ ├── 1f36d.png │ │ ├── 1f36e.png │ │ ├── 1f36f.png │ │ ├── 1f370.png │ │ ├── 1f371.png │ │ ├── 1f372.png │ │ ├── 1f373.png │ │ ├── 1f374.png │ │ ├── 1f375.png │ │ ├── 1f376.png │ │ ├── 1f377.png │ │ ├── 1f378.png │ │ ├── 1f379.png │ │ ├── 1f37a.png │ │ ├── 1f37b.png │ │ ├── 1f37c.png │ │ ├── 1f37d-fe0f.png │ │ ├── 1f37e.png │ │ ├── 1f37f.png │ │ ├── 1f380.png │ │ ├── 1f381.png │ │ ├── 1f382.png │ │ ├── 1f383.png │ │ ├── 1f384.png │ │ ├── 1f385-1f3fb.png │ │ ├── 1f385-1f3fc.png │ │ ├── 1f385-1f3fd.png │ │ ├── 1f385-1f3fe.png │ │ ├── 1f385-1f3ff.png │ │ ├── 1f385.png │ │ ├── 1f386.png │ │ ├── 1f387.png │ │ ├── 1f388.png │ │ ├── 1f389.png │ │ ├── 1f38a.png │ │ ├── 1f38b.png │ │ ├── 1f38c.png │ │ ├── 1f38d.png │ │ ├── 1f38e.png │ │ ├── 1f38f.png │ │ ├── 1f390.png │ │ ├── 1f391.png │ │ ├── 1f392.png │ │ ├── 1f393.png │ │ ├── 1f396-fe0f.png │ │ ├── 1f397-fe0f.png │ │ ├── 1f399-fe0f.png │ │ ├── 1f39a-fe0f.png │ │ ├── 1f39b-fe0f.png │ │ ├── 1f39e-fe0f.png │ │ ├── 1f39f-fe0f.png │ │ ├── 1f3a0.png │ │ ├── 1f3a1.png │ │ ├── 1f3a2.png │ │ ├── 1f3a3.png │ │ ├── 1f3a4.png │ │ ├── 1f3a5.png │ │ ├── 1f3a6.png │ │ ├── 1f3a7.png │ │ ├── 1f3a8.png │ │ ├── 1f3a9.png │ │ ├── 1f3aa.png │ │ ├── 1f3ab.png │ │ ├── 1f3ac.png │ │ ├── 1f3ad.png │ │ ├── 1f3ae.png │ │ ├── 1f3af.png │ │ ├── 1f3b0.png │ │ ├── 1f3b1.png │ │ ├── 1f3b2.png │ │ ├── 1f3b3.png │ │ ├── 1f3b4.png │ │ ├── 1f3b5.png │ │ ├── 1f3b6.png │ │ ├── 1f3b7.png │ │ ├── 1f3b8.png │ │ ├── 1f3b9.png │ │ ├── 1f3ba.png │ │ ├── 1f3bb.png │ │ ├── 1f3bc.png │ │ ├── 1f3bd.png │ │ ├── 1f3be.png │ │ ├── 1f3bf.png │ │ ├── 1f3c0.png │ │ ├── 1f3c1.png │ │ ├── 1f3c2-1f3fb.png │ │ ├── 1f3c2-1f3fc.png │ │ ├── 1f3c2-1f3fd.png │ │ ├── 1f3c2-1f3fe.png │ │ ├── 1f3c2-1f3ff.png │ │ ├── 1f3c2.png │ │ ├── 1f3c3-1f3fb-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3fb-200d-2640-fe0f.png │ │ ├── 1f3c3-1f3fb-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3fb-200d-2642-fe0f.png │ │ ├── 1f3c3-1f3fb-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3fb.png │ │ ├── 1f3c3-1f3fc-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3fc-200d-2640-fe0f.png │ │ ├── 1f3c3-1f3fc-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3fc-200d-2642-fe0f.png │ │ ├── 1f3c3-1f3fc-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3fc.png │ │ ├── 1f3c3-1f3fd-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3fd-200d-2640-fe0f.png │ │ ├── 1f3c3-1f3fd-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3fd-200d-2642-fe0f.png │ │ ├── 1f3c3-1f3fd-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3fd.png │ │ ├── 1f3c3-1f3fe-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3fe-200d-2640-fe0f.png │ │ ├── 1f3c3-1f3fe-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3fe-200d-2642-fe0f.png │ │ ├── 1f3c3-1f3fe-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3fe.png │ │ ├── 1f3c3-1f3ff-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3ff-200d-2640-fe0f.png │ │ ├── 1f3c3-1f3ff-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3ff-200d-2642-fe0f.png │ │ ├── 1f3c3-1f3ff-200d-27a1-fe0f.png │ │ ├── 1f3c3-1f3ff.png │ │ ├── 1f3c3-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f3c3-200d-2640-fe0f.png │ │ ├── 1f3c3-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f3c3-200d-2642-fe0f.png │ │ ├── 1f3c3-200d-27a1-fe0f.png │ │ ├── 1f3c3.png │ │ ├── 1f3c4-1f3fb-200d-2640-fe0f.png │ │ ├── 1f3c4-1f3fb-200d-2642-fe0f.png │ │ ├── 1f3c4-1f3fb.png │ │ ├── 1f3c4-1f3fc-200d-2640-fe0f.png │ │ ├── 1f3c4-1f3fc-200d-2642-fe0f.png │ │ ├── 1f3c4-1f3fc.png │ │ ├── 1f3c4-1f3fd-200d-2640-fe0f.png │ │ ├── 1f3c4-1f3fd-200d-2642-fe0f.png │ │ ├── 1f3c4-1f3fd.png │ │ ├── 1f3c4-1f3fe-200d-2640-fe0f.png │ │ ├── 1f3c4-1f3fe-200d-2642-fe0f.png │ │ ├── 1f3c4-1f3fe.png │ │ ├── 1f3c4-1f3ff-200d-2640-fe0f.png │ │ ├── 1f3c4-1f3ff-200d-2642-fe0f.png │ │ ├── 1f3c4-1f3ff.png │ │ ├── 1f3c4-200d-2640-fe0f.png │ │ ├── 1f3c4-200d-2642-fe0f.png │ │ ├── 1f3c4.png │ │ ├── 1f3c5.png │ │ ├── 1f3c6.png │ │ ├── 1f3c7-1f3fb.png │ │ ├── 1f3c7-1f3fc.png │ │ ├── 1f3c7-1f3fd.png │ │ ├── 1f3c7-1f3fe.png │ │ ├── 1f3c7-1f3ff.png │ │ ├── 1f3c7.png │ │ ├── 1f3c8.png │ │ ├── 1f3c9.png │ │ ├── 1f3ca-1f3fb-200d-2640-fe0f.png │ │ ├── 1f3ca-1f3fb-200d-2642-fe0f.png │ │ ├── 1f3ca-1f3fb.png │ │ ├── 1f3ca-1f3fc-200d-2640-fe0f.png │ │ ├── 1f3ca-1f3fc-200d-2642-fe0f.png │ │ ├── 1f3ca-1f3fc.png │ │ ├── 1f3ca-1f3fd-200d-2640-fe0f.png │ │ ├── 1f3ca-1f3fd-200d-2642-fe0f.png │ │ ├── 1f3ca-1f3fd.png │ │ ├── 1f3ca-1f3fe-200d-2640-fe0f.png │ │ ├── 1f3ca-1f3fe-200d-2642-fe0f.png │ │ ├── 1f3ca-1f3fe.png │ │ ├── 1f3ca-1f3ff-200d-2640-fe0f.png │ │ ├── 1f3ca-1f3ff-200d-2642-fe0f.png │ │ ├── 1f3ca-1f3ff.png │ │ ├── 1f3ca-200d-2640-fe0f.png │ │ ├── 1f3ca-200d-2642-fe0f.png │ │ ├── 1f3ca.png │ │ ├── 1f3cb-1f3fb-200d-2640-fe0f.png │ │ ├── 1f3cb-1f3fb-200d-2642-fe0f.png │ │ ├── 1f3cb-1f3fb.png │ │ ├── 1f3cb-1f3fc-200d-2640-fe0f.png │ │ ├── 1f3cb-1f3fc-200d-2642-fe0f.png │ │ ├── 1f3cb-1f3fc.png │ │ ├── 1f3cb-1f3fd-200d-2640-fe0f.png │ │ ├── 1f3cb-1f3fd-200d-2642-fe0f.png │ │ ├── 1f3cb-1f3fd.png │ │ ├── 1f3cb-1f3fe-200d-2640-fe0f.png │ │ ├── 1f3cb-1f3fe-200d-2642-fe0f.png │ │ ├── 1f3cb-1f3fe.png │ │ ├── 1f3cb-1f3ff-200d-2640-fe0f.png │ │ ├── 1f3cb-1f3ff-200d-2642-fe0f.png │ │ ├── 1f3cb-1f3ff.png │ │ ├── 1f3cb-fe0f-200d-2640-fe0f.png │ │ ├── 1f3cb-fe0f-200d-2642-fe0f.png │ │ ├── 1f3cb-fe0f.png │ │ ├── 1f3cc-1f3fb-200d-2640-fe0f.png │ │ ├── 1f3cc-1f3fb-200d-2642-fe0f.png │ │ ├── 1f3cc-1f3fb.png │ │ ├── 1f3cc-1f3fc-200d-2640-fe0f.png │ │ ├── 1f3cc-1f3fc-200d-2642-fe0f.png │ │ ├── 1f3cc-1f3fc.png │ │ ├── 1f3cc-1f3fd-200d-2640-fe0f.png │ │ ├── 1f3cc-1f3fd-200d-2642-fe0f.png │ │ ├── 1f3cc-1f3fd.png │ │ ├── 1f3cc-1f3fe-200d-2640-fe0f.png │ │ ├── 1f3cc-1f3fe-200d-2642-fe0f.png │ │ ├── 1f3cc-1f3fe.png │ │ ├── 1f3cc-1f3ff-200d-2640-fe0f.png │ │ ├── 1f3cc-1f3ff-200d-2642-fe0f.png │ │ ├── 1f3cc-1f3ff.png │ │ ├── 1f3cc-fe0f-200d-2640-fe0f.png │ │ ├── 1f3cc-fe0f-200d-2642-fe0f.png │ │ ├── 1f3cc-fe0f.png │ │ ├── 1f3cd-fe0f.png │ │ ├── 1f3ce-fe0f.png │ │ ├── 1f3cf.png │ │ ├── 1f3d0.png │ │ ├── 1f3d1.png │ │ ├── 1f3d2.png │ │ ├── 1f3d3.png │ │ ├── 1f3d4-fe0f.png │ │ ├── 1f3d5-fe0f.png │ │ ├── 1f3d6-fe0f.png │ │ ├── 1f3d7-fe0f.png │ │ ├── 1f3d8-fe0f.png │ │ ├── 1f3d9-fe0f.png │ │ ├── 1f3da-fe0f.png │ │ ├── 1f3db-fe0f.png │ │ ├── 1f3dc-fe0f.png │ │ ├── 1f3dd-fe0f.png │ │ ├── 1f3de-fe0f.png │ │ ├── 1f3df-fe0f.png │ │ ├── 1f3e0.png │ │ ├── 1f3e1.png │ │ ├── 1f3e2.png │ │ ├── 1f3e3.png │ │ ├── 1f3e4.png │ │ ├── 1f3e5.png │ │ ├── 1f3e6.png │ │ ├── 1f3e7.png │ │ ├── 1f3e8.png │ │ ├── 1f3e9.png │ │ ├── 1f3ea.png │ │ ├── 1f3eb.png │ │ ├── 1f3ec.png │ │ ├── 1f3ed.png │ │ ├── 1f3ee.png │ │ ├── 1f3ef.png │ │ ├── 1f3f0.png │ │ ├── 1f3f3-fe0f-200d-1f308.png │ │ ├── 1f3f3-fe0f-200d-26a7-fe0f.png │ │ ├── 1f3f3-fe0f.png │ │ ├── 1f3f4-200d-2620-fe0f.png │ │ ├── 1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.png │ │ ├── 1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.png │ │ ├── 1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.png │ │ ├── 1f3f4.png │ │ ├── 1f3f5-fe0f.png │ │ ├── 1f3f7-fe0f.png │ │ ├── 1f3f8.png │ │ ├── 1f3f9.png │ │ ├── 1f3fa.png │ │ ├── 1f3fb.png │ │ ├── 1f3fc.png │ │ ├── 1f3fd.png │ │ ├── 1f3fe.png │ │ ├── 1f3ff.png │ │ ├── 1f400.png │ │ ├── 1f401.png │ │ ├── 1f402.png │ │ ├── 1f403.png │ │ ├── 1f404.png │ │ ├── 1f405.png │ │ ├── 1f406.png │ │ ├── 1f407.png │ │ ├── 1f408-200d-2b1b.png │ │ ├── 1f408.png │ │ ├── 1f409.png │ │ ├── 1f40a.png │ │ ├── 1f40b.png │ │ ├── 1f40c.png │ │ ├── 1f40d.png │ │ ├── 1f40e.png │ │ ├── 1f40f.png │ │ ├── 1f410.png │ │ ├── 1f411.png │ │ ├── 1f412.png │ │ ├── 1f413.png │ │ ├── 1f414.png │ │ ├── 1f415-200d-1f9ba.png │ │ ├── 1f415.png │ │ ├── 1f416.png │ │ ├── 1f417.png │ │ ├── 1f418.png │ │ ├── 1f419.png │ │ ├── 1f41a.png │ │ ├── 1f41b.png │ │ ├── 1f41c.png │ │ ├── 1f41d.png │ │ ├── 1f41e.png │ │ ├── 1f41f.png │ │ ├── 1f420.png │ │ ├── 1f421.png │ │ ├── 1f422.png │ │ ├── 1f423.png │ │ ├── 1f424.png │ │ ├── 1f425.png │ │ ├── 1f426-200d-1f525.png │ │ ├── 1f426-200d-2b1b.png │ │ ├── 1f426.png │ │ ├── 1f427.png │ │ ├── 1f428.png │ │ ├── 1f429.png │ │ ├── 1f42a.png │ │ ├── 1f42b.png │ │ ├── 1f42c.png │ │ ├── 1f42d.png │ │ ├── 1f42e.png │ │ ├── 1f42f.png │ │ ├── 1f430.png │ │ ├── 1f431.png │ │ ├── 1f432.png │ │ ├── 1f433.png │ │ ├── 1f434.png │ │ ├── 1f435.png │ │ ├── 1f436.png │ │ ├── 1f437.png │ │ ├── 1f438.png │ │ ├── 1f439.png │ │ ├── 1f43a.png │ │ ├── 1f43b-200d-2744-fe0f.png │ │ ├── 1f43b.png │ │ ├── 1f43c.png │ │ ├── 1f43d.png │ │ ├── 1f43e.png │ │ ├── 1f43f-fe0f.png │ │ ├── 1f440.png │ │ ├── 1f441-fe0f-200d-1f5e8-fe0f.png │ │ ├── 1f441-fe0f.png │ │ ├── 1f442-1f3fb.png │ │ ├── 1f442-1f3fc.png │ │ ├── 1f442-1f3fd.png │ │ ├── 1f442-1f3fe.png │ │ ├── 1f442-1f3ff.png │ │ ├── 1f442.png │ │ ├── 1f443-1f3fb.png │ │ ├── 1f443-1f3fc.png │ │ ├── 1f443-1f3fd.png │ │ ├── 1f443-1f3fe.png │ │ ├── 1f443-1f3ff.png │ │ ├── 1f443.png │ │ ├── 1f444.png │ │ ├── 1f445.png │ │ ├── 1f446-1f3fb.png │ │ ├── 1f446-1f3fc.png │ │ ├── 1f446-1f3fd.png │ │ ├── 1f446-1f3fe.png │ │ ├── 1f446-1f3ff.png │ │ ├── 1f446.png │ │ ├── 1f447-1f3fb.png │ │ ├── 1f447-1f3fc.png │ │ ├── 1f447-1f3fd.png │ │ ├── 1f447-1f3fe.png │ │ ├── 1f447-1f3ff.png │ │ ├── 1f447.png │ │ ├── 1f448-1f3fb.png │ │ ├── 1f448-1f3fc.png │ │ ├── 1f448-1f3fd.png │ │ ├── 1f448-1f3fe.png │ │ ├── 1f448-1f3ff.png │ │ ├── 1f448.png │ │ ├── 1f449-1f3fb.png │ │ ├── 1f449-1f3fc.png │ │ ├── 1f449-1f3fd.png │ │ ├── 1f449-1f3fe.png │ │ ├── 1f449-1f3ff.png │ │ ├── 1f449.png │ │ ├── 1f44a-1f3fb.png │ │ ├── 1f44a-1f3fc.png │ │ ├── 1f44a-1f3fd.png │ │ ├── 1f44a-1f3fe.png │ │ ├── 1f44a-1f3ff.png │ │ ├── 1f44a.png │ │ ├── 1f44b-1f3fb.png │ │ ├── 1f44b-1f3fc.png │ │ ├── 1f44b-1f3fd.png │ │ ├── 1f44b-1f3fe.png │ │ ├── 1f44b-1f3ff.png │ │ ├── 1f44b.png │ │ ├── 1f44c-1f3fb.png │ │ ├── 1f44c-1f3fc.png │ │ ├── 1f44c-1f3fd.png │ │ ├── 1f44c-1f3fe.png │ │ ├── 1f44c-1f3ff.png │ │ ├── 1f44c.png │ │ ├── 1f44d-1f3fb.png │ │ ├── 1f44d-1f3fc.png │ │ ├── 1f44d-1f3fd.png │ │ ├── 1f44d-1f3fe.png │ │ ├── 1f44d-1f3ff.png │ │ ├── 1f44d.png │ │ ├── 1f44e-1f3fb.png │ │ ├── 1f44e-1f3fc.png │ │ ├── 1f44e-1f3fd.png │ │ ├── 1f44e-1f3fe.png │ │ ├── 1f44e-1f3ff.png │ │ ├── 1f44e.png │ │ ├── 1f44f-1f3fb.png │ │ ├── 1f44f-1f3fc.png │ │ ├── 1f44f-1f3fd.png │ │ ├── 1f44f-1f3fe.png │ │ ├── 1f44f-1f3ff.png │ │ ├── 1f44f.png │ │ ├── 1f450-1f3fb.png │ │ ├── 1f450-1f3fc.png │ │ ├── 1f450-1f3fd.png │ │ ├── 1f450-1f3fe.png │ │ ├── 1f450-1f3ff.png │ │ ├── 1f450.png │ │ ├── 1f451.png │ │ ├── 1f452.png │ │ ├── 1f453.png │ │ ├── 1f454.png │ │ ├── 1f455.png │ │ ├── 1f456.png │ │ ├── 1f457.png │ │ ├── 1f458.png │ │ ├── 1f459.png │ │ ├── 1f45a.png │ │ ├── 1f45b.png │ │ ├── 1f45c.png │ │ ├── 1f45d.png │ │ ├── 1f45e.png │ │ ├── 1f45f.png │ │ ├── 1f460.png │ │ ├── 1f461.png │ │ ├── 1f462.png │ │ ├── 1f463.png │ │ ├── 1f464.png │ │ ├── 1f465.png │ │ ├── 1f466-1f3fb.png │ │ ├── 1f466-1f3fc.png │ │ ├── 1f466-1f3fd.png │ │ ├── 1f466-1f3fe.png │ │ ├── 1f466-1f3ff.png │ │ ├── 1f466.png │ │ ├── 1f467-1f3fb.png │ │ ├── 1f467-1f3fc.png │ │ ├── 1f467-1f3fd.png │ │ ├── 1f467-1f3fe.png │ │ ├── 1f467-1f3ff.png │ │ ├── 1f467.png │ │ ├── 1f468-1f3fb-200d-1f33e.png │ │ ├── 1f468-1f3fb-200d-1f373.png │ │ ├── 1f468-1f3fb-200d-1f37c.png │ │ ├── 1f468-1f3fb-200d-1f393.png │ │ ├── 1f468-1f3fb-200d-1f3a4.png │ │ ├── 1f468-1f3fb-200d-1f3a8.png │ │ ├── 1f468-1f3fb-200d-1f3eb.png │ │ ├── 1f468-1f3fb-200d-1f3ed.png │ │ ├── 1f468-1f3fb-200d-1f4bb.png │ │ ├── 1f468-1f3fb-200d-1f4bc.png │ │ ├── 1f468-1f3fb-200d-1f527.png │ │ ├── 1f468-1f3fb-200d-1f52c.png │ │ ├── 1f468-1f3fb-200d-1f680.png │ │ ├── 1f468-1f3fb-200d-1f692.png │ │ ├── 1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3fb-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f468-1f3fb-200d-1f9af.png │ │ ├── 1f468-1f3fb-200d-1f9b0.png │ │ ├── 1f468-1f3fb-200d-1f9b1.png │ │ ├── 1f468-1f3fb-200d-1f9b2.png │ │ ├── 1f468-1f3fb-200d-1f9b3.png │ │ ├── 1f468-1f3fb-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f468-1f3fb-200d-1f9bc.png │ │ ├── 1f468-1f3fb-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f468-1f3fb-200d-1f9bd.png │ │ ├── 1f468-1f3fb-200d-2695-fe0f.png │ │ ├── 1f468-1f3fb-200d-2696-fe0f.png │ │ ├── 1f468-1f3fb-200d-2708-fe0f.png │ │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3fb.png │ │ ├── 1f468-1f3fc-200d-1f33e.png │ │ ├── 1f468-1f3fc-200d-1f373.png │ │ ├── 1f468-1f3fc-200d-1f37c.png │ │ ├── 1f468-1f3fc-200d-1f393.png │ │ ├── 1f468-1f3fc-200d-1f3a4.png │ │ ├── 1f468-1f3fc-200d-1f3a8.png │ │ ├── 1f468-1f3fc-200d-1f3eb.png │ │ ├── 1f468-1f3fc-200d-1f3ed.png │ │ ├── 1f468-1f3fc-200d-1f4bb.png │ │ ├── 1f468-1f3fc-200d-1f4bc.png │ │ ├── 1f468-1f3fc-200d-1f527.png │ │ ├── 1f468-1f3fc-200d-1f52c.png │ │ ├── 1f468-1f3fc-200d-1f680.png │ │ ├── 1f468-1f3fc-200d-1f692.png │ │ ├── 1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3fc-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f468-1f3fc-200d-1f9af.png │ │ ├── 1f468-1f3fc-200d-1f9b0.png │ │ ├── 1f468-1f3fc-200d-1f9b1.png │ │ ├── 1f468-1f3fc-200d-1f9b2.png │ │ ├── 1f468-1f3fc-200d-1f9b3.png │ │ ├── 1f468-1f3fc-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f468-1f3fc-200d-1f9bc.png │ │ ├── 1f468-1f3fc-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f468-1f3fc-200d-1f9bd.png │ │ ├── 1f468-1f3fc-200d-2695-fe0f.png │ │ ├── 1f468-1f3fc-200d-2696-fe0f.png │ │ ├── 1f468-1f3fc-200d-2708-fe0f.png │ │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3fc.png │ │ ├── 1f468-1f3fd-200d-1f33e.png │ │ ├── 1f468-1f3fd-200d-1f373.png │ │ ├── 1f468-1f3fd-200d-1f37c.png │ │ ├── 1f468-1f3fd-200d-1f393.png │ │ ├── 1f468-1f3fd-200d-1f3a4.png │ │ ├── 1f468-1f3fd-200d-1f3a8.png │ │ ├── 1f468-1f3fd-200d-1f3eb.png │ │ ├── 1f468-1f3fd-200d-1f3ed.png │ │ ├── 1f468-1f3fd-200d-1f4bb.png │ │ ├── 1f468-1f3fd-200d-1f4bc.png │ │ ├── 1f468-1f3fd-200d-1f527.png │ │ ├── 1f468-1f3fd-200d-1f52c.png │ │ ├── 1f468-1f3fd-200d-1f680.png │ │ ├── 1f468-1f3fd-200d-1f692.png │ │ ├── 1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3fd-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f468-1f3fd-200d-1f9af.png │ │ ├── 1f468-1f3fd-200d-1f9b0.png │ │ ├── 1f468-1f3fd-200d-1f9b1.png │ │ ├── 1f468-1f3fd-200d-1f9b2.png │ │ ├── 1f468-1f3fd-200d-1f9b3.png │ │ ├── 1f468-1f3fd-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f468-1f3fd-200d-1f9bc.png │ │ ├── 1f468-1f3fd-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f468-1f3fd-200d-1f9bd.png │ │ ├── 1f468-1f3fd-200d-2695-fe0f.png │ │ ├── 1f468-1f3fd-200d-2696-fe0f.png │ │ ├── 1f468-1f3fd-200d-2708-fe0f.png │ │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3fd.png │ │ ├── 1f468-1f3fe-200d-1f33e.png │ │ ├── 1f468-1f3fe-200d-1f373.png │ │ ├── 1f468-1f3fe-200d-1f37c.png │ │ ├── 1f468-1f3fe-200d-1f393.png │ │ ├── 1f468-1f3fe-200d-1f3a4.png │ │ ├── 1f468-1f3fe-200d-1f3a8.png │ │ ├── 1f468-1f3fe-200d-1f3eb.png │ │ ├── 1f468-1f3fe-200d-1f3ed.png │ │ ├── 1f468-1f3fe-200d-1f4bb.png │ │ ├── 1f468-1f3fe-200d-1f4bc.png │ │ ├── 1f468-1f3fe-200d-1f527.png │ │ ├── 1f468-1f3fe-200d-1f52c.png │ │ ├── 1f468-1f3fe-200d-1f680.png │ │ ├── 1f468-1f3fe-200d-1f692.png │ │ ├── 1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3fe-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f468-1f3fe-200d-1f9af.png │ │ ├── 1f468-1f3fe-200d-1f9b0.png │ │ ├── 1f468-1f3fe-200d-1f9b1.png │ │ ├── 1f468-1f3fe-200d-1f9b2.png │ │ ├── 1f468-1f3fe-200d-1f9b3.png │ │ ├── 1f468-1f3fe-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f468-1f3fe-200d-1f9bc.png │ │ ├── 1f468-1f3fe-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f468-1f3fe-200d-1f9bd.png │ │ ├── 1f468-1f3fe-200d-2695-fe0f.png │ │ ├── 1f468-1f3fe-200d-2696-fe0f.png │ │ ├── 1f468-1f3fe-200d-2708-fe0f.png │ │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3fe.png │ │ ├── 1f468-1f3ff-200d-1f33e.png │ │ ├── 1f468-1f3ff-200d-1f373.png │ │ ├── 1f468-1f3ff-200d-1f37c.png │ │ ├── 1f468-1f3ff-200d-1f393.png │ │ ├── 1f468-1f3ff-200d-1f3a4.png │ │ ├── 1f468-1f3ff-200d-1f3a8.png │ │ ├── 1f468-1f3ff-200d-1f3eb.png │ │ ├── 1f468-1f3ff-200d-1f3ed.png │ │ ├── 1f468-1f3ff-200d-1f4bb.png │ │ ├── 1f468-1f3ff-200d-1f4bc.png │ │ ├── 1f468-1f3ff-200d-1f527.png │ │ ├── 1f468-1f3ff-200d-1f52c.png │ │ ├── 1f468-1f3ff-200d-1f680.png │ │ ├── 1f468-1f3ff-200d-1f692.png │ │ ├── 1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3ff-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f468-1f3ff-200d-1f9af.png │ │ ├── 1f468-1f3ff-200d-1f9b0.png │ │ ├── 1f468-1f3ff-200d-1f9b1.png │ │ ├── 1f468-1f3ff-200d-1f9b2.png │ │ ├── 1f468-1f3ff-200d-1f9b3.png │ │ ├── 1f468-1f3ff-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f468-1f3ff-200d-1f9bc.png │ │ ├── 1f468-1f3ff-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f468-1f3ff-200d-1f9bd.png │ │ ├── 1f468-1f3ff-200d-2695-fe0f.png │ │ ├── 1f468-1f3ff-200d-2696-fe0f.png │ │ ├── 1f468-1f3ff-200d-2708-fe0f.png │ │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png │ │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png │ │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png │ │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png │ │ ├── 1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png │ │ ├── 1f468-1f3ff.png │ │ ├── 1f468-200d-1f33e.png │ │ ├── 1f468-200d-1f373.png │ │ ├── 1f468-200d-1f37c.png │ │ ├── 1f468-200d-1f393.png │ │ ├── 1f468-200d-1f3a4.png │ │ ├── 1f468-200d-1f3a8.png │ │ ├── 1f468-200d-1f3eb.png │ │ ├── 1f468-200d-1f3ed.png │ │ ├── 1f468-200d-1f466-200d-1f466.png │ │ ├── 1f468-200d-1f466.png │ │ ├── 1f468-200d-1f467-200d-1f466.png │ │ ├── 1f468-200d-1f467-200d-1f467.png │ │ ├── 1f468-200d-1f467.png │ │ ├── 1f468-200d-1f468-200d-1f466-200d-1f466.png │ │ ├── 1f468-200d-1f468-200d-1f466.png │ │ ├── 1f468-200d-1f468-200d-1f467-200d-1f466.png │ │ ├── 1f468-200d-1f468-200d-1f467-200d-1f467.png │ │ ├── 1f468-200d-1f468-200d-1f467.png │ │ ├── 1f468-200d-1f469-200d-1f466-200d-1f466.png │ │ ├── 1f468-200d-1f469-200d-1f466.png │ │ ├── 1f468-200d-1f469-200d-1f467-200d-1f466.png │ │ ├── 1f468-200d-1f469-200d-1f467-200d-1f467.png │ │ ├── 1f468-200d-1f469-200d-1f467.png │ │ ├── 1f468-200d-1f4bb.png │ │ ├── 1f468-200d-1f4bc.png │ │ ├── 1f468-200d-1f527.png │ │ ├── 1f468-200d-1f52c.png │ │ ├── 1f468-200d-1f680.png │ │ ├── 1f468-200d-1f692.png │ │ ├── 1f468-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f468-200d-1f9af.png │ │ ├── 1f468-200d-1f9b0.png │ │ ├── 1f468-200d-1f9b1.png │ │ ├── 1f468-200d-1f9b2.png │ │ ├── 1f468-200d-1f9b3.png │ │ ├── 1f468-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f468-200d-1f9bc.png │ │ ├── 1f468-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f468-200d-1f9bd.png │ │ ├── 1f468-200d-2695-fe0f.png │ │ ├── 1f468-200d-2696-fe0f.png │ │ ├── 1f468-200d-2708-fe0f.png │ │ ├── 1f468-200d-2764-200d-1f468.png │ │ ├── 1f468-200d-2764-200d-1f48b-200d-1f468.png │ │ ├── 1f468-200d-2764-fe0f-200d-1f468.png │ │ ├── 1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png │ │ ├── 1f468.png │ │ ├── 1f469-1f3fb-200d-1f33e.png │ │ ├── 1f469-1f3fb-200d-1f373.png │ │ ├── 1f469-1f3fb-200d-1f37c.png │ │ ├── 1f469-1f3fb-200d-1f393.png │ │ ├── 1f469-1f3fb-200d-1f3a4.png │ │ ├── 1f469-1f3fb-200d-1f3a8.png │ │ ├── 1f469-1f3fb-200d-1f3eb.png │ │ ├── 1f469-1f3fb-200d-1f3ed.png │ │ ├── 1f469-1f3fb-200d-1f4bb.png │ │ ├── 1f469-1f3fb-200d-1f4bc.png │ │ ├── 1f469-1f3fb-200d-1f527.png │ │ ├── 1f469-1f3fb-200d-1f52c.png │ │ ├── 1f469-1f3fb-200d-1f680.png │ │ ├── 1f469-1f3fb-200d-1f692.png │ │ ├── 1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3fb-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f469-1f3fb-200d-1f9af.png │ │ ├── 1f469-1f3fb-200d-1f9b0.png │ │ ├── 1f469-1f3fb-200d-1f9b1.png │ │ ├── 1f469-1f3fb-200d-1f9b2.png │ │ ├── 1f469-1f3fb-200d-1f9b3.png │ │ ├── 1f469-1f3fb-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f469-1f3fb-200d-1f9bc.png │ │ ├── 1f469-1f3fb-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f469-1f3fb-200d-1f9bd.png │ │ ├── 1f469-1f3fb-200d-2695-fe0f.png │ │ ├── 1f469-1f3fb-200d-2696-fe0f.png │ │ ├── 1f469-1f3fb-200d-2708-fe0f.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3fb.png │ │ ├── 1f469-1f3fc-200d-1f33e.png │ │ ├── 1f469-1f3fc-200d-1f373.png │ │ ├── 1f469-1f3fc-200d-1f37c.png │ │ ├── 1f469-1f3fc-200d-1f393.png │ │ ├── 1f469-1f3fc-200d-1f3a4.png │ │ ├── 1f469-1f3fc-200d-1f3a8.png │ │ ├── 1f469-1f3fc-200d-1f3eb.png │ │ ├── 1f469-1f3fc-200d-1f3ed.png │ │ ├── 1f469-1f3fc-200d-1f4bb.png │ │ ├── 1f469-1f3fc-200d-1f4bc.png │ │ ├── 1f469-1f3fc-200d-1f527.png │ │ ├── 1f469-1f3fc-200d-1f52c.png │ │ ├── 1f469-1f3fc-200d-1f680.png │ │ ├── 1f469-1f3fc-200d-1f692.png │ │ ├── 1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3fc-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f469-1f3fc-200d-1f9af.png │ │ ├── 1f469-1f3fc-200d-1f9b0.png │ │ ├── 1f469-1f3fc-200d-1f9b1.png │ │ ├── 1f469-1f3fc-200d-1f9b2.png │ │ ├── 1f469-1f3fc-200d-1f9b3.png │ │ ├── 1f469-1f3fc-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f469-1f3fc-200d-1f9bc.png │ │ ├── 1f469-1f3fc-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f469-1f3fc-200d-1f9bd.png │ │ ├── 1f469-1f3fc-200d-2695-fe0f.png │ │ ├── 1f469-1f3fc-200d-2696-fe0f.png │ │ ├── 1f469-1f3fc-200d-2708-fe0f.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3fc.png │ │ ├── 1f469-1f3fd-200d-1f33e.png │ │ ├── 1f469-1f3fd-200d-1f373.png │ │ ├── 1f469-1f3fd-200d-1f37c.png │ │ ├── 1f469-1f3fd-200d-1f393.png │ │ ├── 1f469-1f3fd-200d-1f3a4.png │ │ ├── 1f469-1f3fd-200d-1f3a8.png │ │ ├── 1f469-1f3fd-200d-1f3eb.png │ │ ├── 1f469-1f3fd-200d-1f3ed.png │ │ ├── 1f469-1f3fd-200d-1f4bb.png │ │ ├── 1f469-1f3fd-200d-1f4bc.png │ │ ├── 1f469-1f3fd-200d-1f527.png │ │ ├── 1f469-1f3fd-200d-1f52c.png │ │ ├── 1f469-1f3fd-200d-1f680.png │ │ ├── 1f469-1f3fd-200d-1f692.png │ │ ├── 1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3fd-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f469-1f3fd-200d-1f9af.png │ │ ├── 1f469-1f3fd-200d-1f9b0.png │ │ ├── 1f469-1f3fd-200d-1f9b1.png │ │ ├── 1f469-1f3fd-200d-1f9b2.png │ │ ├── 1f469-1f3fd-200d-1f9b3.png │ │ ├── 1f469-1f3fd-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f469-1f3fd-200d-1f9bc.png │ │ ├── 1f469-1f3fd-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f469-1f3fd-200d-1f9bd.png │ │ ├── 1f469-1f3fd-200d-2695-fe0f.png │ │ ├── 1f469-1f3fd-200d-2696-fe0f.png │ │ ├── 1f469-1f3fd-200d-2708-fe0f.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3fd.png │ │ ├── 1f469-1f3fe-200d-1f33e.png │ │ ├── 1f469-1f3fe-200d-1f373.png │ │ ├── 1f469-1f3fe-200d-1f37c.png │ │ ├── 1f469-1f3fe-200d-1f393.png │ │ ├── 1f469-1f3fe-200d-1f3a4.png │ │ ├── 1f469-1f3fe-200d-1f3a8.png │ │ ├── 1f469-1f3fe-200d-1f3eb.png │ │ ├── 1f469-1f3fe-200d-1f3ed.png │ │ ├── 1f469-1f3fe-200d-1f4bb.png │ │ ├── 1f469-1f3fe-200d-1f4bc.png │ │ ├── 1f469-1f3fe-200d-1f527.png │ │ ├── 1f469-1f3fe-200d-1f52c.png │ │ ├── 1f469-1f3fe-200d-1f680.png │ │ ├── 1f469-1f3fe-200d-1f692.png │ │ ├── 1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3fe-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f469-1f3fe-200d-1f9af.png │ │ ├── 1f469-1f3fe-200d-1f9b0.png │ │ ├── 1f469-1f3fe-200d-1f9b1.png │ │ ├── 1f469-1f3fe-200d-1f9b2.png │ │ ├── 1f469-1f3fe-200d-1f9b3.png │ │ ├── 1f469-1f3fe-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f469-1f3fe-200d-1f9bc.png │ │ ├── 1f469-1f3fe-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f469-1f3fe-200d-1f9bd.png │ │ ├── 1f469-1f3fe-200d-2695-fe0f.png │ │ ├── 1f469-1f3fe-200d-2696-fe0f.png │ │ ├── 1f469-1f3fe-200d-2708-fe0f.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3fe.png │ │ ├── 1f469-1f3ff-200d-1f33e.png │ │ ├── 1f469-1f3ff-200d-1f373.png │ │ ├── 1f469-1f3ff-200d-1f37c.png │ │ ├── 1f469-1f3ff-200d-1f393.png │ │ ├── 1f469-1f3ff-200d-1f3a4.png │ │ ├── 1f469-1f3ff-200d-1f3a8.png │ │ ├── 1f469-1f3ff-200d-1f3eb.png │ │ ├── 1f469-1f3ff-200d-1f3ed.png │ │ ├── 1f469-1f3ff-200d-1f4bb.png │ │ ├── 1f469-1f3ff-200d-1f4bc.png │ │ ├── 1f469-1f3ff-200d-1f527.png │ │ ├── 1f469-1f3ff-200d-1f52c.png │ │ ├── 1f469-1f3ff-200d-1f680.png │ │ ├── 1f469-1f3ff-200d-1f692.png │ │ ├── 1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3ff-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f469-1f3ff-200d-1f9af.png │ │ ├── 1f469-1f3ff-200d-1f9b0.png │ │ ├── 1f469-1f3ff-200d-1f9b1.png │ │ ├── 1f469-1f3ff-200d-1f9b2.png │ │ ├── 1f469-1f3ff-200d-1f9b3.png │ │ ├── 1f469-1f3ff-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f469-1f3ff-200d-1f9bc.png │ │ ├── 1f469-1f3ff-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f469-1f3ff-200d-1f9bd.png │ │ ├── 1f469-1f3ff-200d-2695-fe0f.png │ │ ├── 1f469-1f3ff-200d-2696-fe0f.png │ │ ├── 1f469-1f3ff-200d-2708-fe0f.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png │ │ ├── 1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png │ │ ├── 1f469-1f3ff.png │ │ ├── 1f469-200d-1f33e.png │ │ ├── 1f469-200d-1f373.png │ │ ├── 1f469-200d-1f37c.png │ │ ├── 1f469-200d-1f393.png │ │ ├── 1f469-200d-1f3a4.png │ │ ├── 1f469-200d-1f3a8.png │ │ ├── 1f469-200d-1f3eb.png │ │ ├── 1f469-200d-1f3ed.png │ │ ├── 1f469-200d-1f466-200d-1f466.png │ │ ├── 1f469-200d-1f466.png │ │ ├── 1f469-200d-1f467-200d-1f466.png │ │ ├── 1f469-200d-1f467-200d-1f467.png │ │ ├── 1f469-200d-1f467.png │ │ ├── 1f469-200d-1f469-200d-1f466-200d-1f466.png │ │ ├── 1f469-200d-1f469-200d-1f466.png │ │ ├── 1f469-200d-1f469-200d-1f467-200d-1f466.png │ │ ├── 1f469-200d-1f469-200d-1f467-200d-1f467.png │ │ ├── 1f469-200d-1f469-200d-1f467.png │ │ ├── 1f469-200d-1f4bb.png │ │ ├── 1f469-200d-1f4bc.png │ │ ├── 1f469-200d-1f527.png │ │ ├── 1f469-200d-1f52c.png │ │ ├── 1f469-200d-1f680.png │ │ ├── 1f469-200d-1f692.png │ │ ├── 1f469-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f469-200d-1f9af.png │ │ ├── 1f469-200d-1f9b0.png │ │ ├── 1f469-200d-1f9b1.png │ │ ├── 1f469-200d-1f9b2.png │ │ ├── 1f469-200d-1f9b3.png │ │ ├── 1f469-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f469-200d-1f9bc.png │ │ ├── 1f469-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f469-200d-1f9bd.png │ │ ├── 1f469-200d-2695-fe0f.png │ │ ├── 1f469-200d-2696-fe0f.png │ │ ├── 1f469-200d-2708-fe0f.png │ │ ├── 1f469-200d-2764-200d-1f468.png │ │ ├── 1f469-200d-2764-200d-1f469.png │ │ ├── 1f469-200d-2764-200d-1f48b-200d-1f468.png │ │ ├── 1f469-200d-2764-200d-1f48b-200d-1f469.png │ │ ├── 1f469-200d-2764-fe0f-200d-1f468.png │ │ ├── 1f469-200d-2764-fe0f-200d-1f469.png │ │ ├── 1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.png │ │ ├── 1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png │ │ ├── 1f469.png │ │ ├── 1f46a.png │ │ ├── 1f46b-1f3fb.png │ │ ├── 1f46b-1f3fc.png │ │ ├── 1f46b-1f3fd.png │ │ ├── 1f46b-1f3fe.png │ │ ├── 1f46b-1f3ff.png │ │ ├── 1f46b.png │ │ ├── 1f46c-1f3fb.png │ │ ├── 1f46c-1f3fc.png │ │ ├── 1f46c-1f3fd.png │ │ ├── 1f46c-1f3fe.png │ │ ├── 1f46c-1f3ff.png │ │ ├── 1f46c.png │ │ ├── 1f46d-1f3fb.png │ │ ├── 1f46d-1f3fc.png │ │ ├── 1f46d-1f3fd.png │ │ ├── 1f46d-1f3fe.png │ │ ├── 1f46d-1f3ff.png │ │ ├── 1f46d.png │ │ ├── 1f46e-1f3fb-200d-2640-fe0f.png │ │ ├── 1f46e-1f3fb-200d-2642-fe0f.png │ │ ├── 1f46e-1f3fb.png │ │ ├── 1f46e-1f3fc-200d-2640-fe0f.png │ │ ├── 1f46e-1f3fc-200d-2642-fe0f.png │ │ ├── 1f46e-1f3fc.png │ │ ├── 1f46e-1f3fd-200d-2640-fe0f.png │ │ ├── 1f46e-1f3fd-200d-2642-fe0f.png │ │ ├── 1f46e-1f3fd.png │ │ ├── 1f46e-1f3fe-200d-2640-fe0f.png │ │ ├── 1f46e-1f3fe-200d-2642-fe0f.png │ │ ├── 1f46e-1f3fe.png │ │ ├── 1f46e-1f3ff-200d-2640-fe0f.png │ │ ├── 1f46e-1f3ff-200d-2642-fe0f.png │ │ ├── 1f46e-1f3ff.png │ │ ├── 1f46e-200d-2640-fe0f.png │ │ ├── 1f46e-200d-2642-fe0f.png │ │ ├── 1f46e.png │ │ ├── 1f46f-200d-2640-fe0f.png │ │ ├── 1f46f-200d-2642-fe0f.png │ │ ├── 1f46f.png │ │ ├── 1f470-1f3fb-200d-2640-fe0f.png │ │ ├── 1f470-1f3fb-200d-2642-fe0f.png │ │ ├── 1f470-1f3fb.png │ │ ├── 1f470-1f3fc-200d-2640-fe0f.png │ │ ├── 1f470-1f3fc-200d-2642-fe0f.png │ │ ├── 1f470-1f3fc.png │ │ ├── 1f470-1f3fd-200d-2640-fe0f.png │ │ ├── 1f470-1f3fd-200d-2642-fe0f.png │ │ ├── 1f470-1f3fd.png │ │ ├── 1f470-1f3fe-200d-2640-fe0f.png │ │ ├── 1f470-1f3fe-200d-2642-fe0f.png │ │ ├── 1f470-1f3fe.png │ │ ├── 1f470-1f3ff-200d-2640-fe0f.png │ │ ├── 1f470-1f3ff-200d-2642-fe0f.png │ │ ├── 1f470-1f3ff.png │ │ ├── 1f470-200d-2640-fe0f.png │ │ ├── 1f470-200d-2642-fe0f.png │ │ ├── 1f470.png │ │ ├── 1f471-1f3fb-200d-2640-fe0f.png │ │ ├── 1f471-1f3fb-200d-2642-fe0f.png │ │ ├── 1f471-1f3fb.png │ │ ├── 1f471-1f3fc-200d-2640-fe0f.png │ │ ├── 1f471-1f3fc-200d-2642-fe0f.png │ │ ├── 1f471-1f3fc.png │ │ ├── 1f471-1f3fd-200d-2640-fe0f.png │ │ ├── 1f471-1f3fd-200d-2642-fe0f.png │ │ ├── 1f471-1f3fd.png │ │ ├── 1f471-1f3fe-200d-2640-fe0f.png │ │ ├── 1f471-1f3fe-200d-2642-fe0f.png │ │ ├── 1f471-1f3fe.png │ │ ├── 1f471-1f3ff-200d-2640-fe0f.png │ │ ├── 1f471-1f3ff-200d-2642-fe0f.png │ │ ├── 1f471-1f3ff.png │ │ ├── 1f471-200d-2640-fe0f.png │ │ ├── 1f471-200d-2642-fe0f.png │ │ ├── 1f471.png │ │ ├── 1f472-1f3fb.png │ │ ├── 1f472-1f3fc.png │ │ ├── 1f472-1f3fd.png │ │ ├── 1f472-1f3fe.png │ │ ├── 1f472-1f3ff.png │ │ ├── 1f472.png │ │ ├── 1f473-1f3fb-200d-2640-fe0f.png │ │ ├── 1f473-1f3fb-200d-2642-fe0f.png │ │ ├── 1f473-1f3fb.png │ │ ├── 1f473-1f3fc-200d-2640-fe0f.png │ │ ├── 1f473-1f3fc-200d-2642-fe0f.png │ │ ├── 1f473-1f3fc.png │ │ ├── 1f473-1f3fd-200d-2640-fe0f.png │ │ ├── 1f473-1f3fd-200d-2642-fe0f.png │ │ ├── 1f473-1f3fd.png │ │ ├── 1f473-1f3fe-200d-2640-fe0f.png │ │ ├── 1f473-1f3fe-200d-2642-fe0f.png │ │ ├── 1f473-1f3fe.png │ │ ├── 1f473-1f3ff-200d-2640-fe0f.png │ │ ├── 1f473-1f3ff-200d-2642-fe0f.png │ │ ├── 1f473-1f3ff.png │ │ ├── 1f473-200d-2640-fe0f.png │ │ ├── 1f473-200d-2642-fe0f.png │ │ ├── 1f473.png │ │ ├── 1f474-1f3fb.png │ │ ├── 1f474-1f3fc.png │ │ ├── 1f474-1f3fd.png │ │ ├── 1f474-1f3fe.png │ │ ├── 1f474-1f3ff.png │ │ ├── 1f474.png │ │ ├── 1f475-1f3fb.png │ │ ├── 1f475-1f3fc.png │ │ ├── 1f475-1f3fd.png │ │ ├── 1f475-1f3fe.png │ │ ├── 1f475-1f3ff.png │ │ ├── 1f475.png │ │ ├── 1f476-1f3fb.png │ │ ├── 1f476-1f3fc.png │ │ ├── 1f476-1f3fd.png │ │ ├── 1f476-1f3fe.png │ │ ├── 1f476-1f3ff.png │ │ ├── 1f476.png │ │ ├── 1f477-1f3fb-200d-2640-fe0f.png │ │ ├── 1f477-1f3fb-200d-2642-fe0f.png │ │ ├── 1f477-1f3fb.png │ │ ├── 1f477-1f3fc-200d-2640-fe0f.png │ │ ├── 1f477-1f3fc-200d-2642-fe0f.png │ │ ├── 1f477-1f3fc.png │ │ ├── 1f477-1f3fd-200d-2640-fe0f.png │ │ ├── 1f477-1f3fd-200d-2642-fe0f.png │ │ ├── 1f477-1f3fd.png │ │ ├── 1f477-1f3fe-200d-2640-fe0f.png │ │ ├── 1f477-1f3fe-200d-2642-fe0f.png │ │ ├── 1f477-1f3fe.png │ │ ├── 1f477-1f3ff-200d-2640-fe0f.png │ │ ├── 1f477-1f3ff-200d-2642-fe0f.png │ │ ├── 1f477-1f3ff.png │ │ ├── 1f477-200d-2640-fe0f.png │ │ ├── 1f477-200d-2642-fe0f.png │ │ ├── 1f477.png │ │ ├── 1f478-1f3fb.png │ │ ├── 1f478-1f3fc.png │ │ ├── 1f478-1f3fd.png │ │ ├── 1f478-1f3fe.png │ │ ├── 1f478-1f3ff.png │ │ ├── 1f478.png │ │ ├── 1f479.png │ │ ├── 1f47a.png │ │ ├── 1f47b.png │ │ ├── 1f47c-1f3fb.png │ │ ├── 1f47c-1f3fc.png │ │ ├── 1f47c-1f3fd.png │ │ ├── 1f47c-1f3fe.png │ │ ├── 1f47c-1f3ff.png │ │ ├── 1f47c.png │ │ ├── 1f47d.png │ │ ├── 1f47e.png │ │ ├── 1f47f.png │ │ ├── 1f480.png │ │ ├── 1f481-1f3fb-200d-2640-fe0f.png │ │ ├── 1f481-1f3fb-200d-2642-fe0f.png │ │ ├── 1f481-1f3fb.png │ │ ├── 1f481-1f3fc-200d-2640-fe0f.png │ │ ├── 1f481-1f3fc-200d-2642-fe0f.png │ │ ├── 1f481-1f3fc.png │ │ ├── 1f481-1f3fd-200d-2640-fe0f.png │ │ ├── 1f481-1f3fd-200d-2642-fe0f.png │ │ ├── 1f481-1f3fd.png │ │ ├── 1f481-1f3fe-200d-2640-fe0f.png │ │ ├── 1f481-1f3fe-200d-2642-fe0f.png │ │ ├── 1f481-1f3fe.png │ │ ├── 1f481-1f3ff-200d-2640-fe0f.png │ │ ├── 1f481-1f3ff-200d-2642-fe0f.png │ │ ├── 1f481-1f3ff.png │ │ ├── 1f481-200d-2640-fe0f.png │ │ ├── 1f481-200d-2642-fe0f.png │ │ ├── 1f481.png │ │ ├── 1f482-1f3fb-200d-2640-fe0f.png │ │ ├── 1f482-1f3fb-200d-2642-fe0f.png │ │ ├── 1f482-1f3fb.png │ │ ├── 1f482-1f3fc-200d-2640-fe0f.png │ │ ├── 1f482-1f3fc-200d-2642-fe0f.png │ │ ├── 1f482-1f3fc.png │ │ ├── 1f482-1f3fd-200d-2640-fe0f.png │ │ ├── 1f482-1f3fd-200d-2642-fe0f.png │ │ ├── 1f482-1f3fd.png │ │ ├── 1f482-1f3fe-200d-2640-fe0f.png │ │ ├── 1f482-1f3fe-200d-2642-fe0f.png │ │ ├── 1f482-1f3fe.png │ │ ├── 1f482-1f3ff-200d-2640-fe0f.png │ │ ├── 1f482-1f3ff-200d-2642-fe0f.png │ │ ├── 1f482-1f3ff.png │ │ ├── 1f482-200d-2640-fe0f.png │ │ ├── 1f482-200d-2642-fe0f.png │ │ ├── 1f482.png │ │ ├── 1f483-1f3fb.png │ │ ├── 1f483-1f3fc.png │ │ ├── 1f483-1f3fd.png │ │ ├── 1f483-1f3fe.png │ │ ├── 1f483-1f3ff.png │ │ ├── 1f483.png │ │ ├── 1f484.png │ │ ├── 1f485-1f3fb.png │ │ ├── 1f485-1f3fc.png │ │ ├── 1f485-1f3fd.png │ │ ├── 1f485-1f3fe.png │ │ ├── 1f485-1f3ff.png │ │ ├── 1f485.png │ │ ├── 1f486-1f3fb-200d-2640-fe0f.png │ │ ├── 1f486-1f3fb-200d-2642-fe0f.png │ │ ├── 1f486-1f3fb.png │ │ ├── 1f486-1f3fc-200d-2640-fe0f.png │ │ ├── 1f486-1f3fc-200d-2642-fe0f.png │ │ ├── 1f486-1f3fc.png │ │ ├── 1f486-1f3fd-200d-2640-fe0f.png │ │ ├── 1f486-1f3fd-200d-2642-fe0f.png │ │ ├── 1f486-1f3fd.png │ │ ├── 1f486-1f3fe-200d-2640-fe0f.png │ │ ├── 1f486-1f3fe-200d-2642-fe0f.png │ │ ├── 1f486-1f3fe.png │ │ ├── 1f486-1f3ff-200d-2640-fe0f.png │ │ ├── 1f486-1f3ff-200d-2642-fe0f.png │ │ ├── 1f486-1f3ff.png │ │ ├── 1f486-200d-2640-fe0f.png │ │ ├── 1f486-200d-2642-fe0f.png │ │ ├── 1f486.png │ │ ├── 1f487-1f3fb-200d-2640-fe0f.png │ │ ├── 1f487-1f3fb-200d-2642-fe0f.png │ │ ├── 1f487-1f3fb.png │ │ ├── 1f487-1f3fc-200d-2640-fe0f.png │ │ ├── 1f487-1f3fc-200d-2642-fe0f.png │ │ ├── 1f487-1f3fc.png │ │ ├── 1f487-1f3fd-200d-2640-fe0f.png │ │ ├── 1f487-1f3fd-200d-2642-fe0f.png │ │ ├── 1f487-1f3fd.png │ │ ├── 1f487-1f3fe-200d-2640-fe0f.png │ │ ├── 1f487-1f3fe-200d-2642-fe0f.png │ │ ├── 1f487-1f3fe.png │ │ ├── 1f487-1f3ff-200d-2640-fe0f.png │ │ ├── 1f487-1f3ff-200d-2642-fe0f.png │ │ ├── 1f487-1f3ff.png │ │ ├── 1f487-200d-2640-fe0f.png │ │ ├── 1f487-200d-2642-fe0f.png │ │ ├── 1f487.png │ │ ├── 1f488.png │ │ ├── 1f489.png │ │ ├── 1f48a.png │ │ ├── 1f48b.png │ │ ├── 1f48c.png │ │ ├── 1f48d.png │ │ ├── 1f48e.png │ │ ├── 1f48f-1f3fb.png │ │ ├── 1f48f-1f3fc.png │ │ ├── 1f48f-1f3fd.png │ │ ├── 1f48f-1f3fe.png │ │ ├── 1f48f-1f3ff.png │ │ ├── 1f48f.png │ │ ├── 1f490.png │ │ ├── 1f491-1f3fb.png │ │ ├── 1f491-1f3fc.png │ │ ├── 1f491-1f3fd.png │ │ ├── 1f491-1f3fe.png │ │ ├── 1f491-1f3ff.png │ │ ├── 1f491.png │ │ ├── 1f492.png │ │ ├── 1f493.png │ │ ├── 1f494.png │ │ ├── 1f495.png │ │ ├── 1f496.png │ │ ├── 1f497.png │ │ ├── 1f498.png │ │ ├── 1f499.png │ │ ├── 1f49a.png │ │ ├── 1f49b.png │ │ ├── 1f49c.png │ │ ├── 1f49d.png │ │ ├── 1f49e.png │ │ ├── 1f49f.png │ │ ├── 1f4a0.png │ │ ├── 1f4a1.png │ │ ├── 1f4a2.png │ │ ├── 1f4a3.png │ │ ├── 1f4a4.png │ │ ├── 1f4a5.png │ │ ├── 1f4a6.png │ │ ├── 1f4a7.png │ │ ├── 1f4a8.png │ │ ├── 1f4a9.png │ │ ├── 1f4aa-1f3fb.png │ │ ├── 1f4aa-1f3fc.png │ │ ├── 1f4aa-1f3fd.png │ │ ├── 1f4aa-1f3fe.png │ │ ├── 1f4aa-1f3ff.png │ │ ├── 1f4aa.png │ │ ├── 1f4ab.png │ │ ├── 1f4ac.png │ │ ├── 1f4ad.png │ │ ├── 1f4ae.png │ │ ├── 1f4af.png │ │ ├── 1f4b0.png │ │ ├── 1f4b1.png │ │ ├── 1f4b2.png │ │ ├── 1f4b3.png │ │ ├── 1f4b4.png │ │ ├── 1f4b5.png │ │ ├── 1f4b6.png │ │ ├── 1f4b7.png │ │ ├── 1f4b8.png │ │ ├── 1f4b9.png │ │ ├── 1f4ba.png │ │ ├── 1f4bb.png │ │ ├── 1f4bc.png │ │ ├── 1f4bd.png │ │ ├── 1f4be.png │ │ ├── 1f4bf.png │ │ ├── 1f4c0.png │ │ ├── 1f4c1.png │ │ ├── 1f4c2.png │ │ ├── 1f4c3.png │ │ ├── 1f4c4.png │ │ ├── 1f4c5.png │ │ ├── 1f4c6.png │ │ ├── 1f4c7.png │ │ ├── 1f4c8.png │ │ ├── 1f4c9.png │ │ ├── 1f4ca.png │ │ ├── 1f4cb.png │ │ ├── 1f4cc.png │ │ ├── 1f4cd.png │ │ ├── 1f4ce.png │ │ ├── 1f4cf.png │ │ ├── 1f4d0.png │ │ ├── 1f4d1.png │ │ ├── 1f4d2.png │ │ ├── 1f4d3.png │ │ ├── 1f4d4.png │ │ ├── 1f4d5.png │ │ ├── 1f4d6.png │ │ ├── 1f4d7.png │ │ ├── 1f4d8.png │ │ ├── 1f4d9.png │ │ ├── 1f4da.png │ │ ├── 1f4db.png │ │ ├── 1f4dc.png │ │ ├── 1f4dd.png │ │ ├── 1f4de.png │ │ ├── 1f4df.png │ │ ├── 1f4e0.png │ │ ├── 1f4e1.png │ │ ├── 1f4e2.png │ │ ├── 1f4e3.png │ │ ├── 1f4e4.png │ │ ├── 1f4e5.png │ │ ├── 1f4e6.png │ │ ├── 1f4e7.png │ │ ├── 1f4e8.png │ │ ├── 1f4e9.png │ │ ├── 1f4ea.png │ │ ├── 1f4eb.png │ │ ├── 1f4ec.png │ │ ├── 1f4ed.png │ │ ├── 1f4ee.png │ │ ├── 1f4ef.png │ │ ├── 1f4f0.png │ │ ├── 1f4f1.png │ │ ├── 1f4f2.png │ │ ├── 1f4f3.png │ │ ├── 1f4f4.png │ │ ├── 1f4f5.png │ │ ├── 1f4f6.png │ │ ├── 1f4f7.png │ │ ├── 1f4f8.png │ │ ├── 1f4f9.png │ │ ├── 1f4fa.png │ │ ├── 1f4fb.png │ │ ├── 1f4fc.png │ │ ├── 1f4fd-fe0f.png │ │ ├── 1f4ff.png │ │ ├── 1f500.png │ │ ├── 1f501.png │ │ ├── 1f502.png │ │ ├── 1f503.png │ │ ├── 1f504.png │ │ ├── 1f505.png │ │ ├── 1f506.png │ │ ├── 1f507.png │ │ ├── 1f508.png │ │ ├── 1f509.png │ │ ├── 1f50a.png │ │ ├── 1f50b.png │ │ ├── 1f50c.png │ │ ├── 1f50d.png │ │ ├── 1f50e.png │ │ ├── 1f50f.png │ │ ├── 1f510.png │ │ ├── 1f511.png │ │ ├── 1f512.png │ │ ├── 1f513.png │ │ ├── 1f514.png │ │ ├── 1f515.png │ │ ├── 1f516.png │ │ ├── 1f517.png │ │ ├── 1f518.png │ │ ├── 1f519.png │ │ ├── 1f51a.png │ │ ├── 1f51b.png │ │ ├── 1f51c.png │ │ ├── 1f51d.png │ │ ├── 1f51e.png │ │ ├── 1f51f.png │ │ ├── 1f520.png │ │ ├── 1f521.png │ │ ├── 1f522.png │ │ ├── 1f523.png │ │ ├── 1f524.png │ │ ├── 1f525.png │ │ ├── 1f526.png │ │ ├── 1f527.png │ │ ├── 1f528.png │ │ ├── 1f529.png │ │ ├── 1f52a.png │ │ ├── 1f52b.png │ │ ├── 1f52c.png │ │ ├── 1f52d.png │ │ ├── 1f52e.png │ │ ├── 1f52f.png │ │ ├── 1f530.png │ │ ├── 1f531.png │ │ ├── 1f532.png │ │ ├── 1f533.png │ │ ├── 1f534.png │ │ ├── 1f535.png │ │ ├── 1f536.png │ │ ├── 1f537.png │ │ ├── 1f538.png │ │ ├── 1f539.png │ │ ├── 1f53a.png │ │ ├── 1f53b.png │ │ ├── 1f53c.png │ │ ├── 1f53d.png │ │ ├── 1f549-fe0f.png │ │ ├── 1f54a-fe0f.png │ │ ├── 1f54b.png │ │ ├── 1f54c.png │ │ ├── 1f54d.png │ │ ├── 1f54e.png │ │ ├── 1f550.png │ │ ├── 1f551.png │ │ ├── 1f552.png │ │ ├── 1f553.png │ │ ├── 1f554.png │ │ ├── 1f555.png │ │ ├── 1f556.png │ │ ├── 1f557.png │ │ ├── 1f558.png │ │ ├── 1f559.png │ │ ├── 1f55a.png │ │ ├── 1f55b.png │ │ ├── 1f55c.png │ │ ├── 1f55d.png │ │ ├── 1f55e.png │ │ ├── 1f55f.png │ │ ├── 1f560.png │ │ ├── 1f561.png │ │ ├── 1f562.png │ │ ├── 1f563.png │ │ ├── 1f564.png │ │ ├── 1f565.png │ │ ├── 1f566.png │ │ ├── 1f567.png │ │ ├── 1f56f-fe0f.png │ │ ├── 1f570-fe0f.png │ │ ├── 1f573-fe0f.png │ │ ├── 1f574-1f3fb.png │ │ ├── 1f574-1f3fc.png │ │ ├── 1f574-1f3fd.png │ │ ├── 1f574-1f3fe.png │ │ ├── 1f574-1f3ff.png │ │ ├── 1f574-fe0f.png │ │ ├── 1f575-1f3fb-200d-2640-fe0f.png │ │ ├── 1f575-1f3fb-200d-2642-fe0f.png │ │ ├── 1f575-1f3fb.png │ │ ├── 1f575-1f3fc-200d-2640-fe0f.png │ │ ├── 1f575-1f3fc-200d-2642-fe0f.png │ │ ├── 1f575-1f3fc.png │ │ ├── 1f575-1f3fd-200d-2640-fe0f.png │ │ ├── 1f575-1f3fd-200d-2642-fe0f.png │ │ ├── 1f575-1f3fd.png │ │ ├── 1f575-1f3fe-200d-2640-fe0f.png │ │ ├── 1f575-1f3fe-200d-2642-fe0f.png │ │ ├── 1f575-1f3fe.png │ │ ├── 1f575-1f3ff-200d-2640-fe0f.png │ │ ├── 1f575-1f3ff-200d-2642-fe0f.png │ │ ├── 1f575-1f3ff.png │ │ ├── 1f575-fe0f-200d-2640-fe0f.png │ │ ├── 1f575-fe0f-200d-2642-fe0f.png │ │ ├── 1f575-fe0f.png │ │ ├── 1f576-fe0f.png │ │ ├── 1f577-fe0f.png │ │ ├── 1f578-fe0f.png │ │ ├── 1f579-fe0f.png │ │ ├── 1f57a-1f3fb.png │ │ ├── 1f57a-1f3fc.png │ │ ├── 1f57a-1f3fd.png │ │ ├── 1f57a-1f3fe.png │ │ ├── 1f57a-1f3ff.png │ │ ├── 1f57a.png │ │ ├── 1f587-fe0f.png │ │ ├── 1f58a-fe0f.png │ │ ├── 1f58b-fe0f.png │ │ ├── 1f58c-fe0f.png │ │ ├── 1f58d-fe0f.png │ │ ├── 1f590-1f3fb.png │ │ ├── 1f590-1f3fc.png │ │ ├── 1f590-1f3fd.png │ │ ├── 1f590-1f3fe.png │ │ ├── 1f590-1f3ff.png │ │ ├── 1f590-fe0f.png │ │ ├── 1f595-1f3fb.png │ │ ├── 1f595-1f3fc.png │ │ ├── 1f595-1f3fd.png │ │ ├── 1f595-1f3fe.png │ │ ├── 1f595-1f3ff.png │ │ ├── 1f595.png │ │ ├── 1f596-1f3fb.png │ │ ├── 1f596-1f3fc.png │ │ ├── 1f596-1f3fd.png │ │ ├── 1f596-1f3fe.png │ │ ├── 1f596-1f3ff.png │ │ ├── 1f596.png │ │ ├── 1f5a4.png │ │ ├── 1f5a5-fe0f.png │ │ ├── 1f5a8-fe0f.png │ │ ├── 1f5b1-fe0f.png │ │ ├── 1f5b2-fe0f.png │ │ ├── 1f5bc-fe0f.png │ │ ├── 1f5c2-fe0f.png │ │ ├── 1f5c3-fe0f.png │ │ ├── 1f5c4-fe0f.png │ │ ├── 1f5d1-fe0f.png │ │ ├── 1f5d2-fe0f.png │ │ ├── 1f5d3-fe0f.png │ │ ├── 1f5dc-fe0f.png │ │ ├── 1f5dd-fe0f.png │ │ ├── 1f5de-fe0f.png │ │ ├── 1f5e1-fe0f.png │ │ ├── 1f5e3-fe0f.png │ │ ├── 1f5e8-fe0f.png │ │ ├── 1f5ef-fe0f.png │ │ ├── 1f5f3-fe0f.png │ │ ├── 1f5fa-fe0f.png │ │ ├── 1f5fb.png │ │ ├── 1f5fc.png │ │ ├── 1f5fd.png │ │ ├── 1f5fe.png │ │ ├── 1f5ff.png │ │ ├── 1f600.png │ │ ├── 1f601.png │ │ ├── 1f602.png │ │ ├── 1f603.png │ │ ├── 1f604.png │ │ ├── 1f605.png │ │ ├── 1f606.png │ │ ├── 1f607.png │ │ ├── 1f608.png │ │ ├── 1f609.png │ │ ├── 1f60a.png │ │ ├── 1f60b.png │ │ ├── 1f60c.png │ │ ├── 1f60d.png │ │ ├── 1f60e.png │ │ ├── 1f60f.png │ │ ├── 1f610.png │ │ ├── 1f611.png │ │ ├── 1f612.png │ │ ├── 1f613.png │ │ ├── 1f614.png │ │ ├── 1f615.png │ │ ├── 1f616.png │ │ ├── 1f617.png │ │ ├── 1f618.png │ │ ├── 1f619.png │ │ ├── 1f61a.png │ │ ├── 1f61b.png │ │ ├── 1f61c.png │ │ ├── 1f61d.png │ │ ├── 1f61e.png │ │ ├── 1f61f.png │ │ ├── 1f620.png │ │ ├── 1f621.png │ │ ├── 1f622.png │ │ ├── 1f623.png │ │ ├── 1f624.png │ │ ├── 1f625.png │ │ ├── 1f626.png │ │ ├── 1f627.png │ │ ├── 1f628.png │ │ ├── 1f629.png │ │ ├── 1f62a.png │ │ ├── 1f62b.png │ │ ├── 1f62c.png │ │ ├── 1f62d.png │ │ ├── 1f62e-200d-1f4a8.png │ │ ├── 1f62e.png │ │ ├── 1f62f.png │ │ ├── 1f630.png │ │ ├── 1f631.png │ │ ├── 1f632.png │ │ ├── 1f633.png │ │ ├── 1f634.png │ │ ├── 1f635-200d-1f4ab.png │ │ ├── 1f635.png │ │ ├── 1f636-200d-1f32b-fe0f.png │ │ ├── 1f636.png │ │ ├── 1f637.png │ │ ├── 1f638.png │ │ ├── 1f639.png │ │ ├── 1f63a.png │ │ ├── 1f63b.png │ │ ├── 1f63c.png │ │ ├── 1f63d.png │ │ ├── 1f63e.png │ │ ├── 1f63f.png │ │ ├── 1f640.png │ │ ├── 1f641.png │ │ ├── 1f642-200d-2194-fe0f.png │ │ ├── 1f642-200d-2195-fe0f.png │ │ ├── 1f642.png │ │ ├── 1f643.png │ │ ├── 1f644.png │ │ ├── 1f645-1f3fb-200d-2640-fe0f.png │ │ ├── 1f645-1f3fb-200d-2642-fe0f.png │ │ ├── 1f645-1f3fb.png │ │ ├── 1f645-1f3fc-200d-2640-fe0f.png │ │ ├── 1f645-1f3fc-200d-2642-fe0f.png │ │ ├── 1f645-1f3fc.png │ │ ├── 1f645-1f3fd-200d-2640-fe0f.png │ │ ├── 1f645-1f3fd-200d-2642-fe0f.png │ │ ├── 1f645-1f3fd.png │ │ ├── 1f645-1f3fe-200d-2640-fe0f.png │ │ ├── 1f645-1f3fe-200d-2642-fe0f.png │ │ ├── 1f645-1f3fe.png │ │ ├── 1f645-1f3ff-200d-2640-fe0f.png │ │ ├── 1f645-1f3ff-200d-2642-fe0f.png │ │ ├── 1f645-1f3ff.png │ │ ├── 1f645-200d-2640-fe0f.png │ │ ├── 1f645-200d-2642-fe0f.png │ │ ├── 1f645.png │ │ ├── 1f646-1f3fb-200d-2640-fe0f.png │ │ ├── 1f646-1f3fb-200d-2642-fe0f.png │ │ ├── 1f646-1f3fb.png │ │ ├── 1f646-1f3fc-200d-2640-fe0f.png │ │ ├── 1f646-1f3fc-200d-2642-fe0f.png │ │ ├── 1f646-1f3fc.png │ │ ├── 1f646-1f3fd-200d-2640-fe0f.png │ │ ├── 1f646-1f3fd-200d-2642-fe0f.png │ │ ├── 1f646-1f3fd.png │ │ ├── 1f646-1f3fe-200d-2640-fe0f.png │ │ ├── 1f646-1f3fe-200d-2642-fe0f.png │ │ ├── 1f646-1f3fe.png │ │ ├── 1f646-1f3ff-200d-2640-fe0f.png │ │ ├── 1f646-1f3ff-200d-2642-fe0f.png │ │ ├── 1f646-1f3ff.png │ │ ├── 1f646-200d-2640-fe0f.png │ │ ├── 1f646-200d-2642-fe0f.png │ │ ├── 1f646.png │ │ ├── 1f647-1f3fb-200d-2640-fe0f.png │ │ ├── 1f647-1f3fb-200d-2642-fe0f.png │ │ ├── 1f647-1f3fb.png │ │ ├── 1f647-1f3fc-200d-2640-fe0f.png │ │ ├── 1f647-1f3fc-200d-2642-fe0f.png │ │ ├── 1f647-1f3fc.png │ │ ├── 1f647-1f3fd-200d-2640-fe0f.png │ │ ├── 1f647-1f3fd-200d-2642-fe0f.png │ │ ├── 1f647-1f3fd.png │ │ ├── 1f647-1f3fe-200d-2640-fe0f.png │ │ ├── 1f647-1f3fe-200d-2642-fe0f.png │ │ ├── 1f647-1f3fe.png │ │ ├── 1f647-1f3ff-200d-2640-fe0f.png │ │ ├── 1f647-1f3ff-200d-2642-fe0f.png │ │ ├── 1f647-1f3ff.png │ │ ├── 1f647-200d-2640-fe0f.png │ │ ├── 1f647-200d-2642-fe0f.png │ │ ├── 1f647.png │ │ ├── 1f648.png │ │ ├── 1f649.png │ │ ├── 1f64a.png │ │ ├── 1f64b-1f3fb-200d-2640-fe0f.png │ │ ├── 1f64b-1f3fb-200d-2642-fe0f.png │ │ ├── 1f64b-1f3fb.png │ │ ├── 1f64b-1f3fc-200d-2640-fe0f.png │ │ ├── 1f64b-1f3fc-200d-2642-fe0f.png │ │ ├── 1f64b-1f3fc.png │ │ ├── 1f64b-1f3fd-200d-2640-fe0f.png │ │ ├── 1f64b-1f3fd-200d-2642-fe0f.png │ │ ├── 1f64b-1f3fd.png │ │ ├── 1f64b-1f3fe-200d-2640-fe0f.png │ │ ├── 1f64b-1f3fe-200d-2642-fe0f.png │ │ ├── 1f64b-1f3fe.png │ │ ├── 1f64b-1f3ff-200d-2640-fe0f.png │ │ ├── 1f64b-1f3ff-200d-2642-fe0f.png │ │ ├── 1f64b-1f3ff.png │ │ ├── 1f64b-200d-2640-fe0f.png │ │ ├── 1f64b-200d-2642-fe0f.png │ │ ├── 1f64b.png │ │ ├── 1f64c-1f3fb.png │ │ ├── 1f64c-1f3fc.png │ │ ├── 1f64c-1f3fd.png │ │ ├── 1f64c-1f3fe.png │ │ ├── 1f64c-1f3ff.png │ │ ├── 1f64c.png │ │ ├── 1f64d-1f3fb-200d-2640-fe0f.png │ │ ├── 1f64d-1f3fb-200d-2642-fe0f.png │ │ ├── 1f64d-1f3fb.png │ │ ├── 1f64d-1f3fc-200d-2640-fe0f.png │ │ ├── 1f64d-1f3fc-200d-2642-fe0f.png │ │ ├── 1f64d-1f3fc.png │ │ ├── 1f64d-1f3fd-200d-2640-fe0f.png │ │ ├── 1f64d-1f3fd-200d-2642-fe0f.png │ │ ├── 1f64d-1f3fd.png │ │ ├── 1f64d-1f3fe-200d-2640-fe0f.png │ │ ├── 1f64d-1f3fe-200d-2642-fe0f.png │ │ ├── 1f64d-1f3fe.png │ │ ├── 1f64d-1f3ff-200d-2640-fe0f.png │ │ ├── 1f64d-1f3ff-200d-2642-fe0f.png │ │ ├── 1f64d-1f3ff.png │ │ ├── 1f64d-200d-2640-fe0f.png │ │ ├── 1f64d-200d-2642-fe0f.png │ │ ├── 1f64d.png │ │ ├── 1f64e-1f3fb-200d-2640-fe0f.png │ │ ├── 1f64e-1f3fb-200d-2642-fe0f.png │ │ ├── 1f64e-1f3fb.png │ │ ├── 1f64e-1f3fc-200d-2640-fe0f.png │ │ ├── 1f64e-1f3fc-200d-2642-fe0f.png │ │ ├── 1f64e-1f3fc.png │ │ ├── 1f64e-1f3fd-200d-2640-fe0f.png │ │ ├── 1f64e-1f3fd-200d-2642-fe0f.png │ │ ├── 1f64e-1f3fd.png │ │ ├── 1f64e-1f3fe-200d-2640-fe0f.png │ │ ├── 1f64e-1f3fe-200d-2642-fe0f.png │ │ ├── 1f64e-1f3fe.png │ │ ├── 1f64e-1f3ff-200d-2640-fe0f.png │ │ ├── 1f64e-1f3ff-200d-2642-fe0f.png │ │ ├── 1f64e-1f3ff.png │ │ ├── 1f64e-200d-2640-fe0f.png │ │ ├── 1f64e-200d-2642-fe0f.png │ │ ├── 1f64e.png │ │ ├── 1f64f-1f3fb.png │ │ ├── 1f64f-1f3fc.png │ │ ├── 1f64f-1f3fd.png │ │ ├── 1f64f-1f3fe.png │ │ ├── 1f64f-1f3ff.png │ │ ├── 1f64f.png │ │ ├── 1f680.png │ │ ├── 1f681.png │ │ ├── 1f682.png │ │ ├── 1f683.png │ │ ├── 1f684.png │ │ ├── 1f685.png │ │ ├── 1f686.png │ │ ├── 1f687.png │ │ ├── 1f688.png │ │ ├── 1f689.png │ │ ├── 1f68a.png │ │ ├── 1f68b.png │ │ ├── 1f68c.png │ │ ├── 1f68d.png │ │ ├── 1f68e.png │ │ ├── 1f68f.png │ │ ├── 1f690.png │ │ ├── 1f691.png │ │ ├── 1f692.png │ │ ├── 1f693.png │ │ ├── 1f694.png │ │ ├── 1f695.png │ │ ├── 1f696.png │ │ ├── 1f697.png │ │ ├── 1f698.png │ │ ├── 1f699.png │ │ ├── 1f69a.png │ │ ├── 1f69b.png │ │ ├── 1f69c.png │ │ ├── 1f69d.png │ │ ├── 1f69e.png │ │ ├── 1f69f.png │ │ ├── 1f6a0.png │ │ ├── 1f6a1.png │ │ ├── 1f6a2.png │ │ ├── 1f6a3-1f3fb-200d-2640-fe0f.png │ │ ├── 1f6a3-1f3fb-200d-2642-fe0f.png │ │ ├── 1f6a3-1f3fb.png │ │ ├── 1f6a3-1f3fc-200d-2640-fe0f.png │ │ ├── 1f6a3-1f3fc-200d-2642-fe0f.png │ │ ├── 1f6a3-1f3fc.png │ │ ├── 1f6a3-1f3fd-200d-2640-fe0f.png │ │ ├── 1f6a3-1f3fd-200d-2642-fe0f.png │ │ ├── 1f6a3-1f3fd.png │ │ ├── 1f6a3-1f3fe-200d-2640-fe0f.png │ │ ├── 1f6a3-1f3fe-200d-2642-fe0f.png │ │ ├── 1f6a3-1f3fe.png │ │ ├── 1f6a3-1f3ff-200d-2640-fe0f.png │ │ ├── 1f6a3-1f3ff-200d-2642-fe0f.png │ │ ├── 1f6a3-1f3ff.png │ │ ├── 1f6a3-200d-2640-fe0f.png │ │ ├── 1f6a3-200d-2642-fe0f.png │ │ ├── 1f6a3.png │ │ ├── 1f6a4.png │ │ ├── 1f6a5.png │ │ ├── 1f6a6.png │ │ ├── 1f6a7.png │ │ ├── 1f6a8.png │ │ ├── 1f6a9.png │ │ ├── 1f6aa.png │ │ ├── 1f6ab.png │ │ ├── 1f6ac.png │ │ ├── 1f6ad.png │ │ ├── 1f6ae.png │ │ ├── 1f6af.png │ │ ├── 1f6b0.png │ │ ├── 1f6b1.png │ │ ├── 1f6b2.png │ │ ├── 1f6b3.png │ │ ├── 1f6b4-1f3fb-200d-2640-fe0f.png │ │ ├── 1f6b4-1f3fb-200d-2642-fe0f.png │ │ ├── 1f6b4-1f3fb.png │ │ ├── 1f6b4-1f3fc-200d-2640-fe0f.png │ │ ├── 1f6b4-1f3fc-200d-2642-fe0f.png │ │ ├── 1f6b4-1f3fc.png │ │ ├── 1f6b4-1f3fd-200d-2640-fe0f.png │ │ ├── 1f6b4-1f3fd-200d-2642-fe0f.png │ │ ├── 1f6b4-1f3fd.png │ │ ├── 1f6b4-1f3fe-200d-2640-fe0f.png │ │ ├── 1f6b4-1f3fe-200d-2642-fe0f.png │ │ ├── 1f6b4-1f3fe.png │ │ ├── 1f6b4-1f3ff-200d-2640-fe0f.png │ │ ├── 1f6b4-1f3ff-200d-2642-fe0f.png │ │ ├── 1f6b4-1f3ff.png │ │ ├── 1f6b4-200d-2640-fe0f.png │ │ ├── 1f6b4-200d-2642-fe0f.png │ │ ├── 1f6b4.png │ │ ├── 1f6b5-1f3fb-200d-2640-fe0f.png │ │ ├── 1f6b5-1f3fb-200d-2642-fe0f.png │ │ ├── 1f6b5-1f3fb.png │ │ ├── 1f6b5-1f3fc-200d-2640-fe0f.png │ │ ├── 1f6b5-1f3fc-200d-2642-fe0f.png │ │ ├── 1f6b5-1f3fc.png │ │ ├── 1f6b5-1f3fd-200d-2640-fe0f.png │ │ ├── 1f6b5-1f3fd-200d-2642-fe0f.png │ │ ├── 1f6b5-1f3fd.png │ │ ├── 1f6b5-1f3fe-200d-2640-fe0f.png │ │ ├── 1f6b5-1f3fe-200d-2642-fe0f.png │ │ ├── 1f6b5-1f3fe.png │ │ ├── 1f6b5-1f3ff-200d-2640-fe0f.png │ │ ├── 1f6b5-1f3ff-200d-2642-fe0f.png │ │ ├── 1f6b5-1f3ff.png │ │ ├── 1f6b5-200d-2640-fe0f.png │ │ ├── 1f6b5-200d-2642-fe0f.png │ │ ├── 1f6b5.png │ │ ├── 1f6b6-1f3fb-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3fb-200d-2640-fe0f.png │ │ ├── 1f6b6-1f3fb-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3fb-200d-2642-fe0f.png │ │ ├── 1f6b6-1f3fb-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3fb.png │ │ ├── 1f6b6-1f3fc-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3fc-200d-2640-fe0f.png │ │ ├── 1f6b6-1f3fc-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3fc-200d-2642-fe0f.png │ │ ├── 1f6b6-1f3fc-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3fc.png │ │ ├── 1f6b6-1f3fd-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3fd-200d-2640-fe0f.png │ │ ├── 1f6b6-1f3fd-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3fd-200d-2642-fe0f.png │ │ ├── 1f6b6-1f3fd-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3fd.png │ │ ├── 1f6b6-1f3fe-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3fe-200d-2640-fe0f.png │ │ ├── 1f6b6-1f3fe-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3fe-200d-2642-fe0f.png │ │ ├── 1f6b6-1f3fe-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3fe.png │ │ ├── 1f6b6-1f3ff-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3ff-200d-2640-fe0f.png │ │ ├── 1f6b6-1f3ff-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3ff-200d-2642-fe0f.png │ │ ├── 1f6b6-1f3ff-200d-27a1-fe0f.png │ │ ├── 1f6b6-1f3ff.png │ │ ├── 1f6b6-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f6b6-200d-2640-fe0f.png │ │ ├── 1f6b6-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f6b6-200d-2642-fe0f.png │ │ ├── 1f6b6-200d-27a1-fe0f.png │ │ ├── 1f6b6.png │ │ ├── 1f6b7.png │ │ ├── 1f6b8.png │ │ ├── 1f6b9.png │ │ ├── 1f6ba.png │ │ ├── 1f6bb.png │ │ ├── 1f6bc.png │ │ ├── 1f6bd.png │ │ ├── 1f6be.png │ │ ├── 1f6bf.png │ │ ├── 1f6c0-1f3fb.png │ │ ├── 1f6c0-1f3fc.png │ │ ├── 1f6c0-1f3fd.png │ │ ├── 1f6c0-1f3fe.png │ │ ├── 1f6c0-1f3ff.png │ │ ├── 1f6c0.png │ │ ├── 1f6c1.png │ │ ├── 1f6c2.png │ │ ├── 1f6c3.png │ │ ├── 1f6c4.png │ │ ├── 1f6c5.png │ │ ├── 1f6cb-fe0f.png │ │ ├── 1f6cc-1f3fb.png │ │ ├── 1f6cc-1f3fc.png │ │ ├── 1f6cc-1f3fd.png │ │ ├── 1f6cc-1f3fe.png │ │ ├── 1f6cc-1f3ff.png │ │ ├── 1f6cc.png │ │ ├── 1f6cd-fe0f.png │ │ ├── 1f6ce-fe0f.png │ │ ├── 1f6cf-fe0f.png │ │ ├── 1f6d0.png │ │ ├── 1f6d1.png │ │ ├── 1f6d2.png │ │ ├── 1f6d5.png │ │ ├── 1f6d6.png │ │ ├── 1f6d7.png │ │ ├── 1f6dc.png │ │ ├── 1f6dd.png │ │ ├── 1f6de.png │ │ ├── 1f6df.png │ │ ├── 1f6e0-fe0f.png │ │ ├── 1f6e1-fe0f.png │ │ ├── 1f6e2-fe0f.png │ │ ├── 1f6e3-fe0f.png │ │ ├── 1f6e4-fe0f.png │ │ ├── 1f6e5-fe0f.png │ │ ├── 1f6e9-fe0f.png │ │ ├── 1f6eb.png │ │ ├── 1f6ec.png │ │ ├── 1f6f0-fe0f.png │ │ ├── 1f6f3-fe0f.png │ │ ├── 1f6f4.png │ │ ├── 1f6f5.png │ │ ├── 1f6f6.png │ │ ├── 1f6f7.png │ │ ├── 1f6f8.png │ │ ├── 1f6f9.png │ │ ├── 1f6fa.png │ │ ├── 1f6fb.png │ │ ├── 1f6fc.png │ │ ├── 1f7e0.png │ │ ├── 1f7e1.png │ │ ├── 1f7e2.png │ │ ├── 1f7e3.png │ │ ├── 1f7e4.png │ │ ├── 1f7e5.png │ │ ├── 1f7e6.png │ │ ├── 1f7e7.png │ │ ├── 1f7e8.png │ │ ├── 1f7e9.png │ │ ├── 1f7ea.png │ │ ├── 1f7eb.png │ │ ├── 1f7f0.png │ │ ├── 1f90c-1f3fb.png │ │ ├── 1f90c-1f3fc.png │ │ ├── 1f90c-1f3fd.png │ │ ├── 1f90c-1f3fe.png │ │ ├── 1f90c-1f3ff.png │ │ ├── 1f90c.png │ │ ├── 1f90d.png │ │ ├── 1f90e.png │ │ ├── 1f90f-1f3fb.png │ │ ├── 1f90f-1f3fc.png │ │ ├── 1f90f-1f3fd.png │ │ ├── 1f90f-1f3fe.png │ │ ├── 1f90f-1f3ff.png │ │ ├── 1f90f.png │ │ ├── 1f910.png │ │ ├── 1f911.png │ │ ├── 1f912.png │ │ ├── 1f913.png │ │ ├── 1f914.png │ │ ├── 1f915.png │ │ ├── 1f916.png │ │ ├── 1f917.png │ │ ├── 1f918-1f3fb.png │ │ ├── 1f918-1f3fc.png │ │ ├── 1f918-1f3fd.png │ │ ├── 1f918-1f3fe.png │ │ ├── 1f918-1f3ff.png │ │ ├── 1f918.png │ │ ├── 1f919-1f3fb.png │ │ ├── 1f919-1f3fc.png │ │ ├── 1f919-1f3fd.png │ │ ├── 1f919-1f3fe.png │ │ ├── 1f919-1f3ff.png │ │ ├── 1f919.png │ │ ├── 1f91a-1f3fb.png │ │ ├── 1f91a-1f3fc.png │ │ ├── 1f91a-1f3fd.png │ │ ├── 1f91a-1f3fe.png │ │ ├── 1f91a-1f3ff.png │ │ ├── 1f91a.png │ │ ├── 1f91b-1f3fb.png │ │ ├── 1f91b-1f3fc.png │ │ ├── 1f91b-1f3fd.png │ │ ├── 1f91b-1f3fe.png │ │ ├── 1f91b-1f3ff.png │ │ ├── 1f91b.png │ │ ├── 1f91c-1f3fb.png │ │ ├── 1f91c-1f3fc.png │ │ ├── 1f91c-1f3fd.png │ │ ├── 1f91c-1f3fe.png │ │ ├── 1f91c-1f3ff.png │ │ ├── 1f91c.png │ │ ├── 1f91d-1f3fb.png │ │ ├── 1f91d-1f3fc.png │ │ ├── 1f91d-1f3fd.png │ │ ├── 1f91d-1f3fe.png │ │ ├── 1f91d-1f3ff.png │ │ ├── 1f91d.png │ │ ├── 1f91e-1f3fb.png │ │ ├── 1f91e-1f3fc.png │ │ ├── 1f91e-1f3fd.png │ │ ├── 1f91e-1f3fe.png │ │ ├── 1f91e-1f3ff.png │ │ ├── 1f91e.png │ │ ├── 1f91f-1f3fb.png │ │ ├── 1f91f-1f3fc.png │ │ ├── 1f91f-1f3fd.png │ │ ├── 1f91f-1f3fe.png │ │ ├── 1f91f-1f3ff.png │ │ ├── 1f91f.png │ │ ├── 1f920.png │ │ ├── 1f921.png │ │ ├── 1f922.png │ │ ├── 1f923.png │ │ ├── 1f924.png │ │ ├── 1f925.png │ │ ├── 1f926-1f3fb-200d-2640-fe0f.png │ │ ├── 1f926-1f3fb-200d-2642-fe0f.png │ │ ├── 1f926-1f3fb.png │ │ ├── 1f926-1f3fc-200d-2640-fe0f.png │ │ ├── 1f926-1f3fc-200d-2642-fe0f.png │ │ ├── 1f926-1f3fc.png │ │ ├── 1f926-1f3fd-200d-2640-fe0f.png │ │ ├── 1f926-1f3fd-200d-2642-fe0f.png │ │ ├── 1f926-1f3fd.png │ │ ├── 1f926-1f3fe-200d-2640-fe0f.png │ │ ├── 1f926-1f3fe-200d-2642-fe0f.png │ │ ├── 1f926-1f3fe.png │ │ ├── 1f926-1f3ff-200d-2640-fe0f.png │ │ ├── 1f926-1f3ff-200d-2642-fe0f.png │ │ ├── 1f926-1f3ff.png │ │ ├── 1f926-200d-2640-fe0f.png │ │ ├── 1f926-200d-2642-fe0f.png │ │ ├── 1f926.png │ │ ├── 1f927.png │ │ ├── 1f928.png │ │ ├── 1f929.png │ │ ├── 1f92a.png │ │ ├── 1f92b.png │ │ ├── 1f92c.png │ │ ├── 1f92d.png │ │ ├── 1f92e.png │ │ ├── 1f92f.png │ │ ├── 1f930-1f3fb.png │ │ ├── 1f930-1f3fc.png │ │ ├── 1f930-1f3fd.png │ │ ├── 1f930-1f3fe.png │ │ ├── 1f930-1f3ff.png │ │ ├── 1f930.png │ │ ├── 1f931-1f3fb.png │ │ ├── 1f931-1f3fc.png │ │ ├── 1f931-1f3fd.png │ │ ├── 1f931-1f3fe.png │ │ ├── 1f931-1f3ff.png │ │ ├── 1f931.png │ │ ├── 1f932-1f3fb.png │ │ ├── 1f932-1f3fc.png │ │ ├── 1f932-1f3fd.png │ │ ├── 1f932-1f3fe.png │ │ ├── 1f932-1f3ff.png │ │ ├── 1f932.png │ │ ├── 1f933-1f3fb.png │ │ ├── 1f933-1f3fc.png │ │ ├── 1f933-1f3fd.png │ │ ├── 1f933-1f3fe.png │ │ ├── 1f933-1f3ff.png │ │ ├── 1f933.png │ │ ├── 1f934-1f3fb.png │ │ ├── 1f934-1f3fc.png │ │ ├── 1f934-1f3fd.png │ │ ├── 1f934-1f3fe.png │ │ ├── 1f934-1f3ff.png │ │ ├── 1f934.png │ │ ├── 1f935-1f3fb-200d-2640-fe0f.png │ │ ├── 1f935-1f3fb-200d-2642-fe0f.png │ │ ├── 1f935-1f3fb.png │ │ ├── 1f935-1f3fc-200d-2640-fe0f.png │ │ ├── 1f935-1f3fc-200d-2642-fe0f.png │ │ ├── 1f935-1f3fc.png │ │ ├── 1f935-1f3fd-200d-2640-fe0f.png │ │ ├── 1f935-1f3fd-200d-2642-fe0f.png │ │ ├── 1f935-1f3fd.png │ │ ├── 1f935-1f3fe-200d-2640-fe0f.png │ │ ├── 1f935-1f3fe-200d-2642-fe0f.png │ │ ├── 1f935-1f3fe.png │ │ ├── 1f935-1f3ff-200d-2640-fe0f.png │ │ ├── 1f935-1f3ff-200d-2642-fe0f.png │ │ ├── 1f935-1f3ff.png │ │ ├── 1f935-200d-2640-fe0f.png │ │ ├── 1f935-200d-2642-fe0f.png │ │ ├── 1f935.png │ │ ├── 1f936-1f3fb.png │ │ ├── 1f936-1f3fc.png │ │ ├── 1f936-1f3fd.png │ │ ├── 1f936-1f3fe.png │ │ ├── 1f936-1f3ff.png │ │ ├── 1f936.png │ │ ├── 1f937-1f3fb-200d-2640-fe0f.png │ │ ├── 1f937-1f3fb-200d-2642-fe0f.png │ │ ├── 1f937-1f3fb.png │ │ ├── 1f937-1f3fc-200d-2640-fe0f.png │ │ ├── 1f937-1f3fc-200d-2642-fe0f.png │ │ ├── 1f937-1f3fc.png │ │ ├── 1f937-1f3fd-200d-2640-fe0f.png │ │ ├── 1f937-1f3fd-200d-2642-fe0f.png │ │ ├── 1f937-1f3fd.png │ │ ├── 1f937-1f3fe-200d-2640-fe0f.png │ │ ├── 1f937-1f3fe-200d-2642-fe0f.png │ │ ├── 1f937-1f3fe.png │ │ ├── 1f937-1f3ff-200d-2640-fe0f.png │ │ ├── 1f937-1f3ff-200d-2642-fe0f.png │ │ ├── 1f937-1f3ff.png │ │ ├── 1f937-200d-2640-fe0f.png │ │ ├── 1f937-200d-2642-fe0f.png │ │ ├── 1f937.png │ │ ├── 1f938-1f3fb-200d-2640-fe0f.png │ │ ├── 1f938-1f3fb-200d-2642-fe0f.png │ │ ├── 1f938-1f3fb.png │ │ ├── 1f938-1f3fc-200d-2640-fe0f.png │ │ ├── 1f938-1f3fc-200d-2642-fe0f.png │ │ ├── 1f938-1f3fc.png │ │ ├── 1f938-1f3fd-200d-2640-fe0f.png │ │ ├── 1f938-1f3fd-200d-2642-fe0f.png │ │ ├── 1f938-1f3fd.png │ │ ├── 1f938-1f3fe-200d-2640-fe0f.png │ │ ├── 1f938-1f3fe-200d-2642-fe0f.png │ │ ├── 1f938-1f3fe.png │ │ ├── 1f938-1f3ff-200d-2640-fe0f.png │ │ ├── 1f938-1f3ff-200d-2642-fe0f.png │ │ ├── 1f938-1f3ff.png │ │ ├── 1f938-200d-2640-fe0f.png │ │ ├── 1f938-200d-2642-fe0f.png │ │ ├── 1f938.png │ │ ├── 1f939-1f3fb-200d-2640-fe0f.png │ │ ├── 1f939-1f3fb-200d-2642-fe0f.png │ │ ├── 1f939-1f3fb.png │ │ ├── 1f939-1f3fc-200d-2640-fe0f.png │ │ ├── 1f939-1f3fc-200d-2642-fe0f.png │ │ ├── 1f939-1f3fc.png │ │ ├── 1f939-1f3fd-200d-2640-fe0f.png │ │ ├── 1f939-1f3fd-200d-2642-fe0f.png │ │ ├── 1f939-1f3fd.png │ │ ├── 1f939-1f3fe-200d-2640-fe0f.png │ │ ├── 1f939-1f3fe-200d-2642-fe0f.png │ │ ├── 1f939-1f3fe.png │ │ ├── 1f939-1f3ff-200d-2640-fe0f.png │ │ ├── 1f939-1f3ff-200d-2642-fe0f.png │ │ ├── 1f939-1f3ff.png │ │ ├── 1f939-200d-2640-fe0f.png │ │ ├── 1f939-200d-2642-fe0f.png │ │ ├── 1f939.png │ │ ├── 1f93a.png │ │ ├── 1f93c-200d-2640-fe0f.png │ │ ├── 1f93c-200d-2642-fe0f.png │ │ ├── 1f93c.png │ │ ├── 1f93d-1f3fb-200d-2640-fe0f.png │ │ ├── 1f93d-1f3fb-200d-2642-fe0f.png │ │ ├── 1f93d-1f3fb.png │ │ ├── 1f93d-1f3fc-200d-2640-fe0f.png │ │ ├── 1f93d-1f3fc-200d-2642-fe0f.png │ │ ├── 1f93d-1f3fc.png │ │ ├── 1f93d-1f3fd-200d-2640-fe0f.png │ │ ├── 1f93d-1f3fd-200d-2642-fe0f.png │ │ ├── 1f93d-1f3fd.png │ │ ├── 1f93d-1f3fe-200d-2640-fe0f.png │ │ ├── 1f93d-1f3fe-200d-2642-fe0f.png │ │ ├── 1f93d-1f3fe.png │ │ ├── 1f93d-1f3ff-200d-2640-fe0f.png │ │ ├── 1f93d-1f3ff-200d-2642-fe0f.png │ │ ├── 1f93d-1f3ff.png │ │ ├── 1f93d-200d-2640-fe0f.png │ │ ├── 1f93d-200d-2642-fe0f.png │ │ ├── 1f93d.png │ │ ├── 1f93e-1f3fb-200d-2640-fe0f.png │ │ ├── 1f93e-1f3fb-200d-2642-fe0f.png │ │ ├── 1f93e-1f3fb.png │ │ ├── 1f93e-1f3fc-200d-2640-fe0f.png │ │ ├── 1f93e-1f3fc-200d-2642-fe0f.png │ │ ├── 1f93e-1f3fc.png │ │ ├── 1f93e-1f3fd-200d-2640-fe0f.png │ │ ├── 1f93e-1f3fd-200d-2642-fe0f.png │ │ ├── 1f93e-1f3fd.png │ │ ├── 1f93e-1f3fe-200d-2640-fe0f.png │ │ ├── 1f93e-1f3fe-200d-2642-fe0f.png │ │ ├── 1f93e-1f3fe.png │ │ ├── 1f93e-1f3ff-200d-2640-fe0f.png │ │ ├── 1f93e-1f3ff-200d-2642-fe0f.png │ │ ├── 1f93e-1f3ff.png │ │ ├── 1f93e-200d-2640-fe0f.png │ │ ├── 1f93e-200d-2642-fe0f.png │ │ ├── 1f93e.png │ │ ├── 1f93f.png │ │ ├── 1f940.png │ │ ├── 1f941.png │ │ ├── 1f942.png │ │ ├── 1f943.png │ │ ├── 1f944.png │ │ ├── 1f945.png │ │ ├── 1f947.png │ │ ├── 1f948.png │ │ ├── 1f949.png │ │ ├── 1f94a.png │ │ ├── 1f94b.png │ │ ├── 1f94c.png │ │ ├── 1f94d.png │ │ ├── 1f94e.png │ │ ├── 1f94f.png │ │ ├── 1f950.png │ │ ├── 1f951.png │ │ ├── 1f952.png │ │ ├── 1f953.png │ │ ├── 1f954.png │ │ ├── 1f955.png │ │ ├── 1f956.png │ │ ├── 1f957.png │ │ ├── 1f958.png │ │ ├── 1f959.png │ │ ├── 1f95a.png │ │ ├── 1f95b.png │ │ ├── 1f95c.png │ │ ├── 1f95d.png │ │ ├── 1f95e.png │ │ ├── 1f95f.png │ │ ├── 1f960.png │ │ ├── 1f961.png │ │ ├── 1f962.png │ │ ├── 1f963.png │ │ ├── 1f964.png │ │ ├── 1f965.png │ │ ├── 1f966.png │ │ ├── 1f967.png │ │ ├── 1f968.png │ │ ├── 1f969.png │ │ ├── 1f96a.png │ │ ├── 1f96b.png │ │ ├── 1f96c.png │ │ ├── 1f96d.png │ │ ├── 1f96e.png │ │ ├── 1f96f.png │ │ ├── 1f970.png │ │ ├── 1f971.png │ │ ├── 1f972.png │ │ ├── 1f973.png │ │ ├── 1f974.png │ │ ├── 1f975.png │ │ ├── 1f976.png │ │ ├── 1f977-1f3fb.png │ │ ├── 1f977-1f3fc.png │ │ ├── 1f977-1f3fd.png │ │ ├── 1f977-1f3fe.png │ │ ├── 1f977-1f3ff.png │ │ ├── 1f977.png │ │ ├── 1f978.png │ │ ├── 1f979.png │ │ ├── 1f97a.png │ │ ├── 1f97b.png │ │ ├── 1f97c.png │ │ ├── 1f97d.png │ │ ├── 1f97e.png │ │ ├── 1f97f.png │ │ ├── 1f980.png │ │ ├── 1f981.png │ │ ├── 1f982.png │ │ ├── 1f983.png │ │ ├── 1f984.png │ │ ├── 1f985.png │ │ ├── 1f986.png │ │ ├── 1f987.png │ │ ├── 1f988.png │ │ ├── 1f989.png │ │ ├── 1f98a.png │ │ ├── 1f98b.png │ │ ├── 1f98c.png │ │ ├── 1f98d.png │ │ ├── 1f98e.png │ │ ├── 1f98f.png │ │ ├── 1f990.png │ │ ├── 1f991.png │ │ ├── 1f992.png │ │ ├── 1f993.png │ │ ├── 1f994.png │ │ ├── 1f995.png │ │ ├── 1f996.png │ │ ├── 1f997.png │ │ ├── 1f998.png │ │ ├── 1f999.png │ │ ├── 1f99a.png │ │ ├── 1f99b.png │ │ ├── 1f99c.png │ │ ├── 1f99d.png │ │ ├── 1f99e.png │ │ ├── 1f99f.png │ │ ├── 1f9a0.png │ │ ├── 1f9a1.png │ │ ├── 1f9a2.png │ │ ├── 1f9a3.png │ │ ├── 1f9a4.png │ │ ├── 1f9a5.png │ │ ├── 1f9a6.png │ │ ├── 1f9a7.png │ │ ├── 1f9a8.png │ │ ├── 1f9a9.png │ │ ├── 1f9aa.png │ │ ├── 1f9ab.png │ │ ├── 1f9ac.png │ │ ├── 1f9ad.png │ │ ├── 1f9ae.png │ │ ├── 1f9af.png │ │ ├── 1f9b0.png │ │ ├── 1f9b1.png │ │ ├── 1f9b2.png │ │ ├── 1f9b3.png │ │ ├── 1f9b4.png │ │ ├── 1f9b5-1f3fb.png │ │ ├── 1f9b5-1f3fc.png │ │ ├── 1f9b5-1f3fd.png │ │ ├── 1f9b5-1f3fe.png │ │ ├── 1f9b5-1f3ff.png │ │ ├── 1f9b5.png │ │ ├── 1f9b6-1f3fb.png │ │ ├── 1f9b6-1f3fc.png │ │ ├── 1f9b6-1f3fd.png │ │ ├── 1f9b6-1f3fe.png │ │ ├── 1f9b6-1f3ff.png │ │ ├── 1f9b6.png │ │ ├── 1f9b7.png │ │ ├── 1f9b8-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9b8-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9b8-1f3fb.png │ │ ├── 1f9b8-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9b8-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9b8-1f3fc.png │ │ ├── 1f9b8-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9b8-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9b8-1f3fd.png │ │ ├── 1f9b8-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9b8-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9b8-1f3fe.png │ │ ├── 1f9b8-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9b8-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9b8-1f3ff.png │ │ ├── 1f9b8-200d-2640-fe0f.png │ │ ├── 1f9b8-200d-2642-fe0f.png │ │ ├── 1f9b8.png │ │ ├── 1f9b9-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9b9-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9b9-1f3fb.png │ │ ├── 1f9b9-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9b9-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9b9-1f3fc.png │ │ ├── 1f9b9-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9b9-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9b9-1f3fd.png │ │ ├── 1f9b9-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9b9-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9b9-1f3fe.png │ │ ├── 1f9b9-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9b9-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9b9-1f3ff.png │ │ ├── 1f9b9-200d-2640-fe0f.png │ │ ├── 1f9b9-200d-2642-fe0f.png │ │ ├── 1f9b9.png │ │ ├── 1f9ba.png │ │ ├── 1f9bb-1f3fb.png │ │ ├── 1f9bb-1f3fc.png │ │ ├── 1f9bb-1f3fd.png │ │ ├── 1f9bb-1f3fe.png │ │ ├── 1f9bb-1f3ff.png │ │ ├── 1f9bb.png │ │ ├── 1f9bc.png │ │ ├── 1f9bd.png │ │ ├── 1f9be.png │ │ ├── 1f9bf.png │ │ ├── 1f9c0.png │ │ ├── 1f9c1.png │ │ ├── 1f9c2.png │ │ ├── 1f9c3.png │ │ ├── 1f9c4.png │ │ ├── 1f9c5.png │ │ ├── 1f9c6.png │ │ ├── 1f9c7.png │ │ ├── 1f9c8.png │ │ ├── 1f9c9.png │ │ ├── 1f9ca.png │ │ ├── 1f9cb.png │ │ ├── 1f9cc.png │ │ ├── 1f9cd-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9cd-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9cd-1f3fb.png │ │ ├── 1f9cd-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9cd-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9cd-1f3fc.png │ │ ├── 1f9cd-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9cd-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9cd-1f3fd.png │ │ ├── 1f9cd-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9cd-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9cd-1f3fe.png │ │ ├── 1f9cd-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9cd-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9cd-1f3ff.png │ │ ├── 1f9cd-200d-2640-fe0f.png │ │ ├── 1f9cd-200d-2642-fe0f.png │ │ ├── 1f9cd.png │ │ ├── 1f9ce-1f3fb-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9ce-1f3fb-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9ce-1f3fb-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3fb.png │ │ ├── 1f9ce-1f3fc-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9ce-1f3fc-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9ce-1f3fc-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3fc.png │ │ ├── 1f9ce-1f3fd-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9ce-1f3fd-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9ce-1f3fd-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3fd.png │ │ ├── 1f9ce-1f3fe-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9ce-1f3fe-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9ce-1f3fe-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3fe.png │ │ ├── 1f9ce-1f3ff-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9ce-1f3ff-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9ce-1f3ff-200d-27a1-fe0f.png │ │ ├── 1f9ce-1f3ff.png │ │ ├── 1f9ce-200d-2640-fe0f-200d-27a1-fe0f.png │ │ ├── 1f9ce-200d-2640-fe0f.png │ │ ├── 1f9ce-200d-2642-fe0f-200d-27a1-fe0f.png │ │ ├── 1f9ce-200d-2642-fe0f.png │ │ ├── 1f9ce-200d-27a1-fe0f.png │ │ ├── 1f9ce.png │ │ ├── 1f9cf-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9cf-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9cf-1f3fb.png │ │ ├── 1f9cf-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9cf-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9cf-1f3fc.png │ │ ├── 1f9cf-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9cf-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9cf-1f3fd.png │ │ ├── 1f9cf-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9cf-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9cf-1f3fe.png │ │ ├── 1f9cf-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9cf-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9cf-1f3ff.png │ │ ├── 1f9cf-200d-2640-fe0f.png │ │ ├── 1f9cf-200d-2642-fe0f.png │ │ ├── 1f9cf.png │ │ ├── 1f9d0.png │ │ ├── 1f9d1-1f3fb-200d-1f33e.png │ │ ├── 1f9d1-1f3fb-200d-1f373.png │ │ ├── 1f9d1-1f3fb-200d-1f37c.png │ │ ├── 1f9d1-1f3fb-200d-1f384.png │ │ ├── 1f9d1-1f3fb-200d-1f393.png │ │ ├── 1f9d1-1f3fb-200d-1f3a4.png │ │ ├── 1f9d1-1f3fb-200d-1f3a8.png │ │ ├── 1f9d1-1f3fb-200d-1f3eb.png │ │ ├── 1f9d1-1f3fb-200d-1f3ed.png │ │ ├── 1f9d1-1f3fb-200d-1f4bb.png │ │ ├── 1f9d1-1f3fb-200d-1f4bc.png │ │ ├── 1f9d1-1f3fb-200d-1f527.png │ │ ├── 1f9d1-1f3fb-200d-1f52c.png │ │ ├── 1f9d1-1f3fb-200d-1f680.png │ │ ├── 1f9d1-1f3fb-200d-1f692.png │ │ ├── 1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.png │ │ ├── 1f9d1-1f3fb-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3fb-200d-1f9af.png │ │ ├── 1f9d1-1f3fb-200d-1f9b0.png │ │ ├── 1f9d1-1f3fb-200d-1f9b1.png │ │ ├── 1f9d1-1f3fb-200d-1f9b2.png │ │ ├── 1f9d1-1f3fb-200d-1f9b3.png │ │ ├── 1f9d1-1f3fb-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3fb-200d-1f9bc.png │ │ ├── 1f9d1-1f3fb-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3fb-200d-1f9bd.png │ │ ├── 1f9d1-1f3fb-200d-2695-fe0f.png │ │ ├── 1f9d1-1f3fb-200d-2696-fe0f.png │ │ ├── 1f9d1-1f3fb-200d-2708-fe0f.png │ │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png │ │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3ff.png │ │ ├── 1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3fc-200d-1f33e.png │ │ ├── 1f9d1-1f3fc-200d-1f373.png │ │ ├── 1f9d1-1f3fc-200d-1f37c.png │ │ ├── 1f9d1-1f3fc-200d-1f384.png │ │ ├── 1f9d1-1f3fc-200d-1f393.png │ │ ├── 1f9d1-1f3fc-200d-1f3a4.png │ │ ├── 1f9d1-1f3fc-200d-1f3a8.png │ │ ├── 1f9d1-1f3fc-200d-1f3eb.png │ │ ├── 1f9d1-1f3fc-200d-1f3ed.png │ │ ├── 1f9d1-1f3fc-200d-1f4bb.png │ │ ├── 1f9d1-1f3fc-200d-1f4bc.png │ │ ├── 1f9d1-1f3fc-200d-1f527.png │ │ ├── 1f9d1-1f3fc-200d-1f52c.png │ │ ├── 1f9d1-1f3fc-200d-1f680.png │ │ ├── 1f9d1-1f3fc-200d-1f692.png │ │ ├── 1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.png │ │ ├── 1f9d1-1f3fc-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3fc-200d-1f9af.png │ │ ├── 1f9d1-1f3fc-200d-1f9b0.png │ │ ├── 1f9d1-1f3fc-200d-1f9b1.png │ │ ├── 1f9d1-1f3fc-200d-1f9b2.png │ │ ├── 1f9d1-1f3fc-200d-1f9b3.png │ │ ├── 1f9d1-1f3fc-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3fc-200d-1f9bc.png │ │ ├── 1f9d1-1f3fc-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3fc-200d-1f9bd.png │ │ ├── 1f9d1-1f3fc-200d-2695-fe0f.png │ │ ├── 1f9d1-1f3fc-200d-2696-fe0f.png │ │ ├── 1f9d1-1f3fc-200d-2708-fe0f.png │ │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png │ │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3ff.png │ │ ├── 1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3fd-200d-1f33e.png │ │ ├── 1f9d1-1f3fd-200d-1f373.png │ │ ├── 1f9d1-1f3fd-200d-1f37c.png │ │ ├── 1f9d1-1f3fd-200d-1f384.png │ │ ├── 1f9d1-1f3fd-200d-1f393.png │ │ ├── 1f9d1-1f3fd-200d-1f3a4.png │ │ ├── 1f9d1-1f3fd-200d-1f3a8.png │ │ ├── 1f9d1-1f3fd-200d-1f3eb.png │ │ ├── 1f9d1-1f3fd-200d-1f3ed.png │ │ ├── 1f9d1-1f3fd-200d-1f4bb.png │ │ ├── 1f9d1-1f3fd-200d-1f4bc.png │ │ ├── 1f9d1-1f3fd-200d-1f527.png │ │ ├── 1f9d1-1f3fd-200d-1f52c.png │ │ ├── 1f9d1-1f3fd-200d-1f680.png │ │ ├── 1f9d1-1f3fd-200d-1f692.png │ │ ├── 1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.png │ │ ├── 1f9d1-1f3fd-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3fd-200d-1f9af.png │ │ ├── 1f9d1-1f3fd-200d-1f9b0.png │ │ ├── 1f9d1-1f3fd-200d-1f9b1.png │ │ ├── 1f9d1-1f3fd-200d-1f9b2.png │ │ ├── 1f9d1-1f3fd-200d-1f9b3.png │ │ ├── 1f9d1-1f3fd-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3fd-200d-1f9bc.png │ │ ├── 1f9d1-1f3fd-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3fd-200d-1f9bd.png │ │ ├── 1f9d1-1f3fd-200d-2695-fe0f.png │ │ ├── 1f9d1-1f3fd-200d-2696-fe0f.png │ │ ├── 1f9d1-1f3fd-200d-2708-fe0f.png │ │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png │ │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3ff.png │ │ ├── 1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3fe-200d-1f33e.png │ │ ├── 1f9d1-1f3fe-200d-1f373.png │ │ ├── 1f9d1-1f3fe-200d-1f37c.png │ │ ├── 1f9d1-1f3fe-200d-1f384.png │ │ ├── 1f9d1-1f3fe-200d-1f393.png │ │ ├── 1f9d1-1f3fe-200d-1f3a4.png │ │ ├── 1f9d1-1f3fe-200d-1f3a8.png │ │ ├── 1f9d1-1f3fe-200d-1f3eb.png │ │ ├── 1f9d1-1f3fe-200d-1f3ed.png │ │ ├── 1f9d1-1f3fe-200d-1f4bb.png │ │ ├── 1f9d1-1f3fe-200d-1f4bc.png │ │ ├── 1f9d1-1f3fe-200d-1f527.png │ │ ├── 1f9d1-1f3fe-200d-1f52c.png │ │ ├── 1f9d1-1f3fe-200d-1f680.png │ │ ├── 1f9d1-1f3fe-200d-1f692.png │ │ ├── 1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.png │ │ ├── 1f9d1-1f3fe-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3fe-200d-1f9af.png │ │ ├── 1f9d1-1f3fe-200d-1f9b0.png │ │ ├── 1f9d1-1f3fe-200d-1f9b1.png │ │ ├── 1f9d1-1f3fe-200d-1f9b2.png │ │ ├── 1f9d1-1f3fe-200d-1f9b3.png │ │ ├── 1f9d1-1f3fe-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3fe-200d-1f9bc.png │ │ ├── 1f9d1-1f3fe-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3fe-200d-1f9bd.png │ │ ├── 1f9d1-1f3fe-200d-2695-fe0f.png │ │ ├── 1f9d1-1f3fe-200d-2696-fe0f.png │ │ ├── 1f9d1-1f3fe-200d-2708-fe0f.png │ │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png │ │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3ff.png │ │ ├── 1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3ff-200d-1f33e.png │ │ ├── 1f9d1-1f3ff-200d-1f373.png │ │ ├── 1f9d1-1f3ff-200d-1f37c.png │ │ ├── 1f9d1-1f3ff-200d-1f384.png │ │ ├── 1f9d1-1f3ff-200d-1f393.png │ │ ├── 1f9d1-1f3ff-200d-1f3a4.png │ │ ├── 1f9d1-1f3ff-200d-1f3a8.png │ │ ├── 1f9d1-1f3ff-200d-1f3eb.png │ │ ├── 1f9d1-1f3ff-200d-1f3ed.png │ │ ├── 1f9d1-1f3ff-200d-1f4bb.png │ │ ├── 1f9d1-1f3ff-200d-1f4bc.png │ │ ├── 1f9d1-1f3ff-200d-1f527.png │ │ ├── 1f9d1-1f3ff-200d-1f52c.png │ │ ├── 1f9d1-1f3ff-200d-1f680.png │ │ ├── 1f9d1-1f3ff-200d-1f692.png │ │ ├── 1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.png │ │ ├── 1f9d1-1f3ff-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3ff-200d-1f9af.png │ │ ├── 1f9d1-1f3ff-200d-1f9b0.png │ │ ├── 1f9d1-1f3ff-200d-1f9b1.png │ │ ├── 1f9d1-1f3ff-200d-1f9b2.png │ │ ├── 1f9d1-1f3ff-200d-1f9b3.png │ │ ├── 1f9d1-1f3ff-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3ff-200d-1f9bc.png │ │ ├── 1f9d1-1f3ff-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f9d1-1f3ff-200d-1f9bd.png │ │ ├── 1f9d1-1f3ff-200d-2695-fe0f.png │ │ ├── 1f9d1-1f3ff-200d-2696-fe0f.png │ │ ├── 1f9d1-1f3ff-200d-2708-fe0f.png │ │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fb.png │ │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fc.png │ │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fd.png │ │ ├── 1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fe.png │ │ ├── 1f9d1-1f3ff.png │ │ ├── 1f9d1-200d-1f33e.png │ │ ├── 1f9d1-200d-1f373.png │ │ ├── 1f9d1-200d-1f37c.png │ │ ├── 1f9d1-200d-1f384.png │ │ ├── 1f9d1-200d-1f393.png │ │ ├── 1f9d1-200d-1f3a4.png │ │ ├── 1f9d1-200d-1f3a8.png │ │ ├── 1f9d1-200d-1f3eb.png │ │ ├── 1f9d1-200d-1f3ed.png │ │ ├── 1f9d1-200d-1f4bb.png │ │ ├── 1f9d1-200d-1f4bc.png │ │ ├── 1f9d1-200d-1f527.png │ │ ├── 1f9d1-200d-1f52c.png │ │ ├── 1f9d1-200d-1f680.png │ │ ├── 1f9d1-200d-1f692.png │ │ ├── 1f9d1-200d-1f91d-200d-1f9d1.png │ │ ├── 1f9d1-200d-1f9af-200d-27a1-fe0f.png │ │ ├── 1f9d1-200d-1f9af.png │ │ ├── 1f9d1-200d-1f9b0.png │ │ ├── 1f9d1-200d-1f9b1.png │ │ ├── 1f9d1-200d-1f9b2.png │ │ ├── 1f9d1-200d-1f9b3.png │ │ ├── 1f9d1-200d-1f9bc-200d-27a1-fe0f.png │ │ ├── 1f9d1-200d-1f9bc.png │ │ ├── 1f9d1-200d-1f9bd-200d-27a1-fe0f.png │ │ ├── 1f9d1-200d-1f9bd.png │ │ ├── 1f9d1-200d-1f9d1-200d-1f9d2-200d-1f9d2.png │ │ ├── 1f9d1-200d-1f9d1-200d-1f9d2.png │ │ ├── 1f9d1-200d-1f9d2-200d-1f9d2.png │ │ ├── 1f9d1-200d-1f9d2.png │ │ ├── 1f9d1-200d-2695-fe0f.png │ │ ├── 1f9d1-200d-2696-fe0f.png │ │ ├── 1f9d1-200d-2708-fe0f.png │ │ ├── 1f9d1.png │ │ ├── 1f9d2-1f3fb.png │ │ ├── 1f9d2-1f3fc.png │ │ ├── 1f9d2-1f3fd.png │ │ ├── 1f9d2-1f3fe.png │ │ ├── 1f9d2-1f3ff.png │ │ ├── 1f9d2.png │ │ ├── 1f9d3-1f3fb.png │ │ ├── 1f9d3-1f3fc.png │ │ ├── 1f9d3-1f3fd.png │ │ ├── 1f9d3-1f3fe.png │ │ ├── 1f9d3-1f3ff.png │ │ ├── 1f9d3.png │ │ ├── 1f9d4-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9d4-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9d4-1f3fb.png │ │ ├── 1f9d4-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9d4-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9d4-1f3fc.png │ │ ├── 1f9d4-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9d4-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9d4-1f3fd.png │ │ ├── 1f9d4-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9d4-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9d4-1f3fe.png │ │ ├── 1f9d4-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9d4-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9d4-1f3ff.png │ │ ├── 1f9d4-200d-2640-fe0f.png │ │ ├── 1f9d4-200d-2642-fe0f.png │ │ ├── 1f9d4.png │ │ ├── 1f9d5-1f3fb.png │ │ ├── 1f9d5-1f3fc.png │ │ ├── 1f9d5-1f3fd.png │ │ ├── 1f9d5-1f3fe.png │ │ ├── 1f9d5-1f3ff.png │ │ ├── 1f9d5.png │ │ ├── 1f9d6-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9d6-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9d6-1f3fb.png │ │ ├── 1f9d6-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9d6-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9d6-1f3fc.png │ │ ├── 1f9d6-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9d6-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9d6-1f3fd.png │ │ ├── 1f9d6-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9d6-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9d6-1f3fe.png │ │ ├── 1f9d6-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9d6-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9d6-1f3ff.png │ │ ├── 1f9d6-200d-2640-fe0f.png │ │ ├── 1f9d6-200d-2642-fe0f.png │ │ ├── 1f9d6.png │ │ ├── 1f9d7-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9d7-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9d7-1f3fb.png │ │ ├── 1f9d7-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9d7-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9d7-1f3fc.png │ │ ├── 1f9d7-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9d7-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9d7-1f3fd.png │ │ ├── 1f9d7-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9d7-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9d7-1f3fe.png │ │ ├── 1f9d7-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9d7-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9d7-1f3ff.png │ │ ├── 1f9d7-200d-2640-fe0f.png │ │ ├── 1f9d7-200d-2642-fe0f.png │ │ ├── 1f9d7.png │ │ ├── 1f9d8-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9d8-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9d8-1f3fb.png │ │ ├── 1f9d8-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9d8-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9d8-1f3fc.png │ │ ├── 1f9d8-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9d8-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9d8-1f3fd.png │ │ ├── 1f9d8-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9d8-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9d8-1f3fe.png │ │ ├── 1f9d8-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9d8-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9d8-1f3ff.png │ │ ├── 1f9d8-200d-2640-fe0f.png │ │ ├── 1f9d8-200d-2642-fe0f.png │ │ ├── 1f9d8.png │ │ ├── 1f9d9-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9d9-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9d9-1f3fb.png │ │ ├── 1f9d9-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9d9-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9d9-1f3fc.png │ │ ├── 1f9d9-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9d9-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9d9-1f3fd.png │ │ ├── 1f9d9-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9d9-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9d9-1f3fe.png │ │ ├── 1f9d9-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9d9-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9d9-1f3ff.png │ │ ├── 1f9d9-200d-2640-fe0f.png │ │ ├── 1f9d9-200d-2642-fe0f.png │ │ ├── 1f9d9.png │ │ ├── 1f9da-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9da-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9da-1f3fb.png │ │ ├── 1f9da-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9da-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9da-1f3fc.png │ │ ├── 1f9da-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9da-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9da-1f3fd.png │ │ ├── 1f9da-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9da-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9da-1f3fe.png │ │ ├── 1f9da-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9da-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9da-1f3ff.png │ │ ├── 1f9da-200d-2640-fe0f.png │ │ ├── 1f9da-200d-2642-fe0f.png │ │ ├── 1f9da.png │ │ ├── 1f9db-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9db-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9db-1f3fb.png │ │ ├── 1f9db-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9db-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9db-1f3fc.png │ │ ├── 1f9db-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9db-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9db-1f3fd.png │ │ ├── 1f9db-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9db-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9db-1f3fe.png │ │ ├── 1f9db-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9db-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9db-1f3ff.png │ │ ├── 1f9db-200d-2640-fe0f.png │ │ ├── 1f9db-200d-2642-fe0f.png │ │ ├── 1f9db.png │ │ ├── 1f9dc-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9dc-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9dc-1f3fb.png │ │ ├── 1f9dc-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9dc-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9dc-1f3fc.png │ │ ├── 1f9dc-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9dc-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9dc-1f3fd.png │ │ ├── 1f9dc-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9dc-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9dc-1f3fe.png │ │ ├── 1f9dc-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9dc-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9dc-1f3ff.png │ │ ├── 1f9dc-200d-2640-fe0f.png │ │ ├── 1f9dc-200d-2642-fe0f.png │ │ ├── 1f9dc.png │ │ ├── 1f9dd-1f3fb-200d-2640-fe0f.png │ │ ├── 1f9dd-1f3fb-200d-2642-fe0f.png │ │ ├── 1f9dd-1f3fb.png │ │ ├── 1f9dd-1f3fc-200d-2640-fe0f.png │ │ ├── 1f9dd-1f3fc-200d-2642-fe0f.png │ │ ├── 1f9dd-1f3fc.png │ │ ├── 1f9dd-1f3fd-200d-2640-fe0f.png │ │ ├── 1f9dd-1f3fd-200d-2642-fe0f.png │ │ ├── 1f9dd-1f3fd.png │ │ ├── 1f9dd-1f3fe-200d-2640-fe0f.png │ │ ├── 1f9dd-1f3fe-200d-2642-fe0f.png │ │ ├── 1f9dd-1f3fe.png │ │ ├── 1f9dd-1f3ff-200d-2640-fe0f.png │ │ ├── 1f9dd-1f3ff-200d-2642-fe0f.png │ │ ├── 1f9dd-1f3ff.png │ │ ├── 1f9dd-200d-2640-fe0f.png │ │ ├── 1f9dd-200d-2642-fe0f.png │ │ ├── 1f9dd.png │ │ ├── 1f9de-200d-2640-fe0f.png │ │ ├── 1f9de-200d-2642-fe0f.png │ │ ├── 1f9de.png │ │ ├── 1f9df-200d-2640-fe0f.png │ │ ├── 1f9df-200d-2642-fe0f.png │ │ ├── 1f9df.png │ │ ├── 1f9e0.png │ │ ├── 1f9e1.png │ │ ├── 1f9e2.png │ │ ├── 1f9e3.png │ │ ├── 1f9e4.png │ │ ├── 1f9e5.png │ │ ├── 1f9e6.png │ │ ├── 1f9e7.png │ │ ├── 1f9e8.png │ │ ├── 1f9e9.png │ │ ├── 1f9ea.png │ │ ├── 1f9eb.png │ │ ├── 1f9ec.png │ │ ├── 1f9ed.png │ │ ├── 1f9ee.png │ │ ├── 1f9ef.png │ │ ├── 1f9f0.png │ │ ├── 1f9f1.png │ │ ├── 1f9f2.png │ │ ├── 1f9f3.png │ │ ├── 1f9f4.png │ │ ├── 1f9f5.png │ │ ├── 1f9f6.png │ │ ├── 1f9f7.png │ │ ├── 1f9f8.png │ │ ├── 1f9f9.png │ │ ├── 1f9fa.png │ │ ├── 1f9fb.png │ │ ├── 1f9fc.png │ │ ├── 1f9fd.png │ │ ├── 1f9fe.png │ │ ├── 1f9ff.png │ │ ├── 1fa70.png │ │ ├── 1fa71.png │ │ ├── 1fa72.png │ │ ├── 1fa73.png │ │ ├── 1fa74.png │ │ ├── 1fa75.png │ │ ├── 1fa76.png │ │ ├── 1fa77.png │ │ ├── 1fa78.png │ │ ├── 1fa79.png │ │ ├── 1fa7a.png │ │ ├── 1fa7b.png │ │ ├── 1fa7c.png │ │ ├── 1fa80.png │ │ ├── 1fa81.png │ │ ├── 1fa82.png │ │ ├── 1fa83.png │ │ ├── 1fa84.png │ │ ├── 1fa85.png │ │ ├── 1fa86.png │ │ ├── 1fa87.png │ │ ├── 1fa88.png │ │ ├── 1fa90.png │ │ ├── 1fa91.png │ │ ├── 1fa92.png │ │ ├── 1fa93.png │ │ ├── 1fa94.png │ │ ├── 1fa95.png │ │ ├── 1fa96.png │ │ ├── 1fa97.png │ │ ├── 1fa98.png │ │ ├── 1fa99.png │ │ ├── 1fa9a.png │ │ ├── 1fa9b.png │ │ ├── 1fa9c.png │ │ ├── 1fa9d.png │ │ ├── 1fa9e.png │ │ ├── 1fa9f.png │ │ ├── 1faa0.png │ │ ├── 1faa1.png │ │ ├── 1faa2.png │ │ ├── 1faa3.png │ │ ├── 1faa4.png │ │ ├── 1faa5.png │ │ ├── 1faa6.png │ │ ├── 1faa7.png │ │ ├── 1faa8.png │ │ ├── 1faa9.png │ │ ├── 1faaa.png │ │ ├── 1faab.png │ │ ├── 1faac.png │ │ ├── 1faad.png │ │ ├── 1faae.png │ │ ├── 1faaf.png │ │ ├── 1fab0.png │ │ ├── 1fab1.png │ │ ├── 1fab2.png │ │ ├── 1fab3.png │ │ ├── 1fab4.png │ │ ├── 1fab5.png │ │ ├── 1fab6.png │ │ ├── 1fab7.png │ │ ├── 1fab8.png │ │ ├── 1fab9.png │ │ ├── 1faba.png │ │ ├── 1fabb.png │ │ ├── 1fabc.png │ │ ├── 1fabd.png │ │ ├── 1fabf.png │ │ ├── 1fac0.png │ │ ├── 1fac1.png │ │ ├── 1fac2.png │ │ ├── 1fac3-1f3fb.png │ │ ├── 1fac3-1f3fc.png │ │ ├── 1fac3-1f3fd.png │ │ ├── 1fac3-1f3fe.png │ │ ├── 1fac3-1f3ff.png │ │ ├── 1fac3.png │ │ ├── 1fac4-1f3fb.png │ │ ├── 1fac4-1f3fc.png │ │ ├── 1fac4-1f3fd.png │ │ ├── 1fac4-1f3fe.png │ │ ├── 1fac4-1f3ff.png │ │ ├── 1fac4.png │ │ ├── 1fac5-1f3fb.png │ │ ├── 1fac5-1f3fc.png │ │ ├── 1fac5-1f3fd.png │ │ ├── 1fac5-1f3fe.png │ │ ├── 1fac5-1f3ff.png │ │ ├── 1fac5.png │ │ ├── 1face.png │ │ ├── 1facf.png │ │ ├── 1fad0.png │ │ ├── 1fad1.png │ │ ├── 1fad2.png │ │ ├── 1fad3.png │ │ ├── 1fad4.png │ │ ├── 1fad5.png │ │ ├── 1fad6.png │ │ ├── 1fad7.png │ │ ├── 1fad8.png │ │ ├── 1fad9.png │ │ ├── 1fada.png │ │ ├── 1fadb.png │ │ ├── 1fae0.png │ │ ├── 1fae1.png │ │ ├── 1fae2.png │ │ ├── 1fae3.png │ │ ├── 1fae4.png │ │ ├── 1fae5.png │ │ ├── 1fae6.png │ │ ├── 1fae7.png │ │ ├── 1fae8.png │ │ ├── 1faf0-1f3fb.png │ │ ├── 1faf0-1f3fc.png │ │ ├── 1faf0-1f3fd.png │ │ ├── 1faf0-1f3fe.png │ │ ├── 1faf0-1f3ff.png │ │ ├── 1faf0.png │ │ ├── 1faf1-1f3fb-200d-1faf2-1f3fc.png │ │ ├── 1faf1-1f3fb-200d-1faf2-1f3fd.png │ │ ├── 1faf1-1f3fb-200d-1faf2-1f3fe.png │ │ ├── 1faf1-1f3fb-200d-1faf2-1f3ff.png │ │ ├── 1faf1-1f3fb.png │ │ ├── 1faf1-1f3fc-200d-1faf2-1f3fb.png │ │ ├── 1faf1-1f3fc-200d-1faf2-1f3fd.png │ │ ├── 1faf1-1f3fc-200d-1faf2-1f3fe.png │ │ ├── 1faf1-1f3fc-200d-1faf2-1f3ff.png │ │ ├── 1faf1-1f3fc.png │ │ ├── 1faf1-1f3fd-200d-1faf2-1f3fb.png │ │ ├── 1faf1-1f3fd-200d-1faf2-1f3fc.png │ │ ├── 1faf1-1f3fd-200d-1faf2-1f3fe.png │ │ ├── 1faf1-1f3fd-200d-1faf2-1f3ff.png │ │ ├── 1faf1-1f3fd.png │ │ ├── 1faf1-1f3fe-200d-1faf2-1f3fb.png │ │ ├── 1faf1-1f3fe-200d-1faf2-1f3fc.png │ │ ├── 1faf1-1f3fe-200d-1faf2-1f3fd.png │ │ ├── 1faf1-1f3fe-200d-1faf2-1f3ff.png │ │ ├── 1faf1-1f3fe.png │ │ ├── 1faf1-1f3ff-200d-1faf2-1f3fb.png │ │ ├── 1faf1-1f3ff-200d-1faf2-1f3fc.png │ │ ├── 1faf1-1f3ff-200d-1faf2-1f3fd.png │ │ ├── 1faf1-1f3ff-200d-1faf2-1f3fe.png │ │ ├── 1faf1-1f3ff.png │ │ ├── 1faf1.png │ │ ├── 1faf2-1f3fb.png │ │ ├── 1faf2-1f3fc.png │ │ ├── 1faf2-1f3fd.png │ │ ├── 1faf2-1f3fe.png │ │ ├── 1faf2-1f3ff.png │ │ ├── 1faf2.png │ │ ├── 1faf3-1f3fb.png │ │ ├── 1faf3-1f3fc.png │ │ ├── 1faf3-1f3fd.png │ │ ├── 1faf3-1f3fe.png │ │ ├── 1faf3-1f3ff.png │ │ ├── 1faf3.png │ │ ├── 1faf4-1f3fb.png │ │ ├── 1faf4-1f3fc.png │ │ ├── 1faf4-1f3fd.png │ │ ├── 1faf4-1f3fe.png │ │ ├── 1faf4-1f3ff.png │ │ ├── 1faf4.png │ │ ├── 1faf5-1f3fb.png │ │ ├── 1faf5-1f3fc.png │ │ ├── 1faf5-1f3fd.png │ │ ├── 1faf5-1f3fe.png │ │ ├── 1faf5-1f3ff.png │ │ ├── 1faf5.png │ │ ├── 1faf6-1f3fb.png │ │ ├── 1faf6-1f3fc.png │ │ ├── 1faf6-1f3fd.png │ │ ├── 1faf6-1f3fe.png │ │ ├── 1faf6-1f3ff.png │ │ ├── 1faf6.png │ │ ├── 1faf7-1f3fb.png │ │ ├── 1faf7-1f3fc.png │ │ ├── 1faf7-1f3fd.png │ │ ├── 1faf7-1f3fe.png │ │ ├── 1faf7-1f3ff.png │ │ ├── 1faf7.png │ │ ├── 1faf8-1f3fb.png │ │ ├── 1faf8-1f3fc.png │ │ ├── 1faf8-1f3fd.png │ │ ├── 1faf8-1f3fe.png │ │ ├── 1faf8-1f3ff.png │ │ ├── 1faf8.png │ │ ├── 203c-fe0f.png │ │ ├── 2049-fe0f.png │ │ ├── 2122-fe0f.png │ │ ├── 2139-fe0f.png │ │ ├── 2194-fe0f.png │ │ ├── 2195-fe0f.png │ │ ├── 2196-fe0f.png │ │ ├── 2197-fe0f.png │ │ ├── 2198-fe0f.png │ │ ├── 2199-fe0f.png │ │ ├── 21a9-fe0f.png │ │ ├── 21aa-fe0f.png │ │ ├── 231a.png │ │ ├── 231b.png │ │ ├── 2328-fe0f.png │ │ ├── 23cf-fe0f.png │ │ ├── 23e9.png │ │ ├── 23ea.png │ │ ├── 23eb.png │ │ ├── 23ec.png │ │ ├── 23ed-fe0f.png │ │ ├── 23ee-fe0f.png │ │ ├── 23ef-fe0f.png │ │ ├── 23f0.png │ │ ├── 23f1-fe0f.png │ │ ├── 23f2-fe0f.png │ │ ├── 23f3.png │ │ ├── 23f8-fe0f.png │ │ ├── 23f9-fe0f.png │ │ ├── 23fa-fe0f.png │ │ ├── 24c2-fe0f.png │ │ ├── 25aa-fe0f.png │ │ ├── 25ab-fe0f.png │ │ ├── 25b6-fe0f.png │ │ ├── 25c0-fe0f.png │ │ ├── 25fb-fe0f.png │ │ ├── 25fc-fe0f.png │ │ ├── 25fd.png │ │ ├── 25fe.png │ │ ├── 2600-fe0f.png │ │ ├── 2601-fe0f.png │ │ ├── 2602-fe0f.png │ │ ├── 2603-fe0f.png │ │ ├── 2604-fe0f.png │ │ ├── 260e-fe0f.png │ │ ├── 2611-fe0f.png │ │ ├── 2614.png │ │ ├── 2615.png │ │ ├── 2618-fe0f.png │ │ ├── 261d-1f3fb.png │ │ ├── 261d-1f3fc.png │ │ ├── 261d-1f3fd.png │ │ ├── 261d-1f3fe.png │ │ ├── 261d-1f3ff.png │ │ ├── 261d-fe0f.png │ │ ├── 2620-fe0f.png │ │ ├── 2622-fe0f.png │ │ ├── 2623-fe0f.png │ │ ├── 2626-fe0f.png │ │ ├── 262a-fe0f.png │ │ ├── 262e-fe0f.png │ │ ├── 262f-fe0f.png │ │ ├── 2638-fe0f.png │ │ ├── 2639-fe0f.png │ │ ├── 263a-fe0f.png │ │ ├── 2648.png │ │ ├── 2649.png │ │ ├── 264a.png │ │ ├── 264b.png │ │ ├── 264c.png │ │ ├── 264d.png │ │ ├── 264e.png │ │ ├── 264f.png │ │ ├── 2650.png │ │ ├── 2651.png │ │ ├── 2652.png │ │ ├── 2653.png │ │ ├── 265f-fe0f.png │ │ ├── 2660-fe0f.png │ │ ├── 2663-fe0f.png │ │ ├── 2665-fe0f.png │ │ ├── 2666-fe0f.png │ │ ├── 2668-fe0f.png │ │ ├── 267b-fe0f.png │ │ ├── 267e-fe0f.png │ │ ├── 267f.png │ │ ├── 2692-fe0f.png │ │ ├── 2693.png │ │ ├── 2694-fe0f.png │ │ ├── 2696-fe0f.png │ │ ├── 2697-fe0f.png │ │ ├── 2699-fe0f.png │ │ ├── 269b-fe0f.png │ │ ├── 269c-fe0f.png │ │ ├── 26a0-fe0f.png │ │ ├── 26a1.png │ │ ├── 26a7-fe0f.png │ │ ├── 26aa.png │ │ ├── 26ab.png │ │ ├── 26b0-fe0f.png │ │ ├── 26b1-fe0f.png │ │ ├── 26bd.png │ │ ├── 26be.png │ │ ├── 26c4.png │ │ ├── 26c5.png │ │ ├── 26c8-fe0f.png │ │ ├── 26ce.png │ │ ├── 26cf-fe0f.png │ │ ├── 26d1-fe0f.png │ │ ├── 26d3-fe0f-200d-1f4a5.png │ │ ├── 26d3-fe0f.png │ │ ├── 26d4.png │ │ ├── 26e9-fe0f.png │ │ ├── 26ea.png │ │ ├── 26f0-fe0f.png │ │ ├── 26f1-fe0f.png │ │ ├── 26f2.png │ │ ├── 26f3.png │ │ ├── 26f4-fe0f.png │ │ ├── 26f5.png │ │ ├── 26f7-fe0f.png │ │ ├── 26f8-fe0f.png │ │ ├── 26f9-1f3fb-200d-2640-fe0f.png │ │ ├── 26f9-1f3fb-200d-2642-fe0f.png │ │ ├── 26f9-1f3fb.png │ │ ├── 26f9-1f3fc-200d-2640-fe0f.png │ │ ├── 26f9-1f3fc-200d-2642-fe0f.png │ │ ├── 26f9-1f3fc.png │ │ ├── 26f9-1f3fd-200d-2640-fe0f.png │ │ ├── 26f9-1f3fd-200d-2642-fe0f.png │ │ ├── 26f9-1f3fd.png │ │ ├── 26f9-1f3fe-200d-2640-fe0f.png │ │ ├── 26f9-1f3fe-200d-2642-fe0f.png │ │ ├── 26f9-1f3fe.png │ │ ├── 26f9-1f3ff-200d-2640-fe0f.png │ │ ├── 26f9-1f3ff-200d-2642-fe0f.png │ │ ├── 26f9-1f3ff.png │ │ ├── 26f9-fe0f-200d-2640-fe0f.png │ │ ├── 26f9-fe0f-200d-2642-fe0f.png │ │ ├── 26f9-fe0f.png │ │ ├── 26fa.png │ │ ├── 26fd.png │ │ ├── 2702-fe0f.png │ │ ├── 2705.png │ │ ├── 2708-fe0f.png │ │ ├── 2709-fe0f.png │ │ ├── 270a-1f3fb.png │ │ ├── 270a-1f3fc.png │ │ ├── 270a-1f3fd.png │ │ ├── 270a-1f3fe.png │ │ ├── 270a-1f3ff.png │ │ ├── 270a.png │ │ ├── 270b-1f3fb.png │ │ ├── 270b-1f3fc.png │ │ ├── 270b-1f3fd.png │ │ ├── 270b-1f3fe.png │ │ ├── 270b-1f3ff.png │ │ ├── 270b.png │ │ ├── 270c-1f3fb.png │ │ ├── 270c-1f3fc.png │ │ ├── 270c-1f3fd.png │ │ ├── 270c-1f3fe.png │ │ ├── 270c-1f3ff.png │ │ ├── 270c-fe0f.png │ │ ├── 270d-1f3fb.png │ │ ├── 270d-1f3fc.png │ │ ├── 270d-1f3fd.png │ │ ├── 270d-1f3fe.png │ │ ├── 270d-1f3ff.png │ │ ├── 270d-fe0f.png │ │ ├── 270f-fe0f.png │ │ ├── 2712-fe0f.png │ │ ├── 2714-fe0f.png │ │ ├── 2716-fe0f.png │ │ ├── 271d-fe0f.png │ │ ├── 2721-fe0f.png │ │ ├── 2728.png │ │ ├── 2733-fe0f.png │ │ ├── 2734-fe0f.png │ │ ├── 2744-fe0f.png │ │ ├── 2747-fe0f.png │ │ ├── 274c.png │ │ ├── 274e.png │ │ ├── 2753.png │ │ ├── 2754.png │ │ ├── 2755.png │ │ ├── 2757.png │ │ ├── 2763-fe0f.png │ │ ├── 2764-fe0f-200d-1f525.png │ │ ├── 2764-fe0f-200d-1fa79.png │ │ ├── 2764-fe0f.png │ │ ├── 2795.png │ │ ├── 2796.png │ │ ├── 2797.png │ │ ├── 27a1-fe0f.png │ │ ├── 27b0.png │ │ ├── 27bf.png │ │ ├── 2934-fe0f.png │ │ ├── 2935-fe0f.png │ │ ├── 2b05-fe0f.png │ │ ├── 2b06-fe0f.png │ │ ├── 2b07-fe0f.png │ │ ├── 2b1b.png │ │ ├── 2b1c.png │ │ ├── 2b50.png │ │ ├── 2b55.png │ │ ├── 3030-fe0f.png │ │ ├── 303d-fe0f.png │ │ ├── 3297-fe0f.png │ │ └── 3299-fe0f.png │ ├── error.html │ ├── external-auth.mp4 │ ├── favicon.ico │ ├── favicons │ │ ├── favicon-dark.png │ │ ├── favicon-dark.svg │ │ ├── favicon-error-dark.png │ │ ├── favicon-error-dark.svg │ │ ├── favicon-error-light.png │ │ ├── favicon-error-light.svg │ │ ├── favicon-light.png │ │ ├── favicon-light.svg │ │ ├── favicon-running-dark.png │ │ ├── favicon-running-dark.svg │ │ ├── favicon-running-light.png │ │ ├── favicon-running-light.svg │ │ ├── favicon-success-dark.png │ │ ├── favicon-success-dark.svg │ │ ├── favicon-success-light.png │ │ ├── favicon-success-light.svg │ │ ├── favicon-warning-dark.png │ │ ├── favicon-warning-dark.svg │ │ ├── favicon-warning-light.png │ │ └── favicon-warning-light.svg │ ├── featured │ │ ├── scheduling.webp │ │ ├── templates.webp │ │ └── workspaces.webp │ ├── icon │ │ ├── aider.svg │ │ ├── almalinux.svg │ │ ├── amazon-q.svg │ │ ├── android-studio.svg │ │ ├── apache-guacamole.svg │ │ ├── apple-black.svg │ │ ├── apple-grey.svg │ │ ├── argo-workflows.svg │ │ ├── aws-dark.svg │ │ ├── aws-light.svg │ │ ├── aws-monochrome.svg │ │ ├── aws.png │ │ ├── aws.svg │ │ ├── azure-devops.svg │ │ ├── azure.png │ │ ├── azure.svg │ │ ├── bitbucket.svg │ │ ├── centos.svg │ │ ├── claude.svg │ │ ├── clion.svg │ │ ├── code-insiders.svg │ │ ├── code.svg │ │ ├── coder.svg │ │ ├── conda.svg │ │ ├── confluence.svg │ │ ├── container.svg │ │ ├── cpp.svg │ │ ├── cursor.svg │ │ ├── database.svg │ │ ├── datagrip.svg │ │ ├── dataspell.svg │ │ ├── dcv.svg │ │ ├── debian.svg │ │ ├── desktop.svg │ │ ├── discord.svg │ │ ├── do.png │ │ ├── docker-white.svg │ │ ├── docker.png │ │ ├── docker.svg │ │ ├── dotfiles.svg │ │ ├── dotnet.svg │ │ ├── elixir.svg │ │ ├── fedora.svg │ │ ├── filebrowser.svg │ │ ├── fleet.svg │ │ ├── fly.io.svg │ │ ├── folder.svg │ │ ├── gateway.svg │ │ ├── gcp.png │ │ ├── git.svg │ │ ├── gitea.svg │ │ ├── github.svg │ │ ├── gitlab.svg │ │ ├── go.svg │ │ ├── goland.svg │ │ ├── google.svg │ │ ├── goose.svg │ │ ├── image.svg │ │ ├── intellij.svg │ │ ├── java.svg │ │ ├── javascript.svg │ │ ├── jax.svg │ │ ├── jetbrains-toolbox.svg │ │ ├── jetbrains.svg │ │ ├── jfrog.svg │ │ ├── jupyter.svg │ │ ├── k8s.png │ │ ├── k8s.svg │ │ ├── kasmvnc.svg │ │ ├── keycloak.svg │ │ ├── kotlin.svg │ │ ├── lakefs.svg │ │ ├── lxc.svg │ │ ├── matlab.svg │ │ ├── memory.svg │ │ ├── microsoft-teams.svg │ │ ├── microsoft.svg │ │ ├── mlflow.svg │ │ ├── nix.svg │ │ ├── node.svg │ │ ├── nodejs.svg │ │ ├── nomad.svg │ │ ├── novnc.svg │ │ ├── okta.svg │ │ ├── personalize.svg │ │ ├── php.svg │ │ ├── phpstorm.svg │ │ ├── projector.svg │ │ ├── pycharm.svg │ │ ├── python.svg │ │ ├── pytorch.svg │ │ ├── rdp.svg │ │ ├── rider.svg │ │ ├── rockylinux.svg │ │ ├── rstudio.svg │ │ ├── ruby.png │ │ ├── rubymine.svg │ │ ├── rust.svg │ │ ├── rustrover.svg │ │ ├── slack.svg │ │ ├── swift.svg │ │ ├── tensorflow.svg │ │ ├── terminal.svg │ │ ├── theia.svg │ │ ├── typescript.svg │ │ ├── ubuntu.svg │ │ ├── vault.svg │ │ ├── vsphere.svg │ │ ├── webstorm.svg │ │ ├── widgets.svg │ │ ├── windows.svg │ │ ├── windsurf.svg │ │ └── zed.svg │ ├── install.sh │ ├── oauth2allow.html │ └── open-in-coder.svg ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.test.json └── vite.config.mts ├── support ├── support.go └── support_test.go ├── tailnet ├── client.go ├── configmaps.go ├── configmaps_internal_test.go ├── conn.go ├── conn_test.go ├── controllers.go ├── controllers_test.go ├── convert.go ├── convert_test.go ├── coordinator.go ├── coordinator_internal_test.go ├── coordinator_test.go ├── derp.go ├── derpmap.go ├── derpmap_test.go ├── node.go ├── node_internal_test.go ├── peer.go ├── proto │ ├── compare.go │ ├── tailnet.pb.go │ ├── tailnet.proto │ ├── tailnet_drpc.pb.go │ ├── tailnet_drpc_old.go │ └── version.go ├── resume.go ├── resume_test.go ├── service.go ├── service_test.go ├── tailnettest │ ├── .gitignore │ ├── coordinateemock.go │ ├── coordinatormock.go │ ├── subscriptionmock.go │ ├── tailnettest.go │ ├── tailnettest_test.go │ └── workspaceupdatesprovidermock.go ├── telemetry.go ├── telemetry_internal_test.go ├── test │ ├── cases.go │ ├── integration │ │ ├── integration.go │ │ ├── integration_test.go │ │ ├── network.go │ │ ├── remove_test_ns.sh │ │ └── suite.go │ └── peer.go ├── testdata │ ├── debug.golden.html │ └── tailscale_derpmap.json ├── tunnel.go └── tunnel_internal_test.go ├── testutil ├── archive.go ├── cache.go ├── certificate.go ├── chan.go ├── ci.go ├── ctx.go ├── duration.go ├── enable_timing.go ├── eventually.go ├── eventually_test.go ├── go.go ├── goleak.go ├── json.go ├── logger.go ├── names.go ├── names_internal_test.go ├── net.go ├── oauth2.go ├── port.go ├── prometheus.go ├── pty.go ├── race.go ├── race_off.go ├── race_on.go ├── rand.go ├── reflect.go ├── rwconn.go ├── temp.go └── timing.go └── vpn ├── client.go ├── client_test.go ├── dns.go ├── dns_internal_test.go ├── dylib ├── info.plist.tmpl └── lib.go ├── pipe.go ├── router.go ├── router_internal_test.go ├── serdes.go ├── speaker.go ├── speaker_internal_test.go ├── tun.go ├── tun_darwin.go ├── tun_windows.go ├── tunnel.go ├── tunnel_internal_test.go ├── version.go ├── version_test.go ├── vpn.pb.go └── vpn.proto /.devcontainer/scripts/post_start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Start Docker service if not already running. 4 | sudo service docker start 5 | -------------------------------------------------------------------------------- /.github/cherry-pick-bot.yml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | preservePullRequestTitle: true 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | <!-- markdownlint-disable MD041 --> 2 | [https://coder.com/docs/CONTRIBUTING](https://coder.com/docs/CONTRIBUTING) 3 | -------------------------------------------------------------------------------- /agent/agentcontainers/dcspec/testdata/minimal.json: -------------------------------------------------------------------------------- 1 | { "image": "test-image" } 2 | -------------------------------------------------------------------------------- /agent/agentcontainers/testdata/devcontainercli/parse/up-error-bad-outcome.log: -------------------------------------------------------------------------------- 1 | bad outcome 2 | -------------------------------------------------------------------------------- /buildinfo/buildinfo_site.go: -------------------------------------------------------------------------------- 1 | //go:build embed 2 | 3 | package buildinfo 4 | 5 | func init() { 6 | site = true 7 | } 8 | -------------------------------------------------------------------------------- /buildinfo/buildinfo_slim.go: -------------------------------------------------------------------------------- 1 | //go:build slim 2 | 3 | package buildinfo 4 | 5 | func init() { 6 | slim = true 7 | } 8 | -------------------------------------------------------------------------------- /buildinfo/notboring.go: -------------------------------------------------------------------------------- 1 | //go:build !boringcrypto 2 | 3 | package buildinfo 4 | 5 | var boringcrypto = false 6 | -------------------------------------------------------------------------------- /buildinfo/resources/.gitignore: -------------------------------------------------------------------------------- 1 | *.syso 2 | -------------------------------------------------------------------------------- /cli/clilog/doc.go: -------------------------------------------------------------------------------- 1 | // Package clilog provides a fluent API for configuring structured logging. 2 | package clilog 3 | -------------------------------------------------------------------------------- /cli/testdata/coder_exp_example-error_validation.golden: -------------------------------------------------------------------------------- 1 | Missing values for the required flags: magic-word 2 | -------------------------------------------------------------------------------- /cmd/coder/.gitignore: -------------------------------------------------------------------------------- 1 | coder 2 | -------------------------------------------------------------------------------- /coderd/autobuild/doc.go: -------------------------------------------------------------------------------- 1 | // Package autobuild contains logic for scheduling workspace 2 | // builds in the background. 3 | package autobuild 4 | -------------------------------------------------------------------------------- /coderd/database/.gitignore: -------------------------------------------------------------------------------- 1 | test/ 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000003_workspaces.down.sql: -------------------------------------------------------------------------------- 1 | DROP TYPE workspace_transition; 2 | DROP TABLE workspaces 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000005_gitsshkey.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE gitsshkeys; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000008_rbac_roles.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ONLY users 2 | DROP COLUMN IF EXISTS rbac_roles; -------------------------------------------------------------------------------- /coderd/database/migrations/000009_agent_directory.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ONLY workspace_agents 2 | DROP COLUMN IF EXISTS directory; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000010_audit_logs.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE audit_logs; 2 | DROP TYPE audit_action; 3 | DROP TYPE resource_type; 4 | -------------------------------------------------------------------------------- /coderd/database/migrations/000011_template_description.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE templates DROP COLUMN description; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000012_template_version_readme.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE template_versions RENAME README TO description; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000012_template_version_readme.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE template_versions RENAME description TO readme; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000014_provisioner_daemons_organization_id.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE provisioner_daemons ADD COLUMN organization_id uuid; -------------------------------------------------------------------------------- /coderd/database/migrations/000014_provisioner_daemons_organization_id.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE provisioner_daemons DROP COLUMN organization_id; -------------------------------------------------------------------------------- /coderd/database/migrations/000015_workspacebuild_deadline.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ONLY workspace_builds DROP COLUMN deadline; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000016_api_key_lifetime.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE api_keys DROP COLUMN lifetime_seconds; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000020_workspace_apps.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE workspace_apps; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000022_template_created_by.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ONLY templates DROP COLUMN IF EXISTS created_by; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000023_template_created_by_not_null.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ONLY templates ALTER COLUMN created_by DROP NOT NULL; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000024_site_config.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE site_configs; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000027_apikey_ip.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ONLY api_keys 2 | DROP COLUMN IF EXISTS ip_address; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000029_variable_order.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE parameter_schemas DROP COLUMN index; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000030_template_version_created_by.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ONLY template_versions DROP COLUMN IF EXISTS created_by; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000033_resource_metadata.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS workspace_resource_metadata; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000036_template_icon.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE templates DROP COLUMN icon; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000036_template_icon.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE templates ADD COLUMN icon VARCHAR(256) NOT NULL DEFAULT ''; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000038_template_max_ttl_cap_7_days.down.sql: -------------------------------------------------------------------------------- 1 | -- this is a no-op 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000039_add_workspace_agent_version.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ONLY workspace_agents DROP COLUMN version; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000042_agent_stats.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE agent_stats; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000043_workspace_last_used.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspaces 2 | DROP COLUMN last_used_at; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000044_user_avatars.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE users 2 | DROP COLUMN avatar_url; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000044_user_avatars.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE users 2 | ADD COLUMN avatar_url text; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000045_workspacebuildname.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_builds 2 | DROP COLUMN name; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000047_workspace_resource_hide.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_resources 2 | DROP COLUMN hide; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000048_userdelete.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE users 2 | DROP COLUMN deleted; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000049_workspace_resource_icon.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_resources 2 | DROP COLUMN icon; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000051_comment_on_api_key_secret.down.sql: -------------------------------------------------------------------------------- 1 | -- noop, comments don't need to be removed 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000053_last_seen_at.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ONLY users 2 | DROP COLUMN last_seen_at; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000054_email_case.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX users_email_lower_idx; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000056_app_subdomain_fix.down.sql: -------------------------------------------------------------------------------- 1 | -- nothing 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000061_replicas.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE replicas; 2 | ALTER TABLE provisioner_daemons DROP COLUMN replica_id; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000062_group_avatars.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE groups DROP COLUMN avatar_url; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000062_group_avatars.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE groups ADD COLUMN avatar_url text NOT NULL DEFAULT ''; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000063_resource_type_group.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TYPE resource_type ADD VALUE IF NOT EXISTS 'group'; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000064_gitauth.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE git_auth_links; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000069_resource_instance_type.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_resources 2 | DROP COLUMN instance_type; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000070_deployment_graph.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_agents 2 | DROP COLUMN last_connected_replica_id; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000070_deployment_graph.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_agents 2 | ADD COLUMN last_connected_replica_id uuid; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000074_workspace_resources_job_id_idx.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX workspace_resources_job_id_idx; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000075_template_display_name.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE templates DROP COLUMN display_name; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000077_job_logs_job_id_id_index.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX provisioner_job_logs_id_job_id_idx; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000078_workspace_agents_resource_id_idx.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX workspace_agents_resource_id_idx; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000080_license_ids.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE licenses DROP COLUMN uuid; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000080_license_ids.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE licenses ADD COLUMN uuid uuid; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000083_add_motd_file_to_coder_agents.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_agents 2 | DROP COLUMN motd_file; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000084_workspace_agents_auth_token_index.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX workspace_agents_auth_token_idx; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000085_acquire_job_index.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX provisioner_jobs_started_at_idx; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000088_external_app_url.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_apps DROP COLUMN external; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000088_external_app_url.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_apps ADD COLUMN external boolean NOT NULL DEFAULT false; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000097_license_not_null_uuid.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ONLY licenses ALTER COLUMN uuid DROP NOT NULL; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000098_add_resource_type_license.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TYPE resource_type 2 | ADD VALUE IF NOT EXISTS 'license'; 3 | 4 | -------------------------------------------------------------------------------- /coderd/database/migrations/000099_template_version_variables.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE template_version_variables; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000100_template_version_gitauth.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE template_versions 2 | DROP COLUMN git_auth_providers; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000105_rich_parameter_required.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE template_version_parameters DROP COLUMN required; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000107_provisioner_jobs_error_code.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE provisioner_jobs DROP COLUMN error_code; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000107_provisioner_jobs_error_code.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE provisioner_jobs ADD COLUMN error_code text DEFAULT NULL; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000111_workspace_agent_metadata.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE workspace_agent_metadata; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000112_rich_parameter_display_name.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE template_version_parameters DROP COLUMN display_name; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000114_workspace_proxy.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE workspace_proxies; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000115_workspace_proxy_resource.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TYPE resource_type ADD VALUE IF NOT EXISTS 'workspace_proxy'; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000116_startup_logs_level.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_agent_startup_logs 2 | DROP COLUMN level; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000117_add_audit_action_register.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TYPE audit_action 2 | ADD VALUE IF NOT EXISTS 'register'; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000118_workspace_proxy_token.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_proxies 2 | DROP COLUMN token_hashed_secret; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000121_provisioner_job_tracing.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE provisioner_jobs DROP COLUMN trace_metadata; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000121_provisioner_job_tracing.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE provisioner_jobs ADD COLUMN trace_metadata jsonb; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000127_add_startup_logs_eof.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_agent_startup_logs DROP COLUMN eof; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000128_template_locked_ttl.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE templates DROP COLUMN locked_ttl; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000128_template_locked_ttl.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE templates ADD COLUMN locked_ttl BIGINT NOT NULL DEFAULT 0; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000131_workspace_locked.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspaces DROP COLUMN locked_at; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000131_workspace_locked.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspaces ADD COLUMN locked_at timestamptz NULL; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000132_parameters_order.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE template_version_parameters DROP COLUMN display_order; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000133_oauth_convert_audit.down.sql: -------------------------------------------------------------------------------- 1 | -- Nothing to do 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000134_workspace_build_reason.down.sql: -------------------------------------------------------------------------------- 1 | -- It's not possible to delete enum values. 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000136_ephemeral_parameters.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE template_version_parameters DROP COLUMN ephemeral; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000137_add_template_version_message.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE template_versions DROP COLUMN message; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000138_join_users.down.sql: -------------------------------------------------------------------------------- 1 | DROP VIEW template_with_users; 2 | DROP VIEW visible_users; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000140_workspace_deleting_at.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspaces DROP COLUMN deleting_at; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000140_workspace_deleting_at.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspaces ADD COLUMN deleting_at timestamptz NULL; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000146_proxy_derp_only.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_proxies DROP COLUMN derp_only; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000147_group_display_name.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE groups 2 | DROP COLUMN display_name; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000148_group_source.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE groups 2 | DROP COLUMN source; 3 | 4 | DROP TYPE group_source; 5 | -------------------------------------------------------------------------------- /coderd/database/migrations/000150_workspace_app_stats.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE workspace_app_stats; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000163_external_auth_extra.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE external_auth_links DROP COLUMN "oauth_extra"; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000163_external_auth_extra.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE external_auth_links ADD COLUMN "oauth_extra" jsonb; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000167_workspace_agent_api_version.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_agents DROP COLUMN api_version; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000170_workspaceproxy_version.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_proxies DROP COLUMN version; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000171_oidc_debug_claims.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE user_links DROP COLUMN debug_context; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000172_health_settings_audit.down.sql: -------------------------------------------------------------------------------- 1 | -- Nothing to do 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000174_rename_autolock.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TYPE build_reason RENAME VALUE 'dormancy' TO 'autolock'; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000174_rename_autolock.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TYPE build_reason RENAME VALUE 'autolock' TO 'dormancy'; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000175_add_user_theme_preference.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE users DROP COLUMN "theme_preference"; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000177_drop_provisioner_updated_at.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE provisioner_daemons DROP COLUMN updated_at; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000182_oauth2_provider.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE oauth2_provider_app_secrets; 2 | DROP TABLE oauth2_provider_apps; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000185_add_user_name.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE users DROP COLUMN name; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000186_user_favorite_workspaces.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ONLY workspaces DROP COLUMN favorite; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000187_jfrog_xray.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE jfrog_xray_scans; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000188_workspace_agent_metadata_order.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_agent_metadata DROP COLUMN display_order; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000189_workspace_app_order.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_apps DROP COLUMN display_order; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000192_workspace_agent_order.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_agents DROP COLUMN display_order; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000200_org_provisioners.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE provisioner_daemons 2 | DROP COLUMN organization_id; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000201_ensure_default_everyone_group.down.sql: -------------------------------------------------------------------------------- 1 | -- Nothing to do. If the group exists, this is ok. 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000203_template_usage_stats.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE template_usage_stats; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000204_add_workspace_agent_scripts_fk_index.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX workspace_agent_scripts_workspace_agent_id_idx; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000205_unique_linked_id.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX user_links_linked_id_login_type_idx; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000207_site_configs_text.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "site_configs" ALTER COLUMN "value" TYPE character varying(8192); 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000207_site_configs_text.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "site_configs" ALTER COLUMN "value" TYPE text; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000208_notification_banners.down.sql: -------------------------------------------------------------------------------- 1 | delete from site_configs where key = 'notification_banners'; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000211_workspace_tags.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS template_version_workspace_tags; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000214_org_custom_role_array.down.sql: -------------------------------------------------------------------------------- 1 | UPDATE custom_roles SET org_permissions = '{}'; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000216_organization_display_name.down.sql: -------------------------------------------------------------------------------- 1 | alter table organizations 2 | drop column display_name; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000217_custom_role_pair_parameter.down.sql: -------------------------------------------------------------------------------- 1 | DROP TYPE name_organization_pair; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000219_organization_icon.down.sql: -------------------------------------------------------------------------------- 1 | alter table organizations 2 | drop column icon; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000219_organization_icon.up.sql: -------------------------------------------------------------------------------- 1 | alter table organizations 2 | add column icon text not null default ''; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000220_audit_org_member.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TYPE resource_type ADD VALUE IF NOT EXISTS 'organization_member'; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000225_notifications_metrics.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE notification_messages 2 | DROP COLUMN IF EXISTS queued_seconds; -------------------------------------------------------------------------------- /coderd/database/migrations/000225_notifications_metrics.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE notification_messages 2 | ADD COLUMN queued_seconds FLOAT NULL; -------------------------------------------------------------------------------- /coderd/database/migrations/000227_provisioner_keys.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE provisioner_keys; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000231_provisioner_key_tags.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE provisioner_keys DROP COLUMN tags; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000237_github_com_user_id.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE users DROP COLUMN github_com_user_id; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000242_group_members_view.down.sql: -------------------------------------------------------------------------------- 1 | DROP VIEW group_members_expanded; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000249_workspace_app_hidden.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_apps DROP COLUMN hidden; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000251_crypto_keys.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "crypto_keys"; 2 | DROP TYPE "crypto_key_feature"; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000255_agent_stats_usage.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_agent_stats DROP COLUMN usage; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000260_remove_dark_blue_theme.down.sql: -------------------------------------------------------------------------------- 1 | -- Nothing to restore 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000260_remove_dark_blue_theme.up.sql: -------------------------------------------------------------------------------- 1 | UPDATE users SET theme_preference = '' WHERE theme_preference = 'darkBlue'; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000269_workspace_with_names.down.sql: -------------------------------------------------------------------------------- 1 | DROP VIEW workspaces_expanded; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000272_remove_must_reset_password.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE users DROP COLUMN must_reset_password; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000273_workspace_updates.down.sql: -------------------------------------------------------------------------------- 1 | DROP TYPE agent_id_name_pair; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000273_workspace_updates.up.sql: -------------------------------------------------------------------------------- 1 | CREATE TYPE agent_id_name_pair AS ( 2 | id uuid, 3 | name text 4 | ); 5 | -------------------------------------------------------------------------------- /coderd/database/migrations/000281_idpsync_settings.down.sql: -------------------------------------------------------------------------------- 1 | -- Nothing to do 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000286_provisioner_daemon_status.down.sql: -------------------------------------------------------------------------------- 1 | DROP TYPE provisioner_daemon_status; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000288_telemetry_items.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE telemetry_items; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000293_add_audit_types_for_connect_and_open.down.sql: -------------------------------------------------------------------------------- 1 | -- No-op, enum values can't be dropped. 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000298_provisioner_jobs_status_idx.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX idx_provisioner_jobs_status; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000300_notifications_method_inbox.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TYPE notification_method ADD VALUE IF NOT EXISTS 'inbox'; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000301_add_workspace_app_audit_sessions.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE workspace_app_audit_sessions; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000302_fix_app_audit_session_race.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_app_audit_sessions 2 | DROP COLUMN id; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000303_add_workspace_agent_devcontainers.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE workspace_agent_devcontainers; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000306_template_version_terraform_values.down.sql: -------------------------------------------------------------------------------- 1 | drop table template_version_terraform_values; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000309_add_devcontainer_name.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE workspace_agent_devcontainers DROP COLUMN name; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000312_webpush_subscriptions.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS webpush_subscriptions; 2 | 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000319_chat.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS chat_messages; 2 | 3 | DROP TABLE IF EXISTS chats; 4 | -------------------------------------------------------------------------------- /coderd/database/migrations/000331_app_group.down.sql: -------------------------------------------------------------------------------- 1 | alter table workspace_apps drop column display_group; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000331_app_group.up.sql: -------------------------------------------------------------------------------- 1 | alter table workspace_apps add column display_group text; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000340_workspace_app_status_idle.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TYPE workspace_app_status_state ADD VALUE IF NOT EXISTS 'idle'; 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000343_delete_chats.down.sql: -------------------------------------------------------------------------------- 1 | -- noop 2 | -------------------------------------------------------------------------------- /coderd/database/migrations/000343_delete_chats.up.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS chat_messages; 2 | DROP TABLE IF EXISTS chats; 3 | -------------------------------------------------------------------------------- /coderd/database/migrations/000345_audit_prebuilds_settings.down.sql: -------------------------------------------------------------------------------- 1 | -- No-op, enum values can't be dropped. 2 | -------------------------------------------------------------------------------- /coderd/notifications/dispatch/smtptest/fixtures/ca.srl: -------------------------------------------------------------------------------- 1 | 0330C6D190E3FE649DAFCDA2F4D765E2D29328DE 2 | -------------------------------------------------------------------------------- /coderd/notifications/dispatch/smtptest/fixtures/password.txt: -------------------------------------------------------------------------------- 1 | 🤫 -------------------------------------------------------------------------------- /coderd/workspaceapps/appurl/doc.go: -------------------------------------------------------------------------------- 1 | // Package appurl handles all parsing/validation/etc around application URLs. 2 | package appurl 3 | -------------------------------------------------------------------------------- /coderd/workspaceapps/proxy_test.go: -------------------------------------------------------------------------------- 1 | package workspaceapps_test 2 | 3 | // App tests can be found in the apptest package. 4 | -------------------------------------------------------------------------------- /docs/about/why-coder.md: -------------------------------------------------------------------------------- 1 | # Why use Coder 2 | 3 | TODO: Make this page! 4 | -------------------------------------------------------------------------------- /docs/images/agent-metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/agent-metadata.png -------------------------------------------------------------------------------- /docs/images/banner-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/banner-black.png -------------------------------------------------------------------------------- /docs/images/banner-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/banner-white.png -------------------------------------------------------------------------------- /docs/images/code-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/code-server.png -------------------------------------------------------------------------------- /docs/images/custom-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/custom-app.png -------------------------------------------------------------------------------- /docs/images/display-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/display-apps.png -------------------------------------------------------------------------------- /docs/images/editors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/editors.png -------------------------------------------------------------------------------- /docs/images/external-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/external-apps.png -------------------------------------------------------------------------------- /docs/images/file-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/file-browser.png -------------------------------------------------------------------------------- /docs/images/gcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/gcp.png -------------------------------------------------------------------------------- /docs/images/hero-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/hero-image.png -------------------------------------------------------------------------------- /docs/images/icons-gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/icons-gallery.png -------------------------------------------------------------------------------- /docs/images/ide-row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/ide-row.png -------------------------------------------------------------------------------- /docs/images/ides/copilot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/ides/copilot.png -------------------------------------------------------------------------------- /docs/images/jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/jupyter.png -------------------------------------------------------------------------------- /docs/images/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/logo-black.png -------------------------------------------------------------------------------- /docs/images/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/logo-white.png -------------------------------------------------------------------------------- /docs/images/metadata-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/metadata-ui.png -------------------------------------------------------------------------------- /docs/images/parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/parameters.png -------------------------------------------------------------------------------- /docs/images/readme-logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/readme-logos.png -------------------------------------------------------------------------------- /docs/images/schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/schedule.png -------------------------------------------------------------------------------- /docs/images/ssh-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/ssh-keys.png -------------------------------------------------------------------------------- /docs/images/template-rbac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/template-rbac.png -------------------------------------------------------------------------------- /docs/images/vscode-web.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/docs/images/vscode-web.gif -------------------------------------------------------------------------------- /dogfood/coder/files/etc/apt/apt.conf.d/80-retries: -------------------------------------------------------------------------------- 1 | APT::Acquire::Retries "3"; 2 | -------------------------------------------------------------------------------- /dogfood/coder/files/etc/docker/daemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "registry-mirrors": ["https://mirror.gcr.io"] 3 | } 4 | -------------------------------------------------------------------------------- /enterprise/coderd/userauth.go: -------------------------------------------------------------------------------- 1 | package coderd 2 | -------------------------------------------------------------------------------- /examples/parameters-dynamic-options/variables.yml: -------------------------------------------------------------------------------- 1 | go_image: "bitnami/golang:1.24-debian-11" 2 | java_image: "bitnami/java:1.8-debian-11" 3 | -------------------------------------------------------------------------------- /examples/templates/aws-linux/cloud-init/userdata.sh.tftpl: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo -u '${linux_user}' sh -c '${init_script}' 3 | -------------------------------------------------------------------------------- /helm/.gitignore: -------------------------------------------------------------------------------- 1 | charts/ 2 | -------------------------------------------------------------------------------- /helm/coder/templates/rbac.yaml: -------------------------------------------------------------------------------- 1 | {{ include "libcoder.rbac.tpl" . }} 2 | -------------------------------------------------------------------------------- /helm/coder/tests/testdata/command.yaml: -------------------------------------------------------------------------------- 1 | coder: 2 | image: 3 | tag: latest 4 | command: 5 | - /opt/colin 6 | -------------------------------------------------------------------------------- /helm/coder/tests/testdata/command_args.yaml: -------------------------------------------------------------------------------- 1 | coder: 2 | image: 3 | tag: latest 4 | commandArgs: 5 | - arg1 6 | - arg2 7 | -------------------------------------------------------------------------------- /helm/coder/tests/testdata/default_values.yaml: -------------------------------------------------------------------------------- 1 | coder: 2 | image: 3 | tag: latest 4 | -------------------------------------------------------------------------------- /helm/coder/tests/testdata/sa_disabled.yaml: -------------------------------------------------------------------------------- 1 | coder: 2 | image: 3 | tag: latest 4 | serviceAccount: 5 | disableCreate: true 6 | -------------------------------------------------------------------------------- /helm/coder/tests/testdata/tls.yaml: -------------------------------------------------------------------------------- 1 | coder: 2 | image: 3 | tag: latest 4 | tls: 5 | secretNames: 6 | - coder-tls 7 | -------------------------------------------------------------------------------- /helm/provisioner/templates/rbac.yaml: -------------------------------------------------------------------------------- 1 | {{ include "libcoder.rbac.tpl" . }} 2 | -------------------------------------------------------------------------------- /helm/provisioner/tests/testdata/command.yaml: -------------------------------------------------------------------------------- 1 | coder: 2 | image: 3 | tag: latest 4 | command: 5 | - /opt/colin 6 | -------------------------------------------------------------------------------- /helm/provisioner/tests/testdata/command_args.yaml: -------------------------------------------------------------------------------- 1 | coder: 2 | image: 3 | tag: latest 4 | commandArgs: 5 | - arg1 6 | - arg2 7 | -------------------------------------------------------------------------------- /helm/provisioner/tests/testdata/default_values.yaml: -------------------------------------------------------------------------------- 1 | coder: 2 | image: 3 | tag: latest 4 | -------------------------------------------------------------------------------- /offlinedocs/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /offlinedocs/.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | engine-strict=true 3 | -------------------------------------------------------------------------------- /offlinedocs/.prettierignore: -------------------------------------------------------------------------------- 1 | **/pnpm-lock.yaml 2 | -------------------------------------------------------------------------------- /offlinedocs/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/offlinedocs/public/favicon.png -------------------------------------------------------------------------------- /offlinedocs/scripts/copyImages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cp ../docs/images public/images --recursive 4 | -------------------------------------------------------------------------------- /provisioner/terraform/testdata/modules-source-caching/.terraform/modules/stuff_that_should_not_be_included/nothing.txt: -------------------------------------------------------------------------------- 1 | ここには何もありません 2 | -------------------------------------------------------------------------------- /provisioner/terraform/testdata/resources/version.txt: -------------------------------------------------------------------------------- 1 | 1.11.4 2 | -------------------------------------------------------------------------------- /provisioner/terraform/testdata/version.txt: -------------------------------------------------------------------------------- 1 | 1.12.2 2 | -------------------------------------------------------------------------------- /scripts/apidocgen/.prettierignore: -------------------------------------------------------------------------------- 1 | **/pnpm-lock.yaml 2 | -------------------------------------------------------------------------------- /site/.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | indent_style = tab 3 | indent_size = unset 4 | 5 | [node_modules/**] 6 | ignore = true 7 | -------------------------------------------------------------------------------- /site/out/GITKEEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/out/GITKEEP -------------------------------------------------------------------------------- /site/out/bin/GITKEEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/out/bin/GITKEEP -------------------------------------------------------------------------------- /site/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /site/src/__mocks__/js-untar.ts: -------------------------------------------------------------------------------- 1 | export default jest.fn(); 2 | -------------------------------------------------------------------------------- /site/src/components/Dialogs/types.ts: -------------------------------------------------------------------------------- 1 | export type ConfirmDialogType = "delete" | "info" | "success"; 2 | -------------------------------------------------------------------------------- /site/src/pages/TerminalPage/types.ts: -------------------------------------------------------------------------------- 1 | export type ConnectionStatus = "connected" | "disconnected" | "initializing"; 2 | -------------------------------------------------------------------------------- /site/src/testHelpers/styleMock.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /site/src/utils/delay.ts: -------------------------------------------------------------------------------- 1 | export const delay = (ms: number): Promise<void> => 2 | new Promise((res) => { 3 | setTimeout(res, ms); 4 | }); 5 | -------------------------------------------------------------------------------- /site/src/utils/page.ts: -------------------------------------------------------------------------------- 1 | export const pageTitle = (...crumbs: string[]): string => { 2 | return [...crumbs, "Coder"].join(" - "); 3 | }; 4 | -------------------------------------------------------------------------------- /site/static/emojis/1f004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f004.png -------------------------------------------------------------------------------- /site/static/emojis/1f0cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f0cf.png -------------------------------------------------------------------------------- /site/static/emojis/1f18e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f18e.png -------------------------------------------------------------------------------- /site/static/emojis/1f191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f191.png -------------------------------------------------------------------------------- /site/static/emojis/1f192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f192.png -------------------------------------------------------------------------------- /site/static/emojis/1f193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f193.png -------------------------------------------------------------------------------- /site/static/emojis/1f194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f194.png -------------------------------------------------------------------------------- /site/static/emojis/1f195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f195.png -------------------------------------------------------------------------------- /site/static/emojis/1f196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f196.png -------------------------------------------------------------------------------- /site/static/emojis/1f197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f197.png -------------------------------------------------------------------------------- /site/static/emojis/1f198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f198.png -------------------------------------------------------------------------------- /site/static/emojis/1f199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f199.png -------------------------------------------------------------------------------- /site/static/emojis/1f19a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f19a.png -------------------------------------------------------------------------------- /site/static/emojis/1f201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f201.png -------------------------------------------------------------------------------- /site/static/emojis/1f21a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f21a.png -------------------------------------------------------------------------------- /site/static/emojis/1f22f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f22f.png -------------------------------------------------------------------------------- /site/static/emojis/1f232.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f232.png -------------------------------------------------------------------------------- /site/static/emojis/1f233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f233.png -------------------------------------------------------------------------------- /site/static/emojis/1f234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f234.png -------------------------------------------------------------------------------- /site/static/emojis/1f235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f235.png -------------------------------------------------------------------------------- /site/static/emojis/1f236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f236.png -------------------------------------------------------------------------------- /site/static/emojis/1f238.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f238.png -------------------------------------------------------------------------------- /site/static/emojis/1f239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f239.png -------------------------------------------------------------------------------- /site/static/emojis/1f23a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f23a.png -------------------------------------------------------------------------------- /site/static/emojis/1f250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f250.png -------------------------------------------------------------------------------- /site/static/emojis/1f251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f251.png -------------------------------------------------------------------------------- /site/static/emojis/1f300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f300.png -------------------------------------------------------------------------------- /site/static/emojis/1f301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f301.png -------------------------------------------------------------------------------- /site/static/emojis/1f302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f302.png -------------------------------------------------------------------------------- /site/static/emojis/1f303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f303.png -------------------------------------------------------------------------------- /site/static/emojis/1f304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f304.png -------------------------------------------------------------------------------- /site/static/emojis/1f305.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f305.png -------------------------------------------------------------------------------- /site/static/emojis/1f306.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f306.png -------------------------------------------------------------------------------- /site/static/emojis/1f307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f307.png -------------------------------------------------------------------------------- /site/static/emojis/1f308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f308.png -------------------------------------------------------------------------------- /site/static/emojis/1f309.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f309.png -------------------------------------------------------------------------------- /site/static/emojis/1f30a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f30a.png -------------------------------------------------------------------------------- /site/static/emojis/1f30b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f30b.png -------------------------------------------------------------------------------- /site/static/emojis/1f30c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f30c.png -------------------------------------------------------------------------------- /site/static/emojis/1f30d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f30d.png -------------------------------------------------------------------------------- /site/static/emojis/1f30e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f30e.png -------------------------------------------------------------------------------- /site/static/emojis/1f30f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f30f.png -------------------------------------------------------------------------------- /site/static/emojis/1f310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f310.png -------------------------------------------------------------------------------- /site/static/emojis/1f311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f311.png -------------------------------------------------------------------------------- /site/static/emojis/1f312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f312.png -------------------------------------------------------------------------------- /site/static/emojis/1f313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f313.png -------------------------------------------------------------------------------- /site/static/emojis/1f314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f314.png -------------------------------------------------------------------------------- /site/static/emojis/1f315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f315.png -------------------------------------------------------------------------------- /site/static/emojis/1f316.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f316.png -------------------------------------------------------------------------------- /site/static/emojis/1f317.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f317.png -------------------------------------------------------------------------------- /site/static/emojis/1f318.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f318.png -------------------------------------------------------------------------------- /site/static/emojis/1f319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f319.png -------------------------------------------------------------------------------- /site/static/emojis/1f31a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f31a.png -------------------------------------------------------------------------------- /site/static/emojis/1f31b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f31b.png -------------------------------------------------------------------------------- /site/static/emojis/1f31c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f31c.png -------------------------------------------------------------------------------- /site/static/emojis/1f31d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f31d.png -------------------------------------------------------------------------------- /site/static/emojis/1f31e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f31e.png -------------------------------------------------------------------------------- /site/static/emojis/1f31f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f31f.png -------------------------------------------------------------------------------- /site/static/emojis/1f320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f320.png -------------------------------------------------------------------------------- /site/static/emojis/1f32d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f32d.png -------------------------------------------------------------------------------- /site/static/emojis/1f32e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f32e.png -------------------------------------------------------------------------------- /site/static/emojis/1f32f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f32f.png -------------------------------------------------------------------------------- /site/static/emojis/1f330.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f330.png -------------------------------------------------------------------------------- /site/static/emojis/1f331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f331.png -------------------------------------------------------------------------------- /site/static/emojis/1f332.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f332.png -------------------------------------------------------------------------------- /site/static/emojis/1f333.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f333.png -------------------------------------------------------------------------------- /site/static/emojis/1f334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f334.png -------------------------------------------------------------------------------- /site/static/emojis/1f335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f335.png -------------------------------------------------------------------------------- /site/static/emojis/1f337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f337.png -------------------------------------------------------------------------------- /site/static/emojis/1f338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f338.png -------------------------------------------------------------------------------- /site/static/emojis/1f339.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f339.png -------------------------------------------------------------------------------- /site/static/emojis/1f33a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f33a.png -------------------------------------------------------------------------------- /site/static/emojis/1f33b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f33b.png -------------------------------------------------------------------------------- /site/static/emojis/1f33c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f33c.png -------------------------------------------------------------------------------- /site/static/emojis/1f33d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f33d.png -------------------------------------------------------------------------------- /site/static/emojis/1f33e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f33e.png -------------------------------------------------------------------------------- /site/static/emojis/1f33f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f33f.png -------------------------------------------------------------------------------- /site/static/emojis/1f340.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f340.png -------------------------------------------------------------------------------- /site/static/emojis/1f341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f341.png -------------------------------------------------------------------------------- /site/static/emojis/1f342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f342.png -------------------------------------------------------------------------------- /site/static/emojis/1f343.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f343.png -------------------------------------------------------------------------------- /site/static/emojis/1f344.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f344.png -------------------------------------------------------------------------------- /site/static/emojis/1f345.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f345.png -------------------------------------------------------------------------------- /site/static/emojis/1f346.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f346.png -------------------------------------------------------------------------------- /site/static/emojis/1f347.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f347.png -------------------------------------------------------------------------------- /site/static/emojis/1f348.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f348.png -------------------------------------------------------------------------------- /site/static/emojis/1f349.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f349.png -------------------------------------------------------------------------------- /site/static/emojis/1f34a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f34a.png -------------------------------------------------------------------------------- /site/static/emojis/1f34b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f34b.png -------------------------------------------------------------------------------- /site/static/emojis/1f34c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f34c.png -------------------------------------------------------------------------------- /site/static/emojis/1f34d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f34d.png -------------------------------------------------------------------------------- /site/static/emojis/1f34e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f34e.png -------------------------------------------------------------------------------- /site/static/emojis/1f34f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f34f.png -------------------------------------------------------------------------------- /site/static/emojis/1f350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f350.png -------------------------------------------------------------------------------- /site/static/emojis/1f351.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f351.png -------------------------------------------------------------------------------- /site/static/emojis/1f352.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f352.png -------------------------------------------------------------------------------- /site/static/emojis/1f353.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f353.png -------------------------------------------------------------------------------- /site/static/emojis/1f354.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f354.png -------------------------------------------------------------------------------- /site/static/emojis/1f355.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f355.png -------------------------------------------------------------------------------- /site/static/emojis/1f356.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f356.png -------------------------------------------------------------------------------- /site/static/emojis/1f357.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f357.png -------------------------------------------------------------------------------- /site/static/emojis/1f358.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f358.png -------------------------------------------------------------------------------- /site/static/emojis/1f359.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f359.png -------------------------------------------------------------------------------- /site/static/emojis/1f35a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f35a.png -------------------------------------------------------------------------------- /site/static/emojis/1f35b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f35b.png -------------------------------------------------------------------------------- /site/static/emojis/1f35c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f35c.png -------------------------------------------------------------------------------- /site/static/emojis/1f35d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f35d.png -------------------------------------------------------------------------------- /site/static/emojis/1f35e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f35e.png -------------------------------------------------------------------------------- /site/static/emojis/1f35f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f35f.png -------------------------------------------------------------------------------- /site/static/emojis/1f360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f360.png -------------------------------------------------------------------------------- /site/static/emojis/1f361.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f361.png -------------------------------------------------------------------------------- /site/static/emojis/1f362.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f362.png -------------------------------------------------------------------------------- /site/static/emojis/1f363.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f363.png -------------------------------------------------------------------------------- /site/static/emojis/1f364.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f364.png -------------------------------------------------------------------------------- /site/static/emojis/1f365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f365.png -------------------------------------------------------------------------------- /site/static/emojis/1f366.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f366.png -------------------------------------------------------------------------------- /site/static/emojis/1f367.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f367.png -------------------------------------------------------------------------------- /site/static/emojis/1f368.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f368.png -------------------------------------------------------------------------------- /site/static/emojis/1f369.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f369.png -------------------------------------------------------------------------------- /site/static/emojis/1f36a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f36a.png -------------------------------------------------------------------------------- /site/static/emojis/1f36b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f36b.png -------------------------------------------------------------------------------- /site/static/emojis/1f36c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f36c.png -------------------------------------------------------------------------------- /site/static/emojis/1f36d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f36d.png -------------------------------------------------------------------------------- /site/static/emojis/1f36e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f36e.png -------------------------------------------------------------------------------- /site/static/emojis/1f36f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f36f.png -------------------------------------------------------------------------------- /site/static/emojis/1f370.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f370.png -------------------------------------------------------------------------------- /site/static/emojis/1f371.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f371.png -------------------------------------------------------------------------------- /site/static/emojis/1f372.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f372.png -------------------------------------------------------------------------------- /site/static/emojis/1f373.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f373.png -------------------------------------------------------------------------------- /site/static/emojis/1f374.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f374.png -------------------------------------------------------------------------------- /site/static/emojis/1f375.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f375.png -------------------------------------------------------------------------------- /site/static/emojis/1f376.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f376.png -------------------------------------------------------------------------------- /site/static/emojis/1f377.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f377.png -------------------------------------------------------------------------------- /site/static/emojis/1f378.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f378.png -------------------------------------------------------------------------------- /site/static/emojis/1f379.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f379.png -------------------------------------------------------------------------------- /site/static/emojis/1f37a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f37a.png -------------------------------------------------------------------------------- /site/static/emojis/1f37b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f37b.png -------------------------------------------------------------------------------- /site/static/emojis/1f37c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f37c.png -------------------------------------------------------------------------------- /site/static/emojis/1f37e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f37e.png -------------------------------------------------------------------------------- /site/static/emojis/1f37f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f37f.png -------------------------------------------------------------------------------- /site/static/emojis/1f380.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f380.png -------------------------------------------------------------------------------- /site/static/emojis/1f381.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f381.png -------------------------------------------------------------------------------- /site/static/emojis/1f382.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f382.png -------------------------------------------------------------------------------- /site/static/emojis/1f383.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f383.png -------------------------------------------------------------------------------- /site/static/emojis/1f384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f384.png -------------------------------------------------------------------------------- /site/static/emojis/1f385.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f385.png -------------------------------------------------------------------------------- /site/static/emojis/1f386.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f386.png -------------------------------------------------------------------------------- /site/static/emojis/1f387.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f387.png -------------------------------------------------------------------------------- /site/static/emojis/1f388.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f388.png -------------------------------------------------------------------------------- /site/static/emojis/1f389.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f389.png -------------------------------------------------------------------------------- /site/static/emojis/1f38a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f38a.png -------------------------------------------------------------------------------- /site/static/emojis/1f38b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f38b.png -------------------------------------------------------------------------------- /site/static/emojis/1f38c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f38c.png -------------------------------------------------------------------------------- /site/static/emojis/1f38d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f38d.png -------------------------------------------------------------------------------- /site/static/emojis/1f38e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f38e.png -------------------------------------------------------------------------------- /site/static/emojis/1f38f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f38f.png -------------------------------------------------------------------------------- /site/static/emojis/1f390.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f390.png -------------------------------------------------------------------------------- /site/static/emojis/1f391.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f391.png -------------------------------------------------------------------------------- /site/static/emojis/1f392.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f392.png -------------------------------------------------------------------------------- /site/static/emojis/1f393.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f393.png -------------------------------------------------------------------------------- /site/static/emojis/1f3a0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3a0.png -------------------------------------------------------------------------------- /site/static/emojis/1f3a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3a1.png -------------------------------------------------------------------------------- /site/static/emojis/1f3a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3a2.png -------------------------------------------------------------------------------- /site/static/emojis/1f3a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3a3.png -------------------------------------------------------------------------------- /site/static/emojis/1f3a4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3a4.png -------------------------------------------------------------------------------- /site/static/emojis/1f3a5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3a5.png -------------------------------------------------------------------------------- /site/static/emojis/1f3a6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3a6.png -------------------------------------------------------------------------------- /site/static/emojis/1f3a7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3a7.png -------------------------------------------------------------------------------- /site/static/emojis/1f3a8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3a8.png -------------------------------------------------------------------------------- /site/static/emojis/1f3a9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3a9.png -------------------------------------------------------------------------------- /site/static/emojis/1f3aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3aa.png -------------------------------------------------------------------------------- /site/static/emojis/1f3ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3ab.png -------------------------------------------------------------------------------- /site/static/emojis/1f3ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3ac.png -------------------------------------------------------------------------------- /site/static/emojis/1f3ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3ad.png -------------------------------------------------------------------------------- /site/static/emojis/1f3ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3ae.png -------------------------------------------------------------------------------- /site/static/emojis/1f3af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3af.png -------------------------------------------------------------------------------- /site/static/emojis/1f3b0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3b0.png -------------------------------------------------------------------------------- /site/static/emojis/1f3b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3b1.png -------------------------------------------------------------------------------- /site/static/emojis/1f3b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3b2.png -------------------------------------------------------------------------------- /site/static/emojis/1f3b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3b3.png -------------------------------------------------------------------------------- /site/static/emojis/1f3b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3b4.png -------------------------------------------------------------------------------- /site/static/emojis/1f3b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3b5.png -------------------------------------------------------------------------------- /site/static/emojis/1f3b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3b6.png -------------------------------------------------------------------------------- /site/static/emojis/1f3b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3b7.png -------------------------------------------------------------------------------- /site/static/emojis/1f3b8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3b8.png -------------------------------------------------------------------------------- /site/static/emojis/1f3b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3b9.png -------------------------------------------------------------------------------- /site/static/emojis/1f3ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3ba.png -------------------------------------------------------------------------------- /site/static/emojis/1f3bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3bb.png -------------------------------------------------------------------------------- /site/static/emojis/1f3bc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3bc.png -------------------------------------------------------------------------------- /site/static/emojis/1f3bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3bd.png -------------------------------------------------------------------------------- /site/static/emojis/1f3be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3be.png -------------------------------------------------------------------------------- /site/static/emojis/1f3bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3bf.png -------------------------------------------------------------------------------- /site/static/emojis/1f3c0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3c0.png -------------------------------------------------------------------------------- /site/static/emojis/1f3c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3c1.png -------------------------------------------------------------------------------- /site/static/emojis/1f3c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3c2.png -------------------------------------------------------------------------------- /site/static/emojis/1f3c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3c3.png -------------------------------------------------------------------------------- /site/static/emojis/1f3c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3c4.png -------------------------------------------------------------------------------- /site/static/emojis/1f3c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3c5.png -------------------------------------------------------------------------------- /site/static/emojis/1f3c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3c6.png -------------------------------------------------------------------------------- /site/static/emojis/1f3c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3c7.png -------------------------------------------------------------------------------- /site/static/emojis/1f3c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3c8.png -------------------------------------------------------------------------------- /site/static/emojis/1f3c9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3c9.png -------------------------------------------------------------------------------- /site/static/emojis/1f3ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3ca.png -------------------------------------------------------------------------------- /site/static/emojis/1f3cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3cf.png -------------------------------------------------------------------------------- /site/static/emojis/1f3d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3d0.png -------------------------------------------------------------------------------- /site/static/emojis/1f3d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3d1.png -------------------------------------------------------------------------------- /site/static/emojis/1f3d2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3d2.png -------------------------------------------------------------------------------- /site/static/emojis/1f3d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3d3.png -------------------------------------------------------------------------------- /site/static/emojis/1f3e0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3e0.png -------------------------------------------------------------------------------- /site/static/emojis/1f3e1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3e1.png -------------------------------------------------------------------------------- /site/static/emojis/1f3e2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3e2.png -------------------------------------------------------------------------------- /site/static/emojis/1f3e3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3e3.png -------------------------------------------------------------------------------- /site/static/emojis/1f3e4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3e4.png -------------------------------------------------------------------------------- /site/static/emojis/1f3e5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3e5.png -------------------------------------------------------------------------------- /site/static/emojis/1f3e6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3e6.png -------------------------------------------------------------------------------- /site/static/emojis/1f3e7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3e7.png -------------------------------------------------------------------------------- /site/static/emojis/1f3e8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3e8.png -------------------------------------------------------------------------------- /site/static/emojis/1f3e9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3e9.png -------------------------------------------------------------------------------- /site/static/emojis/1f3ea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3ea.png -------------------------------------------------------------------------------- /site/static/emojis/1f3eb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3eb.png -------------------------------------------------------------------------------- /site/static/emojis/1f3ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3ec.png -------------------------------------------------------------------------------- /site/static/emojis/1f3ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3ed.png -------------------------------------------------------------------------------- /site/static/emojis/1f3ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3ee.png -------------------------------------------------------------------------------- /site/static/emojis/1f3ef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3ef.png -------------------------------------------------------------------------------- /site/static/emojis/1f3f0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3f0.png -------------------------------------------------------------------------------- /site/static/emojis/1f3f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3f4.png -------------------------------------------------------------------------------- /site/static/emojis/1f3f8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3f8.png -------------------------------------------------------------------------------- /site/static/emojis/1f3f9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3f9.png -------------------------------------------------------------------------------- /site/static/emojis/1f3fa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3fa.png -------------------------------------------------------------------------------- /site/static/emojis/1f3fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3fb.png -------------------------------------------------------------------------------- /site/static/emojis/1f3fc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3fc.png -------------------------------------------------------------------------------- /site/static/emojis/1f3fd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3fd.png -------------------------------------------------------------------------------- /site/static/emojis/1f3fe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3fe.png -------------------------------------------------------------------------------- /site/static/emojis/1f3ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f3ff.png -------------------------------------------------------------------------------- /site/static/emojis/1f400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f400.png -------------------------------------------------------------------------------- /site/static/emojis/1f401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f401.png -------------------------------------------------------------------------------- /site/static/emojis/1f402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f402.png -------------------------------------------------------------------------------- /site/static/emojis/1f403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f403.png -------------------------------------------------------------------------------- /site/static/emojis/1f404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f404.png -------------------------------------------------------------------------------- /site/static/emojis/1f405.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f405.png -------------------------------------------------------------------------------- /site/static/emojis/1f406.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f406.png -------------------------------------------------------------------------------- /site/static/emojis/1f407.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f407.png -------------------------------------------------------------------------------- /site/static/emojis/1f408.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f408.png -------------------------------------------------------------------------------- /site/static/emojis/1f409.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f409.png -------------------------------------------------------------------------------- /site/static/emojis/1f40a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f40a.png -------------------------------------------------------------------------------- /site/static/emojis/1f40b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f40b.png -------------------------------------------------------------------------------- /site/static/emojis/1f40c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f40c.png -------------------------------------------------------------------------------- /site/static/emojis/1f40d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f40d.png -------------------------------------------------------------------------------- /site/static/emojis/1f40e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f40e.png -------------------------------------------------------------------------------- /site/static/emojis/1f40f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f40f.png -------------------------------------------------------------------------------- /site/static/emojis/1f410.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f410.png -------------------------------------------------------------------------------- /site/static/emojis/1f411.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f411.png -------------------------------------------------------------------------------- /site/static/emojis/1f412.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f412.png -------------------------------------------------------------------------------- /site/static/emojis/1f413.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f413.png -------------------------------------------------------------------------------- /site/static/emojis/1f414.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f414.png -------------------------------------------------------------------------------- /site/static/emojis/1f415.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f415.png -------------------------------------------------------------------------------- /site/static/emojis/1f416.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f416.png -------------------------------------------------------------------------------- /site/static/emojis/1f417.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f417.png -------------------------------------------------------------------------------- /site/static/emojis/1f418.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f418.png -------------------------------------------------------------------------------- /site/static/emojis/1f419.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f419.png -------------------------------------------------------------------------------- /site/static/emojis/1f41a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f41a.png -------------------------------------------------------------------------------- /site/static/emojis/1f41b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f41b.png -------------------------------------------------------------------------------- /site/static/emojis/1f41c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f41c.png -------------------------------------------------------------------------------- /site/static/emojis/1f41d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f41d.png -------------------------------------------------------------------------------- /site/static/emojis/1f41e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f41e.png -------------------------------------------------------------------------------- /site/static/emojis/1f41f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f41f.png -------------------------------------------------------------------------------- /site/static/emojis/1f420.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f420.png -------------------------------------------------------------------------------- /site/static/emojis/1f421.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f421.png -------------------------------------------------------------------------------- /site/static/emojis/1f422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f422.png -------------------------------------------------------------------------------- /site/static/emojis/1f423.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f423.png -------------------------------------------------------------------------------- /site/static/emojis/1f424.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f424.png -------------------------------------------------------------------------------- /site/static/emojis/1f425.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f425.png -------------------------------------------------------------------------------- /site/static/emojis/1f426.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f426.png -------------------------------------------------------------------------------- /site/static/emojis/1f427.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f427.png -------------------------------------------------------------------------------- /site/static/emojis/1f428.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f428.png -------------------------------------------------------------------------------- /site/static/emojis/1f429.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f429.png -------------------------------------------------------------------------------- /site/static/emojis/1f42a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f42a.png -------------------------------------------------------------------------------- /site/static/emojis/1f42b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f42b.png -------------------------------------------------------------------------------- /site/static/emojis/1f42c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f42c.png -------------------------------------------------------------------------------- /site/static/emojis/1f42d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f42d.png -------------------------------------------------------------------------------- /site/static/emojis/1f42e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f42e.png -------------------------------------------------------------------------------- /site/static/emojis/1f42f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f42f.png -------------------------------------------------------------------------------- /site/static/emojis/1f430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f430.png -------------------------------------------------------------------------------- /site/static/emojis/1f431.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f431.png -------------------------------------------------------------------------------- /site/static/emojis/1f432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f432.png -------------------------------------------------------------------------------- /site/static/emojis/1f433.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f433.png -------------------------------------------------------------------------------- /site/static/emojis/1f434.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f434.png -------------------------------------------------------------------------------- /site/static/emojis/1f435.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f435.png -------------------------------------------------------------------------------- /site/static/emojis/1f436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f436.png -------------------------------------------------------------------------------- /site/static/emojis/1f437.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f437.png -------------------------------------------------------------------------------- /site/static/emojis/1f438.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f438.png -------------------------------------------------------------------------------- /site/static/emojis/1f439.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f439.png -------------------------------------------------------------------------------- /site/static/emojis/1f43a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f43a.png -------------------------------------------------------------------------------- /site/static/emojis/1f43b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f43b.png -------------------------------------------------------------------------------- /site/static/emojis/1f43c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f43c.png -------------------------------------------------------------------------------- /site/static/emojis/1f43d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f43d.png -------------------------------------------------------------------------------- /site/static/emojis/1f43e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f43e.png -------------------------------------------------------------------------------- /site/static/emojis/1f440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f440.png -------------------------------------------------------------------------------- /site/static/emojis/1f442.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f442.png -------------------------------------------------------------------------------- /site/static/emojis/1f443.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f443.png -------------------------------------------------------------------------------- /site/static/emojis/1f444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f444.png -------------------------------------------------------------------------------- /site/static/emojis/1f445.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f445.png -------------------------------------------------------------------------------- /site/static/emojis/1f446.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f446.png -------------------------------------------------------------------------------- /site/static/emojis/1f447.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f447.png -------------------------------------------------------------------------------- /site/static/emojis/1f448.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f448.png -------------------------------------------------------------------------------- /site/static/emojis/1f449.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f449.png -------------------------------------------------------------------------------- /site/static/emojis/1f44a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f44a.png -------------------------------------------------------------------------------- /site/static/emojis/1f44b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f44b.png -------------------------------------------------------------------------------- /site/static/emojis/1f44c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f44c.png -------------------------------------------------------------------------------- /site/static/emojis/1f44d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f44d.png -------------------------------------------------------------------------------- /site/static/emojis/1f44e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f44e.png -------------------------------------------------------------------------------- /site/static/emojis/1f44f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f44f.png -------------------------------------------------------------------------------- /site/static/emojis/1f450.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f450.png -------------------------------------------------------------------------------- /site/static/emojis/1f451.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f451.png -------------------------------------------------------------------------------- /site/static/emojis/1f452.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f452.png -------------------------------------------------------------------------------- /site/static/emojis/1f453.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f453.png -------------------------------------------------------------------------------- /site/static/emojis/1f454.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f454.png -------------------------------------------------------------------------------- /site/static/emojis/1f455.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f455.png -------------------------------------------------------------------------------- /site/static/emojis/1f456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f456.png -------------------------------------------------------------------------------- /site/static/emojis/1f457.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f457.png -------------------------------------------------------------------------------- /site/static/emojis/1f458.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f458.png -------------------------------------------------------------------------------- /site/static/emojis/1f459.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f459.png -------------------------------------------------------------------------------- /site/static/emojis/1f45a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f45a.png -------------------------------------------------------------------------------- /site/static/emojis/1f45b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f45b.png -------------------------------------------------------------------------------- /site/static/emojis/1f45c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f45c.png -------------------------------------------------------------------------------- /site/static/emojis/1f45d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f45d.png -------------------------------------------------------------------------------- /site/static/emojis/1f45e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f45e.png -------------------------------------------------------------------------------- /site/static/emojis/1f45f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f45f.png -------------------------------------------------------------------------------- /site/static/emojis/1f460.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f460.png -------------------------------------------------------------------------------- /site/static/emojis/1f461.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f461.png -------------------------------------------------------------------------------- /site/static/emojis/1f462.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f462.png -------------------------------------------------------------------------------- /site/static/emojis/1f463.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f463.png -------------------------------------------------------------------------------- /site/static/emojis/1f464.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f464.png -------------------------------------------------------------------------------- /site/static/emojis/1f465.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f465.png -------------------------------------------------------------------------------- /site/static/emojis/1f466.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f466.png -------------------------------------------------------------------------------- /site/static/emojis/1f467.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f467.png -------------------------------------------------------------------------------- /site/static/emojis/1f468.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f468.png -------------------------------------------------------------------------------- /site/static/emojis/1f469.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f469.png -------------------------------------------------------------------------------- /site/static/emojis/1f46a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f46a.png -------------------------------------------------------------------------------- /site/static/emojis/1f46b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f46b.png -------------------------------------------------------------------------------- /site/static/emojis/1f46c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f46c.png -------------------------------------------------------------------------------- /site/static/emojis/1f46d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f46d.png -------------------------------------------------------------------------------- /site/static/emojis/1f46e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f46e.png -------------------------------------------------------------------------------- /site/static/emojis/1f46f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f46f.png -------------------------------------------------------------------------------- /site/static/emojis/1f470.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f470.png -------------------------------------------------------------------------------- /site/static/emojis/1f471.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f471.png -------------------------------------------------------------------------------- /site/static/emojis/1f472.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f472.png -------------------------------------------------------------------------------- /site/static/emojis/1f473.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f473.png -------------------------------------------------------------------------------- /site/static/emojis/1f474.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f474.png -------------------------------------------------------------------------------- /site/static/emojis/1f475.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f475.png -------------------------------------------------------------------------------- /site/static/emojis/1f476.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f476.png -------------------------------------------------------------------------------- /site/static/emojis/1f477.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f477.png -------------------------------------------------------------------------------- /site/static/emojis/1f478.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f478.png -------------------------------------------------------------------------------- /site/static/emojis/1f479.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f479.png -------------------------------------------------------------------------------- /site/static/emojis/1f47a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f47a.png -------------------------------------------------------------------------------- /site/static/emojis/1f47b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f47b.png -------------------------------------------------------------------------------- /site/static/emojis/1f47c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f47c.png -------------------------------------------------------------------------------- /site/static/emojis/1f47d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f47d.png -------------------------------------------------------------------------------- /site/static/emojis/1f47e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f47e.png -------------------------------------------------------------------------------- /site/static/emojis/1f47f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f47f.png -------------------------------------------------------------------------------- /site/static/emojis/1f480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f480.png -------------------------------------------------------------------------------- /site/static/emojis/1f481.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f481.png -------------------------------------------------------------------------------- /site/static/emojis/1f482.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f482.png -------------------------------------------------------------------------------- /site/static/emojis/1f483.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f483.png -------------------------------------------------------------------------------- /site/static/emojis/1f484.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f484.png -------------------------------------------------------------------------------- /site/static/emojis/1f485.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f485.png -------------------------------------------------------------------------------- /site/static/emojis/1f486.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f486.png -------------------------------------------------------------------------------- /site/static/emojis/1f487.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f487.png -------------------------------------------------------------------------------- /site/static/emojis/1f488.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f488.png -------------------------------------------------------------------------------- /site/static/emojis/1f489.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f489.png -------------------------------------------------------------------------------- /site/static/emojis/1f48a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f48a.png -------------------------------------------------------------------------------- /site/static/emojis/1f48b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f48b.png -------------------------------------------------------------------------------- /site/static/emojis/1f48c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f48c.png -------------------------------------------------------------------------------- /site/static/emojis/1f48d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f48d.png -------------------------------------------------------------------------------- /site/static/emojis/1f48e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f48e.png -------------------------------------------------------------------------------- /site/static/emojis/1f48f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f48f.png -------------------------------------------------------------------------------- /site/static/emojis/1f490.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f490.png -------------------------------------------------------------------------------- /site/static/emojis/1f491.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f491.png -------------------------------------------------------------------------------- /site/static/emojis/1f492.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f492.png -------------------------------------------------------------------------------- /site/static/emojis/1f493.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f493.png -------------------------------------------------------------------------------- /site/static/emojis/1f494.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f494.png -------------------------------------------------------------------------------- /site/static/emojis/1f495.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f495.png -------------------------------------------------------------------------------- /site/static/emojis/1f496.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f496.png -------------------------------------------------------------------------------- /site/static/emojis/1f497.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f497.png -------------------------------------------------------------------------------- /site/static/emojis/1f498.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f498.png -------------------------------------------------------------------------------- /site/static/emojis/1f499.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f499.png -------------------------------------------------------------------------------- /site/static/emojis/1f49a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f49a.png -------------------------------------------------------------------------------- /site/static/emojis/1f49b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f49b.png -------------------------------------------------------------------------------- /site/static/emojis/1f49c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f49c.png -------------------------------------------------------------------------------- /site/static/emojis/1f49d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f49d.png -------------------------------------------------------------------------------- /site/static/emojis/1f49e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f49e.png -------------------------------------------------------------------------------- /site/static/emojis/1f49f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f49f.png -------------------------------------------------------------------------------- /site/static/emojis/1f4a0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4a0.png -------------------------------------------------------------------------------- /site/static/emojis/1f4a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4a1.png -------------------------------------------------------------------------------- /site/static/emojis/1f4a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4a2.png -------------------------------------------------------------------------------- /site/static/emojis/1f4a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4a3.png -------------------------------------------------------------------------------- /site/static/emojis/1f4a4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4a4.png -------------------------------------------------------------------------------- /site/static/emojis/1f4a5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4a5.png -------------------------------------------------------------------------------- /site/static/emojis/1f4a6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4a6.png -------------------------------------------------------------------------------- /site/static/emojis/1f4a7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4a7.png -------------------------------------------------------------------------------- /site/static/emojis/1f4a8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4a8.png -------------------------------------------------------------------------------- /site/static/emojis/1f4a9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4a9.png -------------------------------------------------------------------------------- /site/static/emojis/1f4aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4aa.png -------------------------------------------------------------------------------- /site/static/emojis/1f4ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4ab.png -------------------------------------------------------------------------------- /site/static/emojis/1f4ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4ac.png -------------------------------------------------------------------------------- /site/static/emojis/1f4ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4ad.png -------------------------------------------------------------------------------- /site/static/emojis/1f4ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4ae.png -------------------------------------------------------------------------------- /site/static/emojis/1f4af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4af.png -------------------------------------------------------------------------------- /site/static/emojis/1f4b0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4b0.png -------------------------------------------------------------------------------- /site/static/emojis/1f4b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4b1.png -------------------------------------------------------------------------------- /site/static/emojis/1f4b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4b2.png -------------------------------------------------------------------------------- /site/static/emojis/1f4b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4b3.png -------------------------------------------------------------------------------- /site/static/emojis/1f4b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4b4.png -------------------------------------------------------------------------------- /site/static/emojis/1f4b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4b5.png -------------------------------------------------------------------------------- /site/static/emojis/1f4b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4b6.png -------------------------------------------------------------------------------- /site/static/emojis/1f4b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4b7.png -------------------------------------------------------------------------------- /site/static/emojis/1f4b8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4b8.png -------------------------------------------------------------------------------- /site/static/emojis/1f4b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4b9.png -------------------------------------------------------------------------------- /site/static/emojis/1f4ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4ba.png -------------------------------------------------------------------------------- /site/static/emojis/1f4bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4bb.png -------------------------------------------------------------------------------- /site/static/emojis/1f4bc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4bc.png -------------------------------------------------------------------------------- /site/static/emojis/1f4bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4bd.png -------------------------------------------------------------------------------- /site/static/emojis/1f4be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4be.png -------------------------------------------------------------------------------- /site/static/emojis/1f4bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4bf.png -------------------------------------------------------------------------------- /site/static/emojis/1f4c0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4c0.png -------------------------------------------------------------------------------- /site/static/emojis/1f4c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4c1.png -------------------------------------------------------------------------------- /site/static/emojis/1f4c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4c2.png -------------------------------------------------------------------------------- /site/static/emojis/1f4c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4c3.png -------------------------------------------------------------------------------- /site/static/emojis/1f4c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4c4.png -------------------------------------------------------------------------------- /site/static/emojis/1f4c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4c5.png -------------------------------------------------------------------------------- /site/static/emojis/1f4c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4c6.png -------------------------------------------------------------------------------- /site/static/emojis/1f4c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4c7.png -------------------------------------------------------------------------------- /site/static/emojis/1f4c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4c8.png -------------------------------------------------------------------------------- /site/static/emojis/1f4c9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4c9.png -------------------------------------------------------------------------------- /site/static/emojis/1f4ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4ca.png -------------------------------------------------------------------------------- /site/static/emojis/1f4cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4cb.png -------------------------------------------------------------------------------- /site/static/emojis/1f4cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4cc.png -------------------------------------------------------------------------------- /site/static/emojis/1f4cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4cd.png -------------------------------------------------------------------------------- /site/static/emojis/1f4ce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4ce.png -------------------------------------------------------------------------------- /site/static/emojis/1f4cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4cf.png -------------------------------------------------------------------------------- /site/static/emojis/1f4d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4d0.png -------------------------------------------------------------------------------- /site/static/emojis/1f4d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4d1.png -------------------------------------------------------------------------------- /site/static/emojis/1f4d2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4d2.png -------------------------------------------------------------------------------- /site/static/emojis/1f4d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4d3.png -------------------------------------------------------------------------------- /site/static/emojis/1f4d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4d4.png -------------------------------------------------------------------------------- /site/static/emojis/1f4d5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4d5.png -------------------------------------------------------------------------------- /site/static/emojis/1f4d6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4d6.png -------------------------------------------------------------------------------- /site/static/emojis/1f4d7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4d7.png -------------------------------------------------------------------------------- /site/static/emojis/1f4d8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4d8.png -------------------------------------------------------------------------------- /site/static/emojis/1f4d9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4d9.png -------------------------------------------------------------------------------- /site/static/emojis/1f4da.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4da.png -------------------------------------------------------------------------------- /site/static/emojis/1f4db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4db.png -------------------------------------------------------------------------------- /site/static/emojis/1f4dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4dc.png -------------------------------------------------------------------------------- /site/static/emojis/1f4dd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4dd.png -------------------------------------------------------------------------------- /site/static/emojis/1f4de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4de.png -------------------------------------------------------------------------------- /site/static/emojis/1f4df.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4df.png -------------------------------------------------------------------------------- /site/static/emojis/1f4e0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4e0.png -------------------------------------------------------------------------------- /site/static/emojis/1f4e1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4e1.png -------------------------------------------------------------------------------- /site/static/emojis/1f4e2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4e2.png -------------------------------------------------------------------------------- /site/static/emojis/1f4e3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4e3.png -------------------------------------------------------------------------------- /site/static/emojis/1f4e4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4e4.png -------------------------------------------------------------------------------- /site/static/emojis/1f4e5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4e5.png -------------------------------------------------------------------------------- /site/static/emojis/1f4e6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4e6.png -------------------------------------------------------------------------------- /site/static/emojis/1f4e7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4e7.png -------------------------------------------------------------------------------- /site/static/emojis/1f4e8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4e8.png -------------------------------------------------------------------------------- /site/static/emojis/1f4e9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4e9.png -------------------------------------------------------------------------------- /site/static/emojis/1f4ea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4ea.png -------------------------------------------------------------------------------- /site/static/emojis/1f4eb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4eb.png -------------------------------------------------------------------------------- /site/static/emojis/1f4ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4ec.png -------------------------------------------------------------------------------- /site/static/emojis/1f4ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4ed.png -------------------------------------------------------------------------------- /site/static/emojis/1f4ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4ee.png -------------------------------------------------------------------------------- /site/static/emojis/1f4ef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4ef.png -------------------------------------------------------------------------------- /site/static/emojis/1f4f0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4f0.png -------------------------------------------------------------------------------- /site/static/emojis/1f4f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4f1.png -------------------------------------------------------------------------------- /site/static/emojis/1f4f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4f2.png -------------------------------------------------------------------------------- /site/static/emojis/1f4f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4f3.png -------------------------------------------------------------------------------- /site/static/emojis/1f4f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4f4.png -------------------------------------------------------------------------------- /site/static/emojis/1f4f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4f5.png -------------------------------------------------------------------------------- /site/static/emojis/1f4f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4f6.png -------------------------------------------------------------------------------- /site/static/emojis/1f4f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4f7.png -------------------------------------------------------------------------------- /site/static/emojis/1f4f8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4f8.png -------------------------------------------------------------------------------- /site/static/emojis/1f4f9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4f9.png -------------------------------------------------------------------------------- /site/static/emojis/1f4fa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4fa.png -------------------------------------------------------------------------------- /site/static/emojis/1f4fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4fb.png -------------------------------------------------------------------------------- /site/static/emojis/1f4fc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4fc.png -------------------------------------------------------------------------------- /site/static/emojis/1f4ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f4ff.png -------------------------------------------------------------------------------- /site/static/emojis/1f500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f500.png -------------------------------------------------------------------------------- /site/static/emojis/1f501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f501.png -------------------------------------------------------------------------------- /site/static/emojis/1f502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f502.png -------------------------------------------------------------------------------- /site/static/emojis/1f503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f503.png -------------------------------------------------------------------------------- /site/static/emojis/1f504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f504.png -------------------------------------------------------------------------------- /site/static/emojis/1f505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f505.png -------------------------------------------------------------------------------- /site/static/emojis/1f506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f506.png -------------------------------------------------------------------------------- /site/static/emojis/1f507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f507.png -------------------------------------------------------------------------------- /site/static/emojis/1f508.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f508.png -------------------------------------------------------------------------------- /site/static/emojis/1f509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f509.png -------------------------------------------------------------------------------- /site/static/emojis/1f50a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f50a.png -------------------------------------------------------------------------------- /site/static/emojis/1f50b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f50b.png -------------------------------------------------------------------------------- /site/static/emojis/1f50c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f50c.png -------------------------------------------------------------------------------- /site/static/emojis/1f50d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f50d.png -------------------------------------------------------------------------------- /site/static/emojis/1f50e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f50e.png -------------------------------------------------------------------------------- /site/static/emojis/1f50f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f50f.png -------------------------------------------------------------------------------- /site/static/emojis/1f510.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f510.png -------------------------------------------------------------------------------- /site/static/emojis/1f511.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f511.png -------------------------------------------------------------------------------- /site/static/emojis/1f512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f512.png -------------------------------------------------------------------------------- /site/static/emojis/1f513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f513.png -------------------------------------------------------------------------------- /site/static/emojis/1f514.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f514.png -------------------------------------------------------------------------------- /site/static/emojis/1f515.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f515.png -------------------------------------------------------------------------------- /site/static/emojis/1f516.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f516.png -------------------------------------------------------------------------------- /site/static/emojis/1f517.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/1f517.png -------------------------------------------------------------------------------- /site/static/emojis/231a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/231a.png -------------------------------------------------------------------------------- /site/static/emojis/231b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/231b.png -------------------------------------------------------------------------------- /site/static/emojis/23e9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/23e9.png -------------------------------------------------------------------------------- /site/static/emojis/23ea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/23ea.png -------------------------------------------------------------------------------- /site/static/emojis/23eb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/23eb.png -------------------------------------------------------------------------------- /site/static/emojis/23ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/23ec.png -------------------------------------------------------------------------------- /site/static/emojis/23f0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/23f0.png -------------------------------------------------------------------------------- /site/static/emojis/23f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/23f3.png -------------------------------------------------------------------------------- /site/static/emojis/25fd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/25fd.png -------------------------------------------------------------------------------- /site/static/emojis/25fe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/25fe.png -------------------------------------------------------------------------------- /site/static/emojis/2614.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2614.png -------------------------------------------------------------------------------- /site/static/emojis/2615.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2615.png -------------------------------------------------------------------------------- /site/static/emojis/2648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2648.png -------------------------------------------------------------------------------- /site/static/emojis/2649.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2649.png -------------------------------------------------------------------------------- /site/static/emojis/264a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/264a.png -------------------------------------------------------------------------------- /site/static/emojis/264b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/264b.png -------------------------------------------------------------------------------- /site/static/emojis/264c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/264c.png -------------------------------------------------------------------------------- /site/static/emojis/264d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/264d.png -------------------------------------------------------------------------------- /site/static/emojis/264e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/264e.png -------------------------------------------------------------------------------- /site/static/emojis/264f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/264f.png -------------------------------------------------------------------------------- /site/static/emojis/2650.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2650.png -------------------------------------------------------------------------------- /site/static/emojis/2651.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2651.png -------------------------------------------------------------------------------- /site/static/emojis/2652.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2652.png -------------------------------------------------------------------------------- /site/static/emojis/2653.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2653.png -------------------------------------------------------------------------------- /site/static/emojis/267f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/267f.png -------------------------------------------------------------------------------- /site/static/emojis/2693.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2693.png -------------------------------------------------------------------------------- /site/static/emojis/26a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26a1.png -------------------------------------------------------------------------------- /site/static/emojis/26aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26aa.png -------------------------------------------------------------------------------- /site/static/emojis/26ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26ab.png -------------------------------------------------------------------------------- /site/static/emojis/26bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26bd.png -------------------------------------------------------------------------------- /site/static/emojis/26be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26be.png -------------------------------------------------------------------------------- /site/static/emojis/26c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26c4.png -------------------------------------------------------------------------------- /site/static/emojis/26c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26c5.png -------------------------------------------------------------------------------- /site/static/emojis/26ce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26ce.png -------------------------------------------------------------------------------- /site/static/emojis/26d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26d4.png -------------------------------------------------------------------------------- /site/static/emojis/26ea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26ea.png -------------------------------------------------------------------------------- /site/static/emojis/26f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26f2.png -------------------------------------------------------------------------------- /site/static/emojis/26f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26f3.png -------------------------------------------------------------------------------- /site/static/emojis/26f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26f5.png -------------------------------------------------------------------------------- /site/static/emojis/26fa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26fa.png -------------------------------------------------------------------------------- /site/static/emojis/26fd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/26fd.png -------------------------------------------------------------------------------- /site/static/emojis/2705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2705.png -------------------------------------------------------------------------------- /site/static/emojis/270a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/270a.png -------------------------------------------------------------------------------- /site/static/emojis/270b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/270b.png -------------------------------------------------------------------------------- /site/static/emojis/2728.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2728.png -------------------------------------------------------------------------------- /site/static/emojis/274c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/274c.png -------------------------------------------------------------------------------- /site/static/emojis/274e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/274e.png -------------------------------------------------------------------------------- /site/static/emojis/2753.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2753.png -------------------------------------------------------------------------------- /site/static/emojis/2754.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2754.png -------------------------------------------------------------------------------- /site/static/emojis/2755.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2755.png -------------------------------------------------------------------------------- /site/static/emojis/2757.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2757.png -------------------------------------------------------------------------------- /site/static/emojis/2795.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2795.png -------------------------------------------------------------------------------- /site/static/emojis/2796.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2796.png -------------------------------------------------------------------------------- /site/static/emojis/2797.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2797.png -------------------------------------------------------------------------------- /site/static/emojis/27b0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/27b0.png -------------------------------------------------------------------------------- /site/static/emojis/27bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/27bf.png -------------------------------------------------------------------------------- /site/static/emojis/2b1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2b1b.png -------------------------------------------------------------------------------- /site/static/emojis/2b1c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2b1c.png -------------------------------------------------------------------------------- /site/static/emojis/2b50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2b50.png -------------------------------------------------------------------------------- /site/static/emojis/2b55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/emojis/2b55.png -------------------------------------------------------------------------------- /site/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/favicon.ico -------------------------------------------------------------------------------- /site/static/icon/aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/icon/aws.png -------------------------------------------------------------------------------- /site/static/icon/azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/icon/azure.png -------------------------------------------------------------------------------- /site/static/icon/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/icon/do.png -------------------------------------------------------------------------------- /site/static/icon/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/icon/docker.png -------------------------------------------------------------------------------- /site/static/icon/gcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/icon/gcp.png -------------------------------------------------------------------------------- /site/static/icon/k8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/icon/k8s.png -------------------------------------------------------------------------------- /site/static/icon/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/coder/43546336c99ea1bee9af57fd0a54ded38deebf41/site/static/icon/ruby.png -------------------------------------------------------------------------------- /tailnet/tailnettest/.gitignore: -------------------------------------------------------------------------------- 1 | gomock_*/ 2 | -------------------------------------------------------------------------------- /testutil/race_off.go: -------------------------------------------------------------------------------- 1 | //go:build !race 2 | 3 | package testutil 4 | 5 | const ( 6 | raceEnabled = false 7 | ) 8 | -------------------------------------------------------------------------------- /testutil/race_on.go: -------------------------------------------------------------------------------- 1 | //go:build race 2 | 3 | package testutil 4 | 5 | const ( 6 | raceEnabled = true 7 | ) 8 | --------------------------------------------------------------------------------