Datasets:

Modalities:
Tabular
Text
Formats:
parquet
Languages:
code
ArXiv:
Tags:
code
License:
anton-l HF Staff commited on
Commit
6d7c170
·
verified ·
1 Parent(s): 561166e

Upload 14 files

Browse files
README.md CHANGED
@@ -82,3 +82,291 @@ configs:
82
  - split: train
83
  path: data/*.parquet
84
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  - split: train
83
  path: data/*.parquet
84
  ---
85
+
86
+ <img src="./assets/banner.png" width="100%" alt="The Stack v3 banner">
87
+
88
+ # 🥞 The Stack v3
89
+
90
+ - [What is it?](#what-is-it)
91
+ - [What is being released](#what-is-being-released)
92
+ - [How to download and use it](#how-to-download-and-use-it)
93
+ - [Dataset statistics](#dataset-statistics)
94
+ - [Dataset structure](#dataset-structure)
95
+ - [Dataset creation](#dataset-creation)
96
+ - [Considerations for using the data](#considerations-for-using-the-data)
97
+ - [Additional information](#additional-information)
98
+
99
+ ## What is it?
100
+
101
+ The Stack v3 is the **largest, most up-to-date open dataset of source code**, crawled directly from GitHub and built to pre-train code LLMs with full-repository context. It is the successor to [The Stack v2](https://huggingface.co/datasets/bigcode/the-stack-v2) and, like its predecessor, is released to make the training of code models more **open, reproducible, and transparent**.
102
+
103
+ Two things set v3 apart from earlier releases of The Stack:
104
+
105
+ 1. **The file contents are included inline.** The decoded UTF-8 source text is embedded directly in the dataset, so it is fully self-contained — you can start training the moment the download finishes.
106
+ 2. **It reflects the state of GitHub in August 2025.** The corpus is a direct crawl of GitHub repositories at their default-branch HEAD, capturing roughly two additional years of open-source code compared to The Stack v2.
107
+
108
+ > The Stack v3 training subset contains **15.9 TB** of source code across **713** programming languages from **173M** repositories (~**4.9 trillion** tokens).
109
+ > The Full Stack v3 corpus contains **113.7 TB** of source code across **770** languages from **224M** repositories.
110
+
111
+ ### The Stack across versions
112
+
113
+ | | The Stack v1 | The Stack v2 | The Stack v3 |
114
+ |-|-|-|--------------|
115
+ | cutoff | 2022 | 2023 | 2025 |
116
+ | full | 6.4 TB | 67.5 TB | 113.7 TB |
117
+ | dedup | 2.9 TB | 32.1 TB | 99.3 TB |
118
+ | train | ~200B tokens | 2.0 TB / ~550B tokens | 15.9 TB / ~4.9T tokens |
119
+ | languages | 358 | 618 | 713 |
120
+
121
+ ## What is being released
122
+
123
+ The Stack v3 is published in two complementary datasets:
124
+
125
+ | Dataset | What it is | Best for |
126
+ |----------------------------------------------------------------------------------------------|---|---|
127
+ | [`HuggingFaceCode/stack-v3-train`](https://huggingface.co/datasets/HuggingFaceCode/stack-v3-train) | Near-deduplicated, heuristically filtered code, **grouped by repository**, with file contents inline. Ready for training. | Pre-training code LLMs with repository context. |
128
+ | [`HuggingFaceCode/stack-v3-full`](https://huggingface.co/buckets/HuggingFaceCode/stack-v3-full) | The complete corpus before quality filtering and near-dedup selection. Hosted as an HF Storage Bucket. Split into a **`metadata`** part (repo/file metadata) and a **`contents`** part (one row per unique file blob). | Research on the raw corpus, custom filtering, or building your own training mix. |
129
+
130
+ `stack-v3-train` is derived from `stack-v3-full`: it is the near-deduplicated corpus with an additional round of quality heuristics applied, restricted to one representative per duplicate cluster, and grouped so that each row is a full repository.
131
+
132
+ `stack-v3-full` is documented in its own [dataset card](https://huggingface.co/buckets/HuggingFaceCode/stack-v3-full). Reach for it when `stack-v3-train` is not enough: it retains all near-duplicates with their **`dedup_cluster`** IDs and pre-filtering signals (so you can roll your own deduplication and filtering), and its metadata lists **every** file of every repository — including stubs for binary, oversized, and undetected-language files — so you can locate and re-crawl anything we excluded (PDFs, binary assets, niche languages).
133
+
134
+ ### Changelog
135
+
136
+ | Release | Description |
137
+ |---|---|
138
+ | v3.0 | Initial release of The Stack v3. |
139
+
140
+ ## How to download and use it
141
+
142
+ ### `stack-v3-train`
143
+
144
+ Each row is a **repository**; the code lives inline under `files[].content`.
145
+
146
+ ```python
147
+ from datasets import load_dataset
148
+
149
+ # Full dataset (downloads locally)
150
+ ds = load_dataset("HuggingFaceCode/stack-v3-train", split="train", cache_dir="/path/to/local/cache", num_proc=16)
151
+
152
+ # Streaming (downloads shards on demand — recommended for quick tests)
153
+ ds = load_dataset("HuggingFaceCode/stack-v3-train", split="train", streaming=True)
154
+
155
+ for repo in ds:
156
+ print(repo["repo_path"], "-", repo["num_files"], "files")
157
+ for f in repo["files"]:
158
+ print(f["file_path"], f["language"], f["license_type"])
159
+ print(f["content"][:100], "...")
160
+ break
161
+ ```
162
+
163
+ > [!TIP]
164
+ > There are no per-language configs: each row is a whole repository, and its files (usually a mix of languages) live in the `files[]` array. To filter by language, iterate the dataset (streaming works well) and keep the files you want, e.g. `[f for f in repo["files"] if f["language"] == "Python"]`. If you need language-partitioned files, use [`stack-v3-full`](https://huggingface.co/buckets/HuggingFaceCode/stack-v3-full), where contents are partitioned by language.
165
+
166
+ For analytical access without loading through the `datasets` library, you can query the Parquet files directly with DuckDB or Polars:
167
+
168
+ ```python
169
+ import duckdb
170
+ from huggingface_hub import HfFileSystem
171
+
172
+ duckdb.register_filesystem(HfFileSystem())
173
+
174
+ duckdb.sql("""
175
+ SELECT repo_path, num_files
176
+ FROM 'hf://datasets/HuggingFaceCode/stack-v3-train/data/*.parquet'
177
+ LIMIT 10
178
+ """).show()
179
+ ```
180
+
181
+ ### `stack-v3-full`
182
+
183
+ `stack-v3-full` is hosted as a [Hugging Face Storage Bucket](https://huggingface.co/docs/hub/storage-buckets) (not a regular dataset repo), split into a `metadata/` part (one row per repository) and a `contents/` part (one row per unique file blob, partitioned by language) that join on `content_id`. See [its dataset card](https://huggingface.co/buckets/HuggingFaceCode/stack-v3-full) for access instructions, join examples (DuckDB, pandas, PySpark), the full schema, and how stubs and `dedup_cluster` work.
184
+
185
+ ## Dataset statistics
186
+
187
+ <img src="./assets/stack_v3_multiplier_light.png" alt="The Stack v3 compared to previous versions" style="max-width: min(100%, 720px);">
188
+
189
+ ### Languages
190
+
191
+ The dataset contains **713** programming and markup languages.
192
+
193
+ Per-language breakdowns are available as JSON:
194
+
195
+ * **Train split:** [`stats/train/stats_by_language.json`](./stats/train/stats_by_language.json) — 713 languages
196
+ * **Full (unfiltered):** [`stats/full/stats_by_language.json`](./stats/full/stats_by_language.json) — 770 languages
197
+
198
+ ## Dataset structure
199
+
200
+ ### `stack-v3-train` — data fields
201
+
202
+ Each row is a **repository**.
203
+
204
+ * `repo_path` (`string`): `owner/name` slug of the repository on GitHub.
205
+ * `repo_id` (`int64`): Numeric GitHub repository ID.
206
+ * `commit_id` (`string`): Commit (HEAD of the default branch) the snapshot was taken from.
207
+ * `github_metadata` (`struct`): Repository-level metadata from the GitHub repository page:
208
+ * `branch` (`string`): Default branch name.
209
+ * `commit_count` (`int32`): Number of commits on the default branch.
210
+ * `repo_created_at` (`string`): Repository creation timestamp.
211
+ * `is_fork` (`bool`): Whether the repository is a fork.
212
+ * `is_org_owned` (`bool`): Whether the repository is owned by an organization.
213
+ * `forked_from` (`string`): Source repository if this is a fork, else `None`.
214
+ * `stars` (`int32`): Star count at crawl time.
215
+ * `forks` (`int32`): Fork count at crawl time.
216
+ * `issues` (`int32`): Open issue count at crawl time.
217
+ * `pull_requests` (`int32`): Open pull-request count at crawl time.
218
+ * `num_files` (`int64`): Number of files in this repository row.
219
+ * `files` (`list[struct]`): The files of the repository:
220
+ * `content_id` (`string`): SHA-1 of the file content.
221
+ * `content` (`string`): The UTF-8 file content (PII-redacted).
222
+ * `size_bytes` (`int32`): Length of the content in UTF-8 bytes.
223
+ * `file_path` (`string`): Path of the file within the repository.
224
+ * `file_timestamp` (`int64`): File modification time (Unix seconds). Only as accurate as the GitHub metadata.
225
+ * `language` (`string`): Programming language, detected by [`go-enry`](https://github.com/go-enry/go-enry) (a port of GitHub's Linguist).
226
+ * `is_vendor` (`bool`): Whether the file is a vendored/third-party file (per `go-enry`).
227
+ * `license_type` (`string`): `permissive` or `no_license`.
228
+ * `detected_licenses` (`list[string]`): SPDX license identifiers detected by [ScanCode](https://github.com/nexB/scancode-toolkit).
229
+
230
+ ### `stack-v3-full` — data fields
231
+
232
+ `stack-v3-full` shares the same repository-level fields, but its `files[]` structs reference content by `content_id` instead of embedding it, and include **stub** entries for excluded files (binary, oversized, undetected language). The full schema and stub semantics are documented in the [`stack-v3-full` dataset card](https://huggingface.co/buckets/HuggingFaceCode/stack-v3-full#data-fields).
233
+
234
+ ## Dataset creation
235
+
236
+ The Stack v3 was built in a similar fashion as The Stack v2 — language detection with [`go-enry`](https://github.com/go-enry/go-enry), file-level license detection with [ScanCode](https://github.com/nexB/scancode-toolkit), MinHash-LSH near-deduplication, PII redaction, quality filtering, and repository-level grouping — with updated tool versions and a few meaningful changes:
237
+
238
+ ### What changed from v2
239
+
240
+ | | The Stack v2 | The Stack v3 |
241
+ |---|---|---|
242
+ | **Source** | Software Heritage graph (2023) | Direct GitHub crawl (cutoff: 2025-08-07) |
243
+ | **Content** | File IDs only | File contents inline — self-contained |
244
+ | **Near-dedup** | Per-language | Language-agnostic, with Jaccard verification after connected-component clustering (no false positives) |
245
+
246
+ The rest of the pipeline (license detection, quality heuristics, PII redaction, grouping) follows the same methodology as v2 with updated tool versions.
247
+
248
+ > **Scope note:** This release focuses on **source code and Jupyter notebooks**. It does not include the additional non-code sources that accompanied StarCoder2 training (GitHub issues, pull requests, Kaggle notebooks, documentation, ArXiv, Wikipedia, OpenWebMath, etc.).
249
+
250
+ ### Curation rationale
251
+
252
+ Most code LLMs are trained on data that is never released, making the systems hard to reproduce and study. By publishing a large, contemporary, contents-included code dataset together with its construction code, we aim to make code-LLM pre-training reproducible and to give researchers a transparent, up-to-date corpus to build on.
253
+
254
+ ### Source data
255
+
256
+ #### Data collection
257
+
258
+ The list of repositories to crawl was assembled by taking the union of:
259
+
260
+ - Every GitHub repository that appears in [GH Archive](https://www.gharchive.org/) public event data, and
261
+ - Every GitHub origin recorded in the Software Heritage graph (origin table, `2025-05-18` snapshot).
262
+
263
+ For each repository, the crawler fetched the GitHub repository page (for metadata such as stars, forks, and the HEAD commit) and downloaded a **single snapshot tarball** of the default branch at its HEAD commit — no git history is collected. Forks were only downloaded when they had at least **5 stars**.
264
+
265
+ During download, the following were dropped or emptied:
266
+
267
+ * Files larger than **5 MB**.
268
+ * Binary files (files containing a null byte).
269
+ * Symlinks and non-regular files.
270
+ * Repositories were capped at **1,000,000 files**.
271
+
272
+
273
+ The crawl completed on **August 7, 2025**. The dataset reflects the state of public GitHub repositories as of that date.
274
+
275
+ The crawl collected snapshots from **224M** repositories containing **43.9 billion** files (including stubs for binary, oversized, and undetected-language files).
276
+
277
+ The exact snapshot for every repository is traceable via its `commit_id`.
278
+
279
+ #### Cleaning and filtering
280
+
281
+ The corpus then passes through the following stages (implemented in Spark):
282
+
283
+ 1. **Decoding & language detection.** File bytes are decoded to UTF-8 (falling back to `cchardet` encoding detection). Language, vendor, and generated-file flags are assigned with [`go-enry`](https://github.com/go-enry/go-enry). Each unique content blob is content-addressed by its SHA-1 (`content_id`) and stored once.
284
+ 2. **License detection.** We detect licenses at the file level using the [ScanCode Toolkit](https://github.com/nexB/scancode-toolkit) and propagate them through the repository file tree:
285
+ 1. *Identify license files.* Any file whose name matches a license-bearing pattern (e.g. `LICENSE`, `COPYING`, `MIT.txt`, `Apache2.0`, `NOTICE`, `README`, `GUIDELINES`, …) is selected for scanning.
286
+ 2. *Detect licenses.* ScanCode's license detection runs on the content of each matching file and returns the SPDX identifiers of any licenses found.
287
+ 3. *Propagate to siblings.* The detected licenses are propagated to every file that shares the same directory prefix as the license file — e.g. a `LICENSE` at the repo root covers all files, while one in `src/lib/` covers only files under that subtree. When a file is covered by multiple license files from different directories, their licenses are merged.
288
+ 4. *Classify.* Each file is labelled `permissive` (at least one permissive license detected, no conflicting non-permissive license), `no_license` (no licenses detected, or only non-license legal texts such as CLAs), or `non_permissive`. The permissive allowlist follows the [Blue Oak Council](https://blueoakcouncil.org/list) list plus licenses categorized as *Permissive* or *Public Domain* by [ScanCode](https://scancode-licensedb.aboutcode.org/). **Files classified as `non_permissive` are excluded from both released datasets.**
289
+ 3. **Near-deduplication.** MinHash signatures (256 permutations, 5-grams, min. 5 tokens) are indexed with LSH; candidate pairs with estimated Jaccard similarity ≥ **0.7** are grouped into duplicate clusters via connected components. Unlike v2, deduplication runs across all languages at once (language-agnostic) and candidate pairs are verified against their Jaccard estimate to eliminate false positives. For `stack-v3-train`, a single **representative** file per cluster is retained, chosen by (in order) highest stars, highest forks, permissive license, earliest repository creation.
290
+ 4. **Quality heuristics** (applied to `stack-v3-train`). Same filters as the StarCoder2 pipeline, with minor adjustments to language lists to accommodate new or updated languages detected by the newer `go-enry` release:
291
+ * Drop files with `<25%` alphabetic characters (alphanumeric for Assembly).
292
+ * Drop files with average line length `>100` or maximum line length `>1000` (exempting data/markup formats such as Text, JSON, XML, HTML, Markdown, Roff, TeX).
293
+ * Drop files with `>100,000` lines and cap several data/config formats (such as JSON, Yaml,...) at `512` lines.
294
+ * Drop files with giant base64/hex/unicode-escape data blobs, LFS pointers, and files with auto-generation markers in the first 5 lines.
295
+ * For HTML, keep only files whose visible text is ≥ 100 characters and ≥ 20% of the content.
296
+ * Drop a curated blocklist of non-code languages/extensions.
297
+ * Cap the largest markup/config languages (XML, HTML, JSON, JavaScript) at a fixed byte budget each, and probabilistically downsample any repository whose total size exceeds **1.5 GB** to fit Arrow/Parquet limits.
298
+ 5. **PII redaction** (applied to `stack-v3-train`). Same model and filtering as v2. File contents are scanned with [`StarPII`](https://huggingface.co/bigcode/starpii). Detected emails, keys, names, passwords, and IP addresses are replaced with placeholder tokens (`<EMAIL>`, `<KEY>`, `<NAME>`, `<PASSWORD>`, and synthetic private IPs).
299
+ 6. **Jupyter notebooks** (applied to `stack-v3-train`). `.ipynb` files are processed separately: cell **outputs, inline images, and volatile metadata are stripped**, and the notebook is kept as structured JSON. They pass through the same license, dedup, and PII steps. `stack-v3-full` keeps the raw `.ipynb` contents as crawled — use it if you want to apply your own notebook processing.
300
+ 7. **Grouping.** Files are grouped by repository so each row is a full repository, enabling repository-context pre-training.
301
+
302
+ Opt-out requests (see below) are applied before release.
303
+
304
+ #### Who are the source language producers?
305
+
306
+ The source code was written by GitHub users whose repositories were public at crawl time (up to August 7, 2025).
307
+
308
+ ### Personal and sensitive information
309
+
310
+ `stack-v3-train` was scanned for PII (emails, keys, names, passwords, IP addresses) with the same model and heuristics as The Stack v2, and detected entities were replaced with placeholder tokens. Detection is imperfect: the released data may still contain sensitive information (emails, IP addresses, keys) that was previously published to public GitHub repositories.
311
+
312
+ Researchers should use only public, non-personal information for open-access research, and must not use any personal information for spamming or other harmful purposes.
313
+
314
+ ### Opting out
315
+
316
+ Developers can request that their code be removed from The Stack v3. You can check whether your code is included via the ["Am I in The Stack?"](https://huggingface.co/spaces/HuggingFaceCode/in-the-stack) Space, and submit removal requests following the [opt-out instructions](https://github.com/bigcode-project/opt-out-v2). Repositories that opted out are removed from the dataset before each patch release.
317
+
318
+ ## Considerations for using the data
319
+
320
+ ### Social impact
321
+
322
+ The Stack v3 is released in the spirit of open science, to increase the accessibility, reproducibility, and transparency of code-LLM research. Code LLMs can help people of diverse backgrounds write better software, but they also carry risks such as over-reliance on generated code, generation of insecure or malicious code, and effects on the software-development labor market.
323
+
324
+ ### Discussion of biases
325
+
326
+ Widely used languages (e.g. C, JavaScript, Python) are heavily overrepresented relative to niche languages, and some languages are far less likely to be permissively licensed than others, biasing their representation. Comments in code may contain harmful or offensive language. The majority of natural language in the code is English.
327
+
328
+ ### Other known limitations
329
+
330
+ * License attribution is only as accurate as ScanCode and the GitHub metadata; report any mistakes for review.
331
+ * The dataset may contain malicious code, and models trained on it could be used to generate malware.
332
+ * Because content is a single default-branch snapshot (as of August 7, 2025), it does not capture development history or non-default branches.
333
+
334
+ ## Additional information
335
+
336
+ ### Licensing information
337
+
338
+ The dataset is released under the **Open Data Commons Attribution License (ODC-By) v1.0** [license](https://opendatacommons.org/licenses/by/1-0/).
339
+
340
+ The Stack v3 is a collection of source code from repositories with various licenses. Any use of all or part of the code gathered in The Stack v3 must abide by the terms of the original licenses, including attribution clauses where relevant; we provide provenance information (`repo_path`, `commit_id`, `detected_licenses`) for each file to facilitate this.
341
+
342
+ The list of [SPDX license identifiers](https://spdx.org/licenses/) included in the dataset can be found [here](stats/full/stats_by_license.json).
343
+
344
+ ### Citation information
345
+
346
+ ```bibtex
347
+ @misc{lozhkov2025stack-v3,
348
+ author = {Lozhkov, Anton and Larcher, Hugo and Morlon, Mathieu and Ben Allal, Loubna and von Werra, Leandro},
349
+ title = {The Stack v3: The Largest Open Code Dataset},
350
+ year = 2025,
351
+ url = {https://huggingface.co/datasets/HuggingFaceCode/stack-v3-train},
352
+ doi = {TODO},
353
+ publisher = {Hugging Face}
354
+ }
355
+ ```
356
+
357
+ The Stack v3 builds on the methodology of The Stack v2 / StarCoder2:
358
+
359
+ ```bibtex
360
+ @misc{lozhkov2024starcoder,
361
+ title={StarCoder 2 and The Stack v2: The Next Generation},
362
+ author={Anton Lozhkov and Raymond Li and Loubna Ben Allal and Federico Cassano and Joel Lamy-Poirier and Nouamane Tazi and Ao Tang and Dmytro Pykhtar and Jiawei Liu and Yuxiang Wei and Tianyang Liu and Max Tian and Denis Kocetkov and Arthur Zucker and Younes Belkada and Zijian Wang and Qian Liu and Dmitry Abulkhanov and Indraneil Paul and Zhuang Li and Wen-Ding Li and Megan Risdal and Jia Li and Jian Zhu and Terry Yue Zhuo and Evgenii Zheltonozhskii and Nii Osae Osae Dade and Wenhao Yu and Lucas Krauß and Naman Jain and Yixuan Su and Xuanli He and Manan Dey and Edoardo Abati and Yekun Chai and Niklas Muennighoff and Xiangru Tang and Muhtasham Oblokulov and Christopher Akiki and Marc Marone and Chenghao Mou and Mayank Mishra and Alex Gu and Binyuan Hui and Tri Dao and Armel Zebaze and Olivier Dehaene and Nicolas Patry and Canwen Xu and Julian McAuley and Han Hu and Torsten Scholak and Sebastien Paquet and Jennifer Robinson and Carolyn Jane Anderson and Nicolas Chapados and Mostofa Patwary and Nima Tajbakhsh and Yacine Jernite and Carlos Muñoz Ferrandis and Lingming Zhang and Sean Hughes and Thomas Wolf and Arjun Guha and Leandro von Werra and Harm de Vries},
363
+ year={2024},
364
+ eprint={2402.19173},
365
+ archivePrefix={arXiv},
366
+ primaryClass={cs.SE}
367
+ }
368
+ ```
369
+
370
+ ### Acknowledgements
371
+
372
+ This dataset is derived from source code hosted on GitHub. We thank the developers who make their work publicly available, and the [BigCode](https://www.bigcode-project.org/) community, whose work on dataset filters, PII detection, and open code dataset governance informed much of this pipeline.
assets/banner.png ADDED

Git LFS Details

  • SHA256: cdeb08746abf0928498195dd484a7e2399f87019a3912b373c6bc73738bb6f2f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
assets/stack_v3_multiplier_light.png ADDED

Git LFS Details

  • SHA256: b921808cc4d3b12a68b34353680f16e7c051a399a9d98ddbf775d0f5970c5528
  • Pointer size: 131 Bytes
  • Size of remote file: 201 kB
stats/full/repo_distributions.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "num_files": {
3
+ "min": 1,
4
+ "p5": 1,
5
+ "p50": 14,
6
+ "p95": 377,
7
+ "max": 1032000
8
+ },
9
+ "size_bytes": {
10
+ "min": 0,
11
+ "p5": 14,
12
+ "p50": 25611,
13
+ "p95": 3779978,
14
+ "max": 3997367026
15
+ },
16
+ "estimated_tokens": {
17
+ "min": 0,
18
+ "p5": 4,
19
+ "p50": 9411,
20
+ "p95": 1729981,
21
+ "max": 1927736171
22
+ }
23
+ }
stats/full/stats_by_language.json ADDED
The diff for this file is too large to render. See raw diff
 
stats/full/stats_by_language_license.json ADDED
The diff for this file is too large to render. See raw diff
 
stats/full/stats_by_license.json ADDED
@@ -0,0 +1,1748 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "license": "Apache-2.0",
4
+ "file_count": 1470866129,
5
+ "total_size_bytes": 19508362207892,
6
+ "estimated_tokens": 7734471537412
7
+ },
8
+ {
9
+ "license": "CC-BY-4.0",
10
+ "file_count": 614916796,
11
+ "total_size_bytes": 2101304589684,
12
+ "estimated_tokens": 880125962112
13
+ },
14
+ {
15
+ "license": "BSL-1.0",
16
+ "file_count": 173711200,
17
+ "total_size_bytes": 1677534359818,
18
+ "estimated_tokens": 756587597235
19
+ },
20
+ {
21
+ "license": "CC0-1.0",
22
+ "file_count": 72620336,
23
+ "total_size_bytes": 1050509831214,
24
+ "estimated_tokens": 520317617214
25
+ },
26
+ {
27
+ "license": "Unlicense",
28
+ "file_count": 62135084,
29
+ "total_size_bytes": 708075047167,
30
+ "estimated_tokens": 319774187766
31
+ },
32
+ {
33
+ "license": "MIT",
34
+ "file_count": 84303966,
35
+ "total_size_bytes": 423752152657,
36
+ "estimated_tokens": 161577540234
37
+ },
38
+ {
39
+ "license": "Python-2.0",
40
+ "file_count": 7677150,
41
+ "total_size_bytes": 136946165933,
42
+ "estimated_tokens": 50675659159
43
+ },
44
+ {
45
+ "license": "BSD-3-Clause",
46
+ "file_count": 8549498,
47
+ "total_size_bytes": 123691935615,
48
+ "estimated_tokens": 56499183616
49
+ },
50
+ {
51
+ "license": "BlueOak-1.0.0",
52
+ "file_count": 5079725,
53
+ "total_size_bytes": 87376382319,
54
+ "estimated_tokens": 30016524397
55
+ },
56
+ {
57
+ "license": "OpenSSL",
58
+ "file_count": 4298529,
59
+ "total_size_bytes": 51356183503,
60
+ "estimated_tokens": 21578869372
61
+ },
62
+ {
63
+ "license": "WTFPL",
64
+ "file_count": 3273037,
65
+ "total_size_bytes": 45539060093,
66
+ "estimated_tokens": 18871704666
67
+ },
68
+ {
69
+ "license": "ISC",
70
+ "file_count": 888625,
71
+ "total_size_bytes": 38639817372,
72
+ "estimated_tokens": 14850630853
73
+ },
74
+ {
75
+ "license": "BSD-2-Clause-Patent",
76
+ "file_count": 2889230,
77
+ "total_size_bytes": 36503803769,
78
+ "estimated_tokens": 14956056488
79
+ },
80
+ {
81
+ "license": "LLVM-exception",
82
+ "file_count": 3041758,
83
+ "total_size_bytes": 36363451965,
84
+ "estimated_tokens": 16435948549
85
+ },
86
+ {
87
+ "license": "CC-BY-3.0",
88
+ "file_count": 1417685,
89
+ "total_size_bytes": 22581986593,
90
+ "estimated_tokens": 10396457806
91
+ },
92
+ {
93
+ "license": "AFL-3.0",
94
+ "file_count": 2242349,
95
+ "total_size_bytes": 20185412337,
96
+ "estimated_tokens": 7977243934
97
+ },
98
+ {
99
+ "license": "Unicode-DFS-2015",
100
+ "file_count": 944760,
101
+ "total_size_bytes": 19287265869,
102
+ "estimated_tokens": 8444873021
103
+ },
104
+ {
105
+ "license": "OLDAP-2.8",
106
+ "file_count": 819350,
107
+ "total_size_bytes": 15244885847,
108
+ "estimated_tokens": 6420304700
109
+ },
110
+ {
111
+ "license": "BSD-2-Clause",
112
+ "file_count": 1842830,
113
+ "total_size_bytes": 14697523634,
114
+ "estimated_tokens": 5633713067
115
+ },
116
+ {
117
+ "license": "MS-PL",
118
+ "file_count": 549408,
119
+ "total_size_bytes": 13677860547,
120
+ "estimated_tokens": 5547326400
121
+ },
122
+ {
123
+ "license": "PHP-3.01",
124
+ "file_count": 2853955,
125
+ "total_size_bytes": 13173165026,
126
+ "estimated_tokens": 5070305935
127
+ },
128
+ {
129
+ "license": "blessing",
130
+ "file_count": 318672,
131
+ "total_size_bytes": 11386978397,
132
+ "estimated_tokens": 4790713382
133
+ },
134
+ {
135
+ "license": "Ruby",
136
+ "file_count": 1071767,
137
+ "total_size_bytes": 8708846223,
138
+ "estimated_tokens": 3108545422
139
+ },
140
+ {
141
+ "license": "Artistic-2.0",
142
+ "file_count": 501588,
143
+ "total_size_bytes": 7518695083,
144
+ "estimated_tokens": 3359996476
145
+ },
146
+ {
147
+ "license": "LicenseRef-scancode-public-domain",
148
+ "file_count": 264125,
149
+ "total_size_bytes": 5414180361,
150
+ "estimated_tokens": 2241121804
151
+ },
152
+ {
153
+ "license": "Unicode-DFS-2016",
154
+ "file_count": 109925,
155
+ "total_size_bytes": 5218687342,
156
+ "estimated_tokens": 2232504281
157
+ },
158
+ {
159
+ "license": "NCSA",
160
+ "file_count": 573062,
161
+ "total_size_bytes": 5016293208,
162
+ "estimated_tokens": 2283944275
163
+ },
164
+ {
165
+ "license": "curl",
166
+ "file_count": 620636,
167
+ "total_size_bytes": 4613631876,
168
+ "estimated_tokens": 1823059750
169
+ },
170
+ {
171
+ "license": "LicenseRef-scancode-arm-llvm-sga",
172
+ "file_count": 151268,
173
+ "total_size_bytes": 4437951687,
174
+ "estimated_tokens": 2039664628
175
+ },
176
+ {
177
+ "license": "Zend-2.0",
178
+ "file_count": 1534891,
179
+ "total_size_bytes": 4366296547,
180
+ "estimated_tokens": 1708365492
181
+ },
182
+ {
183
+ "license": "Zlib",
184
+ "file_count": 371594,
185
+ "total_size_bytes": 4330571691,
186
+ "estimated_tokens": 1787625019
187
+ },
188
+ {
189
+ "license": "SHL-0.51",
190
+ "file_count": 365872,
191
+ "total_size_bytes": 4178597989,
192
+ "estimated_tokens": 1912181169
193
+ },
194
+ {
195
+ "license": "MIT-0",
196
+ "file_count": 289206,
197
+ "total_size_bytes": 3634042448,
198
+ "estimated_tokens": 1558888230
199
+ },
200
+ {
201
+ "license": "LicenseRef-scancode-jython",
202
+ "file_count": 261375,
203
+ "total_size_bytes": 3307760103,
204
+ "estimated_tokens": 1087230310
205
+ },
206
+ {
207
+ "license": "CERN-OHL-P-2.0",
208
+ "file_count": 70961,
209
+ "total_size_bytes": 3247452111,
210
+ "estimated_tokens": 2149479807
211
+ },
212
+ {
213
+ "license": "Vim",
214
+ "file_count": 184431,
215
+ "total_size_bytes": 3007353119,
216
+ "estimated_tokens": 1025909440
217
+ },
218
+ {
219
+ "license": "JasPer-2.0",
220
+ "file_count": 228138,
221
+ "total_size_bytes": 2974964168,
222
+ "estimated_tokens": 1185095973
223
+ },
224
+ {
225
+ "license": "CDLA-Permissive-2.0",
226
+ "file_count": 216073,
227
+ "total_size_bytes": 2205334778,
228
+ "estimated_tokens": 1148409142
229
+ },
230
+ {
231
+ "license": "BSD-2-Clause-Views",
232
+ "file_count": 159845,
233
+ "total_size_bytes": 1833084558,
234
+ "estimated_tokens": 735658895
235
+ },
236
+ {
237
+ "license": "LicenseRef-scancode-tex-live",
238
+ "file_count": 75171,
239
+ "total_size_bytes": 1732639512,
240
+ "estimated_tokens": 839316992
241
+ },
242
+ {
243
+ "license": "NIST-Software",
244
+ "file_count": 85805,
245
+ "total_size_bytes": 1662282490,
246
+ "estimated_tokens": 1034530931
247
+ },
248
+ {
249
+ "license": "PostgreSQL",
250
+ "file_count": 91954,
251
+ "total_size_bytes": 1531169250,
252
+ "estimated_tokens": 587990957
253
+ },
254
+ {
255
+ "license": "CFITSIO",
256
+ "file_count": 27739,
257
+ "total_size_bytes": 1344723614,
258
+ "estimated_tokens": 631550926
259
+ },
260
+ {
261
+ "license": "LicenseRef-scancode-dropbear-2016",
262
+ "file_count": 137219,
263
+ "total_size_bytes": 1268374536,
264
+ "estimated_tokens": 580987377
265
+ },
266
+ {
267
+ "license": "LPPL-1.3c",
268
+ "file_count": 70207,
269
+ "total_size_bytes": 1155823000,
270
+ "estimated_tokens": 581705362
271
+ },
272
+ {
273
+ "license": "LicenseRef-scancode-code-credit-license-1.1.0",
274
+ "file_count": 52125,
275
+ "total_size_bytes": 1113229315,
276
+ "estimated_tokens": 434473674
277
+ },
278
+ {
279
+ "license": "OGL-Canada-2.0",
280
+ "file_count": 12105,
281
+ "total_size_bytes": 1081788751,
282
+ "estimated_tokens": 423009019
283
+ },
284
+ {
285
+ "license": "SHL-2.1",
286
+ "file_count": 35295,
287
+ "total_size_bytes": 1058049130,
288
+ "estimated_tokens": 619215777
289
+ },
290
+ {
291
+ "license": "LicenseRef-scancode-cecill-b-en",
292
+ "file_count": 85256,
293
+ "total_size_bytes": 1037889755,
294
+ "estimated_tokens": 494689113
295
+ },
296
+ {
297
+ "license": "0BSD",
298
+ "file_count": 82637,
299
+ "total_size_bytes": 1013949626,
300
+ "estimated_tokens": 390370349
301
+ },
302
+ {
303
+ "license": "FTL",
304
+ "file_count": 46307,
305
+ "total_size_bytes": 1006323339,
306
+ "estimated_tokens": 430793050
307
+ },
308
+ {
309
+ "license": "Sendmail",
310
+ "file_count": 124491,
311
+ "total_size_bytes": 998041186,
312
+ "estimated_tokens": 422017026
313
+ },
314
+ {
315
+ "license": "SHL-2.0",
316
+ "file_count": 91983,
317
+ "total_size_bytes": 978494187,
318
+ "estimated_tokens": 441372882
319
+ },
320
+ {
321
+ "license": "Artistic-1.0-Perl",
322
+ "file_count": 352270,
323
+ "total_size_bytes": 920579594,
324
+ "estimated_tokens": 312939287
325
+ },
326
+ {
327
+ "license": "NIST-PD",
328
+ "file_count": 12271,
329
+ "total_size_bytes": 905120266,
330
+ "estimated_tokens": 569860311
331
+ },
332
+ {
333
+ "license": "Apache-1.1",
334
+ "file_count": 78606,
335
+ "total_size_bytes": 902366080,
336
+ "estimated_tokens": 349937622
337
+ },
338
+ {
339
+ "license": "LicenseRef-scancode-node-js",
340
+ "file_count": 98234,
341
+ "total_size_bytes": 795593363,
342
+ "estimated_tokens": 333968473
343
+ },
344
+ {
345
+ "license": "LicenseRef-scancode-paraview-1.2",
346
+ "file_count": 70163,
347
+ "total_size_bytes": 756329789,
348
+ "estimated_tokens": 328292376
349
+ },
350
+ {
351
+ "license": "Artistic-1.0",
352
+ "file_count": 73686,
353
+ "total_size_bytes": 594440460,
354
+ "estimated_tokens": 266512270
355
+ },
356
+ {
357
+ "license": "LicenseRef-scancode-zsh",
358
+ "file_count": 19591,
359
+ "total_size_bytes": 581250404,
360
+ "estimated_tokens": 242484386
361
+ },
362
+ {
363
+ "license": "Beerware",
364
+ "file_count": 53731,
365
+ "total_size_bytes": 564331746,
366
+ "estimated_tokens": 275931897
367
+ },
368
+ {
369
+ "license": "LicenseRef-scancode-info-zip-2009-01",
370
+ "file_count": 31079,
371
+ "total_size_bytes": 562911722,
372
+ "estimated_tokens": 251814281
373
+ },
374
+ {
375
+ "license": "ZPL-2.1",
376
+ "file_count": 147808,
377
+ "total_size_bytes": 553499356,
378
+ "estimated_tokens": 214760199
379
+ },
380
+ {
381
+ "license": "LicenseRef-scancode-indiana-extreme",
382
+ "file_count": 36250,
383
+ "total_size_bytes": 550952801,
384
+ "estimated_tokens": 217709812
385
+ },
386
+ {
387
+ "license": "LicenseRef-scancode-info-zip-2007-03",
388
+ "file_count": 37329,
389
+ "total_size_bytes": 474927771,
390
+ "estimated_tokens": 209346415
391
+ },
392
+ {
393
+ "license": "LicenseRef-scancode-biopython",
394
+ "file_count": 23731,
395
+ "total_size_bytes": 460344220,
396
+ "estimated_tokens": 172637705
397
+ },
398
+ {
399
+ "license": "CC-PDDC",
400
+ "file_count": 91642,
401
+ "total_size_bytes": 417931299,
402
+ "estimated_tokens": 256957467
403
+ },
404
+ {
405
+ "license": "LicenseRef-scancode-unicode",
406
+ "file_count": 18956,
407
+ "total_size_bytes": 395638940,
408
+ "estimated_tokens": 197514110
409
+ },
410
+ {
411
+ "license": "LicenseRef-scancode-cryptopp",
412
+ "file_count": 35791,
413
+ "total_size_bytes": 383440581,
414
+ "estimated_tokens": 185925349
415
+ },
416
+ {
417
+ "license": "LicenseRef-scancode-other-permissive",
418
+ "file_count": 39093,
419
+ "total_size_bytes": 363294786,
420
+ "estimated_tokens": 151745749
421
+ },
422
+ {
423
+ "license": "CECILL-B",
424
+ "file_count": 28566,
425
+ "total_size_bytes": 333468657,
426
+ "estimated_tokens": 157396071
427
+ },
428
+ {
429
+ "license": "LicenseRef-scancode-pybench",
430
+ "file_count": 29968,
431
+ "total_size_bytes": 255835351,
432
+ "estimated_tokens": 73097275
433
+ },
434
+ {
435
+ "license": "LicenseRef-scancode-xfree86-1.0",
436
+ "file_count": 11403,
437
+ "total_size_bytes": 232574591,
438
+ "estimated_tokens": 101276444
439
+ },
440
+ {
441
+ "license": "LicenseRef-scancode-etalab-2.0-en",
442
+ "file_count": 3189,
443
+ "total_size_bytes": 232419186,
444
+ "estimated_tokens": 169384203
445
+ },
446
+ {
447
+ "license": "MulanPSL-2.0",
448
+ "file_count": 20323,
449
+ "total_size_bytes": 217118943,
450
+ "estimated_tokens": 87734841
451
+ },
452
+ {
453
+ "license": "Qhull",
454
+ "file_count": 8160,
455
+ "total_size_bytes": 199961632,
456
+ "estimated_tokens": 82621542
457
+ },
458
+ {
459
+ "license": "VSL-1.0",
460
+ "file_count": 12815,
461
+ "total_size_bytes": 184715432,
462
+ "estimated_tokens": 80049997
463
+ },
464
+ {
465
+ "license": "GLWTPL",
466
+ "file_count": 25990,
467
+ "total_size_bytes": 183650542,
468
+ "estimated_tokens": 79058480
469
+ },
470
+ {
471
+ "license": "BSD-3-Clause-Clear",
472
+ "file_count": 14189,
473
+ "total_size_bytes": 169971196,
474
+ "estimated_tokens": 66875807
475
+ },
476
+ {
477
+ "license": "Clips",
478
+ "file_count": 11046,
479
+ "total_size_bytes": 156797511,
480
+ "estimated_tokens": 62343925
481
+ },
482
+ {
483
+ "license": "FSFAP",
484
+ "file_count": 17853,
485
+ "total_size_bytes": 144484107,
486
+ "estimated_tokens": 64416696
487
+ },
488
+ {
489
+ "license": "ANTLR-PD",
490
+ "file_count": 27883,
491
+ "total_size_bytes": 143692614,
492
+ "estimated_tokens": 54483910
493
+ },
494
+ {
495
+ "license": "SGI-B-2.0",
496
+ "file_count": 14372,
497
+ "total_size_bytes": 129560949,
498
+ "estimated_tokens": 52611195
499
+ },
500
+ {
501
+ "license": "LicenseRef-scancode-tcg-spec-license-v1",
502
+ "file_count": 12999,
503
+ "total_size_bytes": 128505656,
504
+ "estimated_tokens": 65389607
505
+ },
506
+ {
507
+ "license": "AFL-2.1",
508
+ "file_count": 18278,
509
+ "total_size_bytes": 115167712,
510
+ "estimated_tokens": 50126599
511
+ },
512
+ {
513
+ "license": "LicenseRef-scancode-libgeotiff",
514
+ "file_count": 1551,
515
+ "total_size_bytes": 114714832,
516
+ "estimated_tokens": 73057237
517
+ },
518
+ {
519
+ "license": "AFL-2.0",
520
+ "file_count": 18047,
521
+ "total_size_bytes": 113981605,
522
+ "estimated_tokens": 48997910
523
+ },
524
+ {
525
+ "license": "X11",
526
+ "file_count": 7140,
527
+ "total_size_bytes": 108643786,
528
+ "estimated_tokens": 48650208
529
+ },
530
+ {
531
+ "license": "BSD-Source-Code",
532
+ "file_count": 17084,
533
+ "total_size_bytes": 104756980,
534
+ "estimated_tokens": 51881469
535
+ },
536
+ {
537
+ "license": "PSF-2.0",
538
+ "file_count": 12968,
539
+ "total_size_bytes": 104280697,
540
+ "estimated_tokens": 37748813
541
+ },
542
+ {
543
+ "license": "MIT-Festival",
544
+ "file_count": 5223,
545
+ "total_size_bytes": 101192569,
546
+ "estimated_tokens": 52527173
547
+ },
548
+ {
549
+ "license": "GD",
550
+ "file_count": 13364,
551
+ "total_size_bytes": 97871397,
552
+ "estimated_tokens": 37485829
553
+ },
554
+ {
555
+ "license": "BSD-3-Clause-Modification",
556
+ "file_count": 11725,
557
+ "total_size_bytes": 96118639,
558
+ "estimated_tokens": 35011832
559
+ },
560
+ {
561
+ "license": "LicenseRef-scancode-blas-2017",
562
+ "file_count": 9859,
563
+ "total_size_bytes": 95209925,
564
+ "estimated_tokens": 37823881
565
+ },
566
+ {
567
+ "license": "CERN-OHL-1.1",
568
+ "file_count": 1921,
569
+ "total_size_bytes": 90802020,
570
+ "estimated_tokens": 54020918
571
+ },
572
+ {
573
+ "license": "Community-Spec-1.0",
574
+ "file_count": 6813,
575
+ "total_size_bytes": 87837363,
576
+ "estimated_tokens": 42222648
577
+ },
578
+ {
579
+ "license": "EFL-2.0",
580
+ "file_count": 12584,
581
+ "total_size_bytes": 85314891,
582
+ "estimated_tokens": 30567243
583
+ },
584
+ {
585
+ "license": "NASA-1.3",
586
+ "file_count": 2136,
587
+ "total_size_bytes": 84421148,
588
+ "estimated_tokens": 55036992
589
+ },
590
+ {
591
+ "license": "CERN-OHL-1.2",
592
+ "file_count": 2321,
593
+ "total_size_bytes": 83666527,
594
+ "estimated_tokens": 55985690
595
+ },
596
+ {
597
+ "license": "LZMA-SDK-9.22",
598
+ "file_count": 13177,
599
+ "total_size_bytes": 81564032,
600
+ "estimated_tokens": 35292357
601
+ },
602
+ {
603
+ "license": "BSD-4-Clause",
604
+ "file_count": 7734,
605
+ "total_size_bytes": 78429286,
606
+ "estimated_tokens": 29886528
607
+ },
608
+ {
609
+ "license": "LicenseRef-scancode-paypal-sdk-2013-2016",
610
+ "file_count": 43167,
611
+ "total_size_bytes": 74456784,
612
+ "estimated_tokens": 23016318
613
+ },
614
+ {
615
+ "license": "LicenseRef-scancode-cximage",
616
+ "file_count": 5863,
617
+ "total_size_bytes": 73138349,
618
+ "estimated_tokens": 31985820
619
+ },
620
+ {
621
+ "license": "LicenseRef-scancode-takuya-ooura",
622
+ "file_count": 5556,
623
+ "total_size_bytes": 70192368,
624
+ "estimated_tokens": 31681619
625
+ },
626
+ {
627
+ "license": "PHP-3.0",
628
+ "file_count": 7112,
629
+ "total_size_bytes": 66171576,
630
+ "estimated_tokens": 20788121
631
+ },
632
+ {
633
+ "license": "NIST-PD-fallback",
634
+ "file_count": 2427,
635
+ "total_size_bytes": 61882460,
636
+ "estimated_tokens": 23365577
637
+ },
638
+ {
639
+ "license": "CC-BY-1.0",
640
+ "file_count": 1963,
641
+ "total_size_bytes": 59855831,
642
+ "estimated_tokens": 30508312
643
+ },
644
+ {
645
+ "license": "Libpng",
646
+ "file_count": 1895,
647
+ "total_size_bytes": 57494663,
648
+ "estimated_tokens": 23590524
649
+ },
650
+ {
651
+ "license": "etalab-2.0",
652
+ "file_count": 1946,
653
+ "total_size_bytes": 56846137,
654
+ "estimated_tokens": 35273649
655
+ },
656
+ {
657
+ "license": "Minpack",
658
+ "file_count": 6379,
659
+ "total_size_bytes": 50614069,
660
+ "estimated_tokens": 21917899
661
+ },
662
+ {
663
+ "license": "zlib-acknowledgement",
664
+ "file_count": 1620,
665
+ "total_size_bytes": 49882454,
666
+ "estimated_tokens": 21632740
667
+ },
668
+ {
669
+ "license": "LicenseRef-scancode-mulanpsl-2.0-en",
670
+ "file_count": 7661,
671
+ "total_size_bytes": 49835883,
672
+ "estimated_tokens": 22164768
673
+ },
674
+ {
675
+ "license": "TCL",
676
+ "file_count": 5481,
677
+ "total_size_bytes": 48599899,
678
+ "estimated_tokens": 20688383
679
+ },
680
+ {
681
+ "license": "BSD-1-Clause",
682
+ "file_count": 14687,
683
+ "total_size_bytes": 47976343,
684
+ "estimated_tokens": 29247890
685
+ },
686
+ {
687
+ "license": "OGL-UK-3.0",
688
+ "file_count": 5952,
689
+ "total_size_bytes": 46062933,
690
+ "estimated_tokens": 17492828
691
+ },
692
+ {
693
+ "license": "LicenseRef-scancode-khronos",
694
+ "file_count": 7079,
695
+ "total_size_bytes": 45099145,
696
+ "estimated_tokens": 23477992
697
+ },
698
+ {
699
+ "license": "LicenseRef-scancode-bsd-artwork",
700
+ "file_count": 13803,
701
+ "total_size_bytes": 44592115,
702
+ "estimated_tokens": 27618437
703
+ },
704
+ {
705
+ "license": "LicenseRef-scancode-bsd-unmodified",
706
+ "file_count": 13803,
707
+ "total_size_bytes": 44592115,
708
+ "estimated_tokens": 27618437
709
+ },
710
+ {
711
+ "license": "CDLA-Permissive-1.0",
712
+ "file_count": 114,
713
+ "total_size_bytes": 43489072,
714
+ "estimated_tokens": 26295945
715
+ },
716
+ {
717
+ "license": "LicenseRef-scancode-us-govt-public-domain",
718
+ "file_count": 1573,
719
+ "total_size_bytes": 42178355,
720
+ "estimated_tokens": 24867302
721
+ },
722
+ {
723
+ "license": "LicenseRef-scancode-public-domain-disclaimer",
724
+ "file_count": 1640,
725
+ "total_size_bytes": 42012609,
726
+ "estimated_tokens": 17496076
727
+ },
728
+ {
729
+ "license": "LicenseRef-scancode-info-zip-2002-02",
730
+ "file_count": 1951,
731
+ "total_size_bytes": 38947515,
732
+ "estimated_tokens": 16745093
733
+ },
734
+ {
735
+ "license": "LicenseRef-scancode-php-2.0.2",
736
+ "file_count": 4438,
737
+ "total_size_bytes": 36874151,
738
+ "estimated_tokens": 10927634
739
+ },
740
+ {
741
+ "license": "LicenseRef-scancode-cwe-tou",
742
+ "file_count": 104,
743
+ "total_size_bytes": 33902309,
744
+ "estimated_tokens": 27282962
745
+ },
746
+ {
747
+ "license": "LicenseRef-scancode-bsd-3-clause-fda",
748
+ "file_count": 797,
749
+ "total_size_bytes": 33080360,
750
+ "estimated_tokens": 20891500
751
+ },
752
+ {
753
+ "license": "LicenseRef-scancode-supervisor",
754
+ "file_count": 2821,
755
+ "total_size_bytes": 32049516,
756
+ "estimated_tokens": 10172855
757
+ },
758
+ {
759
+ "license": "LicenseRef-scancode-phorum-2.0",
760
+ "file_count": 4075,
761
+ "total_size_bytes": 27238211,
762
+ "estimated_tokens": 11595523
763
+ },
764
+ {
765
+ "license": "LicenseRef-scancode-dbad-1.1",
766
+ "file_count": 2161,
767
+ "total_size_bytes": 26692500,
768
+ "estimated_tokens": 13469628
769
+ },
770
+ {
771
+ "license": "OGTSL",
772
+ "file_count": 2017,
773
+ "total_size_bytes": 25090826,
774
+ "estimated_tokens": 7680338
775
+ },
776
+ {
777
+ "license": "OLDAP-2.5",
778
+ "file_count": 2053,
779
+ "total_size_bytes": 22934022,
780
+ "estimated_tokens": 11074724
781
+ },
782
+ {
783
+ "license": "LicenseRef-scancode-beri-hw-sw-1.0",
784
+ "file_count": 7059,
785
+ "total_size_bytes": 22462149,
786
+ "estimated_tokens": 9708259
787
+ },
788
+ {
789
+ "license": "EUDatagrid",
790
+ "file_count": 1179,
791
+ "total_size_bytes": 19897565,
792
+ "estimated_tokens": 9552270
793
+ },
794
+ {
795
+ "license": "LicenseRef-scancode-emit",
796
+ "file_count": 2298,
797
+ "total_size_bytes": 19171221,
798
+ "estimated_tokens": 8019916
799
+ },
800
+ {
801
+ "license": "CC-BY-2.5",
802
+ "file_count": 736,
803
+ "total_size_bytes": 18718950,
804
+ "estimated_tokens": 12445654
805
+ },
806
+ {
807
+ "license": "CC-BY-2.0",
808
+ "file_count": 908,
809
+ "total_size_bytes": 18367647,
810
+ "estimated_tokens": 12159537
811
+ },
812
+ {
813
+ "license": "HPND",
814
+ "file_count": 2800,
815
+ "total_size_bytes": 16208888,
816
+ "estimated_tokens": 5302197
817
+ },
818
+ {
819
+ "license": "AFL-1.1",
820
+ "file_count": 689,
821
+ "total_size_bytes": 14174445,
822
+ "estimated_tokens": 7128494
823
+ },
824
+ {
825
+ "license": "mplus",
826
+ "file_count": 3291,
827
+ "total_size_bytes": 13826058,
828
+ "estimated_tokens": 8212377
829
+ },
830
+ {
831
+ "license": "ClArtistic",
832
+ "file_count": 1294,
833
+ "total_size_bytes": 13213618,
834
+ "estimated_tokens": 5162150
835
+ },
836
+ {
837
+ "license": "LicenseRef-scancode-sun-source",
838
+ "file_count": 189,
839
+ "total_size_bytes": 12893329,
840
+ "estimated_tokens": 7178850
841
+ },
842
+ {
843
+ "license": "LicenseRef-scancode-fujion-exception-to-apache-2.0",
844
+ "file_count": 2300,
845
+ "total_size_bytes": 10539752,
846
+ "estimated_tokens": 3326888
847
+ },
848
+ {
849
+ "license": "ECL-2.0",
850
+ "file_count": 1801,
851
+ "total_size_bytes": 9970017,
852
+ "estimated_tokens": 4549073
853
+ },
854
+ {
855
+ "license": "LicenseRef-scancode-wtfnmfpl-1.0",
856
+ "file_count": 2330,
857
+ "total_size_bytes": 9148737,
858
+ "estimated_tokens": 3978877
859
+ },
860
+ {
861
+ "license": "MS-LPL",
862
+ "file_count": 897,
863
+ "total_size_bytes": 8803808,
864
+ "estimated_tokens": 3689047
865
+ },
866
+ {
867
+ "license": "Graphics-Gems",
868
+ "file_count": 1851,
869
+ "total_size_bytes": 8787218,
870
+ "estimated_tokens": 3652069
871
+ },
872
+ {
873
+ "license": "O-UDA-1.0",
874
+ "file_count": 59,
875
+ "total_size_bytes": 8400469,
876
+ "estimated_tokens": 5470372
877
+ },
878
+ {
879
+ "license": "LicenseRef-scancode-free-art-1.3",
880
+ "file_count": 116,
881
+ "total_size_bytes": 7889750,
882
+ "estimated_tokens": 5344329
883
+ },
884
+ {
885
+ "license": "IJG",
886
+ "file_count": 950,
887
+ "total_size_bytes": 7485792,
888
+ "estimated_tokens": 3729451
889
+ },
890
+ {
891
+ "license": "MulanPSL-1.0",
892
+ "file_count": 347,
893
+ "total_size_bytes": 7130483,
894
+ "estimated_tokens": 4265478
895
+ },
896
+ {
897
+ "license": "LicenseRef-scancode-info-zip-2005-02",
898
+ "file_count": 461,
899
+ "total_size_bytes": 6760121,
900
+ "estimated_tokens": 2925974
901
+ },
902
+ {
903
+ "license": "COIL-1.0",
904
+ "file_count": 123,
905
+ "total_size_bytes": 6397016,
906
+ "estimated_tokens": 2692896
907
+ },
908
+ {
909
+ "license": "LicenseRef-scancode-ricebsd",
910
+ "file_count": 525,
911
+ "total_size_bytes": 6248769,
912
+ "estimated_tokens": 2312727
913
+ },
914
+ {
915
+ "license": "LicenseRef-scancode-cgic",
916
+ "file_count": 354,
917
+ "total_size_bytes": 6094910,
918
+ "estimated_tokens": 2443600
919
+ },
920
+ {
921
+ "license": "W3C",
922
+ "file_count": 4980,
923
+ "total_size_bytes": 5933952,
924
+ "estimated_tokens": 2465317
925
+ },
926
+ {
927
+ "license": "OGC-1.0",
928
+ "file_count": 810,
929
+ "total_size_bytes": 5431719,
930
+ "estimated_tokens": 2425901
931
+ },
932
+ {
933
+ "license": "EPICS",
934
+ "file_count": 377,
935
+ "total_size_bytes": 5326227,
936
+ "estimated_tokens": 2099372
937
+ },
938
+ {
939
+ "license": "JSON",
940
+ "file_count": 457,
941
+ "total_size_bytes": 5250732,
942
+ "estimated_tokens": 2488833
943
+ },
944
+ {
945
+ "license": "Artistic-1.0-cl8",
946
+ "file_count": 589,
947
+ "total_size_bytes": 4844142,
948
+ "estimated_tokens": 2262740
949
+ },
950
+ {
951
+ "license": "UPL-1.0",
952
+ "file_count": 580,
953
+ "total_size_bytes": 4509517,
954
+ "estimated_tokens": 1823765
955
+ },
956
+ {
957
+ "license": "LicenseRef-scancode-wtfpl-1.0",
958
+ "file_count": 483,
959
+ "total_size_bytes": 4380372,
960
+ "estimated_tokens": 1652917
961
+ },
962
+ {
963
+ "license": "Fair",
964
+ "file_count": 144,
965
+ "total_size_bytes": 4308210,
966
+ "estimated_tokens": 2798035
967
+ },
968
+ {
969
+ "license": "HPND-sell-variant",
970
+ "file_count": 216,
971
+ "total_size_bytes": 3972595,
972
+ "estimated_tokens": 1549650
973
+ },
974
+ {
975
+ "license": "CC-BY-3.0-US",
976
+ "file_count": 639,
977
+ "total_size_bytes": 3961034,
978
+ "estimated_tokens": 2153848
979
+ },
980
+ {
981
+ "license": "Plexus",
982
+ "file_count": 501,
983
+ "total_size_bytes": 3900393,
984
+ "estimated_tokens": 2593660
985
+ },
986
+ {
987
+ "license": "PDDL-1.0",
988
+ "file_count": 119,
989
+ "total_size_bytes": 3520504,
990
+ "estimated_tokens": 1506302
991
+ },
992
+ {
993
+ "license": "ODC-By-1.0",
994
+ "file_count": 327,
995
+ "total_size_bytes": 3179563,
996
+ "estimated_tokens": 1402303
997
+ },
998
+ {
999
+ "license": "LicenseRef-scancode-notre-dame",
1000
+ "file_count": 521,
1001
+ "total_size_bytes": 3071570,
1002
+ "estimated_tokens": 1297053
1003
+ },
1004
+ {
1005
+ "license": "LicenseRef-scancode-flora-1.1",
1006
+ "file_count": 751,
1007
+ "total_size_bytes": 2754049,
1008
+ "estimated_tokens": 1145318
1009
+ },
1010
+ {
1011
+ "license": "LicenseRef-scancode-ibm-icu",
1012
+ "file_count": 6,
1013
+ "total_size_bytes": 2667969,
1014
+ "estimated_tokens": 1036277
1015
+ },
1016
+ {
1017
+ "license": "AFL-1.2",
1018
+ "file_count": 183,
1019
+ "total_size_bytes": 2446547,
1020
+ "estimated_tokens": 1403054
1021
+ },
1022
+ {
1023
+ "license": "BSD-3-Clause-Open-MPI",
1024
+ "file_count": 344,
1025
+ "total_size_bytes": 2444171,
1026
+ "estimated_tokens": 1118404
1027
+ },
1028
+ {
1029
+ "license": "OLDAP-2.7",
1030
+ "file_count": 812,
1031
+ "total_size_bytes": 2423761,
1032
+ "estimated_tokens": 640007
1033
+ },
1034
+ {
1035
+ "license": "OLDAP-2.3",
1036
+ "file_count": 333,
1037
+ "total_size_bytes": 2345674,
1038
+ "estimated_tokens": 1100384
1039
+ },
1040
+ {
1041
+ "license": "LicenseRef-scancode-code-credit-license-1.0.1",
1042
+ "file_count": 193,
1043
+ "total_size_bytes": 2057101,
1044
+ "estimated_tokens": 930721
1045
+ },
1046
+ {
1047
+ "license": "LicenseRef-scancode-scansoft-1.2",
1048
+ "file_count": 946,
1049
+ "total_size_bytes": 1862876,
1050
+ "estimated_tokens": 720309
1051
+ },
1052
+ {
1053
+ "license": "LPL-1.0",
1054
+ "file_count": 123,
1055
+ "total_size_bytes": 1661735,
1056
+ "estimated_tokens": 617887
1057
+ },
1058
+ {
1059
+ "license": "LicenseRef-scancode-ogl-1.0a",
1060
+ "file_count": 667,
1061
+ "total_size_bytes": 1575796,
1062
+ "estimated_tokens": 545262
1063
+ },
1064
+ {
1065
+ "license": "LicenseRef-scancode-ryszard-szopa",
1066
+ "file_count": 239,
1067
+ "total_size_bytes": 1520499,
1068
+ "estimated_tokens": 516038
1069
+ },
1070
+ {
1071
+ "license": "LicenseRef-scancode-boost-original",
1072
+ "file_count": 168,
1073
+ "total_size_bytes": 1372449,
1074
+ "estimated_tokens": 619784
1075
+ },
1076
+ {
1077
+ "license": "Multics",
1078
+ "file_count": 47,
1079
+ "total_size_bytes": 1346133,
1080
+ "estimated_tokens": 590109
1081
+ },
1082
+ {
1083
+ "license": "APAFML",
1084
+ "file_count": 41,
1085
+ "total_size_bytes": 1271067,
1086
+ "estimated_tokens": 715109
1087
+ },
1088
+ {
1089
+ "license": "LicenseRef-scancode-cosl",
1090
+ "file_count": 123,
1091
+ "total_size_bytes": 1264689,
1092
+ "estimated_tokens": 493231
1093
+ },
1094
+ {
1095
+ "license": "CNRI-Python",
1096
+ "file_count": 228,
1097
+ "total_size_bytes": 1262134,
1098
+ "estimated_tokens": 839286
1099
+ },
1100
+ {
1101
+ "license": "Apache-1.0",
1102
+ "file_count": 323,
1103
+ "total_size_bytes": 1221582,
1104
+ "estimated_tokens": 478202
1105
+ },
1106
+ {
1107
+ "license": "MirOS",
1108
+ "file_count": 437,
1109
+ "total_size_bytes": 1107526,
1110
+ "estimated_tokens": 711354
1111
+ },
1112
+ {
1113
+ "license": "Jam",
1114
+ "file_count": 136,
1115
+ "total_size_bytes": 1090954,
1116
+ "estimated_tokens": 695469
1117
+ },
1118
+ {
1119
+ "license": "Borceux",
1120
+ "file_count": 37,
1121
+ "total_size_bytes": 925197,
1122
+ "estimated_tokens": 390395
1123
+ },
1124
+ {
1125
+ "license": "LicenseRef-scancode-logica-1.0",
1126
+ "file_count": 184,
1127
+ "total_size_bytes": 888444,
1128
+ "estimated_tokens": 225553
1129
+ },
1130
+ {
1131
+ "license": "CNRI-Python-GPL-Compatible",
1132
+ "file_count": 127,
1133
+ "total_size_bytes": 805065,
1134
+ "estimated_tokens": 535347
1135
+ },
1136
+ {
1137
+ "license": "OLDAP-2.0.1",
1138
+ "file_count": 98,
1139
+ "total_size_bytes": 755966,
1140
+ "estimated_tokens": 294669
1141
+ },
1142
+ {
1143
+ "license": "BSD-3-Clause-Attribution",
1144
+ "file_count": 361,
1145
+ "total_size_bytes": 740249,
1146
+ "estimated_tokens": 342083
1147
+ },
1148
+ {
1149
+ "license": "LicenseRef-scancode-visual-idiot",
1150
+ "file_count": 99,
1151
+ "total_size_bytes": 698422,
1152
+ "estimated_tokens": 253945
1153
+ },
1154
+ {
1155
+ "license": "AML",
1156
+ "file_count": 96,
1157
+ "total_size_bytes": 620076,
1158
+ "estimated_tokens": 186908
1159
+ },
1160
+ {
1161
+ "license": "MIT-feh",
1162
+ "file_count": 115,
1163
+ "total_size_bytes": 549634,
1164
+ "estimated_tokens": 242286
1165
+ },
1166
+ {
1167
+ "license": "LicenseRef-scancode-wthpl-1.0",
1168
+ "file_count": 58,
1169
+ "total_size_bytes": 542380,
1170
+ "estimated_tokens": 237071
1171
+ },
1172
+ {
1173
+ "license": "MIT-Modern-Variant",
1174
+ "file_count": 207,
1175
+ "total_size_bytes": 540409,
1176
+ "estimated_tokens": 236697
1177
+ },
1178
+ {
1179
+ "license": "LicenseRef-scancode-apple-excl",
1180
+ "file_count": 103,
1181
+ "total_size_bytes": 531892,
1182
+ "estimated_tokens": 202458
1183
+ },
1184
+ {
1185
+ "license": "LicenseRef-scancode-lcs-telegraphics",
1186
+ "file_count": 71,
1187
+ "total_size_bytes": 511240,
1188
+ "estimated_tokens": 207101
1189
+ },
1190
+ {
1191
+ "license": "W3C-19980720",
1192
+ "file_count": 68,
1193
+ "total_size_bytes": 498456,
1194
+ "estimated_tokens": 331460
1195
+ },
1196
+ {
1197
+ "license": "LicenseRef-scancode-utopia",
1198
+ "file_count": 187,
1199
+ "total_size_bytes": 485008,
1200
+ "estimated_tokens": 273314
1201
+ },
1202
+ {
1203
+ "license": "ZPL-2.0",
1204
+ "file_count": 74,
1205
+ "total_size_bytes": 439215,
1206
+ "estimated_tokens": 207701
1207
+ },
1208
+ {
1209
+ "license": "MITNFA",
1210
+ "file_count": 69,
1211
+ "total_size_bytes": 435377,
1212
+ "estimated_tokens": 197682
1213
+ },
1214
+ {
1215
+ "license": "LicenseRef-scancode-matt-gallagher-attribution",
1216
+ "file_count": 59,
1217
+ "total_size_bytes": 407354,
1218
+ "estimated_tokens": 122675
1219
+ },
1220
+ {
1221
+ "license": "LicenseRef-scancode-opensaml-1.0",
1222
+ "file_count": 92,
1223
+ "total_size_bytes": 382242,
1224
+ "estimated_tokens": 252536
1225
+ },
1226
+ {
1227
+ "license": "LicenseRef-scancode-componentace-jcraft",
1228
+ "file_count": 38,
1229
+ "total_size_bytes": 289225,
1230
+ "estimated_tokens": 124263
1231
+ },
1232
+ {
1233
+ "license": "LicenseRef-scancode-nvidia-gov",
1234
+ "file_count": 223,
1235
+ "total_size_bytes": 273212,
1236
+ "estimated_tokens": 136174
1237
+ },
1238
+ {
1239
+ "license": "LicenseRef-scancode-dmtf-2017",
1240
+ "file_count": 47,
1241
+ "total_size_bytes": 227835,
1242
+ "estimated_tokens": 84358
1243
+ },
1244
+ {
1245
+ "license": "LicenseRef-scancode-sun-rpc",
1246
+ "file_count": 24,
1247
+ "total_size_bytes": 218496,
1248
+ "estimated_tokens": 81104
1249
+ },
1250
+ {
1251
+ "license": "LicenseRef-scancode-info-zip-2003-05",
1252
+ "file_count": 8,
1253
+ "total_size_bytes": 193051,
1254
+ "estimated_tokens": 103756
1255
+ },
1256
+ {
1257
+ "license": "OGL-UK-2.0",
1258
+ "file_count": 21,
1259
+ "total_size_bytes": 190912,
1260
+ "estimated_tokens": 76468
1261
+ },
1262
+ {
1263
+ "license": "SunPro",
1264
+ "file_count": 48,
1265
+ "total_size_bytes": 163060,
1266
+ "estimated_tokens": 67038
1267
+ },
1268
+ {
1269
+ "license": "LicenseRef-scancode-geoff-kuenning-1993",
1270
+ "file_count": 81,
1271
+ "total_size_bytes": 161703,
1272
+ "estimated_tokens": 107528
1273
+ },
1274
+ {
1275
+ "license": "LicenseRef-scancode-sata",
1276
+ "file_count": 25,
1277
+ "total_size_bytes": 155471,
1278
+ "estimated_tokens": 65827
1279
+ },
1280
+ {
1281
+ "license": "LicenseRef-scancode-philippe-de-muyter",
1282
+ "file_count": 23,
1283
+ "total_size_bytes": 153549,
1284
+ "estimated_tokens": 53286
1285
+ },
1286
+ {
1287
+ "license": "ICU",
1288
+ "file_count": 154,
1289
+ "total_size_bytes": 148124,
1290
+ "estimated_tokens": 79085
1291
+ },
1292
+ {
1293
+ "license": "Bahyph",
1294
+ "file_count": 75,
1295
+ "total_size_bytes": 147381,
1296
+ "estimated_tokens": 98004
1297
+ },
1298
+ {
1299
+ "license": "eGenix",
1300
+ "file_count": 33,
1301
+ "total_size_bytes": 139062,
1302
+ "estimated_tokens": 92472
1303
+ },
1304
+ {
1305
+ "license": "LicenseRef-scancode-protobuf",
1306
+ "file_count": 40,
1307
+ "total_size_bytes": 137824,
1308
+ "estimated_tokens": 91649
1309
+ },
1310
+ {
1311
+ "license": "NAIST-2003",
1312
+ "file_count": 33,
1313
+ "total_size_bytes": 121902,
1314
+ "estimated_tokens": 81061
1315
+ },
1316
+ {
1317
+ "license": "BSD-4-Clause-UC",
1318
+ "file_count": 81,
1319
+ "total_size_bytes": 121082,
1320
+ "estimated_tokens": 79012
1321
+ },
1322
+ {
1323
+ "license": "FreeBSD-DOC",
1324
+ "file_count": 16,
1325
+ "total_size_bytes": 118814,
1326
+ "estimated_tokens": 48715
1327
+ },
1328
+ {
1329
+ "license": "OLDAP-1.2",
1330
+ "file_count": 41,
1331
+ "total_size_bytes": 114943,
1332
+ "estimated_tokens": 48238
1333
+ },
1334
+ {
1335
+ "license": "SMLNJ",
1336
+ "file_count": 57,
1337
+ "total_size_bytes": 111024,
1338
+ "estimated_tokens": 57595
1339
+ },
1340
+ {
1341
+ "license": "LicenseRef-scancode-infineon-free",
1342
+ "file_count": 31,
1343
+ "total_size_bytes": 108680,
1344
+ "estimated_tokens": 49854
1345
+ },
1346
+ {
1347
+ "license": "LicenseRef-scancode-mit-old-style",
1348
+ "file_count": 12,
1349
+ "total_size_bytes": 107530,
1350
+ "estimated_tokens": 46897
1351
+ },
1352
+ {
1353
+ "license": "ZPL-1.1",
1354
+ "file_count": 33,
1355
+ "total_size_bytes": 95205,
1356
+ "estimated_tokens": 63308
1357
+ },
1358
+ {
1359
+ "license": "X11-distribute-modifications-variant",
1360
+ "file_count": 27,
1361
+ "total_size_bytes": 86800,
1362
+ "estimated_tokens": 24490
1363
+ },
1364
+ {
1365
+ "license": "BSD-3-Clause-LBNL",
1366
+ "file_count": 46,
1367
+ "total_size_bytes": 85182,
1368
+ "estimated_tokens": 55179
1369
+ },
1370
+ {
1371
+ "license": "LicenseRef-scancode-gtpl-v1",
1372
+ "file_count": 52,
1373
+ "total_size_bytes": 75660,
1374
+ "estimated_tokens": 42392
1375
+ },
1376
+ {
1377
+ "license": "SSH-OpenSSH",
1378
+ "file_count": 112,
1379
+ "total_size_bytes": 70217,
1380
+ "estimated_tokens": 36367
1381
+ },
1382
+ {
1383
+ "license": "libtiff",
1384
+ "file_count": 66,
1385
+ "total_size_bytes": 67914,
1386
+ "estimated_tokens": 45161
1387
+ },
1388
+ {
1389
+ "license": "Linux-OpenIB",
1390
+ "file_count": 48,
1391
+ "total_size_bytes": 65044,
1392
+ "estimated_tokens": 36339
1393
+ },
1394
+ {
1395
+ "license": "ECL-1.0",
1396
+ "file_count": 13,
1397
+ "total_size_bytes": 44001,
1398
+ "estimated_tokens": 12351
1399
+ },
1400
+ {
1401
+ "license": "LicenseRef-scancode-ldap-sdk-free-use",
1402
+ "file_count": 20,
1403
+ "total_size_bytes": 40141,
1404
+ "estimated_tokens": 22401
1405
+ },
1406
+ {
1407
+ "license": "Xnet",
1408
+ "file_count": 33,
1409
+ "total_size_bytes": 38346,
1410
+ "estimated_tokens": 25499
1411
+ },
1412
+ {
1413
+ "license": "LPL-1.02",
1414
+ "file_count": 6,
1415
+ "total_size_bytes": 36379,
1416
+ "estimated_tokens": 19516
1417
+ },
1418
+ {
1419
+ "license": "LicenseRef-scancode-ogl-canada-2.0-fr",
1420
+ "file_count": 23,
1421
+ "total_size_bytes": 35865,
1422
+ "estimated_tokens": 15811
1423
+ },
1424
+ {
1425
+ "license": "xpp",
1426
+ "file_count": 10,
1427
+ "total_size_bytes": 32556,
1428
+ "estimated_tokens": 21648
1429
+ },
1430
+ {
1431
+ "license": "Barr",
1432
+ "file_count": 39,
1433
+ "total_size_bytes": 31762,
1434
+ "estimated_tokens": 21120
1435
+ },
1436
+ {
1437
+ "license": "Intel-ACPI",
1438
+ "file_count": 5,
1439
+ "total_size_bytes": 31430,
1440
+ "estimated_tokens": 20900
1441
+ },
1442
+ {
1443
+ "license": "LicenseRef-scancode-opnl-1.0",
1444
+ "file_count": 6,
1445
+ "total_size_bytes": 25598,
1446
+ "estimated_tokens": 8142
1447
+ },
1448
+ {
1449
+ "license": "LicenseRef-scancode-qualcomm-turing",
1450
+ "file_count": 4,
1451
+ "total_size_bytes": 23999,
1452
+ "estimated_tokens": 5770
1453
+ },
1454
+ {
1455
+ "license": "LicenseRef-scancode-w3c-03-bsd-license",
1456
+ "file_count": 25,
1457
+ "total_size_bytes": 23127,
1458
+ "estimated_tokens": 15378
1459
+ },
1460
+ {
1461
+ "license": "LicenseRef-scancode-zpl-1.0",
1462
+ "file_count": 5,
1463
+ "total_size_bytes": 22981,
1464
+ "estimated_tokens": 10956
1465
+ },
1466
+ {
1467
+ "license": "LicenseRef-scancode-robert-hubley",
1468
+ "file_count": 14,
1469
+ "total_size_bytes": 20893,
1470
+ "estimated_tokens": 13249
1471
+ },
1472
+ {
1473
+ "license": "LicenseRef-scancode-ietf-trust",
1474
+ "file_count": 4,
1475
+ "total_size_bytes": 20340,
1476
+ "estimated_tokens": 7840
1477
+ },
1478
+ {
1479
+ "license": "NTP",
1480
+ "file_count": 33,
1481
+ "total_size_bytes": 19800,
1482
+ "estimated_tokens": 13166
1483
+ },
1484
+ {
1485
+ "license": "dtoa",
1486
+ "file_count": 33,
1487
+ "total_size_bytes": 19239,
1488
+ "estimated_tokens": 12793
1489
+ },
1490
+ {
1491
+ "license": "LicenseRef-scancode-fatfs",
1492
+ "file_count": 33,
1493
+ "total_size_bytes": 18084,
1494
+ "estimated_tokens": 12025
1495
+ },
1496
+ {
1497
+ "license": "OLDAP-2.4",
1498
+ "file_count": 6,
1499
+ "total_size_bytes": 17228,
1500
+ "estimated_tokens": 11456
1501
+ },
1502
+ {
1503
+ "license": "ADSL",
1504
+ "file_count": 27,
1505
+ "total_size_bytes": 15583,
1506
+ "estimated_tokens": 10362
1507
+ },
1508
+ {
1509
+ "license": "TCP-wrappers",
1510
+ "file_count": 12,
1511
+ "total_size_bytes": 13233,
1512
+ "estimated_tokens": 5347
1513
+ },
1514
+ {
1515
+ "license": "DL-DE-BY-2.0",
1516
+ "file_count": 28,
1517
+ "total_size_bytes": 13200,
1518
+ "estimated_tokens": 6487
1519
+ },
1520
+ {
1521
+ "license": "Spencer-86",
1522
+ "file_count": 23,
1523
+ "total_size_bytes": 11162,
1524
+ "estimated_tokens": 5414
1525
+ },
1526
+ {
1527
+ "license": "SAX-PD",
1528
+ "file_count": 4,
1529
+ "total_size_bytes": 10777,
1530
+ "estimated_tokens": 7166
1531
+ },
1532
+ {
1533
+ "license": "SchemeReport",
1534
+ "file_count": 28,
1535
+ "total_size_bytes": 10585,
1536
+ "estimated_tokens": 5075
1537
+ },
1538
+ {
1539
+ "license": "LicenseRef-scancode-stlport-2000",
1540
+ "file_count": 45,
1541
+ "total_size_bytes": 9145,
1542
+ "estimated_tokens": 4338
1543
+ },
1544
+ {
1545
+ "license": "CC-BY-3.0-AT",
1546
+ "file_count": 4,
1547
+ "total_size_bytes": 8645,
1548
+ "estimated_tokens": 2767
1549
+ },
1550
+ {
1551
+ "license": "OFL-1.0-RFN",
1552
+ "file_count": 2,
1553
+ "total_size_bytes": 7114,
1554
+ "estimated_tokens": 4202
1555
+ },
1556
+ {
1557
+ "license": "Bitstream-Vera",
1558
+ "file_count": 3,
1559
+ "total_size_bytes": 7059,
1560
+ "estimated_tokens": 4694
1561
+ },
1562
+ {
1563
+ "license": "LicenseRef-scancode-gary-s-brown",
1564
+ "file_count": 4,
1565
+ "total_size_bytes": 6132,
1566
+ "estimated_tokens": 2422
1567
+ },
1568
+ {
1569
+ "license": "bzip2-1.0.6",
1570
+ "file_count": 4,
1571
+ "total_size_bytes": 6068,
1572
+ "estimated_tokens": 4035
1573
+ },
1574
+ {
1575
+ "license": "NBPL-1.0",
1576
+ "file_count": 1,
1577
+ "total_size_bytes": 5471,
1578
+ "estimated_tokens": 3638
1579
+ },
1580
+ {
1581
+ "license": "MIT-CMU",
1582
+ "file_count": 6,
1583
+ "total_size_bytes": 5264,
1584
+ "estimated_tokens": 2068
1585
+ },
1586
+ {
1587
+ "license": "LicenseRef-scancode-mx4j",
1588
+ "file_count": 1,
1589
+ "total_size_bytes": 4474,
1590
+ "estimated_tokens": 2975
1591
+ },
1592
+ {
1593
+ "license": "LicenseRef-scancode-red-hat-attribution",
1594
+ "file_count": 33,
1595
+ "total_size_bytes": 3993,
1596
+ "estimated_tokens": 2655
1597
+ },
1598
+ {
1599
+ "license": "LicenseRef-scancode-can-ogl-alberta-2.1",
1600
+ "file_count": 1,
1601
+ "total_size_bytes": 3982,
1602
+ "estimated_tokens": 2258
1603
+ },
1604
+ {
1605
+ "license": "LicenseRef-scancode-energyplus-bsd",
1606
+ "file_count": 1,
1607
+ "total_size_bytes": 3611,
1608
+ "estimated_tokens": 2401
1609
+ },
1610
+ {
1611
+ "license": "OML",
1612
+ "file_count": 2,
1613
+ "total_size_bytes": 3402,
1614
+ "estimated_tokens": 2262
1615
+ },
1616
+ {
1617
+ "license": "LicenseRef-scancode-bakoma-fonts-1995",
1618
+ "file_count": 2,
1619
+ "total_size_bytes": 2878,
1620
+ "estimated_tokens": 1913
1621
+ },
1622
+ {
1623
+ "license": "LicenseRef-scancode-vince",
1624
+ "file_count": 1,
1625
+ "total_size_bytes": 2755,
1626
+ "estimated_tokens": 1832
1627
+ },
1628
+ {
1629
+ "license": "LicenseRef-scancode-bsd-top-gpl-addition",
1630
+ "file_count": 1,
1631
+ "total_size_bytes": 1952,
1632
+ "estimated_tokens": 1298
1633
+ },
1634
+ {
1635
+ "license": "LicenseRef-scancode-bsd-export",
1636
+ "file_count": 1,
1637
+ "total_size_bytes": 1775,
1638
+ "estimated_tokens": 1180
1639
+ },
1640
+ {
1641
+ "license": "LicenseRef-scancode-bsd-mylex",
1642
+ "file_count": 1,
1643
+ "total_size_bytes": 1702,
1644
+ "estimated_tokens": 1131
1645
+ },
1646
+ {
1647
+ "license": "IJG-short",
1648
+ "file_count": 1,
1649
+ "total_size_bytes": 1639,
1650
+ "estimated_tokens": 1089
1651
+ },
1652
+ {
1653
+ "license": "LicenseRef-scancode-bsd-3-clause-no-trademark",
1654
+ "file_count": 1,
1655
+ "total_size_bytes": 1550,
1656
+ "estimated_tokens": 1030
1657
+ },
1658
+ {
1659
+ "license": "LicenseRef-scancode-dwtfnmfpl-3.0",
1660
+ "file_count": 3,
1661
+ "total_size_bytes": 1542,
1662
+ "estimated_tokens": 881
1663
+ },
1664
+ {
1665
+ "license": "LicenseRef-scancode-bsd-3-clause-no-change",
1666
+ "file_count": 1,
1667
+ "total_size_bytes": 1435,
1668
+ "estimated_tokens": 954
1669
+ },
1670
+ {
1671
+ "license": "LicenseRef-scancode-bsd-innosys",
1672
+ "file_count": 1,
1673
+ "total_size_bytes": 1387,
1674
+ "estimated_tokens": 922
1675
+ },
1676
+ {
1677
+ "license": "LicenseRef-scancode-mit-1995",
1678
+ "file_count": 1,
1679
+ "total_size_bytes": 1384,
1680
+ "estimated_tokens": 920
1681
+ },
1682
+ {
1683
+ "license": "LicenseRef-scancode-mit-synopsys",
1684
+ "file_count": 1,
1685
+ "total_size_bytes": 1288,
1686
+ "estimated_tokens": 856
1687
+ },
1688
+ {
1689
+ "license": "LicenseRef-scancode-bsd-unchanged",
1690
+ "file_count": 1,
1691
+ "total_size_bytes": 1260,
1692
+ "estimated_tokens": 837
1693
+ },
1694
+ {
1695
+ "license": "LicenseRef-scancode-damail",
1696
+ "file_count": 3,
1697
+ "total_size_bytes": 1025,
1698
+ "estimated_tokens": 396
1699
+ },
1700
+ {
1701
+ "license": "LicenseRef-scancode-bsd-no-disclaimer-unmodified",
1702
+ "file_count": 2,
1703
+ "total_size_bytes": 874,
1704
+ "estimated_tokens": 581
1705
+ },
1706
+ {
1707
+ "license": "LicenseRef-scancode-tumbolia",
1708
+ "file_count": 2,
1709
+ "total_size_bytes": 814,
1710
+ "estimated_tokens": 377
1711
+ },
1712
+ {
1713
+ "license": "LicenseRef-scancode-bsd-new-tcpdump",
1714
+ "file_count": 1,
1715
+ "total_size_bytes": 761,
1716
+ "estimated_tokens": 506
1717
+ },
1718
+ {
1719
+ "license": "LicenseRef-scancode-bsd-no-disclaimer",
1720
+ "file_count": 1,
1721
+ "total_size_bytes": 425,
1722
+ "estimated_tokens": 282
1723
+ },
1724
+ {
1725
+ "license": "SSH-short",
1726
+ "file_count": 1,
1727
+ "total_size_bytes": 325,
1728
+ "estimated_tokens": 216
1729
+ },
1730
+ {
1731
+ "license": "HPND-Markus-Kuhn",
1732
+ "file_count": 1,
1733
+ "total_size_bytes": 178,
1734
+ "estimated_tokens": 118
1735
+ },
1736
+ {
1737
+ "license": "Entessa",
1738
+ "file_count": 1,
1739
+ "total_size_bytes": 68,
1740
+ "estimated_tokens": 21
1741
+ },
1742
+ {
1743
+ "license": "CC-BY-3.0-DE",
1744
+ "file_count": 1,
1745
+ "total_size_bytes": 12,
1746
+ "estimated_tokens": 7
1747
+ }
1748
+ ]
stats/full/stubs.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_count": 28264720832,
3
+ "total_size_bytes": 703420354815,
4
+ "no_content_id": 13483375729,
5
+ "no_language": 28264720832,
6
+ "no_content_id_and_language": 13483375729
7
+ }
stats/full/totals.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_repos": 224913649,
3
+ "total_files": 43856584749,
4
+ "total_bytes": 438255558616286,
5
+ "total_languages": 770,
6
+ "total_licenses": 295,
7
+ "license_types": {
8
+ "no_license": {
9
+ "license_type": "no_license",
10
+ "file_count": 41359612674,
11
+ "total_size_bytes": 412320998075184,
12
+ "estimated_tokens": 184147963955145
13
+ },
14
+ "permissive": {
15
+ "license_type": "permissive",
16
+ "file_count": 2496972075,
17
+ "total_size_bytes": 25934560541102,
18
+ "estimated_tokens": 10565578851831
19
+ }
20
+ },
21
+ "estimated_tokens": 194713542807348,
22
+ "tokenizer": "Qwen/Qwen3-Coder-Next-Base"
23
+ }
stats/train/repo_distributions.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "num_files": {
3
+ "min": 1,
4
+ "p5": 1,
5
+ "p50": 3,
6
+ "p95": 40,
7
+ "max": 1425145
8
+ },
9
+ "size_bytes": {
10
+ "min": 2,
11
+ "p5": 26,
12
+ "p50": 5382,
13
+ "p95": 122867,
14
+ "max": 1665934358
15
+ },
16
+ "estimated_tokens": {
17
+ "min": 0,
18
+ "p5": 7,
19
+ "p50": 1480,
20
+ "p95": 33429,
21
+ "max": 894503547
22
+ }
23
+ }
stats/train/stats_by_language.json ADDED
The diff for this file is too large to render. See raw diff
 
stats/train/stats_by_language_license.json ADDED
The diff for this file is too large to render. See raw diff
 
stats/train/stats_by_license.json ADDED
@@ -0,0 +1,1430 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "license": "Apache-2.0",
4
+ "file_count": 91997539,
5
+ "total_size_bytes": 638510890240,
6
+ "estimated_tokens": 192822689641
7
+ },
8
+ {
9
+ "license": "CC-BY-4.0",
10
+ "file_count": 8971262,
11
+ "total_size_bytes": 64016465550,
12
+ "estimated_tokens": 20387028046
13
+ },
14
+ {
15
+ "license": "CC0-1.0",
16
+ "file_count": 9389267,
17
+ "total_size_bytes": 54040464918,
18
+ "estimated_tokens": 17653865469
19
+ },
20
+ {
21
+ "license": "Unlicense",
22
+ "file_count": 7926895,
23
+ "total_size_bytes": 36886470090,
24
+ "estimated_tokens": 11903725746
25
+ },
26
+ {
27
+ "license": "MIT",
28
+ "file_count": 2595675,
29
+ "total_size_bytes": 20583195576,
30
+ "estimated_tokens": 6376094974
31
+ },
32
+ {
33
+ "license": "BSL-1.0",
34
+ "file_count": 1279474,
35
+ "total_size_bytes": 19368693291,
36
+ "estimated_tokens": 6715717774
37
+ },
38
+ {
39
+ "license": "BSD-3-Clause",
40
+ "file_count": 775134,
41
+ "total_size_bytes": 13073089119,
42
+ "estimated_tokens": 4956938566
43
+ },
44
+ {
45
+ "license": "BSD-2-Clause",
46
+ "file_count": 489113,
47
+ "total_size_bytes": 2469877727,
48
+ "estimated_tokens": 829929500
49
+ },
50
+ {
51
+ "license": "Unicode-DFS-2016",
52
+ "file_count": 10107,
53
+ "total_size_bytes": 2405667069,
54
+ "estimated_tokens": 751877907
55
+ },
56
+ {
57
+ "license": "WTFPL",
58
+ "file_count": 425472,
59
+ "total_size_bytes": 2056827951,
60
+ "estimated_tokens": 629976122
61
+ },
62
+ {
63
+ "license": "LLVM-exception",
64
+ "file_count": 193319,
65
+ "total_size_bytes": 2046559636,
66
+ "estimated_tokens": 743596855
67
+ },
68
+ {
69
+ "license": "BSD-2-Clause-Patent",
70
+ "file_count": 159059,
71
+ "total_size_bytes": 2019971316,
72
+ "estimated_tokens": 706874530
73
+ },
74
+ {
75
+ "license": "MS-PL",
76
+ "file_count": 169913,
77
+ "total_size_bytes": 1989080929,
78
+ "estimated_tokens": 564390482
79
+ },
80
+ {
81
+ "license": "PHP-3.01",
82
+ "file_count": 323838,
83
+ "total_size_bytes": 1885246181,
84
+ "estimated_tokens": 641669063
85
+ },
86
+ {
87
+ "license": "CC-BY-3.0",
88
+ "file_count": 118218,
89
+ "total_size_bytes": 1855091224,
90
+ "estimated_tokens": 591997800
91
+ },
92
+ {
93
+ "license": "blessing",
94
+ "file_count": 9488,
95
+ "total_size_bytes": 1607444649,
96
+ "estimated_tokens": 567411482
97
+ },
98
+ {
99
+ "license": "Zend-2.0",
100
+ "file_count": 76655,
101
+ "total_size_bytes": 1306158234,
102
+ "estimated_tokens": 483951127
103
+ },
104
+ {
105
+ "license": "Artistic-2.0",
106
+ "file_count": 152647,
107
+ "total_size_bytes": 1217936026,
108
+ "estimated_tokens": 402583340
109
+ },
110
+ {
111
+ "license": "Python-2.0",
112
+ "file_count": 30506,
113
+ "total_size_bytes": 1216344424,
114
+ "estimated_tokens": 366199259
115
+ },
116
+ {
117
+ "license": "OGL-Canada-2.0",
118
+ "file_count": 11924,
119
+ "total_size_bytes": 1069531380,
120
+ "estimated_tokens": 335327307
121
+ },
122
+ {
123
+ "license": "Vim",
124
+ "file_count": 8601,
125
+ "total_size_bytes": 875974792,
126
+ "estimated_tokens": 273146647
127
+ },
128
+ {
129
+ "license": "LicenseRef-scancode-arm-llvm-sga",
130
+ "file_count": 3234,
131
+ "total_size_bytes": 651465764,
132
+ "estimated_tokens": 250938297
133
+ },
134
+ {
135
+ "license": "OLDAP-2.8",
136
+ "file_count": 16667,
137
+ "total_size_bytes": 638268221,
138
+ "estimated_tokens": 221075335
139
+ },
140
+ {
141
+ "license": "OpenSSL",
142
+ "file_count": 31822,
143
+ "total_size_bytes": 567995169,
144
+ "estimated_tokens": 205858331
145
+ },
146
+ {
147
+ "license": "AFL-3.0",
148
+ "file_count": 113329,
149
+ "total_size_bytes": 535421885,
150
+ "estimated_tokens": 154606387
151
+ },
152
+ {
153
+ "license": "LicenseRef-scancode-tex-live",
154
+ "file_count": 6217,
155
+ "total_size_bytes": 527916883,
156
+ "estimated_tokens": 168928251
157
+ },
158
+ {
159
+ "license": "SHL-0.51",
160
+ "file_count": 48502,
161
+ "total_size_bytes": 510617133,
162
+ "estimated_tokens": 187538501
163
+ },
164
+ {
165
+ "license": "ISC",
166
+ "file_count": 25491,
167
+ "total_size_bytes": 452759353,
168
+ "estimated_tokens": 169559468
169
+ },
170
+ {
171
+ "license": "LPPL-1.3c",
172
+ "file_count": 36085,
173
+ "total_size_bytes": 440351349,
174
+ "estimated_tokens": 146791266
175
+ },
176
+ {
177
+ "license": "curl",
178
+ "file_count": 23179,
179
+ "total_size_bytes": 389055732,
180
+ "estimated_tokens": 132880275
181
+ },
182
+ {
183
+ "license": "MIT-0",
184
+ "file_count": 54039,
185
+ "total_size_bytes": 377811578,
186
+ "estimated_tokens": 130705241
187
+ },
188
+ {
189
+ "license": "PostgreSQL",
190
+ "file_count": 3677,
191
+ "total_size_bytes": 375528517,
192
+ "estimated_tokens": 119131585
193
+ },
194
+ {
195
+ "license": "0BSD",
196
+ "file_count": 40231,
197
+ "total_size_bytes": 375246449,
198
+ "estimated_tokens": 108891190
199
+ },
200
+ {
201
+ "license": "Ruby",
202
+ "file_count": 93847,
203
+ "total_size_bytes": 367115517,
204
+ "estimated_tokens": 101857689
205
+ },
206
+ {
207
+ "license": "LicenseRef-scancode-jython",
208
+ "file_count": 5200,
209
+ "total_size_bytes": 329255186,
210
+ "estimated_tokens": 100598633
211
+ },
212
+ {
213
+ "license": "Zlib",
214
+ "file_count": 48005,
215
+ "total_size_bytes": 305870840,
216
+ "estimated_tokens": 106242172
217
+ },
218
+ {
219
+ "license": "CFITSIO",
220
+ "file_count": 2713,
221
+ "total_size_bytes": 296245809,
222
+ "estimated_tokens": 102683982
223
+ },
224
+ {
225
+ "license": "NIST-Software",
226
+ "file_count": 14094,
227
+ "total_size_bytes": 260956998,
228
+ "estimated_tokens": 85139831
229
+ },
230
+ {
231
+ "license": "CDLA-Permissive-2.0",
232
+ "file_count": 92003,
233
+ "total_size_bytes": 233492413,
234
+ "estimated_tokens": 81500843
235
+ },
236
+ {
237
+ "license": "LicenseRef-scancode-cecill-b-en",
238
+ "file_count": 31409,
239
+ "total_size_bytes": 208969946,
240
+ "estimated_tokens": 62108235
241
+ },
242
+ {
243
+ "license": "ZPL-2.1",
244
+ "file_count": 34532,
245
+ "total_size_bytes": 192425799,
246
+ "estimated_tokens": 50725274
247
+ },
248
+ {
249
+ "license": "CERN-OHL-P-2.0",
250
+ "file_count": 6916,
251
+ "total_size_bytes": 178408721,
252
+ "estimated_tokens": 66206445
253
+ },
254
+ {
255
+ "license": "LicenseRef-scancode-code-credit-license-1.1.0",
256
+ "file_count": 4675,
257
+ "total_size_bytes": 173359045,
258
+ "estimated_tokens": 56411888
259
+ },
260
+ {
261
+ "license": "LicenseRef-scancode-zsh",
262
+ "file_count": 2976,
263
+ "total_size_bytes": 152149379,
264
+ "estimated_tokens": 52423275
265
+ },
266
+ {
267
+ "license": "BSD-2-Clause-Views",
268
+ "file_count": 5669,
269
+ "total_size_bytes": 147441210,
270
+ "estimated_tokens": 50151274
271
+ },
272
+ {
273
+ "license": "SHL-2.1",
274
+ "file_count": 11978,
275
+ "total_size_bytes": 147162406,
276
+ "estimated_tokens": 57746172
277
+ },
278
+ {
279
+ "license": "BlueOak-1.0.0",
280
+ "file_count": 29864,
281
+ "total_size_bytes": 143709431,
282
+ "estimated_tokens": 40312017
283
+ },
284
+ {
285
+ "license": "SHL-2.0",
286
+ "file_count": 13696,
287
+ "total_size_bytes": 113301199,
288
+ "estimated_tokens": 46075426
289
+ },
290
+ {
291
+ "license": "LicenseRef-scancode-biopython",
292
+ "file_count": 1386,
293
+ "total_size_bytes": 107242664,
294
+ "estimated_tokens": 31953724
295
+ },
296
+ {
297
+ "license": "LicenseRef-scancode-paraview-1.2",
298
+ "file_count": 14361,
299
+ "total_size_bytes": 99217870,
300
+ "estimated_tokens": 35993667
301
+ },
302
+ {
303
+ "license": "NIST-PD",
304
+ "file_count": 5178,
305
+ "total_size_bytes": 94126233,
306
+ "estimated_tokens": 28850962
307
+ },
308
+ {
309
+ "license": "CECILL-B",
310
+ "file_count": 12871,
311
+ "total_size_bytes": 93164099,
312
+ "estimated_tokens": 26908183
313
+ },
314
+ {
315
+ "license": "Apache-1.1",
316
+ "file_count": 13769,
317
+ "total_size_bytes": 92328058,
318
+ "estimated_tokens": 26918149
319
+ },
320
+ {
321
+ "license": "FSFAP",
322
+ "file_count": 8199,
323
+ "total_size_bytes": 91639232,
324
+ "estimated_tokens": 29055445
325
+ },
326
+ {
327
+ "license": "Sendmail",
328
+ "file_count": 2481,
329
+ "total_size_bytes": 88811843,
330
+ "estimated_tokens": 32425159
331
+ },
332
+ {
333
+ "license": "Artistic-1.0",
334
+ "file_count": 14885,
335
+ "total_size_bytes": 88074026,
336
+ "estimated_tokens": 28367518
337
+ },
338
+ {
339
+ "license": "BSD-3-Clause-Clear",
340
+ "file_count": 7875,
341
+ "total_size_bytes": 76233657,
342
+ "estimated_tokens": 24688836
343
+ },
344
+ {
345
+ "license": "VSL-1.0",
346
+ "file_count": 3173,
347
+ "total_size_bytes": 70099322,
348
+ "estimated_tokens": 23679312
349
+ },
350
+ {
351
+ "license": "NCSA",
352
+ "file_count": 5301,
353
+ "total_size_bytes": 67376859,
354
+ "estimated_tokens": 23486378
355
+ },
356
+ {
357
+ "license": "Artistic-1.0-Perl",
358
+ "file_count": 13756,
359
+ "total_size_bytes": 66267541,
360
+ "estimated_tokens": 21847816
361
+ },
362
+ {
363
+ "license": "X11",
364
+ "file_count": 4177,
365
+ "total_size_bytes": 62681198,
366
+ "estimated_tokens": 23751560
367
+ },
368
+ {
369
+ "license": "EFL-2.0",
370
+ "file_count": 9209,
371
+ "total_size_bytes": 49551172,
372
+ "estimated_tokens": 16539995
373
+ },
374
+ {
375
+ "license": "JasPer-2.0",
376
+ "file_count": 2765,
377
+ "total_size_bytes": 46851013,
378
+ "estimated_tokens": 13372614
379
+ },
380
+ {
381
+ "license": "LicenseRef-scancode-info-zip-2009-01",
382
+ "file_count": 2306,
383
+ "total_size_bytes": 42894443,
384
+ "estimated_tokens": 14944430
385
+ },
386
+ {
387
+ "license": "LicenseRef-scancode-xfree86-1.0",
388
+ "file_count": 1479,
389
+ "total_size_bytes": 41930968,
390
+ "estimated_tokens": 13588237
391
+ },
392
+ {
393
+ "license": "BSD-3-Clause-Modification",
394
+ "file_count": 5148,
395
+ "total_size_bytes": 40143343,
396
+ "estimated_tokens": 11446495
397
+ },
398
+ {
399
+ "license": "LicenseRef-scancode-public-domain",
400
+ "file_count": 3484,
401
+ "total_size_bytes": 37982734,
402
+ "estimated_tokens": 12075544
403
+ },
404
+ {
405
+ "license": "LicenseRef-scancode-dropbear-2016",
406
+ "file_count": 4174,
407
+ "total_size_bytes": 36511944,
408
+ "estimated_tokens": 12571530
409
+ },
410
+ {
411
+ "license": "BSD-4-Clause",
412
+ "file_count": 4525,
413
+ "total_size_bytes": 36189969,
414
+ "estimated_tokens": 10389039
415
+ },
416
+ {
417
+ "license": "NIST-PD-fallback",
418
+ "file_count": 5243,
419
+ "total_size_bytes": 34814670,
420
+ "estimated_tokens": 7982689
421
+ },
422
+ {
423
+ "license": "Beerware",
424
+ "file_count": 9562,
425
+ "total_size_bytes": 34278817,
426
+ "estimated_tokens": 9923025
427
+ },
428
+ {
429
+ "license": "LicenseRef-scancode-other-permissive",
430
+ "file_count": 4715,
431
+ "total_size_bytes": 29592410,
432
+ "estimated_tokens": 8767413
433
+ },
434
+ {
435
+ "license": "Qhull",
436
+ "file_count": 997,
437
+ "total_size_bytes": 28397434,
438
+ "estimated_tokens": 9676655
439
+ },
440
+ {
441
+ "license": "AFL-2.0",
442
+ "file_count": 4316,
443
+ "total_size_bytes": 27287048,
444
+ "estimated_tokens": 10364436
445
+ },
446
+ {
447
+ "license": "GLWTPL",
448
+ "file_count": 5560,
449
+ "total_size_bytes": 25929355,
450
+ "estimated_tokens": 6955884
451
+ },
452
+ {
453
+ "license": "LicenseRef-scancode-tcg-spec-license-v1",
454
+ "file_count": 3779,
455
+ "total_size_bytes": 23261041,
456
+ "estimated_tokens": 8193243
457
+ },
458
+ {
459
+ "license": "LicenseRef-scancode-public-domain-disclaimer",
460
+ "file_count": 616,
461
+ "total_size_bytes": 23117532,
462
+ "estimated_tokens": 8191164
463
+ },
464
+ {
465
+ "license": "ANTLR-PD",
466
+ "file_count": 4809,
467
+ "total_size_bytes": 23018927,
468
+ "estimated_tokens": 6089846
469
+ },
470
+ {
471
+ "license": "LicenseRef-scancode-node-js",
472
+ "file_count": 1310,
473
+ "total_size_bytes": 22766641,
474
+ "estimated_tokens": 8209375
475
+ },
476
+ {
477
+ "license": "CERN-OHL-1.1",
478
+ "file_count": 551,
479
+ "total_size_bytes": 22415359,
480
+ "estimated_tokens": 12054188
481
+ },
482
+ {
483
+ "license": "LicenseRef-scancode-info-zip-2007-03",
484
+ "file_count": 655,
485
+ "total_size_bytes": 22205920,
486
+ "estimated_tokens": 7804261
487
+ },
488
+ {
489
+ "license": "PSF-2.0",
490
+ "file_count": 1886,
491
+ "total_size_bytes": 19940308,
492
+ "estimated_tokens": 5333805
493
+ },
494
+ {
495
+ "license": "LicenseRef-scancode-mulanpsl-2.0-en",
496
+ "file_count": 4537,
497
+ "total_size_bytes": 19931723,
498
+ "estimated_tokens": 7145234
499
+ },
500
+ {
501
+ "license": "FTL",
502
+ "file_count": 1149,
503
+ "total_size_bytes": 19760860,
504
+ "estimated_tokens": 6950206
505
+ },
506
+ {
507
+ "license": "OLDAP-2.5",
508
+ "file_count": 808,
509
+ "total_size_bytes": 16332972,
510
+ "estimated_tokens": 5394675
511
+ },
512
+ {
513
+ "license": "LicenseRef-scancode-cryptopp",
514
+ "file_count": 1643,
515
+ "total_size_bytes": 15733585,
516
+ "estimated_tokens": 5738580
517
+ },
518
+ {
519
+ "license": "LicenseRef-scancode-unicode",
520
+ "file_count": 403,
521
+ "total_size_bytes": 14947725,
522
+ "estimated_tokens": 4865902
523
+ },
524
+ {
525
+ "license": "Community-Spec-1.0",
526
+ "file_count": 4027,
527
+ "total_size_bytes": 14337896,
528
+ "estimated_tokens": 4163504
529
+ },
530
+ {
531
+ "license": "TCL",
532
+ "file_count": 670,
533
+ "total_size_bytes": 11579057,
534
+ "estimated_tokens": 4092630
535
+ },
536
+ {
537
+ "license": "LicenseRef-scancode-beri-hw-sw-1.0",
538
+ "file_count": 2356,
539
+ "total_size_bytes": 10768065,
540
+ "estimated_tokens": 3755891
541
+ },
542
+ {
543
+ "license": "CERN-OHL-1.2",
544
+ "file_count": 601,
545
+ "total_size_bytes": 9784017,
546
+ "estimated_tokens": 3987345
547
+ },
548
+ {
549
+ "license": "Libpng",
550
+ "file_count": 136,
551
+ "total_size_bytes": 9644280,
552
+ "estimated_tokens": 3213769
553
+ },
554
+ {
555
+ "license": "LicenseRef-scancode-libgeotiff",
556
+ "file_count": 327,
557
+ "total_size_bytes": 9022210,
558
+ "estimated_tokens": 2966876
559
+ },
560
+ {
561
+ "license": "LicenseRef-scancode-indiana-extreme",
562
+ "file_count": 907,
563
+ "total_size_bytes": 8882461,
564
+ "estimated_tokens": 2574653
565
+ },
566
+ {
567
+ "license": "MulanPSL-2.0",
568
+ "file_count": 1426,
569
+ "total_size_bytes": 8146632,
570
+ "estimated_tokens": 2988222
571
+ },
572
+ {
573
+ "license": "AFL-2.1",
574
+ "file_count": 1440,
575
+ "total_size_bytes": 8075624,
576
+ "estimated_tokens": 2750280
577
+ },
578
+ {
579
+ "license": "Graphics-Gems",
580
+ "file_count": 1993,
581
+ "total_size_bytes": 8005321,
582
+ "estimated_tokens": 2831488
583
+ },
584
+ {
585
+ "license": "Unicode-DFS-2015",
586
+ "file_count": 7670,
587
+ "total_size_bytes": 7518677,
588
+ "estimated_tokens": 2717173
589
+ },
590
+ {
591
+ "license": "LicenseRef-scancode-etalab-2.0-en",
592
+ "file_count": 2273,
593
+ "total_size_bytes": 7148974,
594
+ "estimated_tokens": 2342999
595
+ },
596
+ {
597
+ "license": "OGL-UK-3.0",
598
+ "file_count": 2125,
599
+ "total_size_bytes": 7064161,
600
+ "estimated_tokens": 1780746
601
+ },
602
+ {
603
+ "license": "LicenseRef-scancode-us-govt-public-domain",
604
+ "file_count": 877,
605
+ "total_size_bytes": 7052923,
606
+ "estimated_tokens": 1894665
607
+ },
608
+ {
609
+ "license": "LicenseRef-scancode-php-2.0.2",
610
+ "file_count": 1156,
611
+ "total_size_bytes": 6727945,
612
+ "estimated_tokens": 1825799
613
+ },
614
+ {
615
+ "license": "LicenseRef-scancode-paypal-sdk-2013-2016",
616
+ "file_count": 3720,
617
+ "total_size_bytes": 6717342,
618
+ "estimated_tokens": 1715889
619
+ },
620
+ {
621
+ "license": "GD",
622
+ "file_count": 882,
623
+ "total_size_bytes": 6572957,
624
+ "estimated_tokens": 2143508
625
+ },
626
+ {
627
+ "license": "LicenseRef-scancode-cximage",
628
+ "file_count": 228,
629
+ "total_size_bytes": 6041984,
630
+ "estimated_tokens": 2181272
631
+ },
632
+ {
633
+ "license": "PHP-3.0",
634
+ "file_count": 1155,
635
+ "total_size_bytes": 5860327,
636
+ "estimated_tokens": 1586982
637
+ },
638
+ {
639
+ "license": "LZMA-SDK-9.22",
640
+ "file_count": 919,
641
+ "total_size_bytes": 5748075,
642
+ "estimated_tokens": 2075068
643
+ },
644
+ {
645
+ "license": "CC-PDDC",
646
+ "file_count": 1616,
647
+ "total_size_bytes": 5685351,
648
+ "estimated_tokens": 1577493
649
+ },
650
+ {
651
+ "license": "ClArtistic",
652
+ "file_count": 777,
653
+ "total_size_bytes": 5542766,
654
+ "estimated_tokens": 1785926
655
+ },
656
+ {
657
+ "license": "BSD-1-Clause",
658
+ "file_count": 1892,
659
+ "total_size_bytes": 5105046,
660
+ "estimated_tokens": 1523161
661
+ },
662
+ {
663
+ "license": "LicenseRef-scancode-fujion-exception-to-apache-2.0",
664
+ "file_count": 1380,
665
+ "total_size_bytes": 5073325,
666
+ "estimated_tokens": 1197717
667
+ },
668
+ {
669
+ "license": "MIT-Festival",
670
+ "file_count": 813,
671
+ "total_size_bytes": 4791154,
672
+ "estimated_tokens": 1371044
673
+ },
674
+ {
675
+ "license": "BSD-Source-Code",
676
+ "file_count": 1774,
677
+ "total_size_bytes": 4518159,
678
+ "estimated_tokens": 1433309
679
+ },
680
+ {
681
+ "license": "ECL-2.0",
682
+ "file_count": 1179,
683
+ "total_size_bytes": 4406081,
684
+ "estimated_tokens": 1515441
685
+ },
686
+ {
687
+ "license": "LicenseRef-scancode-bsd-artwork",
688
+ "file_count": 1605,
689
+ "total_size_bytes": 3776822,
690
+ "estimated_tokens": 1178153
691
+ },
692
+ {
693
+ "license": "LicenseRef-scancode-bsd-unmodified",
694
+ "file_count": 1605,
695
+ "total_size_bytes": 3776822,
696
+ "estimated_tokens": 1178153
697
+ },
698
+ {
699
+ "license": "SGI-B-2.0",
700
+ "file_count": 539,
701
+ "total_size_bytes": 3481566,
702
+ "estimated_tokens": 1210732
703
+ },
704
+ {
705
+ "license": "PDDL-1.0",
706
+ "file_count": 53,
707
+ "total_size_bytes": 3453457,
708
+ "estimated_tokens": 1223512
709
+ },
710
+ {
711
+ "license": "LicenseRef-scancode-supervisor",
712
+ "file_count": 699,
713
+ "total_size_bytes": 3420350,
714
+ "estimated_tokens": 854181
715
+ },
716
+ {
717
+ "license": "HPND",
718
+ "file_count": 598,
719
+ "total_size_bytes": 3309031,
720
+ "estimated_tokens": 853654
721
+ },
722
+ {
723
+ "license": "LicenseRef-scancode-info-zip-2002-02",
724
+ "file_count": 115,
725
+ "total_size_bytes": 3199353,
726
+ "estimated_tokens": 1140451
727
+ },
728
+ {
729
+ "license": "OGTSL",
730
+ "file_count": 427,
731
+ "total_size_bytes": 3029496,
732
+ "estimated_tokens": 856244
733
+ },
734
+ {
735
+ "license": "MS-LPL",
736
+ "file_count": 479,
737
+ "total_size_bytes": 2973236,
738
+ "estimated_tokens": 657764
739
+ },
740
+ {
741
+ "license": "EPICS",
742
+ "file_count": 28,
743
+ "total_size_bytes": 2938729,
744
+ "estimated_tokens": 888332
745
+ },
746
+ {
747
+ "license": "EUDatagrid",
748
+ "file_count": 559,
749
+ "total_size_bytes": 2741958,
750
+ "estimated_tokens": 632623
751
+ },
752
+ {
753
+ "license": "LicenseRef-scancode-phorum-2.0",
754
+ "file_count": 364,
755
+ "total_size_bytes": 2647076,
756
+ "estimated_tokens": 858545
757
+ },
758
+ {
759
+ "license": "LicenseRef-scancode-bsd-3-clause-fda",
760
+ "file_count": 281,
761
+ "total_size_bytes": 2477764,
762
+ "estimated_tokens": 702664
763
+ },
764
+ {
765
+ "license": "LicenseRef-scancode-dbad-1.1",
766
+ "file_count": 1197,
767
+ "total_size_bytes": 2160622,
768
+ "estimated_tokens": 627757
769
+ },
770
+ {
771
+ "license": "LicenseRef-scancode-info-zip-2005-02",
772
+ "file_count": 159,
773
+ "total_size_bytes": 2157292,
774
+ "estimated_tokens": 774931
775
+ },
776
+ {
777
+ "license": "LicenseRef-scancode-sun-source",
778
+ "file_count": 15,
779
+ "total_size_bytes": 1900120,
780
+ "estimated_tokens": 935456
781
+ },
782
+ {
783
+ "license": "OLDAP-2.7",
784
+ "file_count": 196,
785
+ "total_size_bytes": 1680568,
786
+ "estimated_tokens": 379376
787
+ },
788
+ {
789
+ "license": "UPL-1.0",
790
+ "file_count": 182,
791
+ "total_size_bytes": 1674718,
792
+ "estimated_tokens": 559930
793
+ },
794
+ {
795
+ "license": "LicenseRef-scancode-wtfnmfpl-1.0",
796
+ "file_count": 441,
797
+ "total_size_bytes": 1647671,
798
+ "estimated_tokens": 461195
799
+ },
800
+ {
801
+ "license": "LicenseRef-scancode-emit",
802
+ "file_count": 185,
803
+ "total_size_bytes": 1522226,
804
+ "estimated_tokens": 428327
805
+ },
806
+ {
807
+ "license": "LicenseRef-scancode-flora-1.1",
808
+ "file_count": 512,
809
+ "total_size_bytes": 1336648,
810
+ "estimated_tokens": 331792
811
+ },
812
+ {
813
+ "license": "LicenseRef-scancode-ogl-1.0a",
814
+ "file_count": 629,
815
+ "total_size_bytes": 1304396,
816
+ "estimated_tokens": 382522
817
+ },
818
+ {
819
+ "license": "LicenseRef-scancode-scansoft-1.2",
820
+ "file_count": 530,
821
+ "total_size_bytes": 1291798,
822
+ "estimated_tokens": 420756
823
+ },
824
+ {
825
+ "license": "Minpack",
826
+ "file_count": 96,
827
+ "total_size_bytes": 1259329,
828
+ "estimated_tokens": 442850
829
+ },
830
+ {
831
+ "license": "etalab-2.0",
832
+ "file_count": 326,
833
+ "total_size_bytes": 1205063,
834
+ "estimated_tokens": 338909
835
+ },
836
+ {
837
+ "license": "LicenseRef-scancode-pybench",
838
+ "file_count": 160,
839
+ "total_size_bytes": 1204045,
840
+ "estimated_tokens": 299382
841
+ },
842
+ {
843
+ "license": "LicenseRef-scancode-nvidia-gov",
844
+ "file_count": 51,
845
+ "total_size_bytes": 1093075,
846
+ "estimated_tokens": 398837
847
+ },
848
+ {
849
+ "license": "Clips",
850
+ "file_count": 104,
851
+ "total_size_bytes": 1021289,
852
+ "estimated_tokens": 299922
853
+ },
854
+ {
855
+ "license": "NASA-1.3",
856
+ "file_count": 188,
857
+ "total_size_bytes": 1010384,
858
+ "estimated_tokens": 264888
859
+ },
860
+ {
861
+ "license": "LicenseRef-scancode-cgic",
862
+ "file_count": 82,
863
+ "total_size_bytes": 1000529,
864
+ "estimated_tokens": 332047
865
+ },
866
+ {
867
+ "license": "W3C",
868
+ "file_count": 201,
869
+ "total_size_bytes": 999679,
870
+ "estimated_tokens": 231940
871
+ },
872
+ {
873
+ "license": "zlib-acknowledgement",
874
+ "file_count": 132,
875
+ "total_size_bytes": 851149,
876
+ "estimated_tokens": 285879
877
+ },
878
+ {
879
+ "license": "LicenseRef-scancode-takuya-ooura",
880
+ "file_count": 81,
881
+ "total_size_bytes": 822422,
882
+ "estimated_tokens": 316670
883
+ },
884
+ {
885
+ "license": "AFL-1.1",
886
+ "file_count": 232,
887
+ "total_size_bytes": 807365,
888
+ "estimated_tokens": 231917
889
+ },
890
+ {
891
+ "license": "Apache-1.0",
892
+ "file_count": 185,
893
+ "total_size_bytes": 785382,
894
+ "estimated_tokens": 227874
895
+ },
896
+ {
897
+ "license": "IJG",
898
+ "file_count": 104,
899
+ "total_size_bytes": 784030,
900
+ "estimated_tokens": 260203
901
+ },
902
+ {
903
+ "license": "ODC-By-1.0",
904
+ "file_count": 162,
905
+ "total_size_bytes": 750827,
906
+ "estimated_tokens": 192087
907
+ },
908
+ {
909
+ "license": "LicenseRef-scancode-wtfpl-1.0",
910
+ "file_count": 325,
911
+ "total_size_bytes": 641682,
912
+ "estimated_tokens": 177229
913
+ },
914
+ {
915
+ "license": "CC-BY-3.0-US",
916
+ "file_count": 147,
917
+ "total_size_bytes": 616211,
918
+ "estimated_tokens": 145047
919
+ },
920
+ {
921
+ "license": "JSON",
922
+ "file_count": 188,
923
+ "total_size_bytes": 501424,
924
+ "estimated_tokens": 138727
925
+ },
926
+ {
927
+ "license": "BSD-3-Clause-Attribution",
928
+ "file_count": 208,
929
+ "total_size_bytes": 452698,
930
+ "estimated_tokens": 108916
931
+ },
932
+ {
933
+ "license": "LicenseRef-scancode-boost-original",
934
+ "file_count": 79,
935
+ "total_size_bytes": 309648,
936
+ "estimated_tokens": 117467
937
+ },
938
+ {
939
+ "license": "Artistic-1.0-cl8",
940
+ "file_count": 47,
941
+ "total_size_bytes": 299318,
942
+ "estimated_tokens": 77741
943
+ },
944
+ {
945
+ "license": "LicenseRef-scancode-code-credit-license-1.0.1",
946
+ "file_count": 127,
947
+ "total_size_bytes": 298181,
948
+ "estimated_tokens": 93183
949
+ },
950
+ {
951
+ "license": "Borceux",
952
+ "file_count": 5,
953
+ "total_size_bytes": 295756,
954
+ "estimated_tokens": 94953
955
+ },
956
+ {
957
+ "license": "LicenseRef-scancode-matt-gallagher-attribution",
958
+ "file_count": 48,
959
+ "total_size_bytes": 281030,
960
+ "estimated_tokens": 69652
961
+ },
962
+ {
963
+ "license": "LicenseRef-scancode-apple-excl",
964
+ "file_count": 70,
965
+ "total_size_bytes": 272850,
966
+ "estimated_tokens": 88136
967
+ },
968
+ {
969
+ "license": "COIL-1.0",
970
+ "file_count": 63,
971
+ "total_size_bytes": 263731,
972
+ "estimated_tokens": 68960
973
+ },
974
+ {
975
+ "license": "OGC-1.0",
976
+ "file_count": 60,
977
+ "total_size_bytes": 256574,
978
+ "estimated_tokens": 107679
979
+ },
980
+ {
981
+ "license": "OLDAP-2.0.1",
982
+ "file_count": 37,
983
+ "total_size_bytes": 242801,
984
+ "estimated_tokens": 64049
985
+ },
986
+ {
987
+ "license": "LicenseRef-scancode-componentace-jcraft",
988
+ "file_count": 25,
989
+ "total_size_bytes": 240915,
990
+ "estimated_tokens": 50720
991
+ },
992
+ {
993
+ "license": "LicenseRef-scancode-blas-2017",
994
+ "file_count": 38,
995
+ "total_size_bytes": 240160,
996
+ "estimated_tokens": 85749
997
+ },
998
+ {
999
+ "license": "LicenseRef-scancode-notre-dame",
1000
+ "file_count": 51,
1001
+ "total_size_bytes": 239724,
1002
+ "estimated_tokens": 81724
1003
+ },
1004
+ {
1005
+ "license": "MIT-Modern-Variant",
1006
+ "file_count": 137,
1007
+ "total_size_bytes": 233387,
1008
+ "estimated_tokens": 67177
1009
+ },
1010
+ {
1011
+ "license": "Fair",
1012
+ "file_count": 94,
1013
+ "total_size_bytes": 171826,
1014
+ "estimated_tokens": 52514
1015
+ },
1016
+ {
1017
+ "license": "LicenseRef-scancode-utopia",
1018
+ "file_count": 57,
1019
+ "total_size_bytes": 167677,
1020
+ "estimated_tokens": 54168
1021
+ },
1022
+ {
1023
+ "license": "LicenseRef-scancode-visual-idiot",
1024
+ "file_count": 49,
1025
+ "total_size_bytes": 136818,
1026
+ "estimated_tokens": 40220
1027
+ },
1028
+ {
1029
+ "license": "CC-BY-1.0",
1030
+ "file_count": 78,
1031
+ "total_size_bytes": 121166,
1032
+ "estimated_tokens": 36651
1033
+ },
1034
+ {
1035
+ "license": "LicenseRef-scancode-dmtf-2017",
1036
+ "file_count": 24,
1037
+ "total_size_bytes": 115705,
1038
+ "estimated_tokens": 36910
1039
+ },
1040
+ {
1041
+ "license": "BSD-3-Clause-Open-MPI",
1042
+ "file_count": 20,
1043
+ "total_size_bytes": 104381,
1044
+ "estimated_tokens": 30235
1045
+ },
1046
+ {
1047
+ "license": "CC-BY-2.0",
1048
+ "file_count": 104,
1049
+ "total_size_bytes": 103719,
1050
+ "estimated_tokens": 31599
1051
+ },
1052
+ {
1053
+ "license": "LicenseRef-scancode-ricebsd",
1054
+ "file_count": 20,
1055
+ "total_size_bytes": 97514,
1056
+ "estimated_tokens": 36679
1057
+ },
1058
+ {
1059
+ "license": "MirOS",
1060
+ "file_count": 233,
1061
+ "total_size_bytes": 94292,
1062
+ "estimated_tokens": 29809
1063
+ },
1064
+ {
1065
+ "license": "LicenseRef-scancode-cosl",
1066
+ "file_count": 13,
1067
+ "total_size_bytes": 92445,
1068
+ "estimated_tokens": 29414
1069
+ },
1070
+ {
1071
+ "license": "OLDAP-1.2",
1072
+ "file_count": 33,
1073
+ "total_size_bytes": 91561,
1074
+ "estimated_tokens": 31445
1075
+ },
1076
+ {
1077
+ "license": "ZPL-2.0",
1078
+ "file_count": 20,
1079
+ "total_size_bytes": 90591,
1080
+ "estimated_tokens": 28863
1081
+ },
1082
+ {
1083
+ "license": "X11-distribute-modifications-variant",
1084
+ "file_count": 22,
1085
+ "total_size_bytes": 84076,
1086
+ "estimated_tokens": 22134
1087
+ },
1088
+ {
1089
+ "license": "mplus",
1090
+ "file_count": 58,
1091
+ "total_size_bytes": 80550,
1092
+ "estimated_tokens": 22231
1093
+ },
1094
+ {
1095
+ "license": "ICU",
1096
+ "file_count": 49,
1097
+ "total_size_bytes": 76740,
1098
+ "estimated_tokens": 23683
1099
+ },
1100
+ {
1101
+ "license": "SMLNJ",
1102
+ "file_count": 21,
1103
+ "total_size_bytes": 73271,
1104
+ "estimated_tokens": 23184
1105
+ },
1106
+ {
1107
+ "license": "LicenseRef-scancode-ryszard-szopa",
1108
+ "file_count": 17,
1109
+ "total_size_bytes": 60826,
1110
+ "estimated_tokens": 14906
1111
+ },
1112
+ {
1113
+ "license": "MulanPSL-1.0",
1114
+ "file_count": 91,
1115
+ "total_size_bytes": 60035,
1116
+ "estimated_tokens": 16295
1117
+ },
1118
+ {
1119
+ "license": "LicenseRef-scancode-philippe-de-muyter",
1120
+ "file_count": 8,
1121
+ "total_size_bytes": 57801,
1122
+ "estimated_tokens": 18129
1123
+ },
1124
+ {
1125
+ "license": "SunPro",
1126
+ "file_count": 8,
1127
+ "total_size_bytes": 54974,
1128
+ "estimated_tokens": 18701
1129
+ },
1130
+ {
1131
+ "license": "CDLA-Permissive-1.0",
1132
+ "file_count": 16,
1133
+ "total_size_bytes": 50939,
1134
+ "estimated_tokens": 15422
1135
+ },
1136
+ {
1137
+ "license": "MITNFA",
1138
+ "file_count": 28,
1139
+ "total_size_bytes": 50902,
1140
+ "estimated_tokens": 14117
1141
+ },
1142
+ {
1143
+ "license": "LicenseRef-scancode-infineon-free",
1144
+ "file_count": 14,
1145
+ "total_size_bytes": 47527,
1146
+ "estimated_tokens": 14827
1147
+ },
1148
+ {
1149
+ "license": "AML",
1150
+ "file_count": 5,
1151
+ "total_size_bytes": 46965,
1152
+ "estimated_tokens": 11826
1153
+ },
1154
+ {
1155
+ "license": "LicenseRef-scancode-info-zip-2003-05",
1156
+ "file_count": 2,
1157
+ "total_size_bytes": 40348,
1158
+ "estimated_tokens": 10051
1159
+ },
1160
+ {
1161
+ "license": "ECL-1.0",
1162
+ "file_count": 10,
1163
+ "total_size_bytes": 39696,
1164
+ "estimated_tokens": 9454
1165
+ },
1166
+ {
1167
+ "license": "Jam",
1168
+ "file_count": 12,
1169
+ "total_size_bytes": 35895,
1170
+ "estimated_tokens": 10348
1171
+ },
1172
+ {
1173
+ "license": "LicenseRef-scancode-wthpl-1.0",
1174
+ "file_count": 27,
1175
+ "total_size_bytes": 33480,
1176
+ "estimated_tokens": 9919
1177
+ },
1178
+ {
1179
+ "license": "Linux-OpenIB",
1180
+ "file_count": 14,
1181
+ "total_size_bytes": 32450,
1182
+ "estimated_tokens": 12400
1183
+ },
1184
+ {
1185
+ "license": "FreeBSD-DOC",
1186
+ "file_count": 2,
1187
+ "total_size_bytes": 32251,
1188
+ "estimated_tokens": 10396
1189
+ },
1190
+ {
1191
+ "license": "LicenseRef-scancode-cwe-tou",
1192
+ "file_count": 8,
1193
+ "total_size_bytes": 24727,
1194
+ "estimated_tokens": 6178
1195
+ },
1196
+ {
1197
+ "license": "LicenseRef-scancode-qualcomm-turing",
1198
+ "file_count": 2,
1199
+ "total_size_bytes": 23750,
1200
+ "estimated_tokens": 5382
1201
+ },
1202
+ {
1203
+ "license": "LicenseRef-scancode-opnl-1.0",
1204
+ "file_count": 3,
1205
+ "total_size_bytes": 20194,
1206
+ "estimated_tokens": 5983
1207
+ },
1208
+ {
1209
+ "license": "TCP-wrappers",
1210
+ "file_count": 7,
1211
+ "total_size_bytes": 19565,
1212
+ "estimated_tokens": 6477
1213
+ },
1214
+ {
1215
+ "license": "LicenseRef-scancode-gtpl-v1",
1216
+ "file_count": 13,
1217
+ "total_size_bytes": 19400,
1218
+ "estimated_tokens": 5206
1219
+ },
1220
+ {
1221
+ "license": "MIT-feh",
1222
+ "file_count": 9,
1223
+ "total_size_bytes": 16118,
1224
+ "estimated_tokens": 6108
1225
+ },
1226
+ {
1227
+ "license": "LicenseRef-scancode-free-art-1.3",
1228
+ "file_count": 14,
1229
+ "total_size_bytes": 16019,
1230
+ "estimated_tokens": 4922
1231
+ },
1232
+ {
1233
+ "license": "LicenseRef-scancode-ogl-canada-2.0-fr",
1234
+ "file_count": 10,
1235
+ "total_size_bytes": 15925,
1236
+ "estimated_tokens": 4023
1237
+ },
1238
+ {
1239
+ "license": "SSH-OpenSSH",
1240
+ "file_count": 39,
1241
+ "total_size_bytes": 15826,
1242
+ "estimated_tokens": 5003
1243
+ },
1244
+ {
1245
+ "license": "Multics",
1246
+ "file_count": 22,
1247
+ "total_size_bytes": 13217,
1248
+ "estimated_tokens": 4189
1249
+ },
1250
+ {
1251
+ "license": "LPL-1.02",
1252
+ "file_count": 4,
1253
+ "total_size_bytes": 12911,
1254
+ "estimated_tokens": 3400
1255
+ },
1256
+ {
1257
+ "license": "LicenseRef-scancode-ldap-sdk-free-use",
1258
+ "file_count": 9,
1259
+ "total_size_bytes": 10688,
1260
+ "estimated_tokens": 2912
1261
+ },
1262
+ {
1263
+ "license": "LicenseRef-scancode-ibm-icu",
1264
+ "file_count": 3,
1265
+ "total_size_bytes": 10444,
1266
+ "estimated_tokens": 2598
1267
+ },
1268
+ {
1269
+ "license": "OLDAP-2.3",
1270
+ "file_count": 3,
1271
+ "total_size_bytes": 10224,
1272
+ "estimated_tokens": 3647
1273
+ },
1274
+ {
1275
+ "license": "CC-BY-3.0-AT",
1276
+ "file_count": 2,
1277
+ "total_size_bytes": 8594,
1278
+ "estimated_tokens": 2546
1279
+ },
1280
+ {
1281
+ "license": "LicenseRef-scancode-khronos",
1282
+ "file_count": 11,
1283
+ "total_size_bytes": 8527,
1284
+ "estimated_tokens": 2427
1285
+ },
1286
+ {
1287
+ "license": "OGL-UK-2.0",
1288
+ "file_count": 2,
1289
+ "total_size_bytes": 8354,
1290
+ "estimated_tokens": 2475
1291
+ },
1292
+ {
1293
+ "license": "LicenseRef-scancode-stlport-2000",
1294
+ "file_count": 41,
1295
+ "total_size_bytes": 8257,
1296
+ "estimated_tokens": 2610
1297
+ },
1298
+ {
1299
+ "license": "Spencer-86",
1300
+ "file_count": 14,
1301
+ "total_size_bytes": 7591,
1302
+ "estimated_tokens": 2399
1303
+ },
1304
+ {
1305
+ "license": "DL-DE-BY-2.0",
1306
+ "file_count": 17,
1307
+ "total_size_bytes": 7501,
1308
+ "estimated_tokens": 2371
1309
+ },
1310
+ {
1311
+ "license": "LicenseRef-scancode-sata",
1312
+ "file_count": 8,
1313
+ "total_size_bytes": 6900,
1314
+ "estimated_tokens": 2021
1315
+ },
1316
+ {
1317
+ "license": "LicenseRef-scancode-mit-old-style",
1318
+ "file_count": 6,
1319
+ "total_size_bytes": 6350,
1320
+ "estimated_tokens": 1748
1321
+ },
1322
+ {
1323
+ "license": "O-UDA-1.0",
1324
+ "file_count": 2,
1325
+ "total_size_bytes": 6069,
1326
+ "estimated_tokens": 1798
1327
+ },
1328
+ {
1329
+ "license": "SchemeReport",
1330
+ "file_count": 14,
1331
+ "total_size_bytes": 5452,
1332
+ "estimated_tokens": 1723
1333
+ },
1334
+ {
1335
+ "license": "AFL-1.2",
1336
+ "file_count": 4,
1337
+ "total_size_bytes": 5133,
1338
+ "estimated_tokens": 1416
1339
+ },
1340
+ {
1341
+ "license": "BSD-3-Clause-LBNL",
1342
+ "file_count": 4,
1343
+ "total_size_bytes": 4252,
1344
+ "estimated_tokens": 1307
1345
+ },
1346
+ {
1347
+ "license": "MIT-CMU",
1348
+ "file_count": 3,
1349
+ "total_size_bytes": 3617,
1350
+ "estimated_tokens": 948
1351
+ },
1352
+ {
1353
+ "license": "CC-BY-2.5",
1354
+ "file_count": 4,
1355
+ "total_size_bytes": 3287,
1356
+ "estimated_tokens": 900
1357
+ },
1358
+ {
1359
+ "license": "LicenseRef-scancode-sun-rpc",
1360
+ "file_count": 2,
1361
+ "total_size_bytes": 2712,
1362
+ "estimated_tokens": 967
1363
+ },
1364
+ {
1365
+ "license": "OLDAP-2.4",
1366
+ "file_count": 1,
1367
+ "total_size_bytes": 2189,
1368
+ "estimated_tokens": 553
1369
+ },
1370
+ {
1371
+ "license": "LicenseRef-scancode-logica-1.0",
1372
+ "file_count": 4,
1373
+ "total_size_bytes": 2155,
1374
+ "estimated_tokens": 553
1375
+ },
1376
+ {
1377
+ "license": "LicenseRef-scancode-ietf-trust",
1378
+ "file_count": 1,
1379
+ "total_size_bytes": 1704,
1380
+ "estimated_tokens": 504
1381
+ },
1382
+ {
1383
+ "license": "HPND-sell-variant",
1384
+ "file_count": 4,
1385
+ "total_size_bytes": 1008,
1386
+ "estimated_tokens": 367
1387
+ },
1388
+ {
1389
+ "license": "LicenseRef-scancode-damail",
1390
+ "file_count": 2,
1391
+ "total_size_bytes": 828,
1392
+ "estimated_tokens": 247
1393
+ },
1394
+ {
1395
+ "license": "LicenseRef-scancode-gary-s-brown",
1396
+ "file_count": 2,
1397
+ "total_size_bytes": 669,
1398
+ "estimated_tokens": 189
1399
+ },
1400
+ {
1401
+ "license": "LicenseRef-scancode-tumbolia",
1402
+ "file_count": 1,
1403
+ "total_size_bytes": 472,
1404
+ "estimated_tokens": 139
1405
+ },
1406
+ {
1407
+ "license": "APAFML",
1408
+ "file_count": 2,
1409
+ "total_size_bytes": 412,
1410
+ "estimated_tokens": 137
1411
+ },
1412
+ {
1413
+ "license": "BSD-4-Clause-UC",
1414
+ "file_count": 1,
1415
+ "total_size_bytes": 337,
1416
+ "estimated_tokens": 99
1417
+ },
1418
+ {
1419
+ "license": "Entessa",
1420
+ "file_count": 1,
1421
+ "total_size_bytes": 68,
1422
+ "estimated_tokens": 20
1423
+ },
1424
+ {
1425
+ "license": "LPL-1.0",
1426
+ "file_count": 1,
1427
+ "total_size_bytes": 18,
1428
+ "estimated_tokens": 5
1429
+ }
1430
+ ]
stats/train/totals.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_repos": 173126905,
3
+ "total_files": 2801821353,
4
+ "total_bytes": 15852930678426,
5
+ "total_languages": 713,
6
+ "total_licenses": 242,
7
+ "license_types": {
8
+ "no_license": {
9
+ "license_type": "no_license",
10
+ "file_count": 2677236668,
11
+ "total_size_bytes": 14989541067457,
12
+ "estimated_tokens": 4632051232544
13
+ },
14
+ "permissive": {
15
+ "license_type": "permissive",
16
+ "file_count": 124584685,
17
+ "total_size_bytes": 863389610969,
18
+ "estimated_tokens": 265831445909
19
+ }
20
+ },
21
+ "estimated_tokens": 4897882678787,
22
+ "tokenizer": "Qwen/Qwen3-Coder-Next-Base"
23
+ }