tamnd commited on
Commit
90657bc
·
verified ·
1 Parent(s): 8ff3faa

Add 2014-09-02 — 425.7K events, 11 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,267 days), totaling **211,901,832 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 64.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.0 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
 
@@ -136,7 +136,7 @@ duckdb.sql("""
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
  2013 █████████████████████████████░ 74.5M
139
- 2014 ██████████████████████████████ 76.3M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
@@ -144,8 +144,8 @@ duckdb.sql("""
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
147
- | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 6.7 GB | 3h21m | 10h48m | 4h18m |
148
- | 2014 | 232 | 76,336,571 | 329,036 | 26.5 GB | 7.0 GB | 2h33m | 15h05m | 3h33m |
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 ███████████████░░░░░░░░░░░░░░░ 20.6M
159
  2013 █████████████████████████████░ 38.1M
160
- 2014 ██████████████████████████████ 38.7M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -178,7 +178,7 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
178
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
179
  2012 ████████████████░░░░░░░░░░░░░░ 2.4M
180
  2013 ██████████████████████████████ 4.3M
181
- 2014 ████████████████████████████░░ 4.0M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
@@ -199,7 +199,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
199
 
200
  ```
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
- 2012 ███████████████░░░░░░░░░░░░░░ 1.8M
203
  2013 █████████████████████████░░░░░ 2.9M
204
  2014 ██████████████████████████████ 3.4M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
@@ -223,7 +223,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 █████████████████░░░░░░░░░░░░░ 4.0M
225
  2013 █████████████████████████████░ 7.0M
226
- 2014 ██████████████████████████████ 7.0M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 106,344,376 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,748,479 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 18,461,335 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,573,129 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,000,168 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 19,923,309 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,559,660 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 26,899,534 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,749,709 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 265,882 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,971,218 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,432,195 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 194,843 | 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,268 days), totaling **212,327,484 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 64.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.0 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
 
 
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
  2013 █████████████████████████████░ 74.5M
139
+ 2014 ██████████████████████████████ 76.8M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
 
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
147
+ | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 6.6 GB | 3h19m | 10h46m | 4h15m |
148
+ | 2014 | 233 | 76,762,223 | 329,451 | 26.7 GB | 7.0 GB | 2h34m | 15h13m | 3h35m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ███████████████░░░░░░░░░░░░░░░ 20.6M
159
  2013 █████████████████████████████░ 38.1M
160
+ 2014 ██████████████████████████████ 38.9M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
178
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
179
  2012 ████████████████░░░░░░░░░░░░░░ 2.4M
180
  2013 ██████████████████████████████ 4.3M
181
+ 2014 ████████████████████████████░░ 4.1M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
 
199
 
200
  ```
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
+ 2012 ███████████████░░░░░░░░░░░░░░ 1.8M
203
  2013 █████████████████████████░░░░░ 2.9M
204
  2014 ██████████████████████████████ 3.4M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
 
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 █████████████████░░░░░░░░░░░░░ 4.0M
225
  2013 █████████████████████████████░ 7.0M
226
+ 2014 ██████████████████████████████ 7.1M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 106,557,040 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,769,239 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 18,502,207 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,593,663 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,007,087 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 19,962,399 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,574,364 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 26,950,172 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,757,125 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 267,087 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,975,096 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,436,865 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 195,193 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/commit_comments/2014/09/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ab41e920c2e17d2d6e106f77302ae097e83484f4f9f276fbce34fe79e9879bc
3
+ size 121383
data/creates/2014/09/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a7b3883155686e381aad3b317467a78945c8b754627e5c19c1f464266684fb7
3
+ size 2039977
data/deletes/2014/09/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f67410c14d68bf627e87e26527e6383c0b2216d61a513ec15de5d2238e20760
3
+ size 218862
data/forks/2014/09/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d7d0aa2ffa10a5684bdb359eefc6d4a4695de4dca2c8159c11c68a6f0423be7
3
+ size 386829
data/issue_comments/2014/09/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a6961a2991bd899e1f36e879cc2e7aae57f37451c9a8467860317146b873e8b
3
+ size 1035444
data/issues/2014/09/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a20238cdc81591fc672c9436d90a0b377879c533dabe8d57ae0131ec306a6f21
3
+ size 563005
data/public_events/2014/09/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7af61845a2506918ab29c1b5f14bcb5658480308820c25c5a7125ab413b9277c
3
+ size 14521
data/pull_requests/2014/09/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:249635f3dcf8a0b80c0b1add2950897d959d7b3e6d7d6ad8775e5fd5a8a9046b
3
+ size 3626914
data/pushes/2014/09/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c70c5e30d6f3afd137877b64d58048a77176abb6cb173129f8dd29f4ceb6686
3
+ size 33477439
data/stars/2014/09/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6361753496021825c9df52e89de71f1e3f78365822c4455c48d4af29cb285a4e
3
+ size 1806930
data/wiki_pages/2014/09/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6591664b429bcee10e87e6c845f3185d70e943eaa0cd37a44b12a770cdab1cb9
3
+ size 244328
stats.csv CHANGED
@@ -699,20 +699,20 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
699
  2013-01-09,179459,1026,89753,10583,18350,6935,0,1736,16839,7271,20196,1374,0,2018,3208,0,170,0,60077997,43.2,764583,10.9,43.2,12.7
700
  2013-01-10,184111,1246,91523,11809,19520,7215,0,1626,16129,7190,21141,1542,0,1826,3169,0,175,0,60786257,45.7,727633,16.1,45.7,12.7
701
  2013-01-11,167858,1015,82633,14473,15506,6685,0,1516,14558,6512,18752,1272,0,1690,3083,0,163,0,55655751,40.1,685036,24.2,40.1,12.7
702
- 2013-01-12,120793,726,63789,7301,10033,3660,0,778,10891,4669,14154,909,0,1147,2634,0,102,0,38395043,23.4,513562,6.5,23.4,0.0
703
- 2013-01-13,138033,744,74826,7134,10460,4284,0,872,12295,5525,16764,1097,0,1183,2740,0,109,0,44012590,29.9,586246,6.8,29.9,0.0
704
- 2013-01-14,184892,1193,94519,9469,17259,7477,0,1804,17546,7389,21052,1465,0,1971,3571,0,177,0,63347392,48.0,862652,25.9,48.0,0.0
705
- 2013-01-15,190319,1274,96224,10846,18360,7286,0,1767,17908,7746,22091,1557,0,1763,3300,0,197,0,63405136,46.8,802548,10.3,46.8,0.0
706
- 2013-01-16,186721,1171,94451,9962,16781,7467,0,1899,18198,7498,22084,1532,0,1794,3730,0,154,0,63318925,44.4,829859,10.0,44.4,0.0
707
- 2013-01-17,196541,1183,94882,15381,21214,7031,0,1888,18501,7863,21674,1609,0,1883,3285,0,147,0,63033633,52.3,895500,32.9,52.3,0.0
708
- 2013-01-18,166984,1227,84532,9677,15750,6386,0,1392,15975,6759,19140,1323,0,1741,2852,0,230,0,55786372,47.6,726771,12.4,47.6,0.0
709
  2013-01-19,124976,877,67373,6376,9475,3731,0,845,12125,4820,14771,1000,0,1230,2257,0,96,0,39695357,33.9,565717,8.1,33.9,0.0
710
- 2013-01-20,138262,723,74158,7163,10804,4022,0,707,14102,5248,16492,971,0,1202,2563,0,107,0,43745352,21.3,13999353,41.4,21.3,29.6
711
- 2013-01-21,182443,1195,93863,10073,16625,6875,0,1610,17307,7059,21034,1424,0,1897,3332,0,149,0,61733944,39.5,18681282,40.0,39.5,51.6
712
- 2013-01-22,194352,1294,97702,11134,18068,7476,0,1560,18834,7870,23107,1563,0,1856,3703,0,185,0,64864724,72.7,19666755,31.6,72.7,41.6
713
- 2013-01-23,201314,1370,99622,11099,18483,7859,0,1875,19787,8348,24710,1613,0,1937,4457,0,154,0,67353053,97.1,19713549,31.2,97.1,50.7
714
- 2013-01-24,199064,1297,100069,9971,17884,7544,0,1856,20566,8568,23556,1451,0,2246,3860,0,196,0,66332904,95.4,19959127,46.6,95.4,40.9
715
- 2013-01-25,175763,1459,89942,8933,15471,6862,0,1494,17532,6920,20661,1455,0,1602,3254,0,178,0,58971483,81.0,17477148,29.8,81.0,23.9
716
  2013-01-26,144468,995,76196,11529,11504,4280,0,640,13046,5321,16422,1076,0,1045,2310,0,104,0,44362972,57.9,13860302,23.7,57.9,34.5
717
  2013-01-27,151477,852,81089,8661,12351,4371,0,854,14753,5690,17601,965,0,1412,2763,0,115,0,47315455,44.4,15104285,27.1,44.4,27.4
718
  2013-01-28,197606,1419,98993,10942,18349,7553,0,1473,19777,8050,23273,1589,0,2146,3864,0,178,0,65880765,28.7,19900843,32.9,28.7,58.3
@@ -1264,5 +1264,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1264
  2014-08-30,239376,1002,131940,11173,17603,8868,0,1837,23440,7944,27145,3441,721,1508,2577,0,177,0,131322439,254.2,23892265,37.8,254.2,46.2
1265
  2014-08-31,273461,964,147715,12833,21023,10365,0,2286,27044,9241,31881,4163,765,1981,2980,0,220,0,150060794,277.6,27369801,45.0,277.6,61.3
1266
  2014-09-01,364290,1391,187567,17638,31674,15803,0,4234,35884,12666,43364,6064,976,2357,4370,0,302,0,205500432,388.8,36506874,45.4,388.8,110.3
 
1267
  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
1268
  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
 
699
  2013-01-09,179459,1026,89753,10583,18350,6935,0,1736,16839,7271,20196,1374,0,2018,3208,0,170,0,60077997,43.2,764583,10.9,43.2,12.7
700
  2013-01-10,184111,1246,91523,11809,19520,7215,0,1626,16129,7190,21141,1542,0,1826,3169,0,175,0,60786257,45.7,727633,16.1,45.7,12.7
701
  2013-01-11,167858,1015,82633,14473,15506,6685,0,1516,14558,6512,18752,1272,0,1690,3083,0,163,0,55655751,40.1,685036,24.2,40.1,12.7
702
+ 2013-01-12,120793,726,63789,7301,10033,3660,0,778,10891,4669,14154,909,0,1147,2634,0,102,0,38395043,23.4,513562,6.5,23.4,6.0
703
+ 2013-01-13,138033,744,74826,7134,10460,4284,0,872,12295,5525,16764,1097,0,1183,2740,0,109,0,44012590,29.9,586246,6.8,29.9,6.0
704
+ 2013-01-14,184892,1193,94519,9469,17259,7477,0,1804,17546,7389,21052,1465,0,1971,3571,0,177,0,63347392,48.0,862652,25.9,48.0,6.0
705
+ 2013-01-15,190319,1274,96224,10846,18360,7286,0,1767,17908,7746,22091,1557,0,1763,3300,0,197,0,63405136,46.8,802548,10.3,46.8,6.0
706
+ 2013-01-16,186721,1171,94451,9962,16781,7467,0,1899,18198,7498,22084,1532,0,1794,3730,0,154,0,63318925,44.4,829859,10.0,44.4,6.0
707
+ 2013-01-17,196541,1183,94882,15381,21214,7031,0,1888,18501,7863,21674,1609,0,1883,3285,0,147,0,63033633,52.3,895500,32.9,52.3,6.0
708
+ 2013-01-18,166984,1227,84532,9677,15750,6386,0,1392,15975,6759,19140,1323,0,1741,2852,0,230,0,55786372,47.6,726771,12.4,47.6,6.0
709
  2013-01-19,124976,877,67373,6376,9475,3731,0,845,12125,4820,14771,1000,0,1230,2257,0,96,0,39695357,33.9,565717,8.1,33.9,0.0
710
+ 2013-01-20,138262,723,74158,7163,10804,4022,0,707,14102,5248,16492,971,0,1202,2563,0,107,0,43745352,36.9,628636,11.7,36.9,0.0
711
+ 2013-01-21,182443,1195,93863,10073,16625,6875,0,1610,17307,7059,21034,1424,0,1897,3332,0,149,0,61733944,41.9,791856,18.4,41.9,0.0
712
+ 2013-01-22,194352,1294,97702,11134,18068,7476,0,1560,18834,7870,23107,1563,0,1856,3703,0,185,0,64864724,45.3,845517,30.1,45.3,0.0
713
+ 2013-01-23,201314,1370,99622,11099,18483,7859,0,1875,19787,8348,24710,1613,0,1937,4457,0,154,0,67353053,46.8,871168,13.0,46.8,0.0
714
+ 2013-01-24,199064,1297,100069,9971,17884,7544,0,1856,20566,8568,23556,1451,0,2246,3860,0,196,0,66332904,42.7,888003,8.9,42.7,0.0
715
+ 2013-01-25,175763,1459,89942,8933,15471,6862,0,1494,17532,6920,20661,1455,0,1602,3254,0,178,0,58971483,36.9,766597,6.7,37.0,0.0
716
  2013-01-26,144468,995,76196,11529,11504,4280,0,640,13046,5321,16422,1076,0,1045,2310,0,104,0,44362972,57.9,13860302,23.7,57.9,34.5
717
  2013-01-27,151477,852,81089,8661,12351,4371,0,854,14753,5690,17601,965,0,1412,2763,0,115,0,47315455,44.4,15104285,27.1,44.4,27.4
718
  2013-01-28,197606,1419,98993,10942,18349,7553,0,1473,19777,8050,23273,1589,0,2146,3864,0,178,0,65880765,28.7,19900843,32.9,28.7,58.3
 
1264
  2014-08-30,239376,1002,131940,11173,17603,8868,0,1837,23440,7944,27145,3441,721,1508,2577,0,177,0,131322439,254.2,23892265,37.8,254.2,46.2
1265
  2014-08-31,273461,964,147715,12833,21023,10365,0,2286,27044,9241,31881,4163,765,1981,2980,0,220,0,150060794,277.6,27369801,45.0,277.6,61.3
1266
  2014-09-01,364290,1391,187567,17638,31674,15803,0,4234,35884,12666,43364,6064,976,2357,4370,0,302,0,205500432,388.8,36506874,45.4,388.8,110.3
1267
+ 2014-09-02,425652,1952,212664,20760,40872,20534,0,6919,39090,14704,50638,7416,1205,3878,4670,0,350,0,247970027,480.6,43535632,50.5,480.6,0.0
1268
  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
1269
  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