Skip to content
This repository has been archived by the owner on Apr 12, 2023. It is now read-only.

[iOS] 接触チェックに表示される「一致したキーの数」が積算される事象を調査する #961

Closed
keiji opened this issue Apr 7, 2022 · 13 comments
Assignees
Labels
discussion 議論が目的、または議論中の Issue

Comments

@keiji
Copy link
Collaborator

keiji commented Apr 7, 2022

内容 / Describe

オープンβ中のDiscussionより、
#921 (reply in thread)

本来であれば「一致したキーの数」は、そのとき実行された接触確認処理(detectExposure)で一致したキーの数を表す。実際、COCOA v1.4.1ではそのように表示されていた。

しかし、COCOA v2.0.0にした後は、一致したキーの数が減らず、積算して表示されているように見える。

再現手順 / Steps to reproduce

  1. '設定' に行き、
  2. '接触通知' をクリックし、
  3. '接触のログ記録の状況' をクリックし、
  4. '接触チェックの記録' をクリックして一覧を表示
  5. 各接触チェックの詳細を開いて「一致したキーの数」を確認する

期待される挙動 / Expected behavior

一致するキーがない接触チェックでは「一致したキーの数」は0件で表示される。

スクリーンショット / Screenshots

IMG_0042

IMG_0043

動作環境 / Environments

  • デバイス:iPhone
  • OS:iOS
  • バージョン:v2.0.0-openbeta, v2.0.0

その他 / Additional context

このIssueでは、COCOA v2.0.0の動作に問題があるのか。ないのかを明確にする(調査する)目的に限定する。

本来であれば接触チェックの画面はCOCOAの分掌外。たとえばJSONにMatchCountが含まれないのもCOCOAがそう設定したわけではない。
「一致したキーの数」が積算されるのも仕様であるならどうしようもない(MatchCountについて代替案を検討中 #928 )。

@keiji keiji added the discussion 議論が目的、または議論中の Issue label Apr 7, 2022
@keiji keiji self-assigned this Apr 7, 2022
@keiji
Copy link
Collaborator Author

keiji commented Apr 7, 2022

LastProcessTekTimestampでフィルタリングに異常が起きている可能性

COCOA起因でこの事象が発生する可能性としては、そのまま「同じ診断キーファイルを何度も接触確認している」というものがある。

最初の接触確認の時に診断キーファイルA, B, Cがあったとして、次の接触確認の時にB, C, D, E(Aは削除)という状態であった場合を考える。

仮に2回目の接触確認でB, C, D, Eを処理すると、Androidの接触通知APIは処理済みのB, Cについては内部で除外した状態で処理するが、iOSの接触通知APIは、指定した処理済みのファイルについても再度接触確認をする仕様になっている。

そのためCOCOAは、内部で LastProcessTekTimestamp という最後に接触確認をした診断キーファイルのタイムスタンプを保存することで、まだ接触確認していないファイルD, Eについて接触確認を行うようにフィルタリングしている。

この機能が正常に動作していなければ、iOS版のCOCOAで同じ診断キーファイルを何度も接触確認を実行して「一致したキーの数」が減らないという現象が起こりえる。

検証

この可能性を検証するために、v2.0.0のiOS版をインストールして接触確認が実行されるのを待ち動作ログを取得した。
cocoa_log_20220407.csv

1回目の接触確認

初回のインストールでは、その時点でサーバーにあるすべての診断キーファイルをダウンロードする。
ログでは、13:40頃に8762.zipから9178.zipまでのファイルをダウンロードしていることが分かる(ファイル連番でないのは、過去の日付の診断キーファイルは削除されるため)。

初回の接触確認

"2022/04/07 13:40:30","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8762.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:30","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8763.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:30","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8776.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:30","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8777.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:30","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8789.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:30","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8790.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:30","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8791.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:30","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8792.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:30","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8804.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8808.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8809.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8817.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8818.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8819.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8820.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8831.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8832.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8833.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8843.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8844.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8845.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8846.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8847.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8848.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8858.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8859.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8860.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8861.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:31","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8862.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8871.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8872.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8873.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8874.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8875.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8876.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8877.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8886.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8887.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8888.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8889.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8890.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8898.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8899.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8900.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8901.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8902.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8903.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8904.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:32","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8912.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8913.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8914.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8915.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8916.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8917.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8924.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8925.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8926.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8927.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8928.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8929.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8930.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8931.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8938.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8939.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8940.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8941.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8942.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:33","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8943.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8944.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8945.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8951.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8952.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8953.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8954.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8955.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8956.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8957.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8958.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8959.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8960.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8966.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8967.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8968.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:34","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8969.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8970.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8973.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8974.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8975.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8978.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8979.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8980.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8981.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8982.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8983.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8984.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8985.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8986.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:35","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8987.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8992.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8993.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8994.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8995.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8996.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8997.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8998.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/8999.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9000.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9001.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9002.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9003.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9004.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9005.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9006.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9007.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9008.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:36","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9009.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9016.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9017.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9018.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9019.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9020.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9021.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9022.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9023.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9024.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9025.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9026.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9027.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9031.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9032.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:37","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9033.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9034.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9035.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9036.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9037.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9038.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9039.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9040.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9041.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9044.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9045.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9046.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9047.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9048.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:38","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9049.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9050.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9051.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9052.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9053.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9054.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9055.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9058.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9059.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9060.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9061.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9062.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9063.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9064.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9065.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9066.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9067.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9068.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9070.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9071.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9072.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:39","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9073.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9074.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9075.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9076.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9077.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9079.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9080.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9081.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9082.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9083.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9084.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9085.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9086.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9087.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9088.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9089.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9090.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9091.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9092.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9093.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9094.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:40","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9095.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9096.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9097.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9098.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9099.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9100.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9101.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9102.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9103.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9104.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9105.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9106.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9107.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9108.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9109.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9110.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9111.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9112.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9113.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9114.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:41","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9115.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9116.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9117.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9118.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9119.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9120.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9121.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9122.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9123.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9124.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9125.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9126.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9127.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9128.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9129.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:42","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9130.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9131.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9132.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9133.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9134.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9135.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9136.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9137.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9138.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9140.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9139.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9141.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9142.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9143.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9144.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9145.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9146.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9147.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:43","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9148.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9149.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9150.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9151.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9152.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9153.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9154.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9155.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9156.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9157.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9158.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9159.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9160.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9161.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9162.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9163.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9164.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:44","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9165.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:45","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9166.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:45","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9167.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:45","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9168.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:45","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9169.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:45","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9170.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:45","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9171.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:45","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9172.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:45","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9173.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:45","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9174.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:45","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9175.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:45","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9176.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:45","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9177.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 13:40:45","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9178.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/

また、初回起動なのでLastProcessTekTimestampの値は0となっている。

"2022/04/07 13:40:30","Info","Region: 440, lastProcessTimestamp: 0","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/

接触確認が完了したタイミングでLastProcessTekTimestampには9178.zipCreatedの値1649257318088が保存される。

2回目の接触確認

続いて14:03頃に、これはCOCOAを起動したことに起因する接触確認が実行されている。
この段階では、前回保存した1649257318088の値で診断キーファイルをフィルタリングする。フィルタリングの結果0件となったので No new diagnosis-key foundというログが記録されている。

"2022/04/07 14:03:48","Info","Region: 440, lastProcessTimestamp: 1649257318088","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","127","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 14:03:48","Info","No new diagnosis-key found on https://covid19radar-jpn-prod.azureedge.net/c19r/440/list.json","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/

3回目の接触確認

次に接触確認が実行されるのが17:40頃で、ここでもLastProcessTekTimestampの値は1649257318088のまま。これは前回の接触確認で新しい診断キーがなく更新されていないので正常な動作。

このタイミングでは新しい診断キーがあるので、14 new keys found.のログがあり、実際に14個の診断キー9179.zipから9192.zipをダウンロードしている。

"2022/04/07 17:40:55","Info","Region: 440","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","103","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:55","Info","diagnosisKeyListProvideServerUrl: https://covid19radar-jpn-prod.azureedge.net/c19r/440/list.json","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","107","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:55","Info","Start","GetLastProcessDiagnosisKeyTimestampAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Repository/UserDataRepository.cs","100","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:55","Info","Start","GetValue","/Users/runner/work/1/s/Covid19Radar/Covid19Radar.iOS/Services/PreferencesService.cs","62","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:55","Info","key=LastProcessTekTimestamp, type=System.String","GetValue","/Users/runner/work/1/s/Covid19Radar/Covid19Radar.iOS/Services/PreferencesService.cs","63","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:55","Info","End","GetLastProcessDiagnosisKeyTimestampAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Repository/UserDataRepository.cs","120","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:55","Info","Region: 440, lastProcessTimestamp: 1649257318088","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","127","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:55","Info","14 new keys found.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","137","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
ダウンロードした診断キー

"2022/04/07 17:40:56","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9179.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:56","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9180.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:56","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9181.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:56","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9182.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:56","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9183.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:56","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9184.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:57","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9185.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:57","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9186.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:57","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9187.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:57","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9188.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:57","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9189.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:57","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9190.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:57","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9191.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"
"2022/04/07 17:40:57","Info","URL https://covid19radar-jpn-prod.azureedge.net/c19r/440/9192.zip have been downloaded.","InternalExposureDetectionAsync","/Users/runner/work/1/s/Covid19Radar/Covid19Radar/Services/AbsExposureDetectionBackgroundService.cs","143","iOS","14.7.1","iPhone8,4","Physical","2.0.0","1648613456"

すでに接触確認済みのファイルはダウンロードされていないことがわかる。

結論

以上のことから、LastProcessTekTimestampによるフィルタリングは正常に行われているものと考える。

@keiji
Copy link
Collaborator Author

keiji commented Apr 7, 2022

ファイルシステムに過去にダウンロードした診断キーファイルが残っている可能性

LastProcessTekTimestampによるフィルタリングが正常でも、過去にダウンロードした診断キーファイルが残っていることで重複して接触確認が行われている可能性を考える。

COCOAの接触確認はダウンロードした診断キーファイルのみ行うので、仮に診断キーファイルが削除できていなくても、次の接触確認に与えられることはないと考える。

foreach (var diagnosisKeyEntry in targetDiagnosisKeyEntryList)
{
string filePath = await _diagnosisKeyRepository.DownloadDiagnosisKeysAsync(diagnosisKeyEntry, tmpDir, cancellationToken);
_loggerService.Info($"URL {diagnosisKeyEntry.Url} have been downloaded.");
downloadedFileNameList.Add(filePath);
}
var downloadedFileNames = string.Join("\n", downloadedFileNameList);
_loggerService.Debug(downloadedFileNames);
await _exposureNotificationApiService.ProvideDiagnosisKeysAsync(
downloadedFileNameList,
cancellationTokenSource
);

また、接触チェックの記録を書き出して見ても、2022-04-07 17:40:58 +0900で接触チェックされたファイルは14個で、それぞれに含まれるキーの数も、その時点での診断キーの状態と一致する。

ExposureChecks-2022-04-07.json.txt

接触確認を行ったキーファイル情報
  "Files" : [
    {
      "Hash" : "3A9F1BEC7668A32D510ADA7F6057197E246841C136DF452B406CCC2C7F467B36",
      "KeyCount" : 591,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    },
    {
      "Hash" : "5C6036430A5EE51D6E9BECA66C9FFA2F7136EE32CB29F8AF2B7C01577984716E",
      "KeyCount" : 4849,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    },
    {
      "Hash" : "BEC1367986BE809932D4DEED21D4317C719565E10D97ABEB02BE8517475583BE",
      "KeyCount" : 17,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    },
    {
      "Hash" : "F932FB51E486ED9EF66D93B50C289F464EA575AB13FFA7DB360E1C4BBE22AE63",
      "KeyCount" : 33,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    },
    {
      "Hash" : "F35B8C737A1C1981F69CE054FCD6A6DDA2869C6EE1EECB0E19826FEE7D76B56B",
      "KeyCount" : 55,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    },
    {
      "Hash" : "76D844E1664742644ABBDCA470038620ACF501A15840ECB9C3A5944802C3B452",
      "KeyCount" : 80,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    },
    {
      "Hash" : "CCCDD4BDCB086A446B81E7075696700B133B4C7404EF36EA2D4AEFADBE8DE1A4",
      "KeyCount" : 143,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    },
    {
      "Hash" : "7C43E17CFF10EACFAA6F4392AE90AF3179D58DF7208B5E7D40427FD2CED67E37",
      "KeyCount" : 246,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    },
    {
      "Hash" : "47864689A717F5125173AA3046ACEB75271B41F8EF583EB94CF9C82BCD2B9B19",
      "KeyCount" : 394,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    },
    {
      "Hash" : "8D530A650F7E2C1D5C3243833626CF1B8F22BBF144B0431258AF7FBADAEDB674",
      "KeyCount" : 796,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    },
    {
      "Hash" : "4DA41F540E68ED8B49B8DB6646EF83B90E9E6B3E4FEC6CF190BE3DE4CC394C38",
      "KeyCount" : 1415,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    },
    {
      "Hash" : "234B39A3A08234249C719C4A76244D71771EEE60F50DB8A2BECB7CCA1C5B14BF",
      "KeyCount" : 1896,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    },
    {
      "Hash" : "289A48CF0E432B09EC80698738E7B4DCE690F818C082ACEC7FE4C55FED296FE0",
      "KeyCount" : 2476,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    },
    {
      "Hash" : "4B9939500FB1AB2B73E396324DBB9FD582AAB813A351D5B481D1235DB9215881",
      "KeyCount" : 2825,
      "AppBundleIdentifier" : "jp.go.mhlw.covid19radar",
      "Timestamp" : "2022-04-07 17:40:58 +0900"
    }
  ],

2022-04-07 17:40:58 +0900時点での診断キーの状態
keiji/cocoa-statistics@f56588f

以上のことから、過去にダウンロードした診断キーファイルが残っていることで一度処理した診断キーを重複して処理している可能性は除外できるものと考える。

@keiji keiji changed the title [iOS] 一致したキーがこれまでの接触確認で得られた数、積算される事象を調査する [iOS] 接触チェックに表示される「一致したキーの数」が積算される事象を調査する Apr 7, 2022
@keiji keiji mentioned this issue Apr 8, 2022
3 tasks
@keiji
Copy link
Collaborator Author

keiji commented Apr 9, 2022

検証

Chino.Prismを使ってiOSで「一致したキーの数が積算されるか」検証した。

Chino.Prismについて

Chino.PrismはCOCOA2で使用しているライブラリ「Cappuccino」を使ってPrismアプリケーションを実装するために作成した習作のアプリで、接触通知(EN)APIの有効化、TemporaryExposureKey(TEK)の取得、実験用サーバーにTEKをアップロード、実験用サーバーから診断キーをダウンロード、ダウンロードした診断キーで接触確認といったENの実装に必要な基本的な機能をCOCOAを使わずに実行する。

Screen Shot 2022-04-09 at 17 22 21

Chino.Prismとen-calibration-serverのソースコードは次のリンクから確認できる。

使用した端末について

検証には、実験用に用意しているiOS端末(以後、「端末A」という)とAndroid端末(以後、「端末G」という)を使用した。
端末Aと端末Gは、一定期間接触した状態に置いてあり、それぞれで接触確認を行えば、一致するキーが1以上になることが期待できる。

16:27 一致するキーの数が0件であることを確認する

端末Aで、端末に保管されている診断キー(正確にはTEK)を実験用サーバーにアップロードした。

次に実験用サーバー側で診断キーを生成したものを端末Aからダウンロード、接触確認を行ったところ「一致するキーの数」は0となった。

これは自身の生成したTemporaryExposureKeyは接触と見なされないため、期待した動作となる。
スクリーンショットに表示されている0C38から始まるファイルが端末Aに保管されていたTEKを診断キーに変換したファイルのハッシュ。

IMG_0046

アプリの内部ストレージをクリアするため、端末BからChino.Prismをアンインストール、再インストールした(少しの間であればインストールしてもENが保管しているデータは消えない)。

16:34 一致するキーの数が1件以上の状態になることを確認する

端末Gで、端末に保管されていTEKを実験用サーバーにアップロードした。
端末Gは端末Aと接触状態にあった期間がある。端末Gの診断キーを使って端末Aで接触確認を行えば一致するキーの数が1以上になることが期待できる。

実験用サーバー側で診断キーを生成した後、端末Aでダウンロードして再び接触確認を行ったところ「一致したキーの数」が9となった。

IMG_0047

4D41から始まるファイルが端末Gに保管されていたTEKを診断キーに変換したファイル。
0C38から始まるファイルは、端末Aに保管されていたTEKを診断キーに変換したファイルで、一致するキーの数が0件であることが分かっている。

アプリの内部ストレージをクリアするため、端末BからChino.Prismをアンインストール、再インストールした。

16:36 一致していないキーで接触確認して一致するキーの数の変化を確認する

実験用サーバーから端末Gの診断キーファイル(4D41)を削除して、端末Aの診断キーファイル(0C38)のみの状態にした。

次に、端末Aで診断キーをダウンロード、接触確認を行ったところ「一致するキーの数」は9となった。

IMG_0045

0C38の診断キーファイルは、一致するキーの数が0件であることが確認できているが、結果としては9件と表示された。

結論

以上のことから、iOSで表示される「一致したキーの数」は、詳細に示される接触確認(接触チェック)についての値ではなく、これまで行った接触チェックで一致したキーの積算で表示されていると考える。

@kvaluation
Copy link
Contributor

様々なご検証をありがとうございます。

ExposureNotification API 2, ExposureWindow mode, EN2
採用の影響でしょうか。COCOA2というより。

いままでのEN1では、同一の端末との例えば40分の接触でも、提供キーの数は1だった可能性があり(日次キー単位)、
一方、EN2では、15分(でしたか)のWindowで完全に切り替えていくので、同一の端末との20分の接触で、提供キー数が2になる可能性はあるかなと思いました。

それとは別に、累計していく振る舞いは、EN2では複数の接触の時間を合計するので、例えば接触日が10日について、Aさんとの接触が12日に配信され、Bさんとの接触が14日に配信されると、14日の照合で12日の接触分も合計して1つの接触時間にするかと思います。提供キー数もそれにつられて累積していくのかなと想像しました。

あまり、解析できてなくてすみません。たとえば10分間の接触と、20分間の接触の比較や、同一接触日の複数端末について別日の陽性登録・配信などのテストが考えられるでしょうか。

@keiji
Copy link
Collaborator Author

keiji commented Apr 10, 2022

いままでのEN1では、同一の端末との例えば40分の接触でも、提供キーの数は1だった可能性があり(日次キー単位)、
一方、EN2では、15分(でしたか)のWindowで完全に切り替えていくので、同一の端末との20分の接触で、提供キー数が2になる可能性はあるかなと思いました。

ENv1もENv2も、日時キーの有効期間は24時間なので、接触時間にかかわらず「一致するキーの数」は1となると理解しています。

基本的には一致しないことが確定している診断キーでも接触確認しても結果が9となったので、積算という事象はほぼ確定で、それがENv2の仕様によるものかは(個人的には仕様の蓋然性が高いと考えていますが)、現時点では確定していないという状態ですね。

@b-wind
Copy link

b-wind commented Apr 12, 2022

一致したキーが積算されていくと言う推測は間違いなさそうと言う事ですね。

本件課題からは少しズレるかも知れませんが、積算される期間が決まっているのか(あるいは無いのか)は気になる所です。

  1. (いつから?)すべての期間の合計が表示される
  2. 接触チェックから遡って特定の期間(2週間とか?)の合計が表示される
  3. 月頭等の日付でリセット

ざっくり思いつくのはこの3つぐらいですが、どれも特に根拠の無い推測です。
特に検証をせずとも、チェックの記録を頻繁に見ている人ならそのうち気づきそうですね。

@daisuke-nogami
Copy link
Collaborator

手元のiPhoneでは、一致したキーの個数が一度でたら、基本的に数日間は出続ける(例のhash一覧サイトから推定される接触日から10日間たつまで出続ける)ので、「過去も含めた、当日に接触通知をだすべきキーの個数」だと思っていました。
以前、キーの一致数として表示されるのは新規分ではなく過去分も含めた通知対象件数、という説明をどこかで聞いたような…(と思って探したが出てこない)

@okumuralab
Copy link

最初のカウントアップ(2022-03-30 15:38)から2週間たった時点(2022-04-14 04:58)でも減少しないようです>一致したキーの数。

matchcount

@daisuke-nogami
Copy link
Collaborator

私の手元でのカウント件数推移記録を掘りおこしてみましたが、カウントされたのが20日ぐらい出続けている記録もありました。クローズドβ版で接触日が見える端末での挙動で、接触日から26日間出続けていました。内部的なキャッシュかなにかなのかな…

@keiji
Copy link
Collaborator Author

keiji commented Apr 14, 2022

直感的には15日前の記録は消えていて欲しいですよね。

クローズドβ版で接触日が見える端末での挙動で、接触日から26日間出続けていました。

こちらは現在も記録更新中でしょうか。「26日出続けたけど消えた」のか「今も出ているのか」を知りたいなと。

@daisuke-nogami
Copy link
Collaborator

26日目で消えました。(正確には、最初の接触日とは別の接触があったため、カウントが減りましたが、別の接触もふくめて30日後には0件まで戻りました)

@okumuralab
Copy link

突然の減少。昨日の午後に1,今朝は0になりました。

matchcount

@keiji
Copy link
Collaborator Author

keiji commented Jun 18, 2022

こちらiOSでは積算になるという結果を頂いていること。また、COCOA v2.0.1で接触情報の保存機能が追加されて代替機能が用意されたことからCloseします。

何かあればreopenするのでコメントください。

@keiji keiji closed this as completed Jun 18, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
discussion 議論が目的、または議論中の Issue
Projects
None yet
Development

No branches or pull requests

5 participants