tamnd commited on
Commit
f5b3256
·
verified ·
1 Parent(s): 62c9944

Add 2011-12-31 to 2012-01-06 — 7 days, 482.2K 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,161 days), totaling **192,628,964 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 56.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.3 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,16 +136,16 @@ duckdb.sql("""
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 ██████████████████████████░░░░ 65.3M
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 | 82.2 MB | 47m34s | 52m18s | 33m17s |
146
- | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 201 | 65,344,379 | 325,096 | 20.7 GB | 6.0 GB | 2h11m | 11h45m | 3h01m |
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 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 ██████████████████████████░░░░ 33.2M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -223,7 +223,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
223
  2011 ███████░░░░░░░░░░░░░░░░░���░░░░░ 1.8M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
- 2014 ██████████████████████████░░░░ 6.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 | 96,736,198 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,683,406 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,743,023 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,805,944 | 4.1% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,789,829 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 18,119,614 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,905,614 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 24,318,747 | 12.6% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,487,210 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 235,056 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,796,534 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,157,371 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 129,956 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 177,798 | 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,162 days), totaling **192,896,377 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 56.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.3 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 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 ██████████████████████████░░░░ 65.6M
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 | 33m11s |
146
+ | 2012 | 291 | 34,259,890 | 117,731 | 9.2 GB | 3.1 GB | 2h13m | 3h17m | 2h46m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 202 | 65,608,743 | 324,795 | 20.8 GB | 6.0 GB | 2h12m | 11h49m | 3h01m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 ██████████████████████████░░░░ 33.3M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
223
  2011 ███████░░░░░░░░░░░░░░░░░���░░░░░ 1.8M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
+ 2014 ██████████████████████████░░░░ 6.1M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 96,876,676 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,695,657 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,763,267 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,816,360 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,792,118 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 18,148,249 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,914,911 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 24,351,839 | 12.6% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,491,258 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 235,856 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,798,264 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,160,476 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 129,962 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 178,004 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/12/31.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b95af445e705f64c0cfcee01939320f0c3f336460d74f3649202b308e2ecc5bd
3
- size 152025
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:559a39db861a10f04375a5c7eee5a4513d2e2749f9ea89ff2a9b747cedd5f3ed
3
+ size 223767
data/stars/2012/01/01.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4ac5b29b131d7f8c31daa85224cd6b2ec9976eafaab6fc70b5bbf18d685784a5
3
- size 150788
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b99838b2ac1188e7ea1af095367f3cbca3fcaf57092da7d035bf7d35d0819a8
3
+ size 218686
data/stars/2012/01/02.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:dd8b58ff328ef812b0d941a0f597383e5fb3820cc334799220a634883aba4d6c
3
- size 227826
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a2ca92164c3051edb2f88c5e7d5b0d91cf6f5827e02417d14a1973a9ddcf8bf
3
+ size 341470
data/stars/2012/01/03.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f78175aa5faa15e0f21cfda01f966383e2263e56e478efe5758724f601e77260
3
- size 253340
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a069154fe44111fe1862b840b7a312cfc181b6a6fb78e127f4de9a5eeae526c
3
+ size 392133
data/stars/2012/01/04.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5dad019449512a90745cecde1e8c4231fc73aec00e827c8bb31cf760666af7ee
3
- size 230288
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:060e42f41dad76ad776d3db6f8b49ce12aafc2eb32f256144fe7f03f17b51f95
3
+ size 337444
data/stars/2012/01/05.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3e2d958e80c835c989b502e12eec7cd03ba1a1f3748a93145acc561f43f7fcac
3
- size 242073
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9fe878131f3f7163133f0fc8fe67a776ca7bf137cfa0bb67cea4d5afbc02d7f
3
+ size 357619
data/stars/2012/01/06.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:db03e23220a0734b5ff22f8d5232c73fb3f163ace25408974ea3a02591d72006
3
- size 254733
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f0080995b604e0c9297d763bdead65da9b936e4020dedd0c6522d0182186641
3
+ size 379067
stats.csv CHANGED
@@ -314,21 +314,21 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
314
  2011-12-21,74548,0,33484,3263,5199,2390,0,0,7301,2184,17267,894,0,888,1269,334,75,0,19581301,11.5,346311,6.9,11.5,5.5
315
  2011-12-22,79137,0,33179,5712,7410,2254,0,0,8273,2105,17047,795,0,754,1275,273,60,0,20210094,14.9,351879,17.7,14.9,5.5
316
  2011-12-23,65938,0,29274,3020,4152,1836,0,0,7068,1777,15976,775,0,668,1109,225,58,0,16527427,11.9,302140,19.4,11.9,5.5
317
- 2011-12-24,51946,0,17826,1690,2324,942,0,0,4040,1080,22290,455,0,421,740,113,25,0,9635826,8.3,178664,4.9,8.3,0.0
318
- 2011-12-25,38010,0,15500,1387,1588,738,0,0,3586,944,12968,254,0,404,498,114,29,0,7795657,6.3,159693,13.3,6.3,0.0
319
- 2011-12-26,43161,0,19835,1877,2627,1070,0,0,5003,1259,9712,371,0,398,836,147,26,0,10618201,6.2,218417,4.0,6.2,0.0
320
- 2011-12-27,62614,0,26668,3362,4370,1462,0,0,7037,1663,15660,635,0,519,994,189,55,0,15105587,14.0,301996,5.5,14.1,0.0
321
- 2011-12-28,63244,0,27441,3251,4035,1591,0,0,6862,1714,15587,715,0,684,1055,267,42,0,15248413,14.2,294176,16.9,14.2,0.0
322
- 2011-12-29,70937,0,31821,3721,5199,1805,0,0,6933,1888,16628,571,0,693,1399,228,51,0,17845054,15.4,305736,7.9,15.4,0.0
323
- 2011-12-30,70421,0,29386,5150,6734,1626,0,0,6972,1758,16041,576,0,740,1168,211,59,0,17699033,17.5,295898,7.1,17.6,0.0
324
- 2011-12-31,51154,0,22263,2116,3317,1147,0,0,5202,1236,13937,417,0,622,764,94,39,0,11971047,8.5,6119747,18.0,8.5,36.3
325
- 2012-01-01,46325,0,19329,1797,2402,836,0,0,5082,1264,13905,380,0,391,817,93,29,0,10289568,7.3,5345452,17.2,7.3,28.0
326
- 2012-01-02,68933,0,28956,3172,4478,1675,0,0,8269,1995,16992,1074,0,751,1303,221,47,0,16879523,10.1,8320156,19.7,10.1,30.1
327
- 2012-01-03,77308,0,33436,4307,5513,2131,0,0,8923,2194,17424,673,0,921,1472,264,50,0,20075486,9.3,9673051,21.3,9.3,28.7
328
- 2012-01-04,70253,0,30707,3904,4907,1943,0,0,7733,2045,16207,577,0,829,1065,268,68,0,18181462,7.3,9085617,20.6,7.3,36.7
329
- 2012-01-05,80678,0,35956,3795,6143,2439,0,0,8221,2353,18054,931,0,917,1430,369,70,0,21619419,8.8,10452033,19.8,8.8,35.4
330
- 2012-01-06,84469,0,36900,4370,6356,2472,0,0,8826,2460,19421,737,0,1108,1447,309,63,0,22553888,14.0,11004408,17.5,14.0,26.4
331
- 2012-01-07,62376,0,27551,2764,3909,1575,0,0,6407,1612,15681,438,0,823,1326,254,36,0,15083329,9.1,7646269,18.2,9.1,27.3
332
  2012-01-08,66255,0,27530,2818,3793,1519,0,0,6398,1572,19910,491,0,735,1250,174,65,0,15076583,9.6,7680675,28.2,9.6,38.5
333
  2012-01-09,72103,0,31794,3452,5081,1960,0,0,7828,1911,16700,667,0,952,1357,343,58,0,18606446,12.5,9274698,29.5,12.5,18.9
334
  2012-01-22,58524,0,28889,2780,4244,1574,0,0,5260,1647,11242,516,0,695,1400,227,50,0,15722460,22.8,8138616,19.1,22.8,47.5
@@ -1158,5 +1158,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1158
  2014-07-30,412506,1451,196632,20964,41677,19382,0,6507,37818,13122,59686,6583,1165,3016,4164,0,339,0,238023214,446.9,41774622,54.7,446.9,54.5
1159
  2014-07-31,371216,1373,182385,19646,38333,18148,0,6374,35114,12327,42686,6650,1103,3093,3606,0,378,0,217788307,414.2,37813021,52.3,414.2,56.1
1160
  2014-08-02,239501,853,121428,10201,16897,8661,0,1554,21146,8287,42179,3200,683,1599,2642,0,171,0,128360903,246.9,23603017,42.6,247.0,0.0
 
1161
  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
1162
  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
 
314
  2011-12-21,74548,0,33484,3263,5199,2390,0,0,7301,2184,17267,894,0,888,1269,334,75,0,19581301,11.5,346311,6.9,11.5,5.5
315
  2011-12-22,79137,0,33179,5712,7410,2254,0,0,8273,2105,17047,795,0,754,1275,273,60,0,20210094,14.9,351879,17.7,14.9,5.5
316
  2011-12-23,65938,0,29274,3020,4152,1836,0,0,7068,1777,15976,775,0,668,1109,225,58,0,16527427,11.9,302140,19.4,11.9,5.5
317
+ 2011-12-24,51946,0,17826,1690,2324,942,0,0,4040,1080,22290,455,0,421,740,113,25,0,9635826,8.3,178664,4.9,8.3,4.3
318
+ 2011-12-25,38010,0,15500,1387,1588,738,0,0,3586,944,12968,254,0,404,498,114,29,0,7795657,6.3,159693,13.3,6.3,4.3
319
+ 2011-12-26,43161,0,19835,1877,2627,1070,0,0,5003,1259,9712,371,0,398,836,147,26,0,10618201,6.2,218417,4.0,6.2,4.3
320
+ 2011-12-27,62614,0,26668,3362,4370,1462,0,0,7037,1663,15660,635,0,519,994,189,55,0,15105587,14.0,301996,5.5,14.1,4.3
321
+ 2011-12-28,63244,0,27441,3251,4035,1591,0,0,6862,1714,15587,715,0,684,1055,267,42,0,15248413,14.2,294176,16.9,14.2,4.3
322
+ 2011-12-29,70937,0,31821,3721,5199,1805,0,0,6933,1888,16628,571,0,693,1399,228,51,0,17845054,15.4,305736,7.9,15.4,4.3
323
+ 2011-12-30,70421,0,29386,5150,6734,1626,0,0,6972,1758,16041,576,0,740,1168,211,59,0,17699033,17.5,295898,7.1,17.6,4.3
324
+ 2011-12-31,51154,0,22263,2116,3317,1147,0,0,5202,1236,13937,417,0,622,764,94,39,0,11971047,9.8,223767,13.6,9.8,0.0
325
+ 2012-01-01,46325,0,19329,1797,2402,836,0,0,5082,1264,13905,380,0,391,817,93,29,0,10289568,9.6,218686,17.1,9.6,0.0
326
+ 2012-01-02,68933,0,28956,3172,4478,1675,0,0,8269,1995,16992,1074,0,751,1303,221,47,0,16879523,13.9,341470,5.5,13.9,0.0
327
+ 2012-01-03,80357,0,34761,4553,5718,2224,0,0,9406,2275,17850,697,0,984,1566,270,53,0,20934359,16.8,392133,4.9,16.8,0.0
328
+ 2012-01-04,70253,0,30707,3904,4907,1943,0,0,7733,2045,16207,577,0,829,1065,268,68,0,18181462,13.0,337444,5.1,13.0,0.0
329
+ 2012-01-05,80678,0,35956,3795,6143,2439,0,0,8221,2353,18054,931,0,917,1430,369,70,0,21619419,14.6,357619,23.4,14.6,0.0
330
+ 2012-01-06,84469,0,36900,4370,6356,2472,0,0,8826,2460,19421,737,0,1108,1447,309,63,0,22553888,13.8,379067,7.6,13.8,0.0
331
+ 2012-01-07,62376,0,27551,2764,3909,1575,0,0,6407,1612,15681,438,0,823,1326,254,36,0,15083329,9.9,276466,8.0,9.9,0.0
332
  2012-01-08,66255,0,27530,2818,3793,1519,0,0,6398,1572,19910,491,0,735,1250,174,65,0,15076583,9.6,7680675,28.2,9.6,38.5
333
  2012-01-09,72103,0,31794,3452,5081,1960,0,0,7828,1911,16700,667,0,952,1357,343,58,0,18606446,12.5,9274698,29.5,12.5,18.9
334
  2012-01-22,58524,0,28889,2780,4244,1574,0,0,5260,1647,11242,516,0,695,1400,227,50,0,15722460,22.8,8138616,19.1,22.8,47.5
 
1158
  2014-07-30,412506,1451,196632,20964,41677,19382,0,6507,37818,13122,59686,6583,1165,3016,4164,0,339,0,238023214,446.9,41774622,54.7,446.9,54.5
1159
  2014-07-31,371216,1373,182385,19646,38333,18148,0,6374,35114,12327,42686,6650,1103,3093,3606,0,378,0,217788307,414.2,37813021,52.3,414.2,56.1
1160
  2014-08-02,239501,853,121428,10201,16897,8661,0,1554,21146,8287,42179,3200,683,1599,2642,0,171,0,128360903,246.9,23603017,42.6,247.0,0.0
1161
+ 2014-08-03,264364,816,139153,12005,20039,10323,0,2289,28152,9216,32666,4024,800,1667,3011,0,203,0,144290418,265.3,25821455,38.1,265.3,0.0
1162
  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
1163
  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