tamnd commited on
Commit
f9804e3
·
verified ·
1 Parent(s): 50e7558

Add 2011-10-08 to 2011-10-14 — 7 days, 418.9K 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,135 days), totaling **189,460,408 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.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.7 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,470,486 events in 3836 blocks
75
 
76
  ```
77
  00:00 ████████████████████████░░░░░░ 235.4K
@@ -84,7 +84,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
84
  07:00 █████████████████░░░░░░░░░░░░░ 165.7K
85
  08:00 ███████████████████████████░░░ 262.4K
86
  09:00 ██████████████████████████████ 284.7K
87
- 10:00 ████████████████████████░░░░░░ 233.7K
88
  11:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
89
  12:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
90
  13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -133,7 +133,7 @@ duckdb.sql("""
133
  ## Events per year
134
 
135
  ```
136
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 16.6M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 █████████████████████████░░░░░ 63.6M
@@ -142,10 +142,10 @@ duckdb.sql("""
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
- | 2011 | 302 | 16,631,861 | 55,072 | 3.2 GB | 594.1 MB | 55m00s | 51m07s | 58m56s |
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 | 196 | 63,576,545 | 324,370 | 19.7 GB | 5.8 GB | 2h07m | 11h13m | 2h56m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -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 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.0M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 █████████████████████████░░░░░ 32.3M
@@ -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 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 864.8K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ███████████████████████░░░░░░░ 3.4M
@@ -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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 437.3K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.8M
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 95,225,293 | 50.3% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,477,806 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,474,409 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,686,518 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,763,025 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,824,789 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,808,614 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,813,526 | 12.6% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,441,984 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 230,001 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,768,309 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,113,448 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 121,655 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 174,905 | 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,140 days), totaling **189,731,388 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 55.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.6 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,494,315 events in 3837 blocks
75
 
76
  ```
77
  00:00 ████████████████████████░░░░░░ 235.4K
 
84
  07:00 █████████████████░░░░░░░░░░░░░ 165.7K
85
  08:00 ███████████████████████████░░░ 262.4K
86
  09:00 ██████████████████████████████ 284.7K
87
+ 10:00 ███████████████████████████░░░ 257.5K
88
  11:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
89
  12:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
90
  13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
133
  ## Events per year
134
 
135
  ```
136
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 16.9M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 █████████████████████████░░░░░ 63.6M
 
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
+ | 2011 | 307 | 16,902,841 | 55,058 | 3.2 GB | 567.2 MB | 55m28s | 52m05s | 58m51s |
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 | 196 | 63,576,545 | 324,370 | 19.7 GB | 5.8 GB | 2h07m | 11h13m | 2h58m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
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 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.2M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 █████████████████████████░░░░░ 32.3M
 
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 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 880.0K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ███████████████████████░░░░░░░ 3.4M
 
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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 445.0K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.8M
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 95,365,598 | 50.3% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,492,971 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,494,409 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,694,228 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,763,025 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,853,793 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,817,165 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 23,850,748 | 12.6% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,444,878 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 230,001 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,771,330 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,118,583 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 123,339 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 175,194 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/10/08.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1725153b4dabfe32a06a7e9adcca47773a1920711ef064362edf6dbfa9b08359
3
- size 141037
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0c6bceee7400d539cfd59d1c5fc2753f32f1d95b33de5c14e98c32fc99deba6
3
+ size 205115
data/stars/2011/10/09.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:701a6b6c7ed2aeba478b8179ce944d5eb3427cbf52db83fcd4f42786ed893ce3
3
- size 154324
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd80daceb047f112482a812cdf0887697c5fb5f3ebfdd58e3c85a95d8a8904ef
3
+ size 225731
data/stars/2011/10/10.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3d2971da72f3a42263075ca416fbada03b3e991b4557d348ee723fc8f197d7c6
3
- size 204269
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8c1ba100a9a8df57c9f043d0788ee73fdf915305df6a0a45c94838da9b45e5e
3
+ size 283257
data/stars/2011/10/11.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f38bf0df3113d94b3bb7dbbaa63d9ac1ae16d15b45ef0e822203d31abfa484b1
3
- size 210106
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41622c4f52e1dba7d8dc118d2fe0478127b323e607d9d4f558222326c908bed8
3
+ size 261932
data/stars/2011/10/12.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:741fc186c9cf9f8cab97ec183dba69dcf30c3fde522e6e3ddce120e7c2d95a74
3
- size 203993
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fccbfd7050d98da11b20a64d71a73b16557f7bea567ce63d968afe3b284b97a
3
+ size 293559
data/stars/2011/10/13.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d1627c64102c2b1ca2be70d71a00bca1021c09493fc577b069048755b4d25ae8
3
- size 211856
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdc942185514d1e7a4887cd9487d507466231addc43a417433cc186b4ea8b22c
3
+ size 285062
data/stars/2011/10/14.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:83ffa50ad0d2e10d8db0b0af95cf6366830ca741ad7f6de92b8392805f22c311
3
- size 242991
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6dbf2705c8ca2825e34b7e6e183667dafcfc95dc46536e8d8eb20702110ebdeb
3
+ size 344264
stats.csv CHANGED
@@ -230,18 +230,23 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
230
  2011-09-28,73365,0,36191,5635,6370,2274,0,0,7628,2198,9272,722,0,972,1591,451,61,0,13053783,10.8,333239,5.4,10.8,4.9
231
  2011-09-29,70323,0,35425,3835,5395,2216,0,0,7230,2156,10239,694,0,926,1718,425,64,0,12573321,9.2,317577,4.1,9.2,4.9
232
  2011-09-30,68805,0,32614,3435,4779,2028,0,0,6732,2164,13041,1419,0,801,1353,376,63,0,11811553,8.4,292303,17.6,8.4,4.9
233
- 2011-10-01,42038,0,21850,2209,2741,1098,0,0,4834,1367,5635,353,0,551,1038,326,36,0,7364176,5.0,208742,4.0,5.0,0.0
234
- 2011-10-02,48992,0,25672,3364,3749,1149,0,0,5012,1335,6125,376,0,568,1302,298,42,0,8337427,6.0,216933,8.2,6.0,0.0
235
- 2011-10-03,69675,0,32834,5829,7410,2006,0,0,7111,1935,8699,631,0,893,1764,471,92,0,11764755,7.9,310574,6.5,8.0,0.0
236
- 2011-10-04,80405,0,44723,3990,5668,2312,0,0,7230,2169,10365,740,0,987,1585,559,77,0,13097541,10.0,325199,7.7,10.0,0.0
237
- 2011-10-05,82048,0,48302,3883,5268,2146,0,0,6746,2387,9309,957,0,932,1585,434,99,0,13342187,12.1,297266,5.9,12.1,0.0
238
- 2011-10-06,69264,0,37721,3458,5242,2189,0,0,6051,1936,8737,872,0,936,1549,506,67,0,12305534,12.0,277892,19.9,12.0,0.0
239
- 2011-10-07,68337,0,33322,4850,5821,2049,0,0,6396,1999,8498,2505,0,970,1468,406,53,0,13873868,12.6,281995,16.8,12.6,0.0
240
  2011-10-08,44049,0,23180,2422,2832,1119,0,0,4668,1420,5988,558,0,506,1005,298,53,0,10598705,9.8,205115,5.5,9.8,0.0
241
- 2011-10-09,52237,0,25266,4397,5379,1202,0,0,5219,1367,7071,396,0,481,1116,294,49,0,12727220,8.2,5982461,17.1,8.2,20.8
242
- 2011-10-10,66510,0,34366,3624,5148,2064,0,0,6808,2040,8674,842,0,857,1590,444,53,0,17318760,8.4,7812089,17.8,8.4,30.0
243
- 2011-10-11,81326,0,36466,8127,12267,2311,0,0,6888,2198,9050,1007,0,998,1473,469,72,0,21448753,13.3,8697975,18.9,13.3,27.2
244
- 2011-10-12,71502,0,36279,4043,5635,2297,0,0,6778,2230,10394,868,0,933,1462,497,86,0,18520737,10.7,8146841,23.7,10.7,22.4
 
 
 
 
 
245
  2011-10-24,69453,0,36750,3942,5402,2319,0,0,7125,2105,8379,809,0,772,1270,502,78,0,21333055,31.2,10384681,8.3,31.2,39.5
246
  2011-10-25,74899,0,37462,4140,5634,2406,0,0,8668,2558,10184,881,0,896,1402,586,82,0,22294342,36.5,10746874,38.8,36.5,40.5
247
  2011-10-26,73436,0,37400,4083,5780,2276,0,0,8030,2369,8759,1460,0,930,1441,819,89,0,22413620,35.1,10821255,22.2,35.1,40.1
@@ -1131,6 +1136,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1131
  2014-07-24,396865,1539,190219,20855,40348,18423,0,6073,35150,13614,56146,6954,983,3002,3230,0,329,0,165477647,383.5,39157974,46.0,383.5,53.7
1132
  2014-07-25,337217,1297,168832,16349,30507,16248,0,5100,30043,11148,40790,6268,1014,5416,3957,0,248,0,193075138,412.6,34159157,38.2,412.6,54.2
1133
  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,48.9
1134
- 2014-07-27,275678,880,148033,11627,20202,9986,0,2697,26505,11053,35125,4191,823,1717,2612,0,227,0,150266595,281.2,26676436,40.7,281.2,0.0
1135
  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
1136
  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
 
230
  2011-09-28,73365,0,36191,5635,6370,2274,0,0,7628,2198,9272,722,0,972,1591,451,61,0,13053783,10.8,333239,5.4,10.8,4.9
231
  2011-09-29,70323,0,35425,3835,5395,2216,0,0,7230,2156,10239,694,0,926,1718,425,64,0,12573321,9.2,317577,4.1,9.2,4.9
232
  2011-09-30,68805,0,32614,3435,4779,2028,0,0,6732,2164,13041,1419,0,801,1353,376,63,0,11811553,8.4,292303,17.6,8.4,4.9
233
+ 2011-10-01,42038,0,21850,2209,2741,1098,0,0,4834,1367,5635,353,0,551,1038,326,36,0,7364176,5.0,208742,4.0,5.0,13.6
234
+ 2011-10-02,48992,0,25672,3364,3749,1149,0,0,5012,1335,6125,376,0,568,1302,298,42,0,8337427,6.0,216933,8.2,6.0,13.6
235
+ 2011-10-03,69675,0,32834,5829,7410,2006,0,0,7111,1935,8699,631,0,893,1764,471,92,0,11764755,7.9,310574,6.5,8.0,13.6
236
+ 2011-10-04,80405,0,44723,3990,5668,2312,0,0,7230,2169,10365,740,0,987,1585,559,77,0,13097541,10.0,325199,7.7,10.0,13.6
237
+ 2011-10-05,82048,0,48302,3883,5268,2146,0,0,6746,2387,9309,957,0,932,1585,434,99,0,13342187,12.1,297266,5.9,12.1,13.6
238
+ 2011-10-06,69264,0,37721,3458,5242,2189,0,0,6051,1936,8737,872,0,936,1549,506,67,0,12305534,12.0,277892,19.9,12.0,13.6
239
+ 2011-10-07,68337,0,33322,4850,5821,2049,0,0,6396,1999,8498,2505,0,970,1468,406,53,0,13873868,12.6,281995,16.8,12.6,13.6
240
  2011-10-08,44049,0,23180,2422,2832,1119,0,0,4668,1420,5988,558,0,506,1005,298,53,0,10598705,9.8,205115,5.5,9.8,0.0
241
+ 2011-10-09,52237,0,25266,4397,5379,1202,0,0,5219,1367,7071,396,0,481,1116,294,49,0,12727220,11.5,225731,7.2,11.5,0.0
242
+ 2011-10-10,60819,0,31158,3353,4676,1905,0,0,6364,1876,8006,776,0,781,1493,385,46,0,15790236,13.3,283257,18.2,13.3,0.0
243
+ 2011-10-11,66806,0,30513,6230,9351,1854,0,0,5863,1888,7685,898,0,830,1263,376,55,0,17352378,12.7,261932,17.3,12.7,0.0
244
+ 2011-10-12,69010,0,34960,3875,5399,2236,0,0,6581,2136,10113,839,0,890,1428,470,83,0,17844428,13.8,293559,5.9,13.8,0.0
245
+ 2011-10-13,61936,0,30981,3596,4849,1888,0,0,6495,1979,8993,736,0,885,1040,433,61,0,16819447,12.8,285062,9.9,12.8,0.0
246
+ 2011-10-14,64002,0,32906,3510,4959,2103,0,0,7363,2019,8186,661,0,699,1118,410,68,0,19415626,9.1,344264,11.6,9.1,0.0
247
+ 2011-10-15,47324,0,24074,3145,4115,1172,0,0,4753,1418,6370,512,0,491,894,316,64,0,13306380,6.6,209707,7.5,6.6,0.0
248
+ 2011-10-16,48820,0,26623,2716,3549,1103,0,0,4865,1480,6180,374,0,511,1121,258,40,0,13970617,7.1,209980,13.5,7.1,0.0
249
+ 2011-10-17,71601,0,36201,4534,6152,2121,0,0,7194,2223,9807,815,0,722,1303,446,83,0,21890311,11.5,319819,14.2,11.5,0.0
250
  2011-10-24,69453,0,36750,3942,5402,2319,0,0,7125,2105,8379,809,0,772,1270,502,78,0,21333055,31.2,10384681,8.3,31.2,39.5
251
  2011-10-25,74899,0,37462,4140,5634,2406,0,0,8668,2558,10184,881,0,896,1402,586,82,0,22294342,36.5,10746874,38.8,36.5,40.5
252
  2011-10-26,73436,0,37400,4083,5780,2276,0,0,8030,2369,8759,1460,0,930,1441,819,89,0,22413620,35.1,10821255,22.2,35.1,40.1
 
1136
  2014-07-24,396865,1539,190219,20855,40348,18423,0,6073,35150,13614,56146,6954,983,3002,3230,0,329,0,165477647,383.5,39157974,46.0,383.5,53.7
1137
  2014-07-25,337217,1297,168832,16349,30507,16248,0,5100,30043,11148,40790,6268,1014,5416,3957,0,248,0,193075138,412.6,34159157,38.2,412.6,54.2
1138
  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,48.9
1139
+ 2014-07-27,275678,880,148033,11627,20202,9986,0,2697,26505,11053,35125,4191,823,1717,2612,0,227,0,150266595,281.2,26676436,40.7,281.2,120.3
1140
  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
1141
  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