1077 lines
60 KiB
HTML
1077 lines
60 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>DCA / Dark Money / Lobbying Network Timeline</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
background: #0d1117;
|
|
color: #c9d1d9;
|
|
line-height: 1.6;
|
|
padding: 2rem;
|
|
}
|
|
h1 {
|
|
font-size: 1.8rem;
|
|
margin-bottom: 0.3rem;
|
|
color: #f0f6fc;
|
|
}
|
|
h2 {
|
|
font-size: 1.3rem;
|
|
margin: 2rem 0 1rem;
|
|
color: #f0f6fc;
|
|
border-bottom: 1px solid #30363d;
|
|
padding-bottom: 0.4rem;
|
|
}
|
|
.subtitle {
|
|
color: #8b949e;
|
|
font-size: 0.95rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
.stats-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.8rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.stat-card {
|
|
background: #161b22;
|
|
border: 1px solid #30363d;
|
|
border-radius: 8px;
|
|
padding: 0.8rem 1.2rem;
|
|
min-width: 140px;
|
|
}
|
|
.stat-card .label {
|
|
font-size: 0.75rem;
|
|
color: #8b949e;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
.stat-card .value {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: #f0f6fc;
|
|
}
|
|
.stat-card .value.money { color: #3fb950; }
|
|
.stat-card .value.alert { color: #f85149; }
|
|
|
|
/* Legend */
|
|
.legend {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.8rem;
|
|
margin-bottom: 1.5rem;
|
|
padding: 1rem;
|
|
background: #161b22;
|
|
border: 1px solid #30363d;
|
|
border-radius: 8px;
|
|
}
|
|
.legend-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.4rem;
|
|
font-size: 0.82rem;
|
|
color: #c9d1d9;
|
|
cursor: pointer;
|
|
padding: 0.2rem 0.5rem;
|
|
border-radius: 4px;
|
|
transition: background 0.15s;
|
|
user-select: none;
|
|
}
|
|
.legend-item:hover { background: #21262d; }
|
|
.legend-item.inactive { opacity: 0.35; }
|
|
.legend-dot {
|
|
width: 11px;
|
|
height: 11px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Filter */
|
|
.filter-bar {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
.filter-bar label { font-size: 0.85rem; color: #8b949e; }
|
|
.filter-bar select, .filter-bar input {
|
|
padding: 0.35rem 0.6rem;
|
|
border-radius: 6px;
|
|
border: 1px solid #30363d;
|
|
background: #0d1117;
|
|
color: #c9d1d9;
|
|
font-size: 0.85rem;
|
|
}
|
|
.search-box {
|
|
flex: 1;
|
|
min-width: 180px;
|
|
max-width: 320px;
|
|
}
|
|
|
|
/* Timeline */
|
|
.timeline {
|
|
position: relative;
|
|
padding-left: 32px;
|
|
}
|
|
.timeline::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 9px;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 2px;
|
|
background: #21262d;
|
|
}
|
|
.year-marker {
|
|
position: relative;
|
|
margin: 2rem 0 1rem;
|
|
padding-left: 20px;
|
|
}
|
|
.year-marker span {
|
|
font-size: 1.1rem;
|
|
font-weight: 700;
|
|
color: #58a6ff;
|
|
background: #0d1117;
|
|
padding: 0 0.5rem;
|
|
position: relative;
|
|
}
|
|
.year-marker::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 3px;
|
|
top: 50%;
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 50%;
|
|
background: #58a6ff;
|
|
transform: translateY(-50%);
|
|
border: 3px solid #0d1117;
|
|
}
|
|
.timeline-entry {
|
|
position: relative;
|
|
margin-bottom: 1rem;
|
|
padding-left: 20px;
|
|
transition: opacity 0.2s;
|
|
}
|
|
.timeline-entry.dimmed { opacity: 0.15; pointer-events: none; }
|
|
.timeline-entry.search-miss { opacity: 0.08; }
|
|
.timeline-dot {
|
|
position: absolute;
|
|
left: -27px;
|
|
top: 8px;
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
border: 2px solid #0d1117;
|
|
box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
|
|
}
|
|
.timeline-content {
|
|
background: #161b22;
|
|
border: 1px solid #30363d;
|
|
padding: 0.9rem 1rem;
|
|
border-radius: 8px;
|
|
transition: border-color 0.15s;
|
|
}
|
|
.timeline-content:hover { border-color: #484f58; }
|
|
.timeline-date {
|
|
font-weight: 600;
|
|
font-size: 0.85rem;
|
|
color: #8b949e;
|
|
}
|
|
.timeline-type {
|
|
font-size: 0.72rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
.timeline-title {
|
|
font-size: 0.95rem;
|
|
font-weight: 600;
|
|
color: #f0f6fc;
|
|
margin-bottom: 0.3rem;
|
|
}
|
|
.timeline-desc {
|
|
font-size: 0.88rem;
|
|
color: #8b949e;
|
|
line-height: 1.5;
|
|
}
|
|
.timeline-desc strong { color: #c9d1d9; }
|
|
.entity-tag {
|
|
display: inline-block;
|
|
margin-top: 0.5rem;
|
|
margin-right: 0.3rem;
|
|
font-size: 0.72rem;
|
|
padding: 0.15rem 0.5rem;
|
|
border-radius: 10px;
|
|
background: #21262d;
|
|
color: #8b949e;
|
|
border: 1px solid #30363d;
|
|
}
|
|
.source-link {
|
|
font-size: 0.78rem;
|
|
color: #58a6ff;
|
|
text-decoration: none;
|
|
}
|
|
.source-link:hover { text-decoration: underline; }
|
|
.money { color: #3fb950; font-weight: 600; }
|
|
.alert-text { color: #f85149; }
|
|
|
|
/* Network diagram */
|
|
.network-section {
|
|
margin: 2rem 0;
|
|
padding: 1.5rem;
|
|
background: #161b22;
|
|
border: 1px solid #30363d;
|
|
border-radius: 8px;
|
|
}
|
|
.network-section h3 {
|
|
font-size: 1rem;
|
|
color: #f0f6fc;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.flow-diagram {
|
|
font-family: "Courier New", monospace;
|
|
font-size: 0.82rem;
|
|
line-height: 1.4;
|
|
color: #c9d1d9;
|
|
white-space: pre;
|
|
overflow-x: auto;
|
|
padding: 1rem;
|
|
background: #0d1117;
|
|
border-radius: 6px;
|
|
border: 1px solid #21262d;
|
|
}
|
|
.flow-diagram .node-corp { color: #f85149; }
|
|
.flow-diagram .node-lobby { color: #d2a8ff; }
|
|
.flow-diagram .node-dark { color: #f0883e; }
|
|
.flow-diagram .node-front { color: #ffa657; }
|
|
.flow-diagram .node-leg { color: #58a6ff; }
|
|
.flow-diagram .node-money { color: #3fb950; }
|
|
|
|
/* Connections table */
|
|
.conn-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 0.83rem;
|
|
margin-top: 0.5rem;
|
|
}
|
|
.conn-table th, .conn-table td {
|
|
padding: 0.6rem 0.8rem;
|
|
text-align: left;
|
|
border-bottom: 1px solid #21262d;
|
|
}
|
|
.conn-table th {
|
|
background: #21262d;
|
|
font-weight: 600;
|
|
color: #f0f6fc;
|
|
position: sticky;
|
|
top: 0;
|
|
}
|
|
.conn-table tr:hover { background: #161b22; }
|
|
.conn-table td.money { color: #3fb950; }
|
|
|
|
@media (max-width: 700px) {
|
|
body { padding: 1rem; }
|
|
.stats-row { gap: 0.4rem; }
|
|
.stat-card { min-width: 100px; padding: 0.5rem 0.8rem; }
|
|
.flow-diagram { font-size: 0.7rem; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Funding Network Timeline</h1>
|
|
<p class="subtitle">DCA · Arabella / Dark Money · Koch Lobbyist · Meta Lobbying · Shadow Group Infrastructure</p>
|
|
<p style="color:#484f58;font-size:0.8rem;margin-bottom:1.5rem;">Compiled 2026-03-12 · Sources: CO SOS SODA API, ProPublica Nonprofit Explorer, IRS 990s, WHOIS, investigative reporting</p>
|
|
|
|
<!-- Summary Stats -->
|
|
<div class="stats-row">
|
|
<div class="stat-card"><div class="label">Meta → Headwaters (CO)</div><div class="value money">$338,500</div></div>
|
|
<div class="stat-card"><div class="label">Meta CA Lobbying (2025)</div><div class="value money">$1.04M</div></div>
|
|
<div class="stat-card"><div class="label">Meta Federal Lobbying (2024)</div><div class="value money">$24.4M</div></div>
|
|
<div class="stat-card"><div class="label">Meta Super PACs (2025)</div><div class="value money">$65M</div></div>
|
|
<div class="stat-card"><div class="label">Arabella Network Revenue (2023)</div><div class="value money">$1.22B</div></div>
|
|
<div class="stat-card"><div class="label">NVF Grants (2023)</div><div class="value money">$593M</div></div>
|
|
<div class="stat-card"><div class="label">Timeline Events</div><div class="value">58</div></div>
|
|
<div class="stat-card"><div class="label">DCA: Days from Domain to Testimony</div><div class="value alert">~150</div></div>
|
|
</div>
|
|
|
|
<!-- Network Diagram -->
|
|
<div class="network-section">
|
|
<h3>Funding & Influence Flow Diagram</h3>
|
|
<div class="flow-diagram"><span class="node-corp">META PLATFORMS INC</span>
|
|
|
|
|
|--- <span class="node-money">$338,500</span> ----> <span class="node-lobby">HEADWATERS STRATEGIES</span> (Denver, CO lobbying)
|
|
| |--- Co-founder: <span class="node-dark">Adam Eichberg</span>
|
|
| | |--- Board Chair: <span class="node-dark">NEW VENTURE FUND</span> ($669M rev)
|
|
| | |--- Founding Board: <span class="node-dark">WINDWARD FUND</span> ($311M rev)
|
|
| | |--- Incoming Chair: <span class="node-dark">SUNFLOWER SERVICES</span> (fka Arabella)
|
|
| |--- Co-founder: Will Coyne
|
|
| |--- Lobbyist: Amber Burkhart
|
|
| |--- Lobbyist: Alyson Schmidt
|
|
| |--- Also represents: Apple, Airbnb, Tesla, Everytown
|
|
|
|
|
|--- <span class="node-money">"helping to fund"</span> -> <span class="node-front">DIGITAL CHILDHOOD ALLIANCE</span> (501(c)(4), DC)
|
|
| (Bloomberg, 3 sources) |--- Exec Dir: Casey Stefanski (ex-NCOSE)
|
|
| |--- Founder: Melissa McKay
|
|
| |--- Sr Policy: John Read (ex-DOJ 30yr)
|
|
| |--- Lobbyist (LA): <span class="node-lobby">Koch</span>
|
|
| |--- Domain: registered 2024-12-18
|
|
| |--- Pushed ASAA in 20+ states
|
|
| |--- <span class="node-front">DIGITAL CHILDHOOD INSTITUTE</span> (501(c)(3) arm)
|
|
| |--- EIN: 39-3684798
|
|
| |--- Incorporated: Wilmington, DE
|
|
| |--- IRS ruling: Nov 2025
|
|
|
|
|
|--- <span class="node-money">$1.04M (2025)</span> -> <span class="node-lobby">CALIFORNIA STATE LOBBYING</span>
|
|
|--- <span class="node-money">$65M</span> ----------> <span class="node-lobby">SUPER PACs</span> (ATEP + META California)
|
|
|--- <span class="node-money">funding</span> -------> <span class="node-front">CONNECTSAFELY</span> (Larry Magid on Meta Safety Council)
|
|
|--- <span class="node-money">$24.4M (2024)</span> -> <span class="node-lobby">FEDERAL LOBBYING</span> (87 lobbyists, 24 firms)
|
|
|
|
|
|--- Nicole Lopez (Dir Global Litigation Strategy - Youth)
|
|
testified FOR LA HB-570 at Senate Commerce
|
|
|
|
<span class="node-dark">ARABELLA ADVISORS NETWORK</span> (1828 L St NW, Washington DC)
|
|
|--- Suite 300-A: <span class="node-dark">NEW VENTURE FUND</span> (c)(3) $669M rev 1,020 grants
|
|
|--- Suite 300-B: <span class="node-dark">SIXTEEN THIRTY FUND</span> (c)(4) $282M rev 318 grants
|
|
|--- Suite 300-C: <span class="node-dark">WINDWARD FUND</span> (c)(3) $311M rev
|
|
|--- Suite 300-D: <span class="node-dark">HOPEWELL FUND</span> (c)(3) $114M grants
|
|
|
|
|
|--- All founded/managed by Eric Kessler / Arabella Advisors
|
|
|--- Combined 2023 revenue: <span class="node-money">~$1.22 BILLION</span>
|
|
|--- Arabella dissolved 2025, rebranded <span class="node-dark">SUNFLOWER SERVICES</span>
|
|
|--- <span class="node-dark">Adam Eichberg</span>: Board Chair NVF + Co-founder Headwaters
|
|
| (simultaneous dark money leadership + corporate lobbying)
|
|
|
|
|
|--- <span class="node-leg">POTENTIAL PASS-THROUGH ROLE:</span>
|
|
Sixteen Thirty Fund (c)(4) does NOT disclose donors.
|
|
Could receive corporate funds and route to advocacy groups.
|
|
No direct evidence found connecting Arabella → DCA.
|
|
Full Schedule I analysis of 823 NVF grant recipients pending.</div>
|
|
</div>
|
|
|
|
<!-- Legend -->
|
|
<h2>Legend</h2>
|
|
<div class="legend" id="legend">
|
|
<span class="legend-item" data-cat="dark-money" onclick="toggleCat(this)"><span class="legend-dot" style="background:#f0883e;"></span>Dark Money Infrastructure</span>
|
|
<span class="legend-item" data-cat="lobbying" onclick="toggleCat(this)"><span class="legend-dot" style="background:#d2a8ff;"></span>Lobbying Payments</span>
|
|
<span class="legend-item" data-cat="dca" onclick="toggleCat(this)"><span class="legend-dot" style="background:#ffa657;"></span>DCA Operations</span>
|
|
<span class="legend-item" data-cat="legislation" onclick="toggleCat(this)"><span class="legend-dot" style="background:#58a6ff;"></span>Legislation</span>
|
|
<span class="legend-item" data-cat="investigation" onclick="toggleCat(this)"><span class="legend-dot" style="background:#f85149;"></span>Investigative Revelations</span>
|
|
<span class="legend-item" data-cat="meta-strategy" onclick="toggleCat(this)"><span class="legend-dot" style="background:#3fb950;"></span>Meta Political Strategy</span>
|
|
<span class="legend-item" data-cat="financial" onclick="toggleCat(this)"><span class="legend-dot" style="background:#e3b341;"></span>Financial Milestones</span>
|
|
<span class="legend-item" data-cat="connectsafely" onclick="toggleCat(this)"><span class="legend-dot" style="background:#39d2c0;"></span>ConnectSafely / Counter-Narrative</span>
|
|
</div>
|
|
|
|
<!-- Filter -->
|
|
<div class="filter-bar">
|
|
<label for="cat-filter">Category:</label>
|
|
<select id="cat-filter" onchange="filterTimeline()">
|
|
<option value="all">All categories</option>
|
|
<option value="dark-money">Dark Money Infrastructure</option>
|
|
<option value="lobbying">Lobbying Payments</option>
|
|
<option value="dca">DCA Operations</option>
|
|
<option value="legislation">Legislation</option>
|
|
<option value="investigation">Investigative Revelations</option>
|
|
<option value="meta-strategy">Meta Political Strategy</option>
|
|
<option value="financial">Financial Milestones</option>
|
|
<option value="connectsafely">ConnectSafely / Counter-Narrative</option>
|
|
</select>
|
|
<label for="search-box">Search:</label>
|
|
<input type="text" id="search-box" class="search-box" placeholder="e.g. Koch, Eichberg, DCA, Louisiana..." oninput="searchTimeline(this.value)">
|
|
</div>
|
|
|
|
<h2>Timeline</h2>
|
|
<div class="timeline" id="timeline">
|
|
|
|
<!-- ═══════════════ 2005 ═══════════════ -->
|
|
<div class="year-marker"><span>2005</span></div>
|
|
|
|
<div class="timeline-entry" data-cat="connectsafely">
|
|
<div class="timeline-dot" style="background:#39d2c0;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2005</div>
|
|
<div class="timeline-type" style="color:#39d2c0;">ConnectSafely</div>
|
|
<div class="timeline-title">ConnectSafely founded</div>
|
|
<div class="timeline-desc">Larry Magid and Anne Collier found ConnectSafely in Palo Alto, CA. It will later become a key recipient of Meta and tech industry funding for "internet safety" messaging, with Magid serving on <strong>Meta's Safety Advisory Council</strong>.</div>
|
|
<span class="entity-tag">ConnectSafely</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ═══════════════ 2006 ═══════════════ -->
|
|
<div class="year-marker"><span>2006</span></div>
|
|
|
|
<div class="timeline-entry" data-cat="dark-money">
|
|
<div class="timeline-dot" style="background:#f0883e;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2006</div>
|
|
<div class="timeline-type" style="color:#f0883e;">Dark Money Infrastructure</div>
|
|
<div class="timeline-title">Arabella Legacy Fund created</div>
|
|
<div class="timeline-desc">Eric Kessler founds the <strong>Arabella Legacy Fund</strong>, which will be renamed the <strong>New Venture Fund</strong> in 2009. This becomes the anchor of a billion-dollar dark money network operating from 1828 L Street NW, Washington, DC.</div>
|
|
<span class="entity-tag">Arabella Advisors</span><span class="entity-tag">New Venture Fund</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ═══════════════ 2009 ═══════════════ -->
|
|
<div class="year-marker"><span>2009</span></div>
|
|
|
|
<div class="timeline-entry" data-cat="dark-money">
|
|
<div class="timeline-dot" style="background:#f0883e;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2009</div>
|
|
<div class="timeline-type" style="color:#f0883e;">Dark Money Infrastructure</div>
|
|
<div class="timeline-title">Arabella Legacy Fund renamed to New Venture Fund</div>
|
|
<div class="timeline-desc">Renamed to <strong>New Venture Fund (NVF)</strong>. EIN 20-5806345. Located at 1828 L Street NW, Suite 300-A, Washington, DC 20036. Will grow to $669M revenue and $593M in grants (1,020 awards) by 2023.</div>
|
|
<span class="entity-tag">New Venture Fund</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="dark-money">
|
|
<div class="timeline-dot" style="background:#f0883e;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2009-08</div>
|
|
<div class="timeline-type" style="color:#f0883e;">Dark Money Infrastructure</div>
|
|
<div class="timeline-title">Sixteen Thirty Fund established</div>
|
|
<div class="timeline-desc">501(c)(4) social welfare organization. IRS ruling August 2009. EIN 26-4486735. Suite 300-B at the same 1828 L St NW address. As a <strong>501(c)(4), it does NOT disclose donors</strong>. Will reach $282M revenue by 2024. Eric Kessler is founding president.</div>
|
|
<span class="entity-tag">Sixteen Thirty Fund</span><span class="entity-tag">Arabella Advisors</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="lobbying">
|
|
<div class="timeline-dot" style="background:#d2a8ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2009</div>
|
|
<div class="timeline-type" style="color:#d2a8ff;">Lobbying</div>
|
|
<div class="timeline-title">Headwaters Strategies founded in Denver</div>
|
|
<div class="timeline-desc">Co-founded by <strong>Adam Eichberg</strong> and <strong>Will Coyne</strong>. 1660 Lincoln St, Suite 2910, Denver, CO 80264. Strategic political counsel and state legislative lobbying. Eichberg was formerly Deputy Legislative Director for Governor Bill Ritter.</div>
|
|
<span class="entity-tag">Headwaters Strategies</span><span class="entity-tag">Adam Eichberg</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ═══════════════ 2015 ═══════════════ -->
|
|
<div class="year-marker"><span>2015</span></div>
|
|
|
|
<div class="timeline-entry" data-cat="dark-money">
|
|
<div class="timeline-dot" style="background:#f0883e;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2015-06</div>
|
|
<div class="timeline-type" style="color:#f0883e;">Dark Money Infrastructure</div>
|
|
<div class="timeline-title">Windward Fund established</div>
|
|
<div class="timeline-desc">501(c)(3), Suite 300-C, 1828 L St NW. EIN 47-3522162. IRS ruling June 2015. <strong>Adam Eichberg is a founding board member.</strong> Eric Kessler serves as first president. Will reach $311M revenue by 2024.</div>
|
|
<span class="entity-tag">Windward Fund</span><span class="entity-tag">Adam Eichberg</span><span class="entity-tag">Arabella Advisors</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="dark-money">
|
|
<div class="timeline-dot" style="background:#f0883e;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2015-09</div>
|
|
<div class="timeline-type" style="color:#f0883e;">Dark Money Infrastructure</div>
|
|
<div class="timeline-title">Hopewell Fund established</div>
|
|
<div class="timeline-desc">501(c)(3), Suite 300-D, 1828 L St NW. EIN 47-3681860. IRS ruling September 2015. All four Arabella entities now occupy contiguous suites at the same address. Combined network will exceed $1 billion annually.</div>
|
|
<span class="entity-tag">Hopewell Fund</span><span class="entity-tag">Arabella Advisors</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="connectsafely">
|
|
<div class="timeline-dot" style="background:#39d2c0;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2015-10</div>
|
|
<div class="timeline-type" style="color:#39d2c0;">ConnectSafely</div>
|
|
<div class="timeline-title">ConnectSafely receives 501(c)(3) status</div>
|
|
<div class="timeline-desc">EIN 47-3168168. Palo Alto, CA. Revenue will grow from $316K (2015) to $784K (2024), funded by Meta, Google, Amazon, TikTok, Snapchat, Discord, Roblox, and others. CEO Larry Magid serves on safety advisory boards for Facebook, Google, Twitter, Comcast, Roblox, Snapchat. <strong>Executive compensation = 57.5% of total expenses.</strong></div>
|
|
<span class="entity-tag">ConnectSafely</span><span class="entity-tag">Larry Magid</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ═══════════════ 2017 ═══════════════ -->
|
|
<div class="year-marker"><span>2017</span></div>
|
|
|
|
<div class="timeline-entry" data-cat="financial">
|
|
<div class="timeline-dot" style="background:#e3b341;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2017</div>
|
|
<div class="timeline-type" style="color:#e3b341;">Financial</div>
|
|
<div class="timeline-title">Arabella network begins rapid growth</div>
|
|
<div class="timeline-desc">NVF revenue: $359M. Sixteen Thirty: $79.5M. Hopewell: $130.6M. Combined network approaches <span class="money">$570M</span>. This is before the explosive growth of 2020-2021.</div>
|
|
<span class="entity-tag">Arabella Advisors</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ═══════════════ 2020 ═══════════════ -->
|
|
<div class="year-marker"><span>2020</span></div>
|
|
|
|
<div class="timeline-entry" data-cat="lobbying">
|
|
<div class="timeline-dot" style="background:#d2a8ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2020-03</div>
|
|
<div class="timeline-type" style="color:#d2a8ff;">Lobbying Payment</div>
|
|
<div class="timeline-title">First recorded Facebook → Headwaters payment</div>
|
|
<div class="timeline-desc">Facebook begins paying Headwaters Strategies <span class="money">$5,000/month</span> for Colorado state lobbying. FY 2019-2020 total: <span class="money">$10,000</span>. Meta's registered Colorado address IS the Headwaters office: 1660 Lincoln St, Suite 2910.</div>
|
|
<span class="entity-tag">Meta/Facebook</span><span class="entity-tag">Headwaters Strategies</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="financial">
|
|
<div class="timeline-dot" style="background:#e3b341;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2020</div>
|
|
<div class="timeline-type" style="color:#e3b341;">Financial</div>
|
|
<div class="timeline-title">Arabella network peaks at combined ~$1.7 billion</div>
|
|
<div class="timeline-desc">NVF: <span class="money">$975M</span> revenue. Sixteen Thirty: <span class="money">$390M</span>. Windward: $158M. Hopewell: $152M. The Arabella network is now one of the largest dark money operations in the United States.</div>
|
|
<span class="entity-tag">Arabella Advisors</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="lobbying">
|
|
<div class="timeline-dot" style="background:#d2a8ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2020-07 to 2021-06</div>
|
|
<div class="timeline-type" style="color:#d2a8ff;">Lobbying Payment</div>
|
|
<div class="timeline-title">Facebook payments to Headwaters escalate</div>
|
|
<div class="timeline-desc">FY 2020-2021: <span class="money">$45,000</span>. Notable spike to $15,000 in March 2021. Payments shift from sporadic to consistent monthly engagement.</div>
|
|
<span class="entity-tag">Meta/Facebook</span><span class="entity-tag">Headwaters Strategies</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ═══════════════ 2021 ═══════════════ -->
|
|
<div class="year-marker"><span>2021</span></div>
|
|
|
|
<div class="timeline-entry" data-cat="lobbying">
|
|
<div class="timeline-dot" style="background:#d2a8ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2021-07 to 2022-06</div>
|
|
<div class="timeline-type" style="color:#d2a8ff;">Lobbying Payment</div>
|
|
<div class="timeline-title">Meta Platforms payments to Headwaters: $60,000</div>
|
|
<div class="timeline-desc">Rebranded from Facebook to Meta. FY 2021-2022: <span class="money">$60,000</span>. Payments now reach $10,000-$15,000/month. May-June 2022 spike: $15,000 each month.</div>
|
|
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">Headwaters Strategies</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ═══════════════ 2023 ═══════════════ -->
|
|
<div class="year-marker"><span>2023</span></div>
|
|
|
|
<div class="timeline-entry" data-cat="lobbying">
|
|
<div class="timeline-dot" style="background:#d2a8ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2023-07</div>
|
|
<div class="timeline-type" style="color:#d2a8ff;">Lobbying Payment</div>
|
|
<div class="timeline-title">Meta → Headwaters: record $30,000 single month</div>
|
|
<div class="timeline-desc">The <strong>largest single monthly payment</strong> from Meta to Headwaters: <span class="money">$30,000 in July 2023</span>. Coincides with growing national momentum on children's online safety legislation and Meta's strategic pivot to app-store-level age verification. FY 2023-2024 total: <span class="money">$107,000</span> — Meta becomes Headwaters' <strong>3rd largest client</strong>.</div>
|
|
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">Headwaters Strategies</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="financial">
|
|
<div class="timeline-dot" style="background:#e3b341;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2023</div>
|
|
<div class="timeline-type" style="color:#e3b341;">Financial</div>
|
|
<div class="timeline-title">NVF distributes $593M in grants to 823 organizations</div>
|
|
<div class="timeline-desc">New Venture Fund (chaired by <strong>Adam Eichberg</strong>) revenue: <span class="money">$669M</span>. Distributes <span class="money">$592,958,696</span> across 1,020 grant awards to 823 domestic organizations. $103.4M for "Youth Development and Education." Full Schedule I with all 823 recipients has not yet been fully analyzed.</div>
|
|
<span class="entity-tag">New Venture Fund</span><span class="entity-tag">Adam Eichberg</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="financial">
|
|
<div class="timeline-dot" style="background:#e3b341;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2023</div>
|
|
<div class="timeline-type" style="color:#e3b341;">Financial</div>
|
|
<div class="timeline-title">Arabella network combined revenue: $1.22 billion</div>
|
|
<div class="timeline-desc">NVF: $669M. Sixteen Thirty: $181M. Windward: $212M. Hopewell: $158M. Combined: <span class="money">~$1.22 billion</span>. NVF lobbying expenditures: $36.7M, including $31.2M in grants to other orgs for lobbying.</div>
|
|
<span class="entity-tag">Arabella Advisors</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="meta-strategy">
|
|
<div class="timeline-dot" style="background:#3fb950;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2023</div>
|
|
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
|
|
<div class="timeline-title">Meta federal lobbying: $19.3M</div>
|
|
<div class="timeline-desc">Meta spends <span class="money">$19.3 million</span> on federal lobbying. The company begins formulating its strategy to shift age verification responsibility from platforms to app stores and OS providers.</div>
|
|
<span class="entity-tag">Meta Platforms</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ═══════════════ 2024 ═══════════════ -->
|
|
<div class="year-marker"><span>2024</span></div>
|
|
|
|
<div class="timeline-entry" data-cat="meta-strategy">
|
|
<div class="timeline-dot" style="background:#3fb950;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2024</div>
|
|
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
|
|
<div class="timeline-title">Meta federal lobbying hits $24.4M</div>
|
|
<div class="timeline-desc">Record federal lobbying spend: <span class="money">$24.4 million</span>. Retains 24 lobbying firms and employs 87 lobbyists, 85% of whom are "revolving door" former government officials.</div>
|
|
<span class="entity-tag">Meta Platforms</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="financial">
|
|
<div class="timeline-dot" style="background:#e3b341;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2024</div>
|
|
<div class="timeline-type" style="color:#e3b341;">Financial</div>
|
|
<div class="timeline-title">Sixteen Thirty Fund: $282M revenue, 318 grants</div>
|
|
<div class="timeline-desc">Revenue: <span class="money">$282.2M</span> (97.5% from contributions). Distributes <span class="money">$236.5M</span> across 318 grants. As a 501(c)(4), <strong class="alert-text">donor identities are NOT disclosed</strong>. President: Amy Kurtz.</div>
|
|
<span class="entity-tag">Sixteen Thirty Fund</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="lobbying">
|
|
<div class="timeline-dot" style="background:#d2a8ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2024-08 to 2025-05</div>
|
|
<div class="timeline-type" style="color:#d2a8ff;">Lobbying Payment</div>
|
|
<div class="timeline-title">Meta → Headwaters FY 2024-2025: $57,500</div>
|
|
<div class="timeline-desc">Sustained high-level engagement at <span class="money">$7,000-$14,000/month</span>. FY total: <span class="money">$57,500</span>. Headwaters' total firm revenue estimated at $1.6-1.8M, making Meta ~3-4% of revenue.</div>
|
|
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">Headwaters Strategies</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="dca">
|
|
<div class="timeline-dot" style="background:#ffa657;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2024-12-18</div>
|
|
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
|
|
<div class="timeline-title">DCA domain registered</div>
|
|
<div class="timeline-desc"><strong>digitalchildhoodalliance.org</strong> registered via GoDaddy with privacy protection. <strong>4-year registration</strong> through 2028 (suggesting significant pre-committed funding). Cloudflare CDN. Wayback Machine first snapshot: December 19, 2024 — one day later.</div>
|
|
<span class="entity-tag">DCA</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ═══════════════ 2025 ═══════════════ -->
|
|
<div class="year-marker"><span>2025</span></div>
|
|
|
|
<div class="timeline-entry" data-cat="dca">
|
|
<div class="timeline-dot" style="background:#ffa657;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-02-25</div>
|
|
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
|
|
<div class="timeline-title">DCA public launch</div>
|
|
<div class="timeline-desc">Press release: "Over 50 Child Advocacy Groups Unite to Demand App Store Accountability." <strong>Casey Stefanski</strong> named Executive Director (previously Senior Director at NCOSE for 10 years). Claims 501(c)(4) status. Washington, DC based but describes itself as "remote." <strong>69 days from domain registration to national launch.</strong></div>
|
|
<span class="entity-tag">DCA</span><span class="entity-tag">Casey Stefanski</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="legislation">
|
|
<div class="timeline-dot" style="background:#58a6ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-02-19</div>
|
|
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
|
|
<div class="timeline-title">CO SB25-086: Senate Judiciary hearing</div>
|
|
<div class="timeline-desc">Protections for Users of Social Media. Requires platforms to cooperate with law enforcement. <strong>TechNet and NetChoice testify in opposition.</strong> Chamber of Progress opposes at House hearing. Katie Paul (Tech Transparency Project) testifies as neutral. Referred 6-1.</div>
|
|
<span class="entity-tag">Colorado</span><span class="entity-tag">SB25-086</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="legislation">
|
|
<div class="timeline-dot" style="background:#58a6ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-04-02</div>
|
|
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
|
|
<div class="timeline-title">CO HB25-1287: Social Media Tools for Minors hearing</div>
|
|
<div class="timeline-desc">House Health & Human Services Committee. Would require platforms to determine if users are minors, disable algorithmic recommendations, provide parental tools. Later dies in Appropriations (amendments failed).</div>
|
|
<span class="entity-tag">Colorado</span><span class="entity-tag">HB25-1287</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="legislation">
|
|
<div class="timeline-dot" style="background:#58a6ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-04-22</div>
|
|
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
|
|
<div class="timeline-title">CA AB-1043 (Digital Age Assurance Act): first hearing</div>
|
|
<div class="timeline-desc">Assembly Privacy Committee hearing. Authored by Assemblymember Buffy Wicks and Sen. Tom Umberg. Requires OS providers to collect age during device setup and transmit age bracket signals to apps via API.</div>
|
|
<span class="entity-tag">California</span><span class="entity-tag">AB-1043</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="meta-strategy">
|
|
<div class="timeline-dot" style="background:#3fb950;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-04</div>
|
|
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
|
|
<div class="timeline-title">Meta + Spotify + Match Group launch age verification coalition</div>
|
|
<div class="timeline-desc">Meta teams with Spotify and Match Group to pressure Apple and Google on app-store age verification. This formalizes Meta's strategy of shifting compliance costs to competitors (OS/app store providers).</div>
|
|
<span class="entity-tag">Meta Platforms</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="legislation">
|
|
<div class="timeline-dot" style="background:#58a6ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-04-24</div>
|
|
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
|
|
<div class="timeline-title">CO SB25-086 vetoed by Governor Polis</div>
|
|
<div class="timeline-desc">Governor Polis vetoes SB25-086 (social media platform obligations). This bill would have placed obligations directly on platforms like Meta. Its failure benefits Meta's preferred approach of OS/app-store-level regulation.</div>
|
|
<span class="entity-tag">Colorado</span><span class="entity-tag">SB25-086</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="dca">
|
|
<div class="timeline-dot" style="background:#ffa657;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">~2025-05</div>
|
|
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
|
|
<div class="timeline-title">DCA retains lobbyist "Koch" in Louisiana</div>
|
|
<div class="timeline-desc">DCA registers a paid lobbyist named <strong>Koch</strong> in Louisiana to support HB-570 (App Store Accountability Act). This is notable: an organization that registered its domain barely 5 months earlier already has paid lobbyists in multiple state capitols.</div>
|
|
<span class="entity-tag">DCA</span><span class="entity-tag">Koch (lobbyist)</span><span class="entity-tag">Louisiana</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="legislation">
|
|
<div class="timeline-dot" style="background:#58a6ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-05-12</div>
|
|
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
|
|
<div class="timeline-title">LA HB-570 passes House 99-0</div>
|
|
<div class="timeline-desc">Louisiana App Store Accountability Act, authored by Rep. Kim Carver. Passes House unanimously. <strong>49 co-sponsors.</strong> Requires app stores to verify ages and obtain parental consent for minors. Student Brinkley Bennett testifies it's "a digital seatbelt."</div>
|
|
<span class="entity-tag">Louisiana</span><span class="entity-tag">HB-570</span><span class="entity-tag">Kim Carver</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="investigation">
|
|
<div class="timeline-dot" style="background:#f85149;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">~2025-05</div>
|
|
<div class="timeline-type" style="color:#f85149;">Investigative</div>
|
|
<div class="timeline-title">Sen. Jay Morris confronts Stefanski on DCA funding</div>
|
|
<div class="timeline-desc">At Louisiana Senate Commerce Committee hearing on HB-570, <strong>Sen. Jay Morris (R)</strong> presses Casey Stefanski on DCA's funding. Stefanski says she "didn't feel comfortable answering." Under sustained questioning, she <strong>admits tech companies fund DCA but refuses to name them</strong>. Names "the founder's father" as largest donor. Confirms DCA is a <strong>501(c)(4)</strong> — donors never disclosed.</div>
|
|
<span class="entity-tag">Casey Stefanski</span><span class="entity-tag">DCA</span><span class="entity-tag">Jay Morris</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="meta-strategy">
|
|
<div class="timeline-dot" style="background:#3fb950;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">~2025-05</div>
|
|
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
|
|
<div class="timeline-title">Meta's Nicole Lopez testifies FOR HB-570</div>
|
|
<div class="timeline-desc"><strong>Nicole Lopez</strong>, Meta's Director of Global Litigation Strategy for Youth, testifies in support of LA HB-570 at Senate Commerce, calling it a "privacy-protective solution." Notably, <strong>Apple and Google filed opposition but sent no representatives</strong>. Meta's trade association <strong>NetChoice opposes</strong> the same bill.</div>
|
|
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">Nicole Lopez</span><span class="entity-tag">Louisiana</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="legislation">
|
|
<div class="timeline-dot" style="background:#58a6ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-06-02</div>
|
|
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
|
|
<div class="timeline-title">LA HB-570 passes Senate 39-0</div>
|
|
<div class="timeline-desc">Unanimous passage. <strong>Not one "NO" vote at any stage.</strong> Conference committee later adopts report 98-0 (House) and 38-0 (Senate).</div>
|
|
<span class="entity-tag">Louisiana</span><span class="entity-tag">HB-570</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="dca">
|
|
<div class="timeline-dot" style="background:#ffa657;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-06-13</div>
|
|
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
|
|
<div class="timeline-title">DCI domain registered</div>
|
|
<div class="timeline-desc"><strong>digitalchildhoodinstitute.org</strong> registered (GoDaddy, Cloudflare). Only <strong>1-year registration</strong> (vs DCA's 4-year), suggesting less funding. Same shared infrastructure: GoDaddy registrar, Cloudflare CDN, Microsoft 365 email, <strong>Elastic Email</strong> marketing platform. DCA registered 6 months before its supposed "research arm."</div>
|
|
<span class="entity-tag">DCI</span><span class="entity-tag">DCA</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="legislation">
|
|
<div class="timeline-dot" style="background:#58a6ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-06-30</div>
|
|
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
|
|
<div class="timeline-title">LA HB-570 signed into law (Act 481)</div>
|
|
<div class="timeline-desc">Governor Jeff Landry signs HB-570 (App Store Accountability Act). Effective July 1, 2026. Defines child/younger teen/older teen/adult age brackets. Requires app stores to verify ages and obtain parental consent. <strong>DCA model legislation succeeds in Louisiana.</strong></div>
|
|
<span class="entity-tag">Louisiana</span><span class="entity-tag">HB-570</span><span class="entity-tag">DCA</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="meta-strategy">
|
|
<div class="timeline-dot" style="background:#3fb950;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-Q2</div>
|
|
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
|
|
<div class="timeline-title">Meta California lobbying: record $518,605 in single quarter</div>
|
|
<div class="timeline-desc">Q2 2025 is the <strong>highest single-quarter California state lobbying spend</strong> in Meta's history. On pace for record annual spend driven by 50+ AI bills in the legislature. Also pays California Chamber of Commerce <span class="money">$3.1 million</span>.</div>
|
|
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">California</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="investigation">
|
|
<div class="timeline-dot" style="background:#f85149;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-07-25</div>
|
|
<div class="timeline-type" style="color:#f85149;">Investigative</div>
|
|
<div class="timeline-title">Bloomberg: "Meta is helping to fund" DCA</div>
|
|
<div class="timeline-desc">Insurance Journal / Bloomberg reports that <strong>Meta is helping to fund the Digital Childhood Alliance</strong>, citing <strong>three people familiar with the funding</strong>. Describes DCA as "a coalition of conservative groups leading efforts to pass app-store age verification." This is the first major investigative confirmation of the Meta→DCA funding link.</div>
|
|
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">DCA</span>
|
|
<br><a href="https://www.insurancejournal.com/news/national/2025/07/25/833246.htm" target="_blank" class="source-link">[Insurance Journal/Bloomberg]</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="meta-strategy">
|
|
<div class="timeline-dot" style="background:#3fb950;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-09</div>
|
|
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
|
|
<div class="timeline-title">Meta launches $65M in super PACs</div>
|
|
<div class="timeline-desc"><strong>ATEP (American Technology Excellence Project):</strong> <span class="money">$45M</span> multi-state PAC. <strong>META California:</strong> <span class="money">$20M</span> state-specific PAC led by Brian Rice (Meta VP of Public Policy). Focus: electing candidates supportive of minimal tech/AI regulation.</div>
|
|
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">ATEP</span><span class="entity-tag">META California PAC</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="meta-strategy">
|
|
<div class="timeline-dot" style="background:#3fb950;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-09-09</div>
|
|
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
|
|
<div class="timeline-title">Meta publicly supports CA AB-1043</div>
|
|
<div class="timeline-desc">Meta endorses AB-1043 (Digital Age Assurance Act), stating it "would centralize age verification within app stores and operating systems, which Meta supports." <strong>Breaks ranks with its own trade associations</strong> (TechNet and Chamber of Progress oppose the bill). Apple remains silent.</div>
|
|
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">California</span><span class="entity-tag">AB-1043</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="dca">
|
|
<div class="timeline-dot" style="background:#ffa657;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-10</div>
|
|
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
|
|
<div class="timeline-title">DCA registers on Idealist; claims 140+ member orgs</div>
|
|
<div class="timeline-desc">Idealist.org profile registered October 2025 with generic DC coordinates (38.907, -77.037). Listed as "hidden/remote" organization. Coalition claims grow from 50+ at launch to 140+, later 170+. <strong>No incorporation record, EIN, or Form 990 found in any public database.</strong></div>
|
|
<span class="entity-tag">DCA</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="legislation">
|
|
<div class="timeline-dot" style="background:#58a6ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-10-13</div>
|
|
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
|
|
<div class="timeline-title">CA AB-1043 signed by Governor Newsom</div>
|
|
<div class="timeline-desc">Digital Age Assurance Act signed. Effective January 1, 2027. Requires OS providers (Apple, Google, Microsoft) to collect user age during device setup and transmit age bracket signals via API. Supported by Meta, Google, Snap, OpenAI, Pinterest. <strong>DCA opposed this version</strong> (preferring app-store-level, not OS-level).</div>
|
|
<span class="entity-tag">California</span><span class="entity-tag">AB-1043</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="dca">
|
|
<div class="timeline-dot" style="background:#ffa657;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-11</div>
|
|
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
|
|
<div class="timeline-title">Digital Childhood Institute receives 501(c)(3) status</div>
|
|
<div class="timeline-desc">DCI (EIN 39-3684798) receives IRS tax-exempt ruling. Incorporated in <strong>Wilmington, DE</strong> (213 N Market St) with operations in Utah. Founded by Melissa McKay. Claims it "does not accept funding from major tech platforms." Filed FTC complaints against Apple and Google.</div>
|
|
<span class="entity-tag">DCI</span><span class="entity-tag">Melissa McKay</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="investigation">
|
|
<div class="timeline-dot" style="background:#f85149;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-12-07</div>
|
|
<div class="timeline-type" style="color:#f85149;">Investigative</div>
|
|
<div class="timeline-title">Deseret News: Meta "quietly funded" DCA</div>
|
|
<div class="timeline-desc">Deseret News investigative reporting calls DCA an <strong>"astroturf operation" where "corporate money creates the illusion of grassroots activism."</strong> Reports that Meta "quietly funded" the Digital Childhood Alliance. This is the second major confirmation of the Meta→DCA funding link.</div>
|
|
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">DCA</span>
|
|
<br><a href="https://www.deseret.com/opinion/2025/12/07/child-safety-bill-backed-by-meta/" target="_blank" class="source-link">[Deseret News]</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="dark-money">
|
|
<div class="timeline-dot" style="background:#f0883e;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025</div>
|
|
<div class="timeline-type" style="color:#f0883e;">Dark Money Infrastructure</div>
|
|
<div class="timeline-title">Arabella Advisors dissolves; rebrands as Sunflower Services</div>
|
|
<div class="timeline-desc">Following years of congressional investigations, Arabella Advisors reportedly dissolves and rebrands as <strong>Sunflower Services</strong>. The four funds (NVF, Sixteen Thirty, Windward, Hopewell) continue operating. Adam Eichberg becomes incoming Board Chair of Sunflower Services.</div>
|
|
<span class="entity-tag">Arabella Advisors</span><span class="entity-tag">Sunflower Services</span><span class="entity-tag">Adam Eichberg</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="lobbying">
|
|
<div class="timeline-dot" style="background:#d2a8ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2025-07 to 2026-01</div>
|
|
<div class="timeline-type" style="color:#d2a8ff;">Lobbying Payment</div>
|
|
<div class="timeline-title">Meta → Headwaters FY 2025-2026: $34,000 (partial)</div>
|
|
<div class="timeline-desc">Ongoing payments at <span class="money">$8,500/month</span>. FY partial total (through Jan 2026): <span class="money">$34,000</span>. <strong>Cumulative all-time Meta → Headwaters total: ~$338,500.</strong></div>
|
|
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">Headwaters Strategies</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ═══════════════ 2026 ═══════════════ -->
|
|
<div class="year-marker"><span>2026</span></div>
|
|
|
|
<div class="timeline-entry" data-cat="legislation">
|
|
<div class="timeline-dot" style="background:#58a6ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2026-02-24</div>
|
|
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
|
|
<div class="timeline-title">CO SB26-051: Age Attestation hearing</div>
|
|
<div class="timeline-desc">Senate Business, Labor & Technology Committee hearing on OS-level age attestation. Sponsors: Sen. Matt Ball (D), Rep. Amy Paschal (D). Kim Osterman testifies about her son Max (died from fentanyl via Snapchat). Amendment adopted, referred 5-0. <strong>Neither DCA nor Headwaters appeared on extracted witness lists.</strong></div>
|
|
<span class="entity-tag">Colorado</span><span class="entity-tag">SB26-051</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="legislation">
|
|
<div class="timeline-dot" style="background:#58a6ff;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2026-03-03</div>
|
|
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
|
|
<div class="timeline-title">CO SB26-051 passes Senate (3rd reading)</div>
|
|
<div class="timeline-desc">Colorado's age attestation bill advances. Requires OS providers to expose age signal API with brackets: under 13, 13-16, 16-18, 18+. Mirrors the approach Meta CEO Zuckerberg has publicly endorsed.</div>
|
|
<span class="entity-tag">Colorado</span><span class="entity-tag">SB26-051</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="investigation">
|
|
<div class="timeline-dot" style="background:#f85149;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2026-03-05</div>
|
|
<div class="timeline-type" style="color:#f85149;">Investigative</div>
|
|
<div class="timeline-title">Kansas Reflector: tech companies vie for influence over ASAA</div>
|
|
<div class="timeline-desc">Reporting on how tech companies compete to shape Kansas app-store age verification legislation, further documenting the DCA/Meta coordination pattern across states. DCA's ASAA model now introduced in <strong>20+ states</strong>.</div>
|
|
<span class="entity-tag">DCA</span><span class="entity-tag">Kansas</span>
|
|
<br><a href="https://kansasreflector.com/2026/03/05/tech-companies-vie-for-influence-over-kansas-app-store-age-verification-legislation/" target="_blank" class="source-link">[Kansas Reflector]</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-entry" data-cat="dca">
|
|
<div class="timeline-dot" style="background:#ffa657;"></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-date">2026-03-12</div>
|
|
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
|
|
<div class="timeline-title">OSINT investigation: no incorporation record found for DCA</div>
|
|
<div class="timeline-desc">Extensive search across OpenCorporates, ProPublica, IRS TEOS, DC DCRA, CO SOS, VA SCC, and Delaware. <strong>No state incorporation record, EIN, or Form 990 found for Digital Childhood Alliance, Inc.</strong> Despite claiming 501(c)(4) status and operating in 20+ state legislatures. All infrastructure is behind privacy shields (GoDaddy, Cloudflare).</div>
|
|
<span class="entity-tag">DCA</span>
|
|
</div>
|
|
</div>
|
|
|
|
</div><!-- end timeline -->
|
|
|
|
<!-- Key Connections Table -->
|
|
<h2>Key Personnel & Entity Connections</h2>
|
|
<table class="conn-table">
|
|
<thead>
|
|
<tr><th>Person</th><th>Role A</th><th>Role B</th><th>Significance</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr><td>Adam Eichberg</td><td>Co-founder, Headwaters Strategies (Meta's CO lobbyist)</td><td>Board Chair, New Venture Fund ($669M/yr)</td><td class="alert-text">Simultaneous corporate lobbying + dark money board leadership</td></tr>
|
|
<tr><td>Adam Eichberg</td><td>Founding Board, Windward Fund ($311M/yr)</td><td>Incoming Chair, Sunflower Services (fka Arabella)</td><td>Deep integration across Arabella network entities</td></tr>
|
|
<tr><td>Eric Kessler</td><td>Founding President: NVF, Sixteen Thirty, Windward, Hopewell</td><td>Founder, Arabella Advisors</td><td>Architect of the entire dark money network</td></tr>
|
|
<tr><td>Casey Stefanski</td><td>Executive Director, DCA</td><td>Former Sr Director, NCOSE (10 years)</td><td>Rapid pivot from anti-exploitation org to Meta-funded advocacy</td></tr>
|
|
<tr><td>Melissa McKay</td><td>Founder, DCA (c)(4)</td><td>Founder/President, DCI (c)(3)</td><td>Controls both advocacy and research arms; father is largest DCA donor</td></tr>
|
|
<tr><td>Larry Magid</td><td>CEO, ConnectSafely</td><td>Member, Meta Safety Advisory Council</td><td>Receives Meta funding while opposing child safety legislation</td></tr>
|
|
<tr><td>Nicole Lopez</td><td>Meta Dir of Global Litigation Strategy - Youth</td><td>Testified FOR LA HB-570</td><td>Meta sends executive to support DCA-promoted legislation</td></tr>
|
|
<tr><td>Koch (lobbyist)</td><td>Registered lobbyist, Louisiana</td><td>Retained by DCA</td><td>DCA had paid Louisiana lobbyist within months of domain registration</td></tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- Financial Flow Summary -->
|
|
<h2>Meta Lobbying Expenditure Summary</h2>
|
|
<table class="conn-table">
|
|
<thead>
|
|
<tr><th>Channel</th><th>Amount</th><th>Period</th><th>Notes</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr><td>Headwaters Strategies (CO)</td><td class="money">$338,500</td><td>2020-2026</td><td>Co-founded by NVF Board Chair Eichberg</td></tr>
|
|
<tr><td>California state lobbying</td><td class="money">$1,036,728</td><td>2025 Q1-Q3</td><td>Record pace; Q2 alone was $518,605</td></tr>
|
|
<tr><td>CA Chamber of Commerce</td><td class="money">$3,100,000</td><td>~2025</td><td>Bulk of Chamber lobbying payments</td></tr>
|
|
<tr><td>Federal lobbying</td><td class="money">$24,430,000</td><td>2024</td><td>24 firms, 87 lobbyists</td></tr>
|
|
<tr><td>Super PACs (ATEP + META CA)</td><td class="money">$65,000,000</td><td>2025</td><td>Electing tech-friendly state candidates</td></tr>
|
|
<tr><td>DCA funding</td><td class="money">Undisclosed</td><td>2024-present</td><td>Confirmed by Bloomberg (3 sources) + Deseret News</td></tr>
|
|
<tr><td>ConnectSafely</td><td class="money">Undisclosed</td><td>2017-present</td><td>Magid on Meta Safety Advisory Council</td></tr>
|
|
<tr><td style="font-weight:700;">KNOWN TOTAL (excl DCA/ConnectSafely)</td><td class="money" style="font-weight:700;">~$93.9M+</td><td>2020-2026</td><td></td></tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- Arabella Network Financials -->
|
|
<h2>Arabella Network Financial Scale (2024)</h2>
|
|
<table class="conn-table">
|
|
<thead>
|
|
<tr><th>Entity</th><th>Type</th><th>Revenue</th><th>Assets</th><th>Grants</th><th>Donors Disclosed?</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr><td>New Venture Fund</td><td>501(c)(3)</td><td class="money">~$669M (2023)</td><td>$768M</td><td>$593M / 1,020 awards</td><td>Schedule B redacted (per law)</td></tr>
|
|
<tr><td>Sixteen Thirty Fund</td><td class="alert-text">501(c)(4)</td><td class="money">$282M</td><td>$107M</td><td>$237M / 318 grants</td><td class="alert-text">NO — c(4) exempt</td></tr>
|
|
<tr><td>Windward Fund</td><td>501(c)(3)</td><td class="money">$311M</td><td>$433M</td><td>N/A</td><td>Schedule B redacted</td></tr>
|
|
<tr><td>Hopewell Fund</td><td>501(c)(3)</td><td class="money">~$114M grants</td><td>$173M</td><td>N/A</td><td>Schedule B redacted</td></tr>
|
|
<tr><td style="font-weight:700;">Combined</td><td></td><td class="money" style="font-weight:700;">~$1.22B+ (2023)</td><td></td><td></td><td></td></tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<p style="margin-top:2rem;color:#484f58;font-size:0.8rem;border-top:1px solid #21262d;padding-top:1rem;">
|
|
Sources: Colorado SOS SODA API (dxfk-9ifj, df5p-p6jt), ProPublica Nonprofit Explorer, IRS Form 990 public disclosures,
|
|
WHOIS/DNS records, Bloomberg/Insurance Journal, Deseret News, The Center Square, Kansas Reflector,
|
|
Colorado General Assembly, Louisiana Legislature (legis.la.gov), California Legislature, OpenSecrets.
|
|
<br>
|
|
Investigation by Hekate Initiative | Compiled 2026-03-12
|
|
</p>
|
|
|
|
<script>
|
|
// Category filter
|
|
function filterTimeline() {
|
|
var cat = document.getElementById('cat-filter').value;
|
|
var entries = document.querySelectorAll('.timeline-entry');
|
|
entries.forEach(function(entry) {
|
|
if (cat === 'all' || entry.getAttribute('data-cat') === cat) {
|
|
entry.classList.remove('dimmed');
|
|
} else {
|
|
entry.classList.add('dimmed');
|
|
}
|
|
});
|
|
}
|
|
|
|
// Legend toggle
|
|
var activeCats = new Set();
|
|
function toggleCat(el) {
|
|
var cat = el.getAttribute('data-cat');
|
|
if (activeCats.has(cat)) {
|
|
activeCats.delete(cat);
|
|
el.classList.remove('inactive');
|
|
} else {
|
|
activeCats.add(cat);
|
|
el.classList.add('inactive');
|
|
}
|
|
var entries = document.querySelectorAll('.timeline-entry');
|
|
if (activeCats.size === 0) {
|
|
entries.forEach(function(e) { e.classList.remove('dimmed'); });
|
|
} else {
|
|
entries.forEach(function(e) {
|
|
if (activeCats.has(e.getAttribute('data-cat'))) {
|
|
e.classList.add('dimmed');
|
|
} else {
|
|
e.classList.remove('dimmed');
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
// Search
|
|
function searchTimeline(query) {
|
|
var entries = document.querySelectorAll('.timeline-entry');
|
|
if (!query || query.length < 2) {
|
|
entries.forEach(function(e) { e.classList.remove('search-miss'); });
|
|
return;
|
|
}
|
|
var q = query.toLowerCase();
|
|
entries.forEach(function(e) {
|
|
var text = e.textContent.toLowerCase();
|
|
if (text.indexOf(q) !== -1) {
|
|
e.classList.remove('search-miss');
|
|
} else {
|
|
e.classList.add('search-miss');
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|