יום שני, ינואר 23, 2023

אל תצפו לAPI זמין ממשרד ממשלתי לאורך זמן משרד הבריאות שבר את ה API

במהלך המגפה תחזקתי שירות לבני משפחתי שעקב הייכן היו חשיפות לחולים, בצורה כזאת אפשר היה תמיד לראות איפה לא כדאי להגיע בשביל להמנע מסיכויי גבוהה לחשיפה.

האמנתי שבלל שהנושא כה חשוב הAPI לנושא ישאר זמין ותקין לפחות במהלך כל המגפה.

ה API היה ב https://coronaupdates.health.gov.il/api/map/getPhysicalPlaces , נתן ממשק יפה ב JSON ועבד בצורה די יפה עד התאריך 2022-07-26.

איך אני יודע ? כי שמרתי את התוצאות של הבקשות , ולפי גודל התוצאה (וגם התוכן ) ניתן לראות שב27 ליולי ה API נשבר.

את הבקשות שלי הייתי מפעיל על ידי cron :
cat health.gov.il.sh 
#!/bin/bash
yesterday=$(date -d " -7 days" --iso-8601)
today=$(date  --iso-8601="seconds")
curl -X POST https://coronaupdates.health.gov.il/api/map/getPhysicalPlaces \
     -H "Content-Type: application/json" \
     --data-ascii '{"fromDate":"'$yesterday'","toDate":"'$today'"}'\
     -o /home/imoh/covid/$today._1.json 2>&1 > /dev/null
