tamnd commited on
Commit
599418d
·
verified ·
1 Parent(s): df80340

Add 2011-07-09 to 2011-07-15 — 7 days, 343.4K events, 7 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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,118 days), totaling **187,189,368 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 54.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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
 
@@ -133,7 +133,7 @@ duckdb.sql("""
133
  ## Events per year
134
 
135
  ```
136
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 16.0M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 ████████████████████████░░░░░░ 61.9M
@@ -142,7 +142,7 @@ duckdb.sql("""
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
- | 2011 | 290 | 16,017,337 | 55,232 | 3.1 GB | 992.1 MB | 1h06m | 51m05s | 1h31m |
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 | 191 | 61,920,029 | 324,188 | 19.0 GB | 5.6 GB | 2h03m | 10h44m | 2h52m |
@@ -154,7 +154,7 @@ duckdb.sql("""
154
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
155
 
156
  ```
157
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 7.7M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 ████████████████████████░░░░░░ 31.5M
@@ -175,7 +175,7 @@ GROUP BY repo_name ORDER BY pushes DESC LIMIT 20;
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 830.9K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ██████████████████████░░░░░░░░ 3.3M
@@ -198,7 +198,7 @@ GROUP BY repo_name ORDER BY opened DESC LIMIT 20;
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
- 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 419.6K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ███���██████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.7M
@@ -220,7 +220,7 @@ GROUP BY repo_name ORDER BY merged_prs DESC LIMIT 20;
220
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
221
 
222
  ```
223
- 2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.6M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 ████████████████████████░░░░░░ 5.7M
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 94,091,329 | 50.3% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,364,740 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,283,687 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,596,669 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,741,159 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,606,563 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,731,039 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,491,756 | 12.5% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,406,946 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 225,515 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,745,390 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,083,227 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 118,222 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 173,060 | 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,124 days), totaling **187,492,475 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 54.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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
 
 
133
  ## Events per year
134
 
135
  ```
136
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 16.3M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 ████████████████████████░░░░░░ 61.9M
 
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
+ | 2011 | 296 | 16,320,444 | 55,136 | 3.1 GB | 965.2 MB | 1h06m | 52m06s | 1h29m |
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 | 191 | 61,920,029 | 324,188 | 19.0 GB | 5.6 GB | 2h03m | 10h44m | 2h52m |
 
154
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
155
 
156
  ```
157
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 7.9M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 ████████████████████████░░░░░░ 31.5M
 
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 848.1K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ██████████████████████░░░░░░░░ 3.3M
 
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
+ 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 428.2K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ███���██████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.7M
 
220
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
221
 
222
  ```
223
+ 2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.7M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 ████████████████████████░░░░░░ 5.7M
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 94,246,935 | 50.3% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,381,897 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,306,723 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,605,329 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,741,159 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,641,014 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,740,341 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 23,529,791 | 12.5% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,410,127 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 225,515 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,749,430 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,090,811 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 120,013 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 173,324 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/07/09.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2d40c486ff8d50fb9d8f0a5a0ca2cbfe0989501099b6a9a4e5ca8f3506e93f16
3
- size 120002
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b81a29adf7c21f77936677cf630994b554daaee26f8a362a3d5eb2d162fec4b
3
+ size 173669
data/stars/2011/07/10.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7b245bca31970e1875260fef1341420279cbb79202a399e0d99b07bab77de6da
3
- size 128782
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4b640f0520502bf8c63fafe87e00964f1e2b83a361707cc0631095d71058f77
3
+ size 189616
data/stars/2011/07/11.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7e4d1ab22e4876ecaeae81bd89c5ce01cf7a433cdfaf80f358e461fdd43e0f97
3
- size 198651
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce075d6977db99993d54b57ad62595bfb24d581256d485ef8bb6684825cd9933
3
+ size 280898
data/stars/2011/07/12.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:71a2f6d1c04be53c3739b462a60e511e0ac545fb0d622f45455ef62139a24a2d
3
- size 183156
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd5bb699caf525196608bc2db5649fec967419fd7c8905903745be8533f67a95
3
+ size 269057
data/stars/2011/07/13.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d581a22f168a011ed8c071bfcd8eefc7afa6112ec90da14e7559106dd395c0c9
3
- size 173652
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c28b58d1d525fdd259b1b83a511f9606131270348d60c0fc0b2d5b9f74d984d8
3
+ size 254991
data/stars/2011/07/14.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:427818fafdf9c14a19b383b6fa0b311b1ab157f126ae117fbb3b4fe431fea342
3
- size 158902
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87b94e062d2681397485be0a17f38e608f2a740ce5cf2f86a9262df283495580
3
+ size 233161
data/stars/2011/07/15.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:09e54e96729f049fc0e1abe46022125c401f3f857d07ada5f942146fb37c0e6d
3
- size 163484
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42410c305b2909160ab7c69873d7d2426416db8e9abe00940e66990693a965f1
3
+ size 239867
stats.csv CHANGED
@@ -139,20 +139,26 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
139
  2011-06-29,54098,0,28008,2505,3683,1720,0,0,5781,1784,7253,1101,0,752,1186,285,40,0,10168142,8.2,252886,8.2,8.4,6.8
140
  2011-06-30,54679,0,27966,2714,4009,1658,0,0,5579,1642,8227,620,0,641,1267,302,54,0,10026910,11.3,243532,21.2,11.3,6.8
141
  2011-07-01,51863,0,26210,2727,4785,1533,0,0,5886,1631,6409,588,0,747,982,322,43,0,9443675,10.5,252715,20.7,10.5,6.8
142
- 2011-07-02,33974,0,18147,1616,2066,824,0,0,3820,1135,4567,269,0,429,820,257,24,0,6215247,6.2,168229,6.8,6.2,0.0
143
- 2011-07-03,36704,0,18243,3124,2997,784,0,0,3596,982,4861,299,0,583,1040,173,22,0,6288022,7.3,159970,7.5,7.3,0.0
144
- 2011-07-04,48504,0,25371,2488,3149,1218,0,0,5437,1417,6588,503,0,750,1253,278,52,0,8896808,9.4,237871,17.7,9.4,0.0
145
- 2011-07-05,52047,0,26411,2595,3815,1473,0,0,6135,1570,6715,692,0,875,1190,521,55,0,9634003,8.5,266725,9.3,8.5,0.0
146
- 2011-07-06,59903,0,30191,3876,5271,1777,0,0,6192,1757,7529,584,0,828,1524,335,39,0,11088651,9.1,271314,8.6,9.1,0.0
147
- 2011-07-07,59146,0,29736,4563,5930,1724,0,0,5661,1718,6759,711,0,781,1195,316,52,0,10569418,10.8,255210,12.9,10.8,0.0
148
- 2011-07-08,55125,0,27858,4357,5228,1497,0,0,5247,1493,6659,530,0,649,1240,320,47,0,9480776,9.5,236854,8.2,9.5,0.0
149
- 2011-07-09,37227,0,19703,2248,2938,992,0,0,3929,976,4674,335,0,506,685,206,35,0,6792863,4.5,3892436,25.7,4.5,29.4
150
  2011-07-10,37235,0,19487,1861,2291,951,0,0,4436,1124,5099,405,0,490,895,166,30,0,6669866,7.0,189616,6.3,7.0,0.0
151
- 2011-07-11,53097,0,28106,2883,3861,1681,0,0,5832,1578,6364,498,0,703,1168,368,55,0,9988279,6.3,5512333,17.8,6.3,29.8
152
- 2011-07-12,57108,0,29815,3021,4101,1780,0,0,6166,1665,7266,664,0,832,1443,296,59,0,10750976,6.4,5629137,23.1,6.4,29.0
153
- 2011-07-13,55698,0,28918,3104,4087,1807,0,0,5841,1725,6864,666,0,938,1367,325,56,0,10420914,6.0,5662833,17.6,6.0,31.6
154
- 2011-07-14,53800,0,26717,3721,4197,1597,0,0,5249,1519,8046,606,0,768,1071,263,46,0,9527821,7.5,5297329,21.0,7.5,23.1
155
- 2011-07-15,49232,0,25727,2498,3276,1421,0,0,5323,1739,6535,609,0,657,1071,327,49,0,9235370,7.6,5151034,18.4,7.6,18.7
 
 
 
 
 
 
156
  2011-07-28,56358,0,29500,3021,4520,1871,0,0,6379,1716,6503,615,0,875,998,313,47,0,10706435,17.1,6036716,22.1,17.1,36.6
157
  2011-07-29,54127,0,27086,2985,4143,1605,0,0,5667,1663,7901,694,0,753,1281,276,73,0,9881968,15.5,5375448,16.2,15.5,42.6
158
  2011-07-30,32233,0,17422,1519,2118,841,0,0,3509,926,4293,272,0,442,639,225,27,0,5963077,11.1,3373933,14.9,11.1,29.4
@@ -1115,5 +1121,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1115
  2014-07-15,407623,1685,201518,18973,39055,20201,0,6927,40602,15480,46907,7218,1031,3252,4440,0,334,0,146772761,124.4,58098773,2.2,124.4,0.0
1116
  2014-07-19,236661,1010,131923,10377,16595,8570,0,2234,21916,9384,26772,3110,567,1662,2323,0,218,0,74195067,57.7,0,30.7,57.7,4.9
1117
  2014-07-20,274459,884,151654,11530,19348,10341,0,2393,26184,10470,32188,4070,757,1857,2583,0,200,0,86809408,70.2,0,34.5,70.2,6.3
 
1118
  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
1119
  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
 
139
  2011-06-29,54098,0,28008,2505,3683,1720,0,0,5781,1784,7253,1101,0,752,1186,285,40,0,10168142,8.2,252886,8.2,8.4,6.8
140
  2011-06-30,54679,0,27966,2714,4009,1658,0,0,5579,1642,8227,620,0,641,1267,302,54,0,10026910,11.3,243532,21.2,11.3,6.8
141
  2011-07-01,51863,0,26210,2727,4785,1533,0,0,5886,1631,6409,588,0,747,982,322,43,0,9443675,10.5,252715,20.7,10.5,6.8
142
+ 2011-07-02,33974,0,18147,1616,2066,824,0,0,3820,1135,4567,269,0,429,820,257,24,0,6215247,6.2,168229,6.8,6.2,4.9
143
+ 2011-07-03,36704,0,18243,3124,2997,784,0,0,3596,982,4861,299,0,583,1040,173,22,0,6288022,7.3,159970,7.5,7.3,4.9
144
+ 2011-07-04,48504,0,25371,2488,3149,1218,0,0,5437,1417,6588,503,0,750,1253,278,52,0,8896808,9.4,237871,17.7,9.4,4.9
145
+ 2011-07-05,52047,0,26411,2595,3815,1473,0,0,6135,1570,6715,692,0,875,1190,521,55,0,9634003,8.5,266725,9.3,8.5,4.9
146
+ 2011-07-06,59903,0,30191,3876,5271,1777,0,0,6192,1757,7529,584,0,828,1524,335,39,0,11088651,9.1,271314,8.6,9.1,4.9
147
+ 2011-07-07,59146,0,29736,4563,5930,1724,0,0,5661,1718,6759,711,0,781,1195,316,52,0,10569418,10.8,255210,12.9,10.8,4.9
148
+ 2011-07-08,55125,0,27858,4357,5228,1497,0,0,5247,1493,6659,530,0,649,1240,320,47,0,9480776,9.5,236854,8.2,9.5,4.9
149
+ 2011-07-09,37227,0,19703,2248,2938,992,0,0,3929,976,4674,335,0,506,685,206,35,0,6792863,7.4,173669,17.0,7.4,0.0
150
  2011-07-10,37235,0,19487,1861,2291,951,0,0,4436,1124,5099,405,0,490,895,166,30,0,6669866,7.0,189616,6.3,7.0,0.0
151
+ 2011-07-11,53097,0,28106,2883,3861,1681,0,0,5832,1578,6364,498,0,703,1168,368,55,0,9988279,9.4,280898,7.8,9.4,0.0
152
+ 2011-07-12,57108,0,29815,3021,4101,1780,0,0,6166,1665,7266,664,0,832,1443,296,59,0,10750976,9.2,269057,21.8,9.2,0.0
153
+ 2011-07-13,55698,0,28918,3104,4087,1807,0,0,5841,1725,6864,666,0,938,1367,325,56,0,10420914,9.0,254991,6.7,9.0,0.0
154
+ 2011-07-14,53800,0,26717,3721,4197,1597,0,0,5249,1519,8046,606,0,768,1071,263,46,0,9527821,7.7,233161,14.9,7.7,0.0
155
+ 2011-07-15,49232,0,25727,2498,3276,1421,0,0,5323,1739,6535,609,0,657,1071,327,49,0,9235370,8.5,239867,23.4,8.5,0.0
156
+ 2011-07-16,37469,0,20070,1742,2202,927,0,0,4175,1184,4996,330,0,503,1049,257,34,0,6750083,7.1,182362,4.4,7.1,0.0
157
+ 2011-07-17,38943,0,20641,1765,2277,955,0,0,4744,1098,5499,359,0,437,919,210,39,0,7038566,6.4,201697,4.2,6.4,0.0
158
+ 2011-07-18,58313,0,28896,3709,5634,1586,0,0,6608,1832,7022,586,0,772,1270,346,52,0,10507393,9.9,287453,4.9,9.9,0.0
159
+ 2011-07-19,53739,0,27636,2767,3925,1791,0,0,6271,1706,6564,562,0,783,1334,357,43,0,10113568,9.2,271145,5.7,9.2,0.0
160
+ 2011-07-20,56424,0,29026,3151,4337,1720,0,0,6377,1729,6825,675,0,790,1441,301,52,0,10553139,8.4,281305,4.6,8.4,0.0
161
+ 2011-07-21,58219,0,29337,4023,4661,1681,0,0,6276,1753,7129,669,0,755,1571,320,44,0,10732063,6.8,272076,4.7,6.8,0.0
162
  2011-07-28,56358,0,29500,3021,4520,1871,0,0,6379,1716,6503,615,0,875,998,313,47,0,10706435,17.1,6036716,22.1,17.1,36.6
163
  2011-07-29,54127,0,27086,2985,4143,1605,0,0,5667,1663,7901,694,0,753,1281,276,73,0,9881968,15.5,5375448,16.2,15.5,42.6
164
  2011-07-30,32233,0,17422,1519,2118,841,0,0,3509,926,4293,272,0,442,639,225,27,0,5963077,11.1,3373933,14.9,11.1,29.4
 
1121
  2014-07-15,407623,1685,201518,18973,39055,20201,0,6927,40602,15480,46907,7218,1031,3252,4440,0,334,0,146772761,124.4,58098773,2.2,124.4,0.0
1122
  2014-07-19,236661,1010,131923,10377,16595,8570,0,2234,21916,9384,26772,3110,567,1662,2323,0,218,0,74195067,57.7,0,30.7,57.7,4.9
1123
  2014-07-20,274459,884,151654,11530,19348,10341,0,2393,26184,10470,32188,4070,757,1857,2583,0,200,0,86809408,70.2,0,34.5,70.2,6.3
1124
+ 2014-07-26,233635,917,118941,9805,15904,8286,0,1790,21475,8834,39374,3751,698,1510,2192,0,158,0,122087793,272.5,22277284,47.0,272.5,0.0
1125
  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
1126
  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