├── .babelrc ├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .editorconfig ├── .env.dev-no-axe ├── .env.development ├── .env.production ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ └── IMPROVE_SUGGESTIONS.md ├── PULL_REQUEST_TEMPLATE.md ├── auto-merge-bot.config.yml ├── img │ ├── 2020-03-16-16-05-37.png │ ├── 2020-03-16-16-09-47.png │ └── 2020-03-16-16-11-14.png ├── labeler.yml ├── renovate.json └── workflows │ ├── audit-staging.yml │ ├── build.yml │ ├── deploy-data.yml │ ├── deploy.yml │ ├── develop.yml │ ├── i18n_generator.yml │ ├── ogp_builder.yml │ ├── pr-labeler.yml │ ├── reviewdog.yml │ ├── staging.yml │ └── update-data.yml ├── .gitignore ├── .node-version ├── .nvmrc ├── .prettierrc ├── .vscode ├── cspell.json └── settings.json ├── .yarnrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── Dockerfile ├── FORKED_SITES.md ├── FOR_DEVELOPERS.md ├── LICENSE.txt ├── README.md ├── TRANSLATION.md ├── Vagrantfile ├── assets ├── README.md ├── global.scss ├── locales-kyoto │ └── ja.json ├── locales-mixed │ └── ja.js ├── locales │ ├── en.json │ ├── fr.json │ ├── ja-Hira.json │ ├── ja.json │ ├── ko.json │ ├── pt_BR.json │ ├── th.json │ ├── vi.json │ ├── zh_CN.json │ └── zh_TW.json ├── monitoringItemsTableCommon.scss └── variables.scss ├── auto-i18n ├── i18n_generator.py ├── kyoto-i18n.py ├── result.csv └── result_kyoto.csv ├── components ├── ActiveTokyoAlert.vue ├── AgencyBarChart.vue ├── CardsKyoto.vue ├── CardsMonitoring.vue ├── CardsReference.vue ├── ConfirmedCasesByMunicipalitiesTable.vue ├── ConfirmedCasesDetailsTable.vue ├── ConfirmedCasesIncreaseRatioByWeekChart.vue ├── DashedRectangleTimeBarChart.vue ├── DataSelector.vue ├── DataTable.vue ├── DataView.vue ├── DataViewBasicInfoPanel.vue ├── DataViewCustomInfoPanel.vue ├── DataViewDataSetPanel.vue ├── DataViewExpantionPanel.vue ├── DataViewShare.vue ├── DataViewTable.vue ├── DevelopmentModeMark.vue ├── ExternalLink.vue ├── LanguageSelector.vue ├── LinkToInformationAboutEmergencyMeasure.vue ├── LinkToInformationAboutRoadmap.vue ├── MenuList.vue ├── MetroBarChart.vue ├── MixedBarAndLineChart.vue ├── MonitoringCommentCard.vue ├── MonitoringCommentFrame.vue ├── MonitoringConfirmedCasesChart.vue ├── MonitoringConsultationDeskReportChart.vue ├── MonitoringItemsOverviewTableInfectionStatus.vue ├── MonitoringItemsOverviewTableMedicalSystem.vue ├── MonitoringItemsOverviewTableValueWithTranslatableUnit.vue ├── NoScript.vue ├── OpenDataLink.vue ├── PageHeader.vue ├── PositiveRateMixedChart.vue ├── PrinterButton.vue ├── README.md ├── ScrollableChart.vue ├── SevereCaseBarChart.vue ├── SideNavigation.vue ├── SiteTopUpper.vue ├── StaticCard.vue ├── StaticInfo.vue ├── TimeBarChart.vue ├── TimeStackedBarChart.vue ├── TokyoAlertCard.vue ├── UntrackedRateMixedChart.vue ├── WhatsNew.vue └── cards │ ├── AgencyCard.vue │ ├── CardRow.vue │ ├── ConfirmedCasesAttributesCard.vue │ ├── ConfirmedCasesByMunicipalitiesCard.vue │ ├── ConfirmedCasesDetailsCard.vue │ ├── ConfirmedCasesNumberCard.vue │ ├── ConsultationAboutFeverNumberCard.vue │ ├── HospitalizedNumberCard.vue │ ├── MetroCard.vue │ ├── MonitoringConfirmedCasesNumberCard.vue │ ├── MonitoringConsultationDeskReportsNumberCard.vue │ ├── MonitoringItemsOverviewCard.vue │ ├── PositiveNumberByDevelopedDateCard.vue │ ├── PositiveNumberByDiagnosedDateCard.vue │ ├── PositiveRateCard.vue │ ├── SevereCaseCard.vue │ ├── TelephoneAdvisoryReportsNumberCard.vue │ ├── TestedNumberCard.vue │ ├── TokyoRulesApplicationNumberCard.vue │ └── UntrackedRateCard.vue ├── data ├── agency.json ├── consultation_about_fever.json ├── daily_positive_detail.json ├── inspections_summary.json ├── last_update.json ├── main_summary.json ├── metro.json ├── monitoring_items.json ├── monitoring_status.json ├── news.json ├── patient.json ├── patients.json ├── patients_summary.json ├── positive_by_developed.json ├── positive_by_diagnosed.json ├── positive_rate.json ├── positive_status.json ├── tokyo_alert.json └── tokyo_rule.json ├── dist └── data │ └── .gitkeep ├── docker-compose.yml ├── docs ├── en │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FOR_DEVELOPERS.md │ └── README.md ├── es │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FOR_DEVELOPERS.md │ └── README.md ├── fr │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FOR_DEVELOPERS.md │ └── README.md ├── ko │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FOR_DEVELOPERS.md │ └── README.md ├── pt_BR │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FOR_DEVELOPERS.md │ └── README.md ├── th │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FOR_DEVELOPERS.md │ └── README.md ├── vi │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FOR_DEVELOPERS.md │ └── README.md ├── zh_CN │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FOR_DEVELOPERS.md │ ├── README.md │ └── TRANSLATION.md └── zh_TW │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FOR_DEVELOPERS.md │ ├── README.md │ └── TRANSLATION.md ├── jest.config.js ├── layouts ├── README.md ├── default.vue ├── error.vue └── print.vue ├── netlify.toml ├── nuxt-i18n.config.ts ├── nuxt.config.ts ├── ogp_invalidator ├── .env.sample ├── .gitignore ├── Dockerfile ├── README.md ├── docker-compose.yml ├── install_dependencies.sh └── twitter_card_invalidator.py ├── package.json ├── pages ├── README.md ├── about.vue ├── cards │ └── _card.vue ├── index.vue ├── parent.vue └── worker.vue ├── plugins ├── axe.ts ├── chartjs-adapter-dayjs.ts ├── vue-chart.ts └── vuetify.ts ├── pre-commit.sh ├── static ├── antenna.svg ├── apple-touch-icon-precomposed.png ├── covid.svg ├── data │ ├── 130001_tokyo_covid19_call_center.csv │ ├── 130001_tokyo_covid19_combined_telephone_advice_center.csv │ └── 130001_tokyo_covid19_patients.csv ├── earth.svg ├── facebook.png ├── facebook.webp ├── favicon.ico ├── flow │ ├── bed.svg │ ├── cond_anx.svg │ ├── cond_sy.svg │ ├── cond_sydr.svg │ └── phone.svg ├── github.png ├── github.webp ├── hlogo.gif ├── icon.png ├── line.png ├── line.webp ├── logo.svg ├── masktrash.svg ├── ogp.jpg ├── ogp │ ├── agency.png │ ├── attributes-of-confirmed-cases.png │ ├── chiyoda-visitors.png │ ├── details-of-confirmed-cases.png │ ├── details-of-tested-cases.png │ ├── details-of-tested-cases_.png │ ├── en │ │ ├── agency.png │ │ ├── attributes-of-confirmed-cases.png │ │ ├── chiyoda-visitors.png │ │ ├── details-of-confirmed-cases.png │ │ ├── details-of-tested-cases.png │ │ ├── details-of-tested-cases_.png │ │ ├── increase-ratio-of-confirmed-cases-by-daily.png │ │ ├── monitoring-number-of-confirmed-cases.png │ │ ├── monitoring-number-of-reports-to-covid19-consultation-desk.png │ │ ├── monitoring-status-overview.png │ │ ├── number-of-confirmed-cases.png │ │ ├── number-of-hospitalized.png │ │ ├── number-of-inspection-persons.png │ │ ├── number-of-inspection-persons_.png │ │ ├── number-of-reports-to-covid19-consultation-desk.png │ │ ├── number-of-reports-to-covid19-telephone-advisory-center.png │ │ ├── number-of-tested.png │ │ ├── ogp-image.png │ │ ├── positive-number-by-diagnosed-date.png │ │ ├── positive-rate.png │ │ ├── positive-status-severe-case.png │ │ ├── predicted-number-of-toei-subway-passengers.png │ │ ├── shinjuku-st-heatmap.png │ │ ├── shinjuku-visitors.png │ │ ├── tokyo-st-heatmap.png │ │ └── untracked-rate.png │ ├── increase-ratio-of-confirmed-cases-by-daily.png │ ├── ja-basic │ │ ├── agency.png │ │ ├── attributes-of-confirmed-cases.png │ │ ├── chiyoda-visitors.png │ │ ├── details-of-confirmed-cases.png │ │ ├── details-of-tested-cases.png │ │ ├── details-of-tested-cases_.png │ │ ├── increase-ratio-of-confirmed-cases-by-daily.png │ │ ├── monitoring-number-of-confirmed-cases.png │ │ ├── monitoring-number-of-reports-to-covid19-consultation-desk.png │ │ ├── monitoring-status-overview.png │ │ ├── number-of-confirmed-cases.png │ │ ├── number-of-hospitalized.png │ │ ├── number-of-inspection-persons.png │ │ ├── number-of-inspection-persons_.png │ │ ├── number-of-reports-to-covid19-consultation-desk.png │ │ ├── number-of-reports-to-covid19-telephone-advisory-center.png │ │ ├── number-of-tested.png │ │ ├── positive-number-by-diagnosed-date.png │ │ ├── positive-rate.png │ │ ├── positive-status-severe-case.png │ │ ├── predicted-number-of-toei-subway-passengers.png │ │ ├── shinjuku-st-heatmap.png │ │ ├── shinjuku-visitors.png │ │ ├── tokyo-st-heatmap.png │ │ └── untracked-rate.png │ ├── ko │ │ ├── agency.png │ │ ├── attributes-of-confirmed-cases.png │ │ ├── chiyoda-visitors.png │ │ ├── details-of-confirmed-cases.png │ │ ├── details-of-tested-cases.png │ │ ├── details-of-tested-cases_.png │ │ ├── increase-ratio-of-confirmed-cases-by-daily.png │ │ ├── monitoring-number-of-confirmed-cases.png │ │ ├── monitoring-number-of-reports-to-covid19-consultation-desk.png │ │ ├── monitoring-status-overview.png │ │ ├── number-of-confirmed-cases.png │ │ ├── number-of-hospitalized.png │ │ ├── number-of-inspection-persons.png │ │ ├── number-of-inspection-persons_.png │ │ ├── number-of-reports-to-covid19-consultation-desk.png │ │ ├── number-of-reports-to-covid19-telephone-advisory-center.png │ │ ├── number-of-tested.png │ │ ├── ogp-image.png │ │ ├── positive-number-by-diagnosed-date.png │ │ ├── positive-rate.png │ │ ├── positive-status-severe-case.png │ │ ├── predicted-number-of-toei-subway-passengers.png │ │ ├── shinjuku-st-heatmap.png │ │ ├── shinjuku-visitors.png │ │ ├── tokyo-st-heatmap.png │ │ └── untracked-rate.png │ ├── monitoring-number-of-confirmed-cases.png │ ├── monitoring-number-of-reports-to-covid19-consultation-desk.png │ ├── monitoring-status-overview.png │ ├── number-of-confirmed-cases.png │ ├── number-of-hospitalized.png │ ├── number-of-inspection-persons.png │ ├── number-of-inspection-persons_.png │ ├── number-of-reports-to-covid19-consultation-desk.png │ ├── number-of-reports-to-covid19-telephone-advisory-center.png │ ├── number-of-tested.png │ ├── positive-number-by-diagnosed-date.png │ ├── positive-rate.png │ ├── positive-status-severe-case.png │ ├── predicted-number-of-toei-subway-passengers.png │ ├── shinjuku-st-heatmap.png │ ├── shinjuku-visitors.png │ ├── tokyo-st-heatmap.png │ ├── untracked-rate.png │ ├── zh-cn │ │ ├── agency.png │ │ ├── attributes-of-confirmed-cases.png │ │ ├── chiyoda-visitors.png │ │ ├── details-of-confirmed-cases.png │ │ ├── details-of-tested-cases.png │ │ ├── details-of-tested-cases_.png │ │ ├── increase-ratio-of-confirmed-cases-by-daily.png │ │ ├── monitoring-number-of-confirmed-cases.png │ │ ├── monitoring-number-of-reports-to-covid19-consultation-desk.png │ │ ├── monitoring-status-overview.png │ │ ├── number-of-confirmed-cases.png │ │ ├── number-of-hospitalized.png │ │ ├── number-of-inspection-persons.png │ │ ├── number-of-inspection-persons_.png │ │ ├── number-of-reports-to-covid19-consultation-desk.png │ │ ├── number-of-reports-to-covid19-telephone-advisory-center.png │ │ ├── number-of-tested.png │ │ ├── ogp-image.png │ │ ├── positive-number-by-diagnosed-date.png │ │ ├── positive-rate.png │ │ ├── positive-status-severe-case.png │ │ ├── predicted-number-of-toei-subway-passengers.png │ │ ├── shinjuku-st-heatmap.png │ │ ├── shinjuku-visitors.png │ │ ├── tokyo-st-heatmap.png │ │ └── untracked-rate.png │ └── zh-tw │ │ ├── agency.png │ │ ├── attributes-of-confirmed-cases.png │ │ ├── chiyoda-visitors.png │ │ ├── details-of-confirmed-cases.png │ │ ├── details-of-tested-cases.png │ │ ├── details-of-tested-cases_.png │ │ ├── increase-ratio-of-confirmed-cases-by-daily.png │ │ ├── monitoring-number-of-confirmed-cases.png │ │ ├── monitoring-number-of-reports-to-covid19-consultation-desk.png │ │ ├── monitoring-status-overview.png │ │ ├── number-of-confirmed-cases.png │ │ ├── number-of-hospitalized.png │ │ ├── number-of-inspection-persons.png │ │ ├── number-of-inspection-persons_.png │ │ ├── number-of-reports-to-covid19-consultation-desk.png │ │ ├── number-of-reports-to-covid19-telephone-advisory-center.png │ │ ├── number-of-tested.png │ │ ├── ogp-image.png │ │ ├── positive-number-by-diagnosed-date.png │ │ ├── positive-rate.png │ │ ├── positive-status-severe-case.png │ │ ├── predicted-number-of-toei-subway-passengers.png │ │ ├── shinjuku-st-heatmap.png │ │ ├── shinjuku-visitors.png │ │ ├── tokyo-st-heatmap.png │ │ └── untracked-rate.png ├── parent.svg ├── printer-white.svg ├── printer.svg ├── robots.txt ├── selectmenu.svg ├── site-qr.svg ├── twitter.png ├── twitter.webp ├── youtube.png └── youtube.webp ├── stylelint.config.js ├── tsconfig.json ├── types ├── chart.d.ts ├── shims-sfc.d.ts ├── shims-vue.d.ts └── svg-shim.d.ts ├── ui-test ├── delete_fbcache.sh ├── dummy.json ├── list_fbcashe.sh ├── ogp_screenshot.py └── screenshot.py ├── utils ├── card-event-bus.ts ├── colors.ts ├── formatConfirmedCases.ts ├── formatDate.ts ├── formatDayBeforeRatio.ts ├── formatGraph.ts ├── formatMonitoringItems.ts ├── formatTable.ts ├── formatTestedCases.ts ├── i18nUtils.ts ├── monitoringStatusValueFormatters.ts ├── tab-event-bus.ts └── vueScrollTo.ts ├── vagrant_provision.sh └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.babelrc -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | node_modules 3 | .nuxt 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.dev-no-axe: -------------------------------------------------------------------------------- 1 | VUE_AXE=false 2 | -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- 1 | VUE_AXE=true 2 | -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/IMPROVE_SUGGESTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/ISSUE_TEMPLATE/IMPROVE_SUGGESTIONS.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-merge-bot.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/auto-merge-bot.config.yml -------------------------------------------------------------------------------- /.github/img/2020-03-16-16-05-37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/img/2020-03-16-16-05-37.png -------------------------------------------------------------------------------- /.github/img/2020-03-16-16-09-47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/img/2020-03-16-16-09-47.png -------------------------------------------------------------------------------- /.github/img/2020-03-16-16-11-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/img/2020-03-16-16-11-14.png -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- 1 | auto_merge: 2 | - assets/locales/*.json 3 | -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/audit-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/workflows/audit-staging.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/workflows/deploy-data.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/workflows/develop.yml -------------------------------------------------------------------------------- /.github/workflows/i18n_generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/workflows/i18n_generator.yml -------------------------------------------------------------------------------- /.github/workflows/ogp_builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/workflows/ogp_builder.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/workflows/pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/reviewdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/workflows/reviewdog.yml -------------------------------------------------------------------------------- /.github/workflows/staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/workflows/staging.yml -------------------------------------------------------------------------------- /.github/workflows/update-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.github/workflows/update-data.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 12.22.8 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.22.8 2 | 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.vscode/cspell.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/.yarnrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/Dockerfile -------------------------------------------------------------------------------- /FORKED_SITES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/FORKED_SITES.md -------------------------------------------------------------------------------- /FOR_DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/FOR_DEVELOPERS.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/README.md -------------------------------------------------------------------------------- /TRANSLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/TRANSLATION.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/Vagrantfile -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/global.scss -------------------------------------------------------------------------------- /assets/locales-kyoto/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/locales-kyoto/ja.json -------------------------------------------------------------------------------- /assets/locales-mixed/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/locales-mixed/ja.js -------------------------------------------------------------------------------- /assets/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/locales/en.json -------------------------------------------------------------------------------- /assets/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/locales/fr.json -------------------------------------------------------------------------------- /assets/locales/ja-Hira.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/locales/ja-Hira.json -------------------------------------------------------------------------------- /assets/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/locales/ja.json -------------------------------------------------------------------------------- /assets/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/locales/ko.json -------------------------------------------------------------------------------- /assets/locales/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/locales/pt_BR.json -------------------------------------------------------------------------------- /assets/locales/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/locales/th.json -------------------------------------------------------------------------------- /assets/locales/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/locales/vi.json -------------------------------------------------------------------------------- /assets/locales/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/locales/zh_CN.json -------------------------------------------------------------------------------- /assets/locales/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/locales/zh_TW.json -------------------------------------------------------------------------------- /assets/monitoringItemsTableCommon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/monitoringItemsTableCommon.scss -------------------------------------------------------------------------------- /assets/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/assets/variables.scss -------------------------------------------------------------------------------- /auto-i18n/i18n_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/auto-i18n/i18n_generator.py -------------------------------------------------------------------------------- /auto-i18n/kyoto-i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/auto-i18n/kyoto-i18n.py -------------------------------------------------------------------------------- /auto-i18n/result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/auto-i18n/result.csv -------------------------------------------------------------------------------- /auto-i18n/result_kyoto.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/auto-i18n/result_kyoto.csv -------------------------------------------------------------------------------- /components/ActiveTokyoAlert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/ActiveTokyoAlert.vue -------------------------------------------------------------------------------- /components/AgencyBarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/AgencyBarChart.vue -------------------------------------------------------------------------------- /components/CardsKyoto.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/CardsKyoto.vue -------------------------------------------------------------------------------- /components/CardsMonitoring.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/CardsMonitoring.vue -------------------------------------------------------------------------------- /components/CardsReference.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/CardsReference.vue -------------------------------------------------------------------------------- /components/ConfirmedCasesByMunicipalitiesTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/ConfirmedCasesByMunicipalitiesTable.vue -------------------------------------------------------------------------------- /components/ConfirmedCasesDetailsTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/ConfirmedCasesDetailsTable.vue -------------------------------------------------------------------------------- /components/ConfirmedCasesIncreaseRatioByWeekChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/ConfirmedCasesIncreaseRatioByWeekChart.vue -------------------------------------------------------------------------------- /components/DashedRectangleTimeBarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/DashedRectangleTimeBarChart.vue -------------------------------------------------------------------------------- /components/DataSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/DataSelector.vue -------------------------------------------------------------------------------- /components/DataTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/DataTable.vue -------------------------------------------------------------------------------- /components/DataView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/DataView.vue -------------------------------------------------------------------------------- /components/DataViewBasicInfoPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/DataViewBasicInfoPanel.vue -------------------------------------------------------------------------------- /components/DataViewCustomInfoPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/DataViewCustomInfoPanel.vue -------------------------------------------------------------------------------- /components/DataViewDataSetPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/DataViewDataSetPanel.vue -------------------------------------------------------------------------------- /components/DataViewExpantionPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/DataViewExpantionPanel.vue -------------------------------------------------------------------------------- /components/DataViewShare.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/DataViewShare.vue -------------------------------------------------------------------------------- /components/DataViewTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/DataViewTable.vue -------------------------------------------------------------------------------- /components/DevelopmentModeMark.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/DevelopmentModeMark.vue -------------------------------------------------------------------------------- /components/ExternalLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/ExternalLink.vue -------------------------------------------------------------------------------- /components/LanguageSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/LanguageSelector.vue -------------------------------------------------------------------------------- /components/LinkToInformationAboutEmergencyMeasure.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/LinkToInformationAboutEmergencyMeasure.vue -------------------------------------------------------------------------------- /components/LinkToInformationAboutRoadmap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/LinkToInformationAboutRoadmap.vue -------------------------------------------------------------------------------- /components/MenuList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/MenuList.vue -------------------------------------------------------------------------------- /components/MetroBarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/MetroBarChart.vue -------------------------------------------------------------------------------- /components/MixedBarAndLineChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/MixedBarAndLineChart.vue -------------------------------------------------------------------------------- /components/MonitoringCommentCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/MonitoringCommentCard.vue -------------------------------------------------------------------------------- /components/MonitoringCommentFrame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/MonitoringCommentFrame.vue -------------------------------------------------------------------------------- /components/MonitoringConfirmedCasesChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/MonitoringConfirmedCasesChart.vue -------------------------------------------------------------------------------- /components/MonitoringConsultationDeskReportChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/MonitoringConsultationDeskReportChart.vue -------------------------------------------------------------------------------- /components/MonitoringItemsOverviewTableInfectionStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/MonitoringItemsOverviewTableInfectionStatus.vue -------------------------------------------------------------------------------- /components/MonitoringItemsOverviewTableMedicalSystem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/MonitoringItemsOverviewTableMedicalSystem.vue -------------------------------------------------------------------------------- /components/MonitoringItemsOverviewTableValueWithTranslatableUnit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/MonitoringItemsOverviewTableValueWithTranslatableUnit.vue -------------------------------------------------------------------------------- /components/NoScript.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/NoScript.vue -------------------------------------------------------------------------------- /components/OpenDataLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/OpenDataLink.vue -------------------------------------------------------------------------------- /components/PageHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/PageHeader.vue -------------------------------------------------------------------------------- /components/PositiveRateMixedChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/PositiveRateMixedChart.vue -------------------------------------------------------------------------------- /components/PrinterButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/PrinterButton.vue -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/README.md -------------------------------------------------------------------------------- /components/ScrollableChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/ScrollableChart.vue -------------------------------------------------------------------------------- /components/SevereCaseBarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/SevereCaseBarChart.vue -------------------------------------------------------------------------------- /components/SideNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/SideNavigation.vue -------------------------------------------------------------------------------- /components/SiteTopUpper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/SiteTopUpper.vue -------------------------------------------------------------------------------- /components/StaticCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/StaticCard.vue -------------------------------------------------------------------------------- /components/StaticInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/StaticInfo.vue -------------------------------------------------------------------------------- /components/TimeBarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/TimeBarChart.vue -------------------------------------------------------------------------------- /components/TimeStackedBarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/TimeStackedBarChart.vue -------------------------------------------------------------------------------- /components/TokyoAlertCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/TokyoAlertCard.vue -------------------------------------------------------------------------------- /components/UntrackedRateMixedChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/UntrackedRateMixedChart.vue -------------------------------------------------------------------------------- /components/WhatsNew.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/WhatsNew.vue -------------------------------------------------------------------------------- /components/cards/AgencyCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/AgencyCard.vue -------------------------------------------------------------------------------- /components/cards/CardRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/CardRow.vue -------------------------------------------------------------------------------- /components/cards/ConfirmedCasesAttributesCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/ConfirmedCasesAttributesCard.vue -------------------------------------------------------------------------------- /components/cards/ConfirmedCasesByMunicipalitiesCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/ConfirmedCasesByMunicipalitiesCard.vue -------------------------------------------------------------------------------- /components/cards/ConfirmedCasesDetailsCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/ConfirmedCasesDetailsCard.vue -------------------------------------------------------------------------------- /components/cards/ConfirmedCasesNumberCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/ConfirmedCasesNumberCard.vue -------------------------------------------------------------------------------- /components/cards/ConsultationAboutFeverNumberCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/ConsultationAboutFeverNumberCard.vue -------------------------------------------------------------------------------- /components/cards/HospitalizedNumberCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/HospitalizedNumberCard.vue -------------------------------------------------------------------------------- /components/cards/MetroCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/MetroCard.vue -------------------------------------------------------------------------------- /components/cards/MonitoringConfirmedCasesNumberCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/MonitoringConfirmedCasesNumberCard.vue -------------------------------------------------------------------------------- /components/cards/MonitoringConsultationDeskReportsNumberCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/MonitoringConsultationDeskReportsNumberCard.vue -------------------------------------------------------------------------------- /components/cards/MonitoringItemsOverviewCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/MonitoringItemsOverviewCard.vue -------------------------------------------------------------------------------- /components/cards/PositiveNumberByDevelopedDateCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/PositiveNumberByDevelopedDateCard.vue -------------------------------------------------------------------------------- /components/cards/PositiveNumberByDiagnosedDateCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/PositiveNumberByDiagnosedDateCard.vue -------------------------------------------------------------------------------- /components/cards/PositiveRateCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/PositiveRateCard.vue -------------------------------------------------------------------------------- /components/cards/SevereCaseCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/SevereCaseCard.vue -------------------------------------------------------------------------------- /components/cards/TelephoneAdvisoryReportsNumberCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/TelephoneAdvisoryReportsNumberCard.vue -------------------------------------------------------------------------------- /components/cards/TestedNumberCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/TestedNumberCard.vue -------------------------------------------------------------------------------- /components/cards/TokyoRulesApplicationNumberCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/TokyoRulesApplicationNumberCard.vue -------------------------------------------------------------------------------- /components/cards/UntrackedRateCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/components/cards/UntrackedRateCard.vue -------------------------------------------------------------------------------- /data/agency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/agency.json -------------------------------------------------------------------------------- /data/consultation_about_fever.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/consultation_about_fever.json -------------------------------------------------------------------------------- /data/daily_positive_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/daily_positive_detail.json -------------------------------------------------------------------------------- /data/inspections_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/inspections_summary.json -------------------------------------------------------------------------------- /data/last_update.json: -------------------------------------------------------------------------------- 1 | { 2 | "last_update": "2022/09/27 00:30" 3 | } -------------------------------------------------------------------------------- /data/main_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/main_summary.json -------------------------------------------------------------------------------- /data/metro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/metro.json -------------------------------------------------------------------------------- /data/monitoring_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/monitoring_items.json -------------------------------------------------------------------------------- /data/monitoring_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/monitoring_status.json -------------------------------------------------------------------------------- /data/news.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/news.json -------------------------------------------------------------------------------- /data/patient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/patient.json -------------------------------------------------------------------------------- /data/patients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/patients.json -------------------------------------------------------------------------------- /data/patients_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/patients_summary.json -------------------------------------------------------------------------------- /data/positive_by_developed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/positive_by_developed.json -------------------------------------------------------------------------------- /data/positive_by_diagnosed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/positive_by_diagnosed.json -------------------------------------------------------------------------------- /data/positive_rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/positive_rate.json -------------------------------------------------------------------------------- /data/positive_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/positive_status.json -------------------------------------------------------------------------------- /data/tokyo_alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/tokyo_alert.json -------------------------------------------------------------------------------- /data/tokyo_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/data/tokyo_rule.json -------------------------------------------------------------------------------- /dist/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/en/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/en/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/en/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/en/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/en/FOR_DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/en/FOR_DEVELOPERS.md -------------------------------------------------------------------------------- /docs/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/en/README.md -------------------------------------------------------------------------------- /docs/es/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/es/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/es/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/es/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/es/FOR_DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/es/FOR_DEVELOPERS.md -------------------------------------------------------------------------------- /docs/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/es/README.md -------------------------------------------------------------------------------- /docs/fr/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/fr/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/fr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/fr/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/fr/FOR_DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/fr/FOR_DEVELOPERS.md -------------------------------------------------------------------------------- /docs/fr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/fr/README.md -------------------------------------------------------------------------------- /docs/ko/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/ko/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/ko/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/ko/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/ko/FOR_DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/ko/FOR_DEVELOPERS.md -------------------------------------------------------------------------------- /docs/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/ko/README.md -------------------------------------------------------------------------------- /docs/pt_BR/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/pt_BR/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/pt_BR/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/pt_BR/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/pt_BR/FOR_DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/pt_BR/FOR_DEVELOPERS.md -------------------------------------------------------------------------------- /docs/pt_BR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/pt_BR/README.md -------------------------------------------------------------------------------- /docs/th/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/th/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/th/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/th/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/th/FOR_DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/th/FOR_DEVELOPERS.md -------------------------------------------------------------------------------- /docs/th/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/th/README.md -------------------------------------------------------------------------------- /docs/vi/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/vi/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/vi/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/vi/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/vi/FOR_DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/vi/FOR_DEVELOPERS.md -------------------------------------------------------------------------------- /docs/vi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/vi/README.md -------------------------------------------------------------------------------- /docs/zh_CN/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/zh_CN/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/zh_CN/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/zh_CN/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/zh_CN/FOR_DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/zh_CN/FOR_DEVELOPERS.md -------------------------------------------------------------------------------- /docs/zh_CN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/zh_CN/README.md -------------------------------------------------------------------------------- /docs/zh_CN/TRANSLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/zh_CN/TRANSLATION.md -------------------------------------------------------------------------------- /docs/zh_TW/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/zh_TW/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/zh_TW/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/zh_TW/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/zh_TW/FOR_DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/zh_TW/FOR_DEVELOPERS.md -------------------------------------------------------------------------------- /docs/zh_TW/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/zh_TW/README.md -------------------------------------------------------------------------------- /docs/zh_TW/TRANSLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/docs/zh_TW/TRANSLATION.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/jest.config.js -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /layouts/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/layouts/error.vue -------------------------------------------------------------------------------- /layouts/print.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/layouts/print.vue -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/netlify.toml -------------------------------------------------------------------------------- /nuxt-i18n.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/nuxt-i18n.config.ts -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /ogp_invalidator/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/ogp_invalidator/.env.sample -------------------------------------------------------------------------------- /ogp_invalidator/.gitignore: -------------------------------------------------------------------------------- 1 | out/* 2 | -------------------------------------------------------------------------------- /ogp_invalidator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/ogp_invalidator/Dockerfile -------------------------------------------------------------------------------- /ogp_invalidator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/ogp_invalidator/README.md -------------------------------------------------------------------------------- /ogp_invalidator/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/ogp_invalidator/docker-compose.yml -------------------------------------------------------------------------------- /ogp_invalidator/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/ogp_invalidator/install_dependencies.sh -------------------------------------------------------------------------------- /ogp_invalidator/twitter_card_invalidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/ogp_invalidator/twitter_card_invalidator.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/package.json -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/pages/README.md -------------------------------------------------------------------------------- /pages/about.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/pages/about.vue -------------------------------------------------------------------------------- /pages/cards/_card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/pages/cards/_card.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/parent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/pages/parent.vue -------------------------------------------------------------------------------- /pages/worker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/pages/worker.vue -------------------------------------------------------------------------------- /plugins/axe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/plugins/axe.ts -------------------------------------------------------------------------------- /plugins/chartjs-adapter-dayjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/plugins/chartjs-adapter-dayjs.ts -------------------------------------------------------------------------------- /plugins/vue-chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/plugins/vue-chart.ts -------------------------------------------------------------------------------- /plugins/vuetify.ts: -------------------------------------------------------------------------------- 1 | import '@mdi/font/css/materialdesignicons.css' 2 | -------------------------------------------------------------------------------- /pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/pre-commit.sh -------------------------------------------------------------------------------- /static/antenna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/antenna.svg -------------------------------------------------------------------------------- /static/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /static/covid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/covid.svg -------------------------------------------------------------------------------- /static/data/130001_tokyo_covid19_call_center.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/data/130001_tokyo_covid19_call_center.csv -------------------------------------------------------------------------------- /static/data/130001_tokyo_covid19_combined_telephone_advice_center.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/data/130001_tokyo_covid19_combined_telephone_advice_center.csv -------------------------------------------------------------------------------- /static/data/130001_tokyo_covid19_patients.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/data/130001_tokyo_covid19_patients.csv -------------------------------------------------------------------------------- /static/earth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/earth.svg -------------------------------------------------------------------------------- /static/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/facebook.png -------------------------------------------------------------------------------- /static/facebook.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/facebook.webp -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/flow/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/flow/bed.svg -------------------------------------------------------------------------------- /static/flow/cond_anx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/flow/cond_anx.svg -------------------------------------------------------------------------------- /static/flow/cond_sy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/flow/cond_sy.svg -------------------------------------------------------------------------------- /static/flow/cond_sydr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/flow/cond_sydr.svg -------------------------------------------------------------------------------- /static/flow/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/flow/phone.svg -------------------------------------------------------------------------------- /static/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/github.png -------------------------------------------------------------------------------- /static/github.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/github.webp -------------------------------------------------------------------------------- /static/hlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/hlogo.gif -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/line.png -------------------------------------------------------------------------------- /static/line.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/line.webp -------------------------------------------------------------------------------- /static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/logo.svg -------------------------------------------------------------------------------- /static/masktrash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/masktrash.svg -------------------------------------------------------------------------------- /static/ogp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp.jpg -------------------------------------------------------------------------------- /static/ogp/agency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/agency.png -------------------------------------------------------------------------------- /static/ogp/attributes-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/attributes-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/chiyoda-visitors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/chiyoda-visitors.png -------------------------------------------------------------------------------- /static/ogp/details-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/details-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/details-of-tested-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/details-of-tested-cases.png -------------------------------------------------------------------------------- /static/ogp/details-of-tested-cases_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/details-of-tested-cases_.png -------------------------------------------------------------------------------- /static/ogp/en/agency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/agency.png -------------------------------------------------------------------------------- /static/ogp/en/attributes-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/attributes-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/en/chiyoda-visitors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/chiyoda-visitors.png -------------------------------------------------------------------------------- /static/ogp/en/details-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/details-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/en/details-of-tested-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/details-of-tested-cases.png -------------------------------------------------------------------------------- /static/ogp/en/details-of-tested-cases_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/details-of-tested-cases_.png -------------------------------------------------------------------------------- /static/ogp/en/increase-ratio-of-confirmed-cases-by-daily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/increase-ratio-of-confirmed-cases-by-daily.png -------------------------------------------------------------------------------- /static/ogp/en/monitoring-number-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/monitoring-number-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/en/monitoring-number-of-reports-to-covid19-consultation-desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/monitoring-number-of-reports-to-covid19-consultation-desk.png -------------------------------------------------------------------------------- /static/ogp/en/monitoring-status-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/monitoring-status-overview.png -------------------------------------------------------------------------------- /static/ogp/en/number-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/number-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/en/number-of-hospitalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/number-of-hospitalized.png -------------------------------------------------------------------------------- /static/ogp/en/number-of-inspection-persons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/number-of-inspection-persons.png -------------------------------------------------------------------------------- /static/ogp/en/number-of-inspection-persons_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/number-of-inspection-persons_.png -------------------------------------------------------------------------------- /static/ogp/en/number-of-reports-to-covid19-consultation-desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/number-of-reports-to-covid19-consultation-desk.png -------------------------------------------------------------------------------- /static/ogp/en/number-of-reports-to-covid19-telephone-advisory-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/number-of-reports-to-covid19-telephone-advisory-center.png -------------------------------------------------------------------------------- /static/ogp/en/number-of-tested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/number-of-tested.png -------------------------------------------------------------------------------- /static/ogp/en/ogp-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/ogp-image.png -------------------------------------------------------------------------------- /static/ogp/en/positive-number-by-diagnosed-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/positive-number-by-diagnosed-date.png -------------------------------------------------------------------------------- /static/ogp/en/positive-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/positive-rate.png -------------------------------------------------------------------------------- /static/ogp/en/positive-status-severe-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/positive-status-severe-case.png -------------------------------------------------------------------------------- /static/ogp/en/predicted-number-of-toei-subway-passengers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/predicted-number-of-toei-subway-passengers.png -------------------------------------------------------------------------------- /static/ogp/en/shinjuku-st-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/shinjuku-st-heatmap.png -------------------------------------------------------------------------------- /static/ogp/en/shinjuku-visitors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/shinjuku-visitors.png -------------------------------------------------------------------------------- /static/ogp/en/tokyo-st-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/tokyo-st-heatmap.png -------------------------------------------------------------------------------- /static/ogp/en/untracked-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/en/untracked-rate.png -------------------------------------------------------------------------------- /static/ogp/increase-ratio-of-confirmed-cases-by-daily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/increase-ratio-of-confirmed-cases-by-daily.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/agency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/agency.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/attributes-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/attributes-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/chiyoda-visitors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/chiyoda-visitors.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/details-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/details-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/details-of-tested-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/details-of-tested-cases.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/details-of-tested-cases_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/details-of-tested-cases_.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/increase-ratio-of-confirmed-cases-by-daily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/increase-ratio-of-confirmed-cases-by-daily.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/monitoring-number-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/monitoring-number-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/monitoring-number-of-reports-to-covid19-consultation-desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/monitoring-number-of-reports-to-covid19-consultation-desk.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/monitoring-status-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/monitoring-status-overview.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/number-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/number-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/number-of-hospitalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/number-of-hospitalized.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/number-of-inspection-persons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/number-of-inspection-persons.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/number-of-inspection-persons_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/number-of-inspection-persons_.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/number-of-reports-to-covid19-consultation-desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/number-of-reports-to-covid19-consultation-desk.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/number-of-reports-to-covid19-telephone-advisory-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/number-of-reports-to-covid19-telephone-advisory-center.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/number-of-tested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/number-of-tested.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/positive-number-by-diagnosed-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/positive-number-by-diagnosed-date.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/positive-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/positive-rate.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/positive-status-severe-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/positive-status-severe-case.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/predicted-number-of-toei-subway-passengers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/predicted-number-of-toei-subway-passengers.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/shinjuku-st-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/shinjuku-st-heatmap.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/shinjuku-visitors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/shinjuku-visitors.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/tokyo-st-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/tokyo-st-heatmap.png -------------------------------------------------------------------------------- /static/ogp/ja-basic/untracked-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ja-basic/untracked-rate.png -------------------------------------------------------------------------------- /static/ogp/ko/agency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/agency.png -------------------------------------------------------------------------------- /static/ogp/ko/attributes-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/attributes-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/ko/chiyoda-visitors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/chiyoda-visitors.png -------------------------------------------------------------------------------- /static/ogp/ko/details-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/details-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/ko/details-of-tested-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/details-of-tested-cases.png -------------------------------------------------------------------------------- /static/ogp/ko/details-of-tested-cases_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/details-of-tested-cases_.png -------------------------------------------------------------------------------- /static/ogp/ko/increase-ratio-of-confirmed-cases-by-daily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/increase-ratio-of-confirmed-cases-by-daily.png -------------------------------------------------------------------------------- /static/ogp/ko/monitoring-number-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/monitoring-number-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/ko/monitoring-number-of-reports-to-covid19-consultation-desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/monitoring-number-of-reports-to-covid19-consultation-desk.png -------------------------------------------------------------------------------- /static/ogp/ko/monitoring-status-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/monitoring-status-overview.png -------------------------------------------------------------------------------- /static/ogp/ko/number-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/number-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/ko/number-of-hospitalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/number-of-hospitalized.png -------------------------------------------------------------------------------- /static/ogp/ko/number-of-inspection-persons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/number-of-inspection-persons.png -------------------------------------------------------------------------------- /static/ogp/ko/number-of-inspection-persons_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/number-of-inspection-persons_.png -------------------------------------------------------------------------------- /static/ogp/ko/number-of-reports-to-covid19-consultation-desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/number-of-reports-to-covid19-consultation-desk.png -------------------------------------------------------------------------------- /static/ogp/ko/number-of-reports-to-covid19-telephone-advisory-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/number-of-reports-to-covid19-telephone-advisory-center.png -------------------------------------------------------------------------------- /static/ogp/ko/number-of-tested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/number-of-tested.png -------------------------------------------------------------------------------- /static/ogp/ko/ogp-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/ogp-image.png -------------------------------------------------------------------------------- /static/ogp/ko/positive-number-by-diagnosed-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/positive-number-by-diagnosed-date.png -------------------------------------------------------------------------------- /static/ogp/ko/positive-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/positive-rate.png -------------------------------------------------------------------------------- /static/ogp/ko/positive-status-severe-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/positive-status-severe-case.png -------------------------------------------------------------------------------- /static/ogp/ko/predicted-number-of-toei-subway-passengers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/predicted-number-of-toei-subway-passengers.png -------------------------------------------------------------------------------- /static/ogp/ko/shinjuku-st-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/shinjuku-st-heatmap.png -------------------------------------------------------------------------------- /static/ogp/ko/shinjuku-visitors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/shinjuku-visitors.png -------------------------------------------------------------------------------- /static/ogp/ko/tokyo-st-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/tokyo-st-heatmap.png -------------------------------------------------------------------------------- /static/ogp/ko/untracked-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/ko/untracked-rate.png -------------------------------------------------------------------------------- /static/ogp/monitoring-number-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/monitoring-number-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/monitoring-number-of-reports-to-covid19-consultation-desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/monitoring-number-of-reports-to-covid19-consultation-desk.png -------------------------------------------------------------------------------- /static/ogp/monitoring-status-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/monitoring-status-overview.png -------------------------------------------------------------------------------- /static/ogp/number-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/number-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/number-of-hospitalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/number-of-hospitalized.png -------------------------------------------------------------------------------- /static/ogp/number-of-inspection-persons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/number-of-inspection-persons.png -------------------------------------------------------------------------------- /static/ogp/number-of-inspection-persons_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/number-of-inspection-persons_.png -------------------------------------------------------------------------------- /static/ogp/number-of-reports-to-covid19-consultation-desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/number-of-reports-to-covid19-consultation-desk.png -------------------------------------------------------------------------------- /static/ogp/number-of-reports-to-covid19-telephone-advisory-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/number-of-reports-to-covid19-telephone-advisory-center.png -------------------------------------------------------------------------------- /static/ogp/number-of-tested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/number-of-tested.png -------------------------------------------------------------------------------- /static/ogp/positive-number-by-diagnosed-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/positive-number-by-diagnosed-date.png -------------------------------------------------------------------------------- /static/ogp/positive-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/positive-rate.png -------------------------------------------------------------------------------- /static/ogp/positive-status-severe-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/positive-status-severe-case.png -------------------------------------------------------------------------------- /static/ogp/predicted-number-of-toei-subway-passengers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/predicted-number-of-toei-subway-passengers.png -------------------------------------------------------------------------------- /static/ogp/shinjuku-st-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/shinjuku-st-heatmap.png -------------------------------------------------------------------------------- /static/ogp/shinjuku-visitors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/shinjuku-visitors.png -------------------------------------------------------------------------------- /static/ogp/tokyo-st-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/tokyo-st-heatmap.png -------------------------------------------------------------------------------- /static/ogp/untracked-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/untracked-rate.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/agency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/agency.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/attributes-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/attributes-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/chiyoda-visitors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/chiyoda-visitors.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/details-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/details-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/details-of-tested-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/details-of-tested-cases.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/details-of-tested-cases_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/details-of-tested-cases_.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/increase-ratio-of-confirmed-cases-by-daily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/increase-ratio-of-confirmed-cases-by-daily.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/monitoring-number-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/monitoring-number-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/monitoring-number-of-reports-to-covid19-consultation-desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/monitoring-number-of-reports-to-covid19-consultation-desk.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/monitoring-status-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/monitoring-status-overview.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/number-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/number-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/number-of-hospitalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/number-of-hospitalized.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/number-of-inspection-persons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/number-of-inspection-persons.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/number-of-inspection-persons_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/number-of-inspection-persons_.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/number-of-reports-to-covid19-consultation-desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/number-of-reports-to-covid19-consultation-desk.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/number-of-reports-to-covid19-telephone-advisory-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/number-of-reports-to-covid19-telephone-advisory-center.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/number-of-tested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/number-of-tested.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/ogp-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/ogp-image.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/positive-number-by-diagnosed-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/positive-number-by-diagnosed-date.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/positive-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/positive-rate.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/positive-status-severe-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/positive-status-severe-case.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/predicted-number-of-toei-subway-passengers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/predicted-number-of-toei-subway-passengers.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/shinjuku-st-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/shinjuku-st-heatmap.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/shinjuku-visitors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/shinjuku-visitors.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/tokyo-st-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/tokyo-st-heatmap.png -------------------------------------------------------------------------------- /static/ogp/zh-cn/untracked-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-cn/untracked-rate.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/agency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/agency.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/attributes-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/attributes-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/chiyoda-visitors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/chiyoda-visitors.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/details-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/details-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/details-of-tested-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/details-of-tested-cases.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/details-of-tested-cases_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/details-of-tested-cases_.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/increase-ratio-of-confirmed-cases-by-daily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/increase-ratio-of-confirmed-cases-by-daily.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/monitoring-number-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/monitoring-number-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/monitoring-number-of-reports-to-covid19-consultation-desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/monitoring-number-of-reports-to-covid19-consultation-desk.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/monitoring-status-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/monitoring-status-overview.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/number-of-confirmed-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/number-of-confirmed-cases.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/number-of-hospitalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/number-of-hospitalized.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/number-of-inspection-persons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/number-of-inspection-persons.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/number-of-inspection-persons_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/number-of-inspection-persons_.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/number-of-reports-to-covid19-consultation-desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/number-of-reports-to-covid19-consultation-desk.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/number-of-reports-to-covid19-telephone-advisory-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/number-of-reports-to-covid19-telephone-advisory-center.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/number-of-tested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/number-of-tested.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/ogp-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/ogp-image.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/positive-number-by-diagnosed-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/positive-number-by-diagnosed-date.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/positive-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/positive-rate.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/positive-status-severe-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/positive-status-severe-case.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/predicted-number-of-toei-subway-passengers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/predicted-number-of-toei-subway-passengers.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/shinjuku-st-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/shinjuku-st-heatmap.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/shinjuku-visitors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/shinjuku-visitors.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/tokyo-st-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/tokyo-st-heatmap.png -------------------------------------------------------------------------------- /static/ogp/zh-tw/untracked-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/ogp/zh-tw/untracked-rate.png -------------------------------------------------------------------------------- /static/parent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/parent.svg -------------------------------------------------------------------------------- /static/printer-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/printer-white.svg -------------------------------------------------------------------------------- /static/printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/printer.svg -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent:* 2 | -------------------------------------------------------------------------------- /static/selectmenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/selectmenu.svg -------------------------------------------------------------------------------- /static/site-qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/site-qr.svg -------------------------------------------------------------------------------- /static/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/twitter.png -------------------------------------------------------------------------------- /static/twitter.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/twitter.webp -------------------------------------------------------------------------------- /static/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/youtube.png -------------------------------------------------------------------------------- /static/youtube.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/static/youtube.webp -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/chart.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/types/chart.d.ts -------------------------------------------------------------------------------- /types/shims-sfc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/types/shims-sfc.d.ts -------------------------------------------------------------------------------- /types/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/types/shims-vue.d.ts -------------------------------------------------------------------------------- /types/svg-shim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/types/svg-shim.d.ts -------------------------------------------------------------------------------- /ui-test/delete_fbcache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/ui-test/delete_fbcache.sh -------------------------------------------------------------------------------- /ui-test/dummy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/ui-test/dummy.json -------------------------------------------------------------------------------- /ui-test/list_fbcashe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/ui-test/list_fbcashe.sh -------------------------------------------------------------------------------- /ui-test/ogp_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/ui-test/ogp_screenshot.py -------------------------------------------------------------------------------- /ui-test/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/ui-test/screenshot.py -------------------------------------------------------------------------------- /utils/card-event-bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/utils/card-event-bus.ts -------------------------------------------------------------------------------- /utils/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/utils/colors.ts -------------------------------------------------------------------------------- /utils/formatConfirmedCases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/utils/formatConfirmedCases.ts -------------------------------------------------------------------------------- /utils/formatDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/utils/formatDate.ts -------------------------------------------------------------------------------- /utils/formatDayBeforeRatio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/utils/formatDayBeforeRatio.ts -------------------------------------------------------------------------------- /utils/formatGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/utils/formatGraph.ts -------------------------------------------------------------------------------- /utils/formatMonitoringItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/utils/formatMonitoringItems.ts -------------------------------------------------------------------------------- /utils/formatTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/utils/formatTable.ts -------------------------------------------------------------------------------- /utils/formatTestedCases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/utils/formatTestedCases.ts -------------------------------------------------------------------------------- /utils/i18nUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/utils/i18nUtils.ts -------------------------------------------------------------------------------- /utils/monitoringStatusValueFormatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/utils/monitoringStatusValueFormatters.ts -------------------------------------------------------------------------------- /utils/tab-event-bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/utils/tab-event-bus.ts -------------------------------------------------------------------------------- /utils/vueScrollTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/utils/vueScrollTo.ts -------------------------------------------------------------------------------- /vagrant_provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/vagrant_provision.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stop-covid19-kyoto/covid19-kyoto/HEAD/yarn.lock --------------------------------------------------------------------------------