tamnd commited on
Commit
e219001
·
verified ·
1 Parent(s): 1abe5b8

Add 2012-09-29 to 2012-10-05 — 7 days, 867.7K events, 7 files

Browse files
README.md CHANGED
@@ -61,9 +61,9 @@ configs:
61
 
62
  This dataset contains every public event on GitHub: every push, pull request, issue, star, fork, code review, release, and discussion across all public repositories. GitHub is the world's largest software development platform, home to over 200 million repositories and the daily work of tens of millions of developers, from individual open-source contributors to the engineering teams behind the most widely used software on earth.
63
 
64
- The archive currently spans from **2011-02-12** to **2015-01-03** (1,239 days), totaling **205,628,298 events** across 16 fully structured Parquet tables. New events are fetched directly from the GitHub Events API every few seconds and committed as 5-minute Parquet blocks through an automated live pipeline, so the dataset stays current with GitHub itself.
65
 
66
- We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 61.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.9 GB of Zstd-compressed Parquet. Every nested JSON field is expanded into typed columns — no JSON parsing needed downstream. The data is partitioned as `data/TABLE/YYYY/MM/DD.parquet`, making it straightforward to query with DuckDB, load with the `datasets` library, or process with any tool that reads Parquet.
67
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
@@ -71,7 +71,7 @@ The underlying data comes from [GH Archive](https://www.gharchive.org/), created
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
- **2026-03-28** — 2,721,044 events in 3847 blocks
75
 
76
  ```
77
  00:00 ████████████████████████░░░░░░ 235.4K
@@ -85,7 +85,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
85
  08:00 ███████████████████████████░░░ 262.4K
86
  09:00 ██████████████████████████████ 284.7K
87
  10:00 ███████████████████████████░░░ 257.5K
88
- 11:00 ███████████████████████░░░░░░░ 226.7K
89
  12:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
90
  13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
91
  14:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -136,16 +136,16 @@ duckdb.sql("""
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 40.1M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 █████████████████████████████░ 72.5M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
- | 2012 | 349 | 40,100,596 | 114,901 | 10.7 GB | 1.1 GB | 1h37m | 2h40m | 1h11m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 221 | 72,499,958 | 328,054 | 24.5 GB | 6.6 GB | 2h26m | 13h56m | 3h24m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -157,7 +157,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ███████████████░░░░░░░░░░░░░░░ 19.3M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 ████████████████████████████░ 36.8M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 103,149,247 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,352,540 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 17,885,064 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,322,184 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,930,379 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 19,356,113 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,342,736 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 26,178,428 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,660,982 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 254,967 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,916,341 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,344,121 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 189,583 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
 
61
 
62
  This dataset contains every public event on GitHub: every push, pull request, issue, star, fork, code review, release, and discussion across all public repositories. GitHub is the world's largest software development platform, home to over 200 million repositories and the daily work of tens of millions of developers, from individual open-source contributors to the engineering teams behind the most widely used software on earth.
63
 
64
+ The archive currently spans from **2011-02-12** to **2015-01-03** (1,240 days), totaling **205,892,146 events** across 16 fully structured Parquet tables. New events are fetched directly from the GitHub Events API every few seconds and committed as 5-minute Parquet blocks through an automated live pipeline, so the dataset stays current with GitHub itself.
65
 
66
+ We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 61.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.8 GB of Zstd-compressed Parquet. Every nested JSON field is expanded into typed columns — no JSON parsing needed downstream. The data is partitioned as `data/TABLE/YYYY/MM/DD.parquet`, making it straightforward to query with DuckDB, load with the `datasets` library, or process with any tool that reads Parquet.
67
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
 
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
+ **2026-03-28** — 2,742,267 events in 3848 blocks
75
 
76
  ```
77
  00:00 ████████████████████████░░░░░░ 235.4K
 
85
  08:00 ███████████████████████████░░░ 262.4K
86
  09:00 ██████████████████████████████ 284.7K
87
  10:00 ███████████████████████████░░░ 257.5K
88
+ 11:00 ██████████████████████████░░░░ 248.0K
89
  12:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
90
  13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
91
  14:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 40.1M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 █████████████████████████████░ 72.8M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
+ | 2012 | 349 | 40,106,042 | 114,917 | 10.7 GB | 1017.9 MB | 1h35m | 2h40m | 1h07m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 222 | 72,758,360 | 327,740 | 24.6 GB | 6.7 GB | 2h26m | 14h01m | 3h24m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ███████████████░░░░░░░░░░░░░░░ 19.3M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 ████████████████████████████░ 36.9M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 103,293,764 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,365,139 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 17,904,091 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,331,743 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,932,623 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 19,379,596 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,352,520 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 26,209,869 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,665,419 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 255,775 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,918,331 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,346,718 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 189,798 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2012/09/29.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3f261e3404a910175bef4f8a274ced630463d2c50837d71ef0e02a053d56579e
3
- size 225573
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb60c81a1ef85b7dba77fdf00a231ee710b41800b165370152eaf3bea701bb91
3
+ size 414440
data/stars/2012/09/30.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6dedec7632b9ae08bd669022e89034186a8ea4110d492b67e5e527332326a95f
3
- size 197222
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d5de1613526e30142a9f4bcb89c650a8999b72d29a5d8e46cec49e5d1933535
3
+ size 402799
data/stars/2012/10/01.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:75217cfa545d9e833caa5a84ef5c7dd1539247028e686aee68c4a5280aab22ae
3
- size 269947
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:669f61c9422606258e3cb411abc1d346b2bb6bd6682c4d6bf8cde82e1cb28cad
3
+ size 540950
data/stars/2012/10/02.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c5d2bf4ad43c60ad8620d87e289328c1600964a36175fe2f15e1a5565c881d5b
3
- size 277062
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9512dcff087b951876b7b8f4cc0fbcd0d3b49df5df51528f132fea91eb0ec7a1
3
+ size 560677
data/stars/2012/10/03.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3ad0700e31d8628bed7d0571de889525f0ef9a68c5ddb4074383ec57bf328774
3
- size 267726
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f914bfb712f6b0aa65e509135155df74d8dfb52208e3fb8ab1ee728c31b072c
3
+ size 542203
data/stars/2012/10/04.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:99c40255aaad76f5b50ab8c9cd4baad4c7af31073b76dabb1deef4952edbc20a
3
- size 271119
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f16e4fe2c1743e7711b56aac8a84a5d2f598dea4a2664dca851bc4531e3f55aa
3
+ size 547369
data/stars/2012/10/05.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a7881e9316fd1d8d12924e5eef4974b1036659d97dfba00ed9c76e610769466b
3
- size 246807
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b85e2daa7e4a5eb31479770e34d8c22ca87bacabdf300e2771f80c0fe9e8118e
3
+ size 488822
stats.csv CHANGED
@@ -587,22 +587,22 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
587
  2012-09-19,142093,961,70219,9050,15050,5011,0,1329,12361,5129,17329,966,0,1570,2971,0,147,0,41415612,29.3,513696,7.2,29.3,6.1
588
  2012-09-20,149995,982,70710,13268,17098,4691,0,1332,12044,5144,19604,991,0,1298,2686,0,147,0,41391100,30.3,549064,7.0,30.3,6.1
589
  2012-09-21,120423,826,62919,6012,10071,4568,0,1109,10641,4446,14796,873,0,1279,2754,0,129,0,36688415,27.5,465299,13.4,27.5,6.1
590
- 2012-09-22,83887,573,46256,4299,5919,2298,0,522,7183,3160,10337,412,0,713,2129,0,86,0,24641942,19.1,342849,5.4,19.1,0.0
591
- 2012-09-23,104251,553,53059,11052,7300,2714,0,519,9179,3585,12566,563,0,886,2169,0,106,0,29001972,27.0,422692,6.9,27.0,0.0
592
- 2012-09-24,148992,958,70734,16681,14366,5373,0,1382,12355,5069,16841,876,0,1514,2711,0,132,0,43250433,35.3,559107,9.6,35.3,0.0
593
- 2012-09-25,141580,911,72077,7467,12685,5270,0,1571,13338,5361,17616,949,0,1449,2764,0,122,0,43567072,34.0,591316,17.0,34.0,0.0
594
- 2012-09-26,179536,1041,72030,13580,23823,5006,0,1185,12335,5988,38768,918,0,1553,3192,0,117,0,44355404,38.9,563959,11.4,38.9,0.0
595
- 2012-09-27,147449,906,71221,11057,16955,5407,0,1698,12822,5504,16557,882,0,1536,2754,0,150,0,43490008,27.6,577295,41.1,27.6,0.0
596
- 2012-09-28,134036,834,63108,9683,17746,4561,0,1260,12142,4706,15084,787,0,1302,2690,0,133,0,38617509,26.3,533246,13.0,26.3,0.0
597
- 2012-09-29,86169,668,47049,4362,6133,2470,0,463,8341,3378,10362,439,0,728,1692,0,84,0,25516980,14.6,8780823,37.4,14.6,34.2
598
- 2012-09-30,93883,557,50601,4902,6465,2637,0,533,8803,3233,12774,536,0,860,1902,0,80,0,27908957,13.8,9575740,22.1,13.8,30.0
599
- 2012-10-01,149694,1021,69689,8000,13211,5115,0,1255,12055,4685,29475,930,0,1422,2645,0,191,0,42451491,22.8,14366333,38.6,22.8,37.2
600
- 2012-10-02,138032,1052,70631,7257,12771,5128,0,1373,12175,5083,16920,933,0,1815,2777,0,117,0,43132822,26.9,14317820,27.2,26.9,29.5
601
- 2012-10-03,140535,884,72010,7431,12812,5216,0,1478,11975,5296,17816,857,0,1718,2891,0,151,0,43587517,28.3,14485974,25.7,28.3,29.5
602
- 2012-10-04,138228,1057,70715,7209,12366,5181,0,1119,11946,5205,17873,943,0,1517,2950,0,147,0,43114186,31.0,14792184,27.9,31.0,27.5
603
- 2012-10-05,123949,877,63547,6879,10667,4679,0,1222,11028,4490,15788,817,0,1238,2569,0,148,0,38440189,28.0,12739137,44.6,28.0,37.6
604
- 2012-10-06,86384,566,47501,4076,5975,2353,0,482,7800,3178,11405,437,0,782,1740,0,89,0,25682726,22.8,8702141,34.5,22.8,26.4
605
- 2012-10-07,87933,592,47667,4272,6253,2500,0,540,8729,2986,11408,492,0,701,1718,0,75,0,26403617,27.5,9274202,25.2,27.5,30.5
606
  2012-10-08,140290,1179,72947,7397,12093,5020,0,1293,12597,5164,16886,900,0,1451,3202,0,161,0,43817035,35.1,14765844,23.8,35.1,39.0
607
  2012-10-09,155951,1205,78572,7753,13013,5521,0,1246,13321,5766,23605,996,0,1701,3108,0,144,0,47189471,38.9,15844053,19.2,38.9,26.4
608
  2012-10-10,149037,1066,77923,7681,12624,5533,0,1364,13314,5577,18149,892,0,1728,3012,0,174,0,46476969,31.5,15624548,42.4,31.5,30.0
@@ -1236,5 +1236,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1236
  2014-08-19,431557,1704,211334,24267,44738,21171,0,7179,42617,14546,48180,7089,1014,3177,4240,0,301,0,249969144,464.2,43202458,48.8,464.2,134.6
1237
  2014-08-20,408477,1583,197591,28553,44439,19783,0,7068,35808,12832,44405,8123,1181,3036,3770,0,305,0,233883427,460.8,40536664,42.0,460.8,60.5
1238
  2014-08-21,394280,1499,196076,21257,38888,18754,0,7443,35164,13340,44580,9179,1116,3065,3594,0,325,0,233419185,443.6,39246587,44.6,443.6,22.7
 
1239
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1240
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0
 
587
  2012-09-19,142093,961,70219,9050,15050,5011,0,1329,12361,5129,17329,966,0,1570,2971,0,147,0,41415612,29.3,513696,7.2,29.3,6.1
588
  2012-09-20,149995,982,70710,13268,17098,4691,0,1332,12044,5144,19604,991,0,1298,2686,0,147,0,41391100,30.3,549064,7.0,30.3,6.1
589
  2012-09-21,120423,826,62919,6012,10071,4568,0,1109,10641,4446,14796,873,0,1279,2754,0,129,0,36688415,27.5,465299,13.4,27.5,6.1
590
+ 2012-09-22,83887,573,46256,4299,5919,2298,0,522,7183,3160,10337,412,0,713,2129,0,86,0,24641942,19.1,342849,5.4,19.1,5.9
591
+ 2012-09-23,104251,553,53059,11052,7300,2714,0,519,9179,3585,12566,563,0,886,2169,0,106,0,29001972,27.0,422692,6.9,27.0,5.9
592
+ 2012-09-24,148992,958,70734,16681,14366,5373,0,1382,12355,5069,16841,876,0,1514,2711,0,132,0,43250433,35.3,559107,9.6,35.3,5.9
593
+ 2012-09-25,141580,911,72077,7467,12685,5270,0,1571,13338,5361,17616,949,0,1449,2764,0,122,0,43567072,34.0,591316,17.0,34.0,5.9
594
+ 2012-09-26,179536,1041,72030,13580,23823,5006,0,1185,12335,5988,38768,918,0,1553,3192,0,117,0,44355404,38.9,563959,11.4,38.9,5.9
595
+ 2012-09-27,147449,906,71221,11057,16955,5407,0,1698,12822,5504,16557,882,0,1536,2754,0,150,0,43490008,27.6,577295,41.1,27.6,5.9
596
+ 2012-09-28,134036,834,63108,9683,17746,4561,0,1260,12142,4706,15084,787,0,1302,2690,0,133,0,38617509,26.3,533246,13.0,26.3,5.9
597
+ 2012-09-29,86169,668,47049,4362,6133,2470,0,463,8341,3378,10362,439,0,728,1692,0,84,0,25516980,14.5,414440,20.0,14.5,0.0
598
+ 2012-09-30,93883,557,50601,4902,6465,2637,0,533,8803,3233,12774,536,0,860,1902,0,80,0,27908957,16.2,402799,26.0,16.2,0.0
599
+ 2012-10-01,149694,1021,69689,8000,13211,5115,0,1255,12055,4685,29475,930,0,1422,2645,0,191,0,42451491,29.0,540950,22.3,29.0,0.0
600
+ 2012-10-02,138032,1052,70631,7257,12771,5128,0,1373,12175,5083,16920,933,0,1815,2777,0,117,0,43132822,28.5,560677,7.1,28.5,0.0
601
+ 2012-10-03,140535,884,72010,7431,12812,5216,0,1478,11975,5296,17816,857,0,1718,2891,0,151,0,43587517,26.6,542203,22.9,26.6,0.0
602
+ 2012-10-04,138228,1057,70715,7209,12366,5181,0,1119,11946,5205,17873,943,0,1517,2950,0,147,0,43114186,26.6,547369,6.1,26.6,0.0
603
+ 2012-10-05,121169,855,62090,6737,10476,4584,0,1219,10732,4396,15400,807,0,1221,2511,0,141,0,37595301,26.0,488822,23.3,26.0,0.0
604
+ 2012-10-06,86384,566,47501,4076,5975,2353,0,482,7800,3178,11405,437,0,782,1740,0,89,0,25682726,15.0,369265,7.9,15.1,0.0
605
+ 2012-10-07,96159,646,52298,4691,6762,2728,0,594,9389,3245,12557,543,0,768,1851,0,87,0,28865649,19.9,439684,6.9,19.9,0.0
606
  2012-10-08,140290,1179,72947,7397,12093,5020,0,1293,12597,5164,16886,900,0,1451,3202,0,161,0,43817035,35.1,14765844,23.8,35.1,39.0
607
  2012-10-09,155951,1205,78572,7753,13013,5521,0,1246,13321,5766,23605,996,0,1701,3108,0,144,0,47189471,38.9,15844053,19.2,38.9,26.4
608
  2012-10-10,149037,1066,77923,7681,12624,5533,0,1364,13314,5577,18149,892,0,1728,3012,0,174,0,46476969,31.5,15624548,42.4,31.5,30.0
 
1236
  2014-08-19,431557,1704,211334,24267,44738,21171,0,7179,42617,14546,48180,7089,1014,3177,4240,0,301,0,249969144,464.2,43202458,48.8,464.2,134.6
1237
  2014-08-20,408477,1583,197591,28553,44439,19783,0,7068,35808,12832,44405,8123,1181,3036,3770,0,305,0,233883427,460.8,40536664,42.0,460.8,60.5
1238
  2014-08-21,394280,1499,196076,21257,38888,18754,0,7443,35164,13340,44580,9179,1116,3065,3594,0,325,0,233419185,443.6,39246587,44.6,443.6,22.7
1239
+ 2014-08-23,258402,1115,141343,12322,18709,9426,0,2193,23119,9619,30680,4396,808,1940,2522,0,210,0,144557306,255.3,29063054,7.0,255.3,0.0
1240
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1241
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0