את הקבצים ששמרתי בזמנו אפשר לראות למטה.
ls -la
total 125788
drwxr-xr-x  2 imoh imoh   36864 Jan 22 13:20 .
drwxr-xr-x 73 imoh imoh   12288 Jan 22 20:44 ..
-rw-r--r--  1 imoh imoh  395953 Mar 28  2021 2021-03-28T12:55:11+03:00.json
-rw-r--r--  1 imoh imoh  100583 Mar 28  2021 2021-03-28T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   74008 Mar 29  2021 2021-03-29T10:50:29+03:00.json
-rw-r--r--  1 imoh imoh   74008 Mar 29  2021 2021-03-29T10:50:49+03:00.json
-rw-r--r--  1 imoh imoh   70109 Mar 30  2021 2021-03-30T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   58176 Mar 31  2021 2021-03-31T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   51921 Apr  1  2021 2021-04-01T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   43920 Apr  2  2021 2021-04-02T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   44557 Apr  3  2021 2021-04-03T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   53827 Apr  4  2021 2021-04-04T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   56603 Apr  5  2021 2021-04-05T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   56187 Apr  6  2021 2021-04-06T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   53816 Apr  7  2021 2021-04-07T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   50704 Apr  9  2021 2021-04-09T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   42677 Apr 12  2021 2021-04-12T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   41250 Apr 13  2021 2021-04-13T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   39593 Apr 14  2021 2021-04-14T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   37927 Apr 15  2021 2021-04-15T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   31414 Apr 16  2021 2021-04-16T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   24687 Apr 17  2021 2021-04-17T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   29622 Apr 18  2021 2021-04-18T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   28931 Apr 19  2021 2021-04-19T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   25407 Apr 20  2021 2021-04-20T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   27142 Apr 21  2021 2021-04-21T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   26433 Apr 22  2021 2021-04-22T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   29094 Apr 23  2021 2021-04-23T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   25517 Apr 24  2021 2021-04-24T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   29525 Apr 25  2021 2021-04-25T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   27044 Apr 26  2021 2021-04-26T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   25430 Apr 27  2021 2021-04-27T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   25895 Apr 28  2021 2021-04-28T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   23067 Apr 29  2021 2021-04-29T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   16807 May  1  2021 2021-05-01T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   17487 May  2  2021 2021-05-02T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   15385 May  3  2021 2021-05-03T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   10871 May  5  2021 2021-05-05T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   10278 May  6  2021 2021-05-06T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   11394 May  7  2021 2021-05-07T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   12941 May  8  2021 2021-05-08T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   10420 May  9  2021 2021-05-09T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   12451 May 10  2021 2021-05-10T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   12406 May 11  2021 2021-05-11T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   11343 May 12  2021 2021-05-12T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh   11057 May 13  2021 2021-05-13T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    9745 May 14  2021 2021-05-14T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    6660 May 15  2021 2021-05-15T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    7908 May 16  2021 2021-05-16T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    6197 May 17  2021 2021-05-17T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    6410 May 18  2021 2021-05-18T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    4772 May 19  2021 2021-05-19T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    5078 May 20  2021 2021-05-20T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    6198 May 21  2021 2021-05-21T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    5787 May 23  2021 2021-05-23T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    4678 May 24  2021 2021-05-24T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    6950 May 25  2021 2021-05-25T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    7288 May 26  2021 2021-05-26T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    7680 May 27  2021 2021-05-27T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    6159 May 31  2021 2021-05-31T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    4416 Jun  1  2021 2021-06-01T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    5700 Jun  2  2021 2021-06-02T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    4396 Jun  3  2021 2021-06-03T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    5036 Jun  4  2021 2021-06-04T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    4759 Jun  5  2021 2021-06-05T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    7085 Jun  6  2021 2021-06-06T13:20:01+03:00.json
-rw-r--r--  1 imoh imoh    7085 Jun  6  2021 2021-06-06T13:21:05+03:00.json
-rw-r--r--  1 imoh imoh    7085 Jun  6  2021 2021-06-06T13:21:20+03:00.json
-rw-r--r--  1 imoh imoh    7085 Jun  6  2021 2021-06-06T13:21:46+03:00.json
-rw-r--r--  1 imoh imoh    7085 Jun  6  2021 2021-06-06T13:22:52+03:00.json
-rw-r--r--  1 imoh imoh    7085 Jun  6  2021 2021-06-06T13:25:53+03:00._1.json
-rw-r--r--  1 imoh imoh    5506 Jun  7  2021 2021-06-07T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    6689 Jun  8  2021 2021-06-08T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    5789 Jun  9  2021 2021-06-09T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4179 Jun 10  2021 2021-06-10T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    3336 Jun 11  2021 2021-06-11T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4655 Jun 12  2021 2021-06-12T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    2681 Jun 13  2021 2021-06-13T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    2118 Jun 14  2021 2021-06-14T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    2786 Jun 15  2021 2021-06-15T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    5613 Jun 16  2021 2021-06-16T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    5607 Jun 17  2021 2021-06-17T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    7435 Jun 19  2021 2021-06-19T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh   12030 Jun 20  2021 2021-06-20T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh   23097 Jun 21  2021 2021-06-21T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh   41457 Jun 22  2021 2021-06-22T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh   58092 Jun 23  2021 2021-06-23T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh   73309 Jun 24  2021 2021-06-24T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh   84449 Jun 25  2021 2021-06-25T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh   81206 Jun 26  2021 2021-06-26T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh   90803 Jun 27  2021 2021-06-27T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh   89235 Jun 28  2021 2021-06-28T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  104534 Jun 29  2021 2021-06-29T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  124052 Jun 30  2021 2021-06-30T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  140260 Jul  1  2021 2021-07-01T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  137380 Jul  2  2021 2021-07-02T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  121044 Jul  4  2021 2021-07-04T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  139197 Jul  5  2021 2021-07-05T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  139069 Jul  6  2021 2021-07-06T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  206198 Jul  7  2021 2021-07-07T13:20:02+03:00._1.json
-rw-r--r--  1 imoh imoh  218081 Jul  8  2021 2021-07-08T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  198978 Jul 11  2021 2021-07-11T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  182887 Jul 12  2021 2021-07-12T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  186986 Jul 13  2021 2021-07-13T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  237281 Jul 14  2021 2021-07-14T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  301089 Jul 15  2021 2021-07-15T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  319837 Jul 16  2021 2021-07-16T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  300950 Jul 18  2021 2021-07-18T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  328193 Jul 19  2021 2021-07-19T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  382342 Jul 20  2021 2021-07-20T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  433919 Jul 21  2021 2021-07-21T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  487885 Jul 22  2021 2021-07-22T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  473744 Jul 23  2021 2021-07-23T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  371877 Jul 24  2021 2021-07-24T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  416804 Jul 25  2021 2021-07-25T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  461583 Jul 26  2021 2021-07-26T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  569066 Jul 27  2021 2021-07-27T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  633636 Jul 28  2021 2021-07-28T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  678137 Jul 29  2021 2021-07-29T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  603495 Jul 30  2021 2021-07-30T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  446728 Aug  1  2021 2021-08-01T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  581014 Aug  2  2021 2021-08-02T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  708449 Aug  3  2021 2021-08-03T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  741193 Aug  4  2021 2021-08-04T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  776119 Aug  5  2021 2021-08-05T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  507253 Aug  7  2021 2021-08-07T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  558129 Aug  8  2021 2021-08-08T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  613049 Aug  9  2021 2021-08-09T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  686545 Aug 10  2021 2021-08-10T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  761980 Aug 11  2021 2021-08-11T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  758032 Aug 12  2021 2021-08-12T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  682916 Aug 13  2021 2021-08-13T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  570775 Aug 14  2021 2021-08-14T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  635112 Aug 15  2021 2021-08-15T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  618642 Aug 16  2021 2021-08-16T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  573814 Aug 17  2021 2021-08-17T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  554067 Aug 18  2021 2021-08-18T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  472066 Aug 19  2021 2021-08-19T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  557492 Aug 21  2021 2021-08-21T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  609625 Aug 22  2021 2021-08-22T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  540552 Aug 23  2021 2021-08-23T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  464734 Aug 24  2021 2021-08-24T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  444408 Aug 25  2021 2021-08-25T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  967457 Aug 26  2021 2021-08-26T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  884552 Aug 27  2021 2021-08-27T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  669133 Aug 28  2021 2021-08-28T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  620847 Aug 29  2021 2021-08-29T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  884723 Aug 30  2021 2021-08-30T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh 1054050 Aug 31  2021 2021-08-31T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh 1158954 Sep  1  2021 2021-09-01T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh 1198255 Sep  2  2021 2021-09-02T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh 1052308 Sep  3  2021 2021-09-03T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  856018 Sep  4  2021 2021-09-04T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  929727 Sep  5  2021 2021-09-05T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  923080 Sep  6  2021 2021-09-06T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  792207 Sep  7  2021 2021-09-07T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  670089 Sep  8  2021 2021-09-08T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  571273 Sep  9  2021 2021-09-09T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  557073 Sep 10  2021 2021-09-10T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  369483 Sep 11  2021 2021-09-11T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  461369 Sep 12  2021 2021-09-12T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  336959 Sep 13  2021 2021-09-13T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  404728 Sep 14  2021 2021-09-14T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  431865 Sep 15  2021 2021-09-15T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  430400 Sep 16  2021 2021-09-16T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  221110 Sep 17  2021 2021-09-17T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  227414 Sep 19  2021 2021-09-19T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  375988 Sep 20  2021 2021-09-20T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  350701 Sep 21  2021 2021-09-21T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  251610 Sep 22  2021 2021-09-22T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  278164 Sep 23  2021 2021-09-23T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  406908 Sep 24  2021 2021-09-24T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  324345 Sep 25  2021 2021-09-25T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  405308 Sep 26  2021 2021-09-26T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  347991 Sep 27  2021 2021-09-27T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  347928 Sep 28  2021 2021-09-28T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  402101 Sep 29  2021 2021-09-29T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  416774 Sep 30  2021 2021-09-30T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  389609 Oct  1  2021 2021-10-01T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  346652 Oct  2  2021 2021-10-02T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  372215 Oct  3  2021 2021-10-03T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  363480 Oct  4  2021 2021-10-04T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  380626 Oct  5  2021 2021-10-05T13:20:02+03:00._1.json
-rw-r--r--  1 imoh imoh  420569 Oct  6  2021 2021-10-06T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  406732 Oct  7  2021 2021-10-07T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  282605 Oct  9  2021 2021-10-09T13:20:02+03:00._1.json
-rw-r--r--  1 imoh imoh  305313 Oct 10  2021 2021-10-10T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  282357 Oct 11  2021 2021-10-11T13:20:02+03:00._1.json
-rw-r--r--  1 imoh imoh  289250 Oct 12  2021 2021-10-12T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  300363 Oct 13  2021 2021-10-13T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  223562 Oct 16  2021 2021-10-16T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  249222 Oct 17  2021 2021-10-17T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  223292 Oct 18  2021 2021-10-18T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  223257 Oct 19  2021 2021-10-19T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  206703 Oct 20  2021 2021-10-20T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  216919 Oct 21  2021 2021-10-21T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  183307 Oct 22  2021 2021-10-22T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  148910 Oct 24  2021 2021-10-24T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  133595 Oct 25  2021 2021-10-25T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  133837 Oct 26  2021 2021-10-26T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  130607 Oct 27  2021 2021-10-27T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  120671 Oct 28  2021 2021-10-28T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  102414 Oct 29  2021 2021-10-29T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh   82243 Oct 30  2021 2021-10-30T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh   94440 Oct 31  2021 2021-10-31T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   81494 Nov  1  2021 2021-11-01T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   77669 Nov  2  2021 2021-11-02T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   82555 Nov  3  2021 2021-11-03T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   88312 Nov  4  2021 2021-11-04T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   88090 Nov  5  2021 2021-11-05T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   78982 Nov  6  2021 2021-11-06T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   85252 Nov  7  2021 2021-11-07T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   78584 Nov  8  2021 2021-11-08T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   66791 Nov  9  2021 2021-11-09T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   79209 Nov 10  2021 2021-11-10T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   75706 Nov 11  2021 2021-11-11T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   62545 Nov 13  2021 2021-11-13T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   65918 Nov 14  2021 2021-11-14T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   69962 Nov 15  2021 2021-11-15T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   75928 Nov 16  2021 2021-11-16T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   77482 Nov 17  2021 2021-11-17T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   87050 Nov 18  2021 2021-11-18T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   83361 Nov 19  2021 2021-11-19T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   71268 Nov 20  2021 2021-11-20T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   79707 Nov 21  2021 2021-11-21T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   82931 Nov 22  2021 2021-11-22T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   96392 Nov 23  2021 2021-11-23T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  101289 Nov 24  2021 2021-11-24T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  103753 Nov 25  2021 2021-11-25T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   97086 Nov 26  2021 2021-11-26T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   80059 Nov 27  2021 2021-11-27T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   90151 Nov 29  2021 2021-11-29T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  108779 Dec  1  2021 2021-12-01T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  110474 Dec  2  2021 2021-12-02T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   92500 Dec  3  2021 2021-12-03T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   83494 Dec  4  2021 2021-12-04T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   87492 Dec  5  2021 2021-12-05T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   89132 Dec  6  2021 2021-12-06T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  100678 Dec  7  2021 2021-12-07T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  111629 Dec  8  2021 2021-12-08T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  118242 Dec  9  2021 2021-12-09T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   91057 Dec 11  2021 2021-12-11T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   84966 Dec 13  2021 2021-12-13T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   99379 Dec 15  2021 2021-12-15T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  115585 Dec 16  2021 2021-12-16T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  132658 Dec 17  2021 2021-12-17T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  118679 Dec 18  2021 2021-12-18T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  142977 Dec 19  2021 2021-12-19T13:20:02+02:00._1.json
-rw-r--r--  1 imoh imoh  160511 Dec 20  2021 2021-12-20T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  197310 Dec 21  2021 2021-12-21T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  206137 Dec 22  2021 2021-12-22T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  226228 Dec 23  2021 2021-12-23T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  230597 Dec 24  2021 2021-12-24T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  220490 Dec 25  2021 2021-12-25T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  270733 Dec 26  2021 2021-12-26T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  319566 Dec 27  2021 2021-12-27T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  393511 Dec 28  2021 2021-12-28T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  477635 Dec 29  2021 2021-12-29T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  529080 Dec 30  2021 2021-12-30T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  523997 Dec 31  2021 2021-12-31T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  440768 Jan  1  2022 2022-01-01T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  419775 Jan  2  2022 2022-01-02T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  461389 Jan  3  2022 2022-01-03T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  558101 Jan  4  2022 2022-01-04T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  615282 Jan  5  2022 2022-01-05T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  637716 Jan  6  2022 2022-01-06T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  554565 Jan  7  2022 2022-01-07T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  437775 Jan  8  2022 2022-01-08T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  447600 Jan  9  2022 2022-01-09T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  525905 Jan 10  2022 2022-01-10T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  544575 Jan 11  2022 2022-01-11T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  598642 Jan 12  2022 2022-01-12T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  631718 Jan 13  2022 2022-01-13T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  522869 Jan 14  2022 2022-01-14T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  440875 Jan 15  2022 2022-01-15T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  481906 Jan 16  2022 2022-01-16T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  451808 Jan 17  2022 2022-01-17T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  427810 Jan 18  2022 2022-01-18T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  415757 Jan 19  2022 2022-01-19T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  411924 Jan 20  2022 2022-01-20T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  401552 Jan 21  2022 2022-01-21T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  354560 Jan 22  2022 2022-01-22T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  409884 Jan 23  2022 2022-01-23T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  450780 Jan 24  2022 2022-01-24T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  501194 Jan 25  2022 2022-01-25T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  529841 Jan 26  2022 2022-01-26T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  545973 Jan 27  2022 2022-01-27T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  443615 Jan 29  2022 2022-01-29T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  519412 Jan 30  2022 2022-01-30T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  539518 Jan 31  2022 2022-01-31T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  568980 Feb  1  2022 2022-02-01T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  496738 Feb  2  2022 2022-02-02T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  360099 Feb  3  2022 2022-02-03T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  124312 Feb  5  2022 2022-02-05T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   95229 Feb  6  2022 2022-02-06T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   43631 Feb  7  2022 2022-02-07T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh   10144 Feb  8  2022 2022-02-08T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  148540 Feb  9  2022 2022-02-09T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  718064 Feb 10  2022 2022-02-10T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  638690 Feb 11  2022 2022-02-11T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  580533 Feb 12  2022 2022-02-12T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  689460 Feb 13  2022 2022-02-13T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  686668 Feb 14  2022 2022-02-14T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  725599 Feb 15  2022 2022-02-15T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  755984 Feb 16  2022 2022-02-16T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  759105 Feb 17  2022 2022-02-17T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  704455 Feb 20  2022 2022-02-20T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  724918 Feb 21  2022 2022-02-21T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  700454 Feb 22  2022 2022-02-22T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  721588 Feb 23  2022 2022-02-23T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  713075 Feb 24  2022 2022-02-24T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  589880 Feb 25  2022 2022-02-25T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  498959 Feb 26  2022 2022-02-26T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  621361 Feb 27  2022 2022-02-27T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  579318 Feb 28  2022 2022-02-28T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  635936 Mar  1  2022 2022-03-01T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  667745 Mar  2  2022 2022-03-02T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  717174 Mar  3  2022 2022-03-03T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  636648 Mar  4  2022 2022-03-04T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  560563 Mar  5  2022 2022-03-05T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  530328 Mar  6  2022 2022-03-06T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  535320 Mar  7  2022 2022-03-07T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  521484 Mar  8  2022 2022-03-08T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  527194 Mar  9  2022 2022-03-09T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  586990 Mar 10  2022 2022-03-10T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  597381 Mar 11  2022 2022-03-11T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  564942 Mar 12  2022 2022-03-12T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  595990 Mar 14  2022 2022-03-14T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  633554 Mar 15  2022 2022-03-15T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  623841 Mar 17  2022 2022-03-17T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  536378 Mar 18  2022 2022-03-18T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  482520 Mar 19  2022 2022-03-19T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  308315 Mar 21  2022 2022-03-21T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  314297 Mar 22  2022 2022-03-22T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  345071 Mar 23  2022 2022-03-23T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  389468 Mar 24  2022 2022-03-24T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh  418715 Mar 25  2022 2022-03-25T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  415872 Mar 26  2022 2022-03-26T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  453609 Mar 27  2022 2022-03-27T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  474606 Mar 28  2022 2022-03-28T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  472516 Mar 29  2022 2022-03-29T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  415216 Mar 30  2022 2022-03-30T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  370399 Mar 31  2022 2022-03-31T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  295500 Apr  1  2022 2022-04-01T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  278587 Apr  2  2022 2022-04-02T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  296557 Apr  3  2022 2022-04-03T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  339818 Apr  4  2022 2022-04-04T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  378704 Apr  5  2022 2022-04-05T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  379743 Apr  6  2022 2022-04-06T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  388732 Apr  7  2022 2022-04-07T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  359018 Apr 10  2022 2022-04-10T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  367188 Apr 11  2022 2022-04-11T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  396582 Apr 12  2022 2022-04-12T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  407513 Apr 13  2022 2022-04-13T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  437170 Apr 14  2022 2022-04-14T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  380812 Apr 15  2022 2022-04-15T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  363200 Apr 16  2022 2022-04-16T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  356071 Apr 17  2022 2022-04-17T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  315937 Apr 18  2022 2022-04-18T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  312103 Apr 19  2022 2022-04-19T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  296784 Apr 20  2022 2022-04-20T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  232501 Apr 22  2022 2022-04-22T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  210733 Apr 23  2022 2022-04-23T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  231392 Apr 24  2022 2022-04-24T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  237117 Apr 25  2022 2022-04-25T13:20:02+03:00._1.json
-rw-r--r--  1 imoh imoh  248467 Apr 26  2022 2022-04-26T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  255528 Apr 27  2022 2022-04-27T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  249503 Apr 28  2022 2022-04-28T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  302086 Apr 30  2022 2022-04-30T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  311978 May  1  2022 2022-05-01T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  285959 May  2  2022 2022-05-02T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  286937 May  3  2022 2022-05-03T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  285758 May  4  2022 2022-05-04T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  253097 May  5  2022 2022-05-05T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  189635 May  6  2022 2022-05-06T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  176384 May  7  2022 2022-05-07T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  186456 May  8  2022 2022-05-08T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  198103 May  9  2022 2022-05-09T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  194943 May 10  2022 2022-05-10T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  199223 May 11  2022 2022-05-11T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  186448 May 12  2022 2022-05-12T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  198711 May 13  2022 2022-05-13T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  196644 May 15  2022 2022-05-15T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  198393 May 16  2022 2022-05-16T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  229654 May 17  2022 2022-05-17T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  235546 May 18  2022 2022-05-18T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  224541 May 19  2022 2022-05-19T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  202042 May 20  2022 2022-05-20T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  201680 May 22  2022 2022-05-22T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  196745 May 23  2022 2022-05-23T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  220766 May 24  2022 2022-05-24T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  213870 May 25  2022 2022-05-25T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  203988 May 26  2022 2022-05-26T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  192555 May 27  2022 2022-05-27T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  162951 May 29  2022 2022-05-29T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  159935 May 30  2022 2022-05-30T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  157255 May 31  2022 2022-05-31T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  185842 Jun  1  2022 2022-06-01T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  188555 Jun  2  2022 2022-06-02T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  173134 Jun  4  2022 2022-06-04T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  150933 Jun  5  2022 2022-06-05T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh   98561 Jun  6  2022 2022-06-06T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  122333 Jun  7  2022 2022-06-07T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  141149 Jun  8  2022 2022-06-08T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  158057 Jun  9  2022 2022-06-09T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  170530 Jun 10  2022 2022-06-10T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  166155 Jun 11  2022 2022-06-11T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  140056 Jun 12  2022 2022-06-12T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  183779 Jun 13  2022 2022-06-13T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  200523 Jun 14  2022 2022-06-14T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  217727 Jun 15  2022 2022-06-15T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  234789 Jun 16  2022 2022-06-16T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  217884 Jun 17  2022 2022-06-17T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  200390 Jun 18  2022 2022-06-18T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  166777 Jun 19  2022 2022-06-19T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  181841 Jun 20  2022 2022-06-20T13:20:02+03:00._1.json
-rw-r--r--  1 imoh imoh  191051 Jun 21  2022 2022-06-21T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  204522 Jun 22  2022 2022-06-22T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  205737 Jun 23  2022 2022-06-23T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  183345 Jun 25  2022 2022-06-25T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  151019 Jun 26  2022 2022-06-26T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  169254 Jun 27  2022 2022-06-27T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  195352 Jun 28  2022 2022-06-28T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  193870 Jun 29  2022 2022-06-29T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  189744 Jun 30  2022 2022-06-30T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  181804 Jul  1  2022 2022-07-01T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  160873 Jul  2  2022 2022-07-02T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  131181 Jul  3  2022 2022-07-03T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  138061 Jul  4  2022 2022-07-04T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  151436 Jul  5  2022 2022-07-05T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  161329 Jul  6  2022 2022-07-06T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  170533 Jul  7  2022 2022-07-07T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  166166 Jul  8  2022 2022-07-08T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  158422 Jul  9  2022 2022-07-09T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  134563 Jul 10  2022 2022-07-10T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  153997 Jul 11  2022 2022-07-11T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  167836 Jul 12  2022 2022-07-12T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  176969 Jul 13  2022 2022-07-13T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  180710 Jul 14  2022 2022-07-14T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  165265 Jul 15  2022 2022-07-15T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  168960 Jul 16  2022 2022-07-16T13:20:02+03:00._1.json
-rw-r--r--  1 imoh imoh  145892 Jul 17  2022 2022-07-17T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  168278 Jul 18  2022 2022-07-18T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  183875 Jul 19  2022 2022-07-19T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  196459 Jul 20  2022 2022-07-20T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  196020 Jul 21  2022 2022-07-21T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  181411 Jul 22  2022 2022-07-22T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  169463 Jul 23  2022 2022-07-23T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  137450 Jul 24  2022 2022-07-24T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  150766 Jul 25  2022 2022-07-25T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh  168117 Jul 26  2022 2022-07-26T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jul 27  2022 2022-07-27T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jul 28  2022 2022-07-28T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jul 30  2022 2022-07-30T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jul 31  2022 2022-07-31T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug  1  2022 2022-08-01T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug  2  2022 2022-08-02T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug  3  2022 2022-08-03T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug  4  2022 2022-08-04T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug  5  2022 2022-08-05T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug  6  2022 2022-08-06T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug  7  2022 2022-08-07T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug  8  2022 2022-08-08T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug  9  2022 2022-08-09T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 10  2022 2022-08-10T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 11  2022 2022-08-11T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 12  2022 2022-08-12T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 13  2022 2022-08-13T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 14  2022 2022-08-14T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 15  2022 2022-08-15T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 16  2022 2022-08-16T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 18  2022 2022-08-18T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 19  2022 2022-08-19T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 20  2022 2022-08-20T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 21  2022 2022-08-21T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 22  2022 2022-08-22T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 23  2022 2022-08-23T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 24  2022 2022-08-24T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 25  2022 2022-08-25T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 26  2022 2022-08-26T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 27  2022 2022-08-27T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 28  2022 2022-08-28T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 29  2022 2022-08-29T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 30  2022 2022-08-30T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Aug 31  2022 2022-08-31T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep  1  2022 2022-09-01T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep  2  2022 2022-09-02T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep  3  2022 2022-09-03T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep  4  2022 2022-09-04T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep  5  2022 2022-09-05T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep  6  2022 2022-09-06T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep  7  2022 2022-09-07T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep  8  2022 2022-09-08T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep  9  2022 2022-09-09T13:20:02+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 10  2022 2022-09-10T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 11  2022 2022-09-11T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 12  2022 2022-09-12T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 13  2022 2022-09-13T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 14  2022 2022-09-14T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 15  2022 2022-09-15T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 16  2022 2022-09-16T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 18  2022 2022-09-18T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 19  2022 2022-09-19T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 20  2022 2022-09-20T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 21  2022 2022-09-21T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 22  2022 2022-09-22T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 23  2022 2022-09-23T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 24  2022 2022-09-24T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 25  2022 2022-09-25T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 27  2022 2022-09-27T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 28  2022 2022-09-28T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 29  2022 2022-09-29T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Sep 30  2022 2022-09-30T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct  1  2022 2022-10-01T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct  2  2022 2022-10-02T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct  3  2022 2022-10-03T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct  4  2022 2022-10-04T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct  5  2022 2022-10-05T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct  6  2022 2022-10-06T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct  7  2022 2022-10-07T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct  9  2022 2022-10-09T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 10  2022 2022-10-10T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 11  2022 2022-10-11T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 12  2022 2022-10-12T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 13  2022 2022-10-13T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 14  2022 2022-10-14T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 15  2022 2022-10-15T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 16  2022 2022-10-16T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 17  2022 2022-10-17T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 18  2022 2022-10-18T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 19  2022 2022-10-19T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 20  2022 2022-10-20T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 21  2022 2022-10-21T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 22  2022 2022-10-22T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 23  2022 2022-10-23T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh    4152 Oct 24  2022 2022-10-24T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh     183 Oct 25  2022 2022-10-25T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh     183 Oct 26  2022 2022-10-26T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh     183 Oct 27  2022 2022-10-27T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh     183 Oct 28  2022 2022-10-28T13:20:01+03:00._1.json
-rw-r--r--  1 imoh imoh     183 Oct 30  2022 2022-10-30T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh     183 Oct 31  2022 2022-10-31T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov  1  2022 2022-11-01T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov  2  2022 2022-11-02T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov  3  2022 2022-11-03T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov  4  2022 2022-11-04T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov  6  2022 2022-11-06T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov  7  2022 2022-11-07T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 10  2022 2022-11-10T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 11  2022 2022-11-11T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 12  2022 2022-11-12T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 13  2022 2022-11-13T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 14  2022 2022-11-14T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 15  2022 2022-11-15T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 16  2022 2022-11-16T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 17  2022 2022-11-17T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 19  2022 2022-11-19T13:20:02+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 20  2022 2022-11-20T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 21  2022 2022-11-21T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 22  2022 2022-11-22T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 23  2022 2022-11-23T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 24  2022 2022-11-24T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 25  2022 2022-11-25T10:21:05+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 25  2022 2022-11-25T10:21:29+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 25  2022 2022-11-25T10:55:24+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 25  2022 2022-11-25T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 27  2022 2022-11-27T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 28  2022 2022-11-28T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 29  2022 2022-11-29T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Nov 30  2022 2022-11-30T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec  1  2022 2022-12-01T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec  2  2022 2022-12-02T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec  4  2022 2022-12-04T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec  5  2022 2022-12-05T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec  6  2022 2022-12-06T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec  7  2022 2022-12-07T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec  8  2022 2022-12-08T13:20:02+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec  9 13:20 2022-12-09T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 11 13:20 2022-12-11T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 12 13:20 2022-12-12T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 13 13:20 2022-12-13T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 14 13:20 2022-12-14T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 16 13:20 2022-12-16T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 18 13:20 2022-12-18T13:20:02+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 19 13:20 2022-12-19T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 20 13:20 2022-12-20T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 21 13:20 2022-12-21T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 22 13:20 2022-12-22T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 23 13:20 2022-12-23T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 25 13:20 2022-12-25T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 26 13:20 2022-12-26T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 27 13:20 2022-12-27T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 28 13:20 2022-12-28T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 29 13:20 2022-12-29T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 30 13:20 2022-12-30T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Dec 31 13:20 2022-12-31T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan  1 13:20 2023-01-01T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan  2 13:20 2023-01-02T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan  3 13:20 2023-01-03T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan  4 13:20 2023-01-04T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan  5 13:20 2023-01-05T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan  6 13:20 2023-01-06T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan  7 13:20 2023-01-07T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan  8 13:20 2023-01-08T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan  9 13:20 2023-01-09T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan 10 13:20 2023-01-10T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan 11 13:20 2023-01-11T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan 12 13:20 2023-01-12T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan 13 13:20 2023-01-13T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan 14 13:20 2023-01-14T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan 15 13:20 2023-01-15T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan 16 13:20 2023-01-16T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan 17 13:20 2023-01-17T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan 19 13:20 2023-01-19T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan 20 13:20 2023-01-20T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan 21 13:20 2023-01-21T13:20:01+02:00._1.json
-rw-r--r--  1 imoh imoh    4152 Jan 22 13:20 2023-01-22T13:20:01+02:00._1.json
גודל הקבצים 4152 מראה מתי זה נשבר. 

אין תגובות: