tamnd commited on
Commit
17fb334
·
verified ·
1 Parent(s): 022e569

Add 2014-09-16 — 461.1K 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,289 days), totaling **218,447,061 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 67.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 12.4 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
 
@@ -135,8 +135,8 @@ duckdb.sql("""
135
  ```
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ███████████████░░░░░░░░░░░░░░░ 42.5M
138
- 2013 ███████████████████████████░░ 76.1M
139
- 2014 ██████████████████████████████ 81.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 | 353 | 76,105,538 | 215,596 | 23.1 GB | 4.7 GB | 2h45m | 9h11m | 2h53m |
148
- | 2014 | 245 | 81,259,674 | 331,672 | 29.2 GB | 7.5 GB | 2h42m | 16h34m | 3h46m |
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.9M
160
- 2014 ██████████████████████████████ 41.2M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -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 ████████████████████████░░░░░░ 3.0M
204
  2014 ██████████████████████████████ 3.6M
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.1M
226
- 2014 ██████████████████████████████ 7.5M
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 | 109,671,384 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 12,110,772 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 19,086,095 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,858,213 | 4.1% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,091,860 | 1.0% | Line-level PR comments |
645
- | `stars` | WatchEvent | 20,506,331 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,781,246 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 27,661,676 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,848,270 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 279,081 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 2,024,118 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,513,070 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 200,962 | 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,291 days), totaling **219,342,442 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 67.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 12.5 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
 
 
135
  ```
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ███████████████░░░░░░░░░░░░░░░ 42.5M
138
+ 2013 ███████████████████████████░░ 76.1M
139
+ 2014 ██████████████████████████████ 82.2M
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 | 353 | 76,105,538 | 215,596 | 23.1 GB | 4.6 GB | 2h44m | 9h11m | 2h52m |
148
+ | 2014 | 247 | 82,155,055 | 332,611 | 29.6 GB | 7.5 GB | 2h44m | 16h49m | 3h47m |
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.9M
160
+ 2014 ██████████████████████████████ 41.7M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
199
 
200
  ```
201
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
+ 2012 ██████████████░░░░░░░░░░░░░░░ 1.8M
203
  2013 ████████████████████████░░░░░░ 3.0M
204
  2014 ██████████████████████████████ 3.6M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
 
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ████████████████░░░░░░░░░░░░░░ 4.0M
225
  2013 ████████████████████████████░░ 7.1M
226
+ 2014 ██████████████████████████████ 7.6M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 110,115,949 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 12,167,252 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 19,172,062 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,899,902 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,106,340 | 1.0% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 20,581,568 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,811,557 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 27,763,114 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,863,834 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 281,507 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 2,031,360 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,527,661 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 201,777 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/commit_comments/2014/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5da4d56c4ca8ec7078cd46eb9a792dcc062571d99dd5280fd6593bf04ecfa20c
3
+ size 110264
data/creates/2014/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6247193df69a7bdc8849bbf77ad2537fa8a3ffeca3dc99edda27927bf0b20c7d
3
+ size 2308810
data/deletes/2014/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfb347a602d1705119ded9bc330f2da8f65645d0ffc286582b4ff074c090fbef
3
+ size 224026
data/forks/2014/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee594c30541aaa9f6d316569e2e466645f7b248193f52a63c3ae3da825f3755d
3
+ size 401116
data/issue_comments/2014/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a08666b0d11311ab44b58b58db33f88c4d3f90a0a7d3d1880ef2d3ee58fae4d8
3
+ size 1020458
data/issues/2014/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fb36d1aaf3165ef18ed56f450e9faa73a2be86d18a18da79608130e6c96003d
3
+ size 680675
data/public_events/2014/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72bd0365e1d9ca964735d9477a3c61562b1708b748bcf969f26c3697e57b5e44
3
+ size 16881
data/pull_requests/2014/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7f7ad69dac3b4c4726c0349821b944fd54635c8f60f97641e41d7319c05efb0
3
+ size 3612084
data/pushes/2014/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4e84c8c9eb7faa5ade82eb4d18ed653758cf4cb7c38f4bfc1f85e8d8761e3da
3
+ size 35326323
data/stars/2014/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85089f5b94d9b30082fdc715194141c95ebade19f4587de8938f27191b13e56e
3
+ size 1736262
data/wiki_pages/2014/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ca26ef0aef85f98aca667d2a2b7dd65c40f7a050e839db153c1dafae793056a
3
+ size 435460
stats.csv CHANGED
@@ -825,19 +825,19 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
825
  2013-05-15,227361,1177,118857,11565,20710,9524,0,2313,20547,8436,25861,1872,0,2382,3894,0,223,0,75675872,53.4,920315,13.5,53.4,7.2
826
  2013-05-16,215151,1082,112371,11183,19593,8694,0,2363,20353,7607,24502,1719,0,2161,3324,0,199,0,73420371,42.7,919229,19.6,42.7,7.2
827
  2013-05-17,202817,941,107241,10281,17559,8198,0,2148,18930,7076,23454,1638,0,2023,3136,0,192,0,74020045,47.6,829325,28.3,47.6,7.2
828
- 2013-05-18,139471,667,76643,6996,10409,4752,0,823,12949,5231,16525,1079,0,1098,2148,0,151,0,46549752,27.9,621963,12.5,28.0,0.0
829
- 2013-05-19,161438,747,88398,7891,11447,5216,0,1205,16325,5758,18363,1757,0,1663,2530,0,138,0,59378561,37.8,736589,25.4,37.8,0.0
830
- 2013-05-20,221617,956,115240,13272,20369,8581,0,2157,19742,7793,26335,1765,0,2164,3018,0,225,0,75941516,57.9,962479,13.9,57.9,0.0
831
- 2013-05-21,232608,1179,119986,14323,21060,9544,0,2214,22019,8833,25756,1892,0,2016,3577,0,209,0,78334622,65.9,983343,19.1,65.9,0.0
832
- 2013-05-22,239466,1198,123473,15178,22279,9801,0,2571,21809,8931,25942,1896,0,2285,3857,0,246,0,82261694,64.1,979463,15.0,64.1,0.0
833
- 2013-05-23,229190,1208,119918,12465,20832,9547,0,2376,21265,8466,25448,1851,0,2025,3572,0,217,0,75883535,57.8,975915,23.2,57.8,0.0
834
- 2013-05-24,205849,999,106282,16066,17432,8422,0,1767,18540,7150,22119,1802,0,1886,3203,0,181,0,69192593,52.7,829538,14.5,52.7,0.0
835
- 2013-05-25,137552,599,76569,6925,10280,4524,0,758,12632,5008,15833,1125,0,1016,2148,0,135,0,44954441,22.4,14950164,42.6,22.4,40.0
836
- 2013-05-26,161823,499,85138,10896,17475,4456,0,784,14562,5464,17078,1117,0,1125,3113,0,116,0,48290919,23.0,15657153,25.7,23.0,35.0
837
- 2013-05-27,217251,952,110645,17990,23139,7319,0,1608,18617,7428,22498,1563,0,1977,3325,0,190,0,72273637,35.2,23239285,48.6,35.2,46.6
838
- 2013-05-28,236821,1186,120974,13981,21455,9661,0,2365,23514,8669,26566,2059,0,2292,3883,0,216,0,78034327,43.4,24730586,45.3,43.4,64.9
839
- 2013-05-29,234172,1168,121158,12730,22097,9753,0,2338,22532,8549,25687,1969,0,2090,3868,0,233,0,78227941,78.9,28611494,57.2,78.9,29.7
840
- 2013-05-30,224877,1037,116546,12239,20496,8991,0,2358,20666,8028,26023,1911,0,2191,4182,0,209,0,73737441,120.9,23119405,64.1,120.9,31.1
841
  2013-05-31,193150,955,100315,10404,17848,8019,0,1922,17841,6505,22735,1653,0,1624,3150,0,179,0,64285499,135.0,20275990,28.9,135.0,45.7
842
  2013-06-01,147461,799,81143,7839,11529,4757,0,989,13411,5437,16481,1066,0,1222,2666,0,122,0,46893529,102.6,14486853,34.4,102.6,40.0
843
  2013-06-02,156728,682,86990,7680,11486,4956,0,1029,14332,5442,18447,1127,0,1597,2805,0,155,0,49492964,105.1,15922840,42.1,105.1,40.1
@@ -1286,6 +1286,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1286
  2014-09-12,385786,2317,195944,18282,36636,18301,0,5918,33897,12982,45839,6600,1047,2784,4893,0,346,0,225022288,405.8,40439589,45.5,405.8,19.7
1287
  2014-09-13,279220,1639,153966,12502,20954,10128,0,3466,24392,9753,32676,4387,708,1630,2779,0,240,0,154523497,282.5,27570852,37.1,282.5,28.2
1288
  2014-09-15,444449,2320,225559,22790,45910,20010,0,7076,39330,14112,49944,8000,1172,3047,4722,0,457,0,256201177,415.1,45849185,28.1,415.1,53.6
 
1289
  2014-09-18,434311,2190,217982,24919,41386,20675,0,6457,36430,14970,49668,7792,1118,3344,6999,0,381,0,250824876,423.9,44164103,49.7,423.9,0.0
1290
  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
1291
  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
 
825
  2013-05-15,227361,1177,118857,11565,20710,9524,0,2313,20547,8436,25861,1872,0,2382,3894,0,223,0,75675872,53.4,920315,13.5,53.4,7.2
826
  2013-05-16,215151,1082,112371,11183,19593,8694,0,2363,20353,7607,24502,1719,0,2161,3324,0,199,0,73420371,42.7,919229,19.6,42.7,7.2
827
  2013-05-17,202817,941,107241,10281,17559,8198,0,2148,18930,7076,23454,1638,0,2023,3136,0,192,0,74020045,47.6,829325,28.3,47.6,7.2
828
+ 2013-05-18,139471,667,76643,6996,10409,4752,0,823,12949,5231,16525,1079,0,1098,2148,0,151,0,46549752,27.9,621963,12.5,28.0,5.5
829
+ 2013-05-19,161438,747,88398,7891,11447,5216,0,1205,16325,5758,18363,1757,0,1663,2530,0,138,0,59378561,37.8,736589,25.4,37.8,5.5
830
+ 2013-05-20,221617,956,115240,13272,20369,8581,0,2157,19742,7793,26335,1765,0,2164,3018,0,225,0,75941516,57.9,962479,13.9,57.9,5.5
831
+ 2013-05-21,232608,1179,119986,14323,21060,9544,0,2214,22019,8833,25756,1892,0,2016,3577,0,209,0,78334622,65.9,983343,19.1,65.9,5.5
832
+ 2013-05-22,239466,1198,123473,15178,22279,9801,0,2571,21809,8931,25942,1896,0,2285,3857,0,246,0,82261694,64.1,979463,15.0,64.1,5.5
833
+ 2013-05-23,229190,1208,119918,12465,20832,9547,0,2376,21265,8466,25448,1851,0,2025,3572,0,217,0,75883535,57.8,975915,23.2,57.8,5.5
834
+ 2013-05-24,205849,999,106282,16066,17432,8422,0,1767,18540,7150,22119,1802,0,1886,3203,0,181,0,69192593,52.7,829538,14.5,52.7,5.5
835
+ 2013-05-25,137552,599,76569,6925,10280,4524,0,758,12632,5008,15833,1125,0,1016,2148,0,135,0,44954441,31.7,660995,28.3,31.7,0.0
836
+ 2013-05-26,161823,499,85138,10896,17475,4456,0,784,14562,5464,17078,1117,0,1125,3113,0,116,0,48290919,35.9,738708,10.5,35.9,0.0
837
+ 2013-05-27,217251,952,110645,17990,23139,7319,0,1608,18617,7428,22498,1563,0,1977,3325,0,190,0,72273637,54.0,841876,12.2,54.0,0.0
838
+ 2013-05-28,236821,1186,120974,13981,21455,9661,0,2365,23514,8669,26566,2059,0,2292,3883,0,216,0,78034327,62.4,1038357,24.5,62.4,0.0
839
+ 2013-05-29,234172,1168,121158,12730,22097,9753,0,2338,22532,8549,25687,1969,0,2090,3868,0,233,0,78227941,62.6,1042704,7.5,62.6,0.0
840
+ 2013-05-30,224877,1037,116546,12239,20496,8991,0,2358,20666,8028,26023,1911,0,2191,4182,0,209,0,73737441,59.2,927351,7.7,59.2,0.0
841
  2013-05-31,193150,955,100315,10404,17848,8019,0,1922,17841,6505,22735,1653,0,1624,3150,0,179,0,64285499,135.0,20275990,28.9,135.0,45.7
842
  2013-06-01,147461,799,81143,7839,11529,4757,0,989,13411,5437,16481,1066,0,1222,2666,0,122,0,46893529,102.6,14486853,34.4,102.6,40.0
843
  2013-06-02,156728,682,86990,7680,11486,4956,0,1029,14332,5442,18447,1127,0,1597,2805,0,155,0,49492964,105.1,15922840,42.1,105.1,40.1
 
1286
  2014-09-12,385786,2317,195944,18282,36636,18301,0,5918,33897,12982,45839,6600,1047,2784,4893,0,346,0,225022288,405.8,40439589,45.5,405.8,19.7
1287
  2014-09-13,279220,1639,153966,12502,20954,10128,0,3466,24392,9753,32676,4387,708,1630,2779,0,240,0,154523497,282.5,27570852,37.1,282.5,28.2
1288
  2014-09-15,444449,2320,225559,22790,45910,20010,0,7076,39330,14112,49944,8000,1172,3047,4722,0,457,0,256201177,415.1,45849185,28.1,415.1,53.6
1289
+ 2014-09-16,461070,2386,226583,31561,44581,21014,0,8023,38807,15341,51770,7772,1308,3898,7592,0,434,0,270381036,452.2,45872359,53.0,452.2,0.0
1290
  2014-09-18,434311,2190,217982,24919,41386,20675,0,6457,36430,14970,49668,7792,1118,3344,6999,0,381,0,250824876,423.9,44164103,49.7,423.9,0.0
1291
  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
1292
  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