Update: +13 linked dossiers, 123 garbage archived, 26381 nodes, 248558 connections (Feb 20, 2026)
Browse files- .gitattributes +5 -0
- README.md +83 -188
- connections.json +3 -0
- connections.jsonl +3 -0
- connections.parquet +3 -0
- dataset_card.yaml +18 -0
- dossiers.json +0 -0
- dossiers.jsonl +0 -0
- investigative_collective.db +2 -2
- investigative_collective.db.backup +3 -0
- investigative_collective.db.pre_standardize +3 -0
- nodes.json +3 -0
- nodes.jsonl +0 -0
- nodes.parquet +3 -0
.gitattributes
CHANGED
|
@@ -61,3 +61,8 @@ investigative_collective.db filter=lfs diff=lfs merge=lfs -text
|
|
| 61 |
databases/investigative_collective.db filter=lfs diff=lfs merge=lfs -text
|
| 62 |
databases/apokalypsis.db filter=lfs diff=lfs merge=lfs -text
|
| 63 |
databases/investigative_collective_enriched.db filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
databases/investigative_collective.db filter=lfs diff=lfs merge=lfs -text
|
| 62 |
databases/apokalypsis.db filter=lfs diff=lfs merge=lfs -text
|
| 63 |
databases/investigative_collective_enriched.db filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
connections.json filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
connections.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
investigative_collective.db.backup filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
investigative_collective.db.pre_standardize filter=lfs diff=lfs merge=lfs -text
|
| 68 |
+
nodes.json filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,192 +1,87 @@
|
|
| 1 |
-
#
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
-
|
| 9 |
-
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
-
|
| 19 |
-
-
|
| 20 |
-
-
|
| 21 |
-
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
- `
|
| 42 |
-
- `
|
| 43 |
-
- `
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
- `
|
| 48 |
-
- `
|
| 49 |
-
- `
|
| 50 |
-
- `
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
- `
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
- `
|
| 60 |
-
- `
|
| 61 |
-
- `
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
SELECT full_name, epstein_mentions
|
| 78 |
-
FROM dossiers
|
| 79 |
-
WHERE epstein_mentions > 0
|
| 80 |
-
ORDER BY epstein_mentions DESC
|
| 81 |
-
LIMIT 20
|
| 82 |
-
''')
|
| 83 |
-
|
| 84 |
-
for name, count in cursor.fetchall():
|
| 85 |
-
print(f'{name}: {count} mentions')
|
| 86 |
```
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
cursor = conn.execute('''
|
| 94 |
-
SELECT full_name, parents_json, children_json
|
| 95 |
-
FROM dossiers
|
| 96 |
-
WHERE parents_json IS NOT NULL
|
| 97 |
-
''')
|
| 98 |
-
|
| 99 |
-
for name, parents_str, children_str in cursor.fetchall():
|
| 100 |
-
parents = json.loads(parents_str) if parents_str else []
|
| 101 |
-
children = json.loads(children_str) if children_str else []
|
| 102 |
-
print(f'{name}:')
|
| 103 |
-
print(f' Parents: {[p["name"] for p in parents]}')
|
| 104 |
-
print(f' Children: {[c["name"] for c in children]}')
|
| 105 |
-
```
|
| 106 |
-
|
| 107 |
-
### Find Aircraft Owners
|
| 108 |
-
|
| 109 |
-
```python
|
| 110 |
-
cursor = conn.execute('''
|
| 111 |
-
SELECT full_name, lifestyle_transport
|
| 112 |
-
FROM dossiers
|
| 113 |
-
WHERE lifestyle_transport LIKE '%Aircraft%'
|
| 114 |
-
''')
|
| 115 |
-
|
| 116 |
-
for name, transport in cursor.fetchall():
|
| 117 |
-
print(f'{name}: {transport}')
|
| 118 |
-
```
|
| 119 |
-
|
| 120 |
-
## Data Sources
|
| 121 |
-
|
| 122 |
-
All data extracted from public records:
|
| 123 |
-
- DOJ Epstein court documents (3,910+ pages)
|
| 124 |
-
- Wikidata (family relationships, career history)
|
| 125 |
-
- SEC EDGAR (financial filings)
|
| 126 |
-
- Congress.gov (voting records, committee memberships)
|
| 127 |
-
- FEC (campaign finance)
|
| 128 |
-
- Court records (lawsuits, judgments)
|
| 129 |
-
- News archives (verified reporting)
|
| 130 |
-
- DDoSecrets (leaked documents - when available)
|
| 131 |
-
|
| 132 |
-
## Confidence Scoring
|
| 133 |
-
|
| 134 |
-
Each data point tracked with confidence level:
|
| 135 |
-
- **Tier 1 (90-100%):** Official documents, court records
|
| 136 |
-
- **Tier 2 (70-89%):** Wikidata with citations
|
| 137 |
-
- **Tier 3 (50-69%):** News articles, verified interviews
|
| 138 |
-
- **Tier 4 (30-49%):** Leaked documents
|
| 139 |
-
- **Tier 5 (10-29%):** Unverified claims
|
| 140 |
-
|
| 141 |
-
## Live Investigation Platform
|
| 142 |
-
|
| 143 |
-
**Public interface:** https://ozark-oracle.com
|
| 144 |
-
|
| 145 |
-
Features:
|
| 146 |
-
- Search all 7,452 dossiers
|
| 147 |
-
- View complete network connections (crime nexus)
|
| 148 |
-
- Interactive map of Epstein connections
|
| 149 |
-
- Code words reference (trafficking euphemisms)
|
| 150 |
-
- Real-time updates as investigation progresses
|
| 151 |
-
|
| 152 |
-
## Updates
|
| 153 |
-
|
| 154 |
-
This database is actively maintained and updated as:
|
| 155 |
-
- New court documents are released
|
| 156 |
-
- Additional connections are discovered
|
| 157 |
-
- Family members are added to investigation
|
| 158 |
-
- Evidence is verified and added
|
| 159 |
-
|
| 160 |
-
**Last updated:** 2026-02-06
|
| 161 |
-
**Dossiers:** 7,452
|
| 162 |
-
**Blacklisted:** 1,058
|
| 163 |
-
**Court document mentions:** 1,601 people
|
| 164 |
-
|
| 165 |
-
## Mission
|
| 166 |
-
|
| 167 |
-
**Eliminate pedophiles from existence through global investigation and public exposure.**
|
| 168 |
-
|
| 169 |
-
Investigation findings are PUBLIC (14th Commandment). Investigation methods are PRIVATE.
|
| 170 |
-
|
| 171 |
-
## License & Citation
|
| 172 |
-
|
| 173 |
-
**Copyright (c) 2026 Tammy L Casey. All rights reserved.**
|
| 174 |
-
|
| 175 |
-
If you use this database in research or journalism:
|
| 176 |
-
```
|
| 177 |
-
Epstein Investigation Database (2026).
|
| 178 |
-
Comprehensive dossiers tracking 1,058 individuals connected to Epstein trafficking network.
|
| 179 |
-
Retrieved from https://huggingface.co/datasets/PunkRockGirl/investigation-database
|
| 180 |
```
|
| 181 |
|
| 182 |
## Contact
|
| 183 |
-
|
| 184 |
-
For tips, evidence, or information: https://ozark-oracle.com/confession
|
| 185 |
-
|
| 186 |
-
Anonymous submissions accepted. All evidence verified before publication.
|
| 187 |
-
|
| 188 |
-
---
|
| 189 |
-
|
| 190 |
-
**APOKALYPSIS - THE UNVEILING**
|
| 191 |
-
|
| 192 |
-
*"What is hidden will be revealed. What is secret will be made known."*
|
|
|
|
| 1 |
+
# APOKALYPSIS Investigation Dataset
|
| 2 |
+
|
| 3 |
+
## Overview
|
| 4 |
+
This dataset contains structured investigation data from the APOKALYPSIS project,
|
| 5 |
+
documenting connections between persons of interest, organizations, and events.
|
| 6 |
+
|
| 7 |
+
## Dataset Statistics
|
| 8 |
+
- **Nodes**: 26381 entities (persons, organizations, locations, events)
|
| 9 |
+
- **Connections**: 248558 relationships between entities
|
| 10 |
+
- **Dossiers**: 803 detailed investigation reports
|
| 11 |
+
- **Religious Affiliations**: 0 documented affiliations
|
| 12 |
+
- **Occult Intel**: 0 symbolism/claims (crowdsourced research)
|
| 13 |
+
|
| 14 |
+
## Files
|
| 15 |
+
|
| 16 |
+
### nodes.jsonl / nodes.parquet
|
| 17 |
+
Entity records with:
|
| 18 |
+
- `id`: Unique identifier
|
| 19 |
+
- `name`: Entity name
|
| 20 |
+
- `category`: Type (person, organization, location, etc.)
|
| 21 |
+
- `description`: Brief description
|
| 22 |
+
- `latitude/longitude`: Geographic coordinates (if applicable)
|
| 23 |
+
- `birth_date/death_date`: Dates (for persons)
|
| 24 |
+
- `occupation`, `nationality`
|
| 25 |
+
- `net_worth`: Estimated net worth
|
| 26 |
+
- `created_at`: Record creation timestamp
|
| 27 |
+
|
| 28 |
+
### connections.jsonl / connections.parquet
|
| 29 |
+
Relationship records with:
|
| 30 |
+
- `source_id/source_name`: Origin entity
|
| 31 |
+
- `target_id/target_name`: Destination entity
|
| 32 |
+
- `relationship_type`: Type of connection (financial, familial, etc.)
|
| 33 |
+
- `strength`: Connection strength (1-10)
|
| 34 |
+
- `start_year/end_year`: Time period of relationship
|
| 35 |
+
- `evidence`: Supporting evidence/sources
|
| 36 |
+
|
| 37 |
+
### dossiers.jsonl / dossiers.parquet
|
| 38 |
+
Investigation reports with:
|
| 39 |
+
- `filename`: Original file name
|
| 40 |
+
- `title`: Report title
|
| 41 |
+
- `content`: Full markdown content
|
| 42 |
+
- `word_count`: Document length
|
| 43 |
+
- `linked_node_id`: Associated entity
|
| 44 |
+
|
| 45 |
+
### religious_affiliations.jsonl
|
| 46 |
+
Religious and fraternal order memberships:
|
| 47 |
+
- `node_id/node_name`: Entity
|
| 48 |
+
- `religion`: Religious affiliation
|
| 49 |
+
- `denomination`: Specific branch
|
| 50 |
+
- `fraternal_orders`: List of orders (Skull & Bones, Freemasons, etc.)
|
| 51 |
+
- `secret_societies`: List of societies (Bilderberg, CFR, etc.)
|
| 52 |
+
- `confidence`: Data confidence score (0-100)
|
| 53 |
+
|
| 54 |
+
### occult_intel.jsonl
|
| 55 |
+
Crowdsourced symbolism research:
|
| 56 |
+
- `node_id/node_name`: Entity
|
| 57 |
+
- `intel_type`: Type of claim (hand_sign, photo_symbolism, etc.)
|
| 58 |
+
- `claim`: The specific claim
|
| 59 |
+
- `evidence_url`: Link to evidence
|
| 60 |
+
- `source_name/source_url`: Where claim originated
|
| 61 |
+
- `verified/debunked`: Verification status
|
| 62 |
+
- `confidence`: Claim confidence score
|
| 63 |
+
|
| 64 |
+
## Use Cases
|
| 65 |
+
- Knowledge graph construction
|
| 66 |
+
- Entity resolution and linking
|
| 67 |
+
- Relationship extraction training
|
| 68 |
+
- Network analysis
|
| 69 |
+
- Named entity recognition (NER) training
|
| 70 |
+
- Investigation assistance
|
| 71 |
+
|
| 72 |
+
## License
|
| 73 |
+
This dataset is provided for research and educational purposes.
|
| 74 |
+
Data is compiled from public sources with citations.
|
| 75 |
+
|
| 76 |
+
## Citation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
```
|
| 78 |
+
@dataset{apokalypsis_2026,
|
| 79 |
+
title={APOKALYPSIS Investigation Dataset},
|
| 80 |
+
author={Casey, Tammy L.},
|
| 81 |
+
year={2026},
|
| 82 |
+
publisher={HuggingFace}
|
| 83 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 84 |
```
|
| 85 |
|
| 86 |
## Contact
|
| 87 |
+
Questions or corrections: [GitHub Issues]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
connections.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe863f0ab518f5a1d414c342662426d08ad2cd137a3850874d6b4cde9aa75c19
|
| 3 |
+
size 108102532
|
connections.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be95b318f84bb524c715ebed56f53684fd961c2fb9a18195be7b03aa8169d0ab
|
| 3 |
+
size 92443375
|
connections.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d38316d707937f8b42269433035c3afcd496564464e26dea28dcf5c8fd5665b4
|
| 3 |
+
size 1180988
|
dataset_card.yaml
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: cc-by-nc-4.0
|
| 5 |
+
task_categories:
|
| 6 |
+
- text-classification
|
| 7 |
+
- token-classification
|
| 8 |
+
- question-answering
|
| 9 |
+
- graph-ml
|
| 10 |
+
tags:
|
| 11 |
+
- knowledge-graph
|
| 12 |
+
- investigation
|
| 13 |
+
- network-analysis
|
| 14 |
+
- entity-linking
|
| 15 |
+
- relationships
|
| 16 |
+
size_categories:
|
| 17 |
+
- 10K<n<100K
|
| 18 |
+
---
|
dossiers.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
dossiers.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
investigative_collective.db
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69a465f4d5750e3e3708106700e2c1a4bcfb3389aef95cedd4846672a68fae1a
|
| 3 |
+
size 25473024
|
investigative_collective.db.backup
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17c5fa60343e6e0d9937045c1adcf4b6da24fc45dbef0c1fc3cddffd972b68d9
|
| 3 |
+
size 1818624
|
investigative_collective.db.pre_standardize
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb4907bda7d31ae11e8df2d0cd3f6c18dff6f907ea743350c7482a8b9cf4b78e
|
| 3 |
+
size 15564800
|
nodes.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d92a0cebb06ac14efbad32bb1b56113dedc24c2b2a8b33db51865e2d9ba41f9
|
| 3 |
+
size 12282290
|
nodes.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
nodes.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:189bbd37a39a19f2fe4b05fffcac069f43cc71980290ce69e8524fa673b014e5
|
| 3 |
+
size 1119814
|