← back to Ad Signals Rolodex
initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)
a23325b244382d8b53fc9fb144074e426c41d012 · 2026-05-06 10:20:07 -0700 · Steve
Files touched
A .gitignoreA build-rolodex.pyA rolodex.html
Diff
commit a23325b244382d8b53fc9fb144074e426c41d012
Author: Steve <steve@designerwallcoverings.com>
Date: Wed May 6 10:20:07 2026 -0700
initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)
---
.gitignore | 25 +++++++
build-rolodex.py | 206 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
rolodex.html | 95 +++++++++++++++++++++++++
3 files changed, 326 insertions(+)
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..9ae81e0
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,25 @@
+node_modules/
+.env
+.env.*
+!.env.example
+tmp/
+*.log
+.DS_Store
+dist/
+build/
+.next/
+.cache/
+.parcel-cache/
+coverage/
+__pycache__/
+*.pyc
+*.pyo
+.venv/
+venv/
+.pytest_cache/
+.ruff_cache/
+.idea/
+.vscode/
+*.swp
+.qodo/
+out/
diff --git a/build-rolodex.py b/build-rolodex.py
new file mode 100644
index 0000000..a89daa1
--- /dev/null
+++ b/build-rolodex.py
@@ -0,0 +1,206 @@
+#!/usr/bin/env python3
+"""Unified ad-signals rolodex — combines all 4 cohorts into one HTML viewer.
+ventura-corridor + lawyer + animals + doctor + lacountyeats. No LLM.
+"""
+import csv, json, os, sys
+from datetime import datetime
+from collections import Counter
+
+ROOT = os.path.expanduser('~/Projects/ad-signals-rolodex')
+os.makedirs(ROOT, exist_ok=True)
+OUT = f'{ROOT}/rolodex.html'
+
+SOURCES = [
+ {
+ 'project': 'ventura-corridor',
+ 'label': 'LA Local Biz',
+ 'color': '#f5b800',
+ 'csv': os.path.expanduser('~/Projects/ventura-corridor/exports/paid-ads-targets-2026-05-05.csv'),
+ 'fields': {
+ 'name': 'name', 'category': 'category', 'city': 'city', 'state': lambda r: 'CA',
+ 'website': 'website', 'paid_pixels': 'paid_pixels', 'tier': 'tier',
+ },
+ },
+ {
+ 'project': 'lawyer',
+ 'label': 'CA Law Firms',
+ 'color': '#ff7070',
+ 'csv': os.path.expanduser('~/Projects/lawyer-directory-builder/exports/lawyer-paid-ads-targets-2026-05-05.csv'),
+ 'fields': {
+ 'name': 'name', 'category': lambda r: 'law firm', 'city': 'city', 'state': 'state',
+ 'website': 'website', 'paid_pixels': 'paid_pixels', 'tier': 'tier',
+ },
+ },
+ {
+ 'project': 'animals',
+ 'label': 'Pet Industry',
+ 'color': '#88dd88',
+ 'csv': os.path.expanduser('~/Projects/animals/exports/animals-paid-ads-targets-2026-05-05.csv'),
+ 'fields': {
+ 'name': 'name', 'category': 'category', 'city': 'city', 'state': 'state',
+ 'website': 'website', 'paid_pixels': 'paid_pixels', 'tier': 'tier',
+ },
+ },
+ {
+ 'project': 'doctor',
+ 'label': 'Healthcare/Wellness',
+ 'color': '#88ccff',
+ 'csv': os.path.expanduser('~/Projects/professional-directory/exports/doctor-paid-ads-targets-2026-05-05.csv'),
+ 'fields': {
+ 'name': 'name', 'category': 'org_type', 'city': 'city', 'state': 'state',
+ 'website': 'website', 'paid_pixels': 'paid_pixels', 'tier': 'tier',
+ },
+ },
+ {
+ 'project': 'lacountyeats',
+ 'label': 'LA Restaurants',
+ 'color': '#ff9966',
+ 'csv': os.path.expanduser('~/Projects/restaurant-directory/exports/lacountyeats-paid-ads-targets-2026-05-05.csv'),
+ 'fields': {
+ 'name': 'name', 'category': lambda r: 'restaurant', 'city': 'city', 'state': 'state',
+ 'website': 'website', 'paid_pixels': 'paid_pixels', 'tier': 'tier',
+ },
+ },
+]
+
+def get_field(row, spec):
+ if callable(spec):
+ return spec(row)
+ return row.get(spec, '') or ''
+
+all_rows = []
+project_counts = {}
+for src in SOURCES:
+ if not os.path.exists(src['csv']):
+ print(f' ! missing: {src["csv"]}', file=sys.stderr)
+ project_counts[src['project']] = 0
+ continue
+ with open(src['csv']) as f:
+ rows = list(csv.DictReader(f))
+ project_counts[src['project']] = len(rows)
+ for r in rows:
+ all_rows.append({
+ 'project': src['project'],
+ 'project_label': src['label'],
+ 'project_color': src['color'],
+ 'name': get_field(r, src['fields']['name']),
+ 'category': get_field(r, src['fields']['category']),
+ 'city': get_field(r, src['fields']['city']),
+ 'state': get_field(r, src['fields']['state']),
+ 'website': get_field(r, src['fields']['website']),
+ 'paid_pixels': int(get_field(r, src['fields']['paid_pixels']) or 0),
+ 'tier': get_field(r, src['fields']['tier']),
+ })
+
+# Sort: TIER1 → TIER2 → TIER3, then by paid_pixels desc
+TIER_RANK = {'TIER1_HEAVY': 1, 'TIER2_MODERATE': 2, 'TIER3_SINGLE': 3, 'VERIFIED_ACTIVE': 0, 'PIXEL_ONLY': 2, 'OTHER_PLATFORM': 3}
+all_rows.sort(key=lambda r: (TIER_RANK.get(r['tier'], 9), -r['paid_pixels'], r['name']))
+
+total = len(all_rows)
+tier_counts = Counter(r['tier'] for r in all_rows)
+top_cities = Counter(r['city'].upper() for r in all_rows if r['city']).most_common(10)
+generated = datetime.now().strftime('%Y-%m-%d %H:%M PT')
+
+stats_html = ''.join([f'<div class="stat" style="border-left:3px solid {s["color"]}"><div class="v">{project_counts.get(s["project"], 0)}</div><div class="l">{s["label"]}</div></div>' for s in SOURCES])
+
+HTML = f"""<!doctype html>
+<html lang="en"><head><meta charset="utf-8">
+<title>Ad-Signals Rolodex — {total} businesses · INTERNAL</title>
+<script>(function(){{const t=localStorage.getItem('theme')||'dark';document.documentElement.setAttribute('data-theme',t);}})();</script>
+<style>
+:root[data-theme="dark"]{{--bg:#0a0a0a;--fg:#e8e8e8;--muted:#888;--accent:#fff;--card:#161616;--border:#2a2a2a;--banner:#3a1a00;--banner-fg:#ffaa44}}
+:root[data-theme="light"]{{--bg:#fafafa;--fg:#1a1a1a;--muted:#666;--accent:#000;--card:#fff;--border:#ddd;--banner:#fff4d6;--banner-fg:#7a4f00}}
+*{{box-sizing:border-box}}body{{margin:0;font-family:system-ui,-apple-system,sans-serif;background:var(--bg);color:var(--fg);font-size:13px;line-height:1.4}}
+.banner{{background:var(--banner);color:var(--banner-fg);padding:10px 20px;font-weight:600;font-size:13px;border-bottom:2px solid var(--banner-fg);display:flex;justify-content:space-between;align-items:center}}
+.hd{{padding:18px 20px;border-bottom:1px solid var(--border);display:flex;justify-content:space-between;align-items:flex-start;gap:20px;flex-wrap:wrap}}
+h1{{margin:0 0 4px;font-size:22px}}.sub{{color:var(--muted);font-size:12px}}
+.theme-tog{{background:none;border:1px solid var(--border);color:var(--fg);padding:6px 12px;border-radius:4px;cursor:pointer}}
+.stats{{padding:14px 20px;display:flex;gap:24px;flex-wrap:wrap;border-bottom:1px solid var(--border);background:var(--card)}}
+.stat{{padding-left:12px}}.stat .v{{font-size:24px;font-weight:600;color:var(--accent)}}.stat .l{{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:0.5px}}
+.controls{{padding:12px 20px;display:flex;gap:12px;align-items:center;flex-wrap:wrap;border-bottom:1px solid var(--border)}}
+.controls input[type=text]{{flex:1;min-width:200px;padding:8px;background:var(--bg);color:var(--fg);border:1px solid var(--border);border-radius:4px}}
+.controls label{{font-size:12px;display:flex;align-items:center;gap:4px;cursor:pointer}}
+table{{width:100%;border-collapse:collapse;font-size:12px}}
+thead th{{text-align:left;padding:8px 10px;background:var(--card);border-bottom:1px solid var(--border);cursor:pointer;position:sticky;top:0;user-select:none}}
+thead th:hover{{color:var(--accent)}}tbody td{{padding:8px 10px;border-bottom:1px solid var(--border)}}tbody tr:hover{{background:var(--card)}}
+.proj-badge{{display:inline-block;padding:2px 8px;border-radius:99px;font-size:10px;font-weight:600;color:#000}}
+.tier-tier1{{display:inline-block;padding:2px 6px;border-radius:3px;font-size:10px;font-weight:600;background:#5a1a1a;color:#ffaaaa}}
+.tier-tier2{{display:inline-block;padding:2px 6px;border-radius:3px;font-size:10px;font-weight:600;background:#5a3d00;color:#ffd180}}
+.tier-tier3{{display:inline-block;padding:2px 6px;border-radius:3px;font-size:10px;font-weight:600;background:#333;color:#aaa}}
+:root[data-theme="light"] .tier-tier1{{background:#ffd6d6;color:#8b0000}}
+:root[data-theme="light"] .tier-tier2{{background:#fff0c2;color:#7a4f00}}
+:root[data-theme="light"] .tier-tier3{{background:#eee;color:#444}}
+a{{color:var(--accent);text-decoration:none}}a:hover{{text-decoration:underline}}
+.compliance{{padding:12px 20px;background:var(--card);border-top:1px solid var(--border);font-size:11px;color:var(--muted);line-height:1.6}}
+</style></head><body>
+<div class="banner">
+ <span>🔒 INTERNAL — Cross-Vertical Sales Rolodex — Not For Public Distribution</span>
+ <span style="font-size:11px;opacity:0.8">{total} businesses across 5 directories · {generated}</span>
+</div>
+<div class="hd">
+ <div><h1>📇 Ad-Signals Rolodex — Cross-Vertical</h1>
+ <div class="sub">{total} CA businesses paying for online customer acquisition · LA local biz, lawyers, pet industry, healthcare/wellness, restaurants</div></div>
+ <button class="theme-tog" onclick="toggleTheme()" id="themeBtn">☀ light</button>
+</div>
+<div class="stats">
+ <div class="stat"><div class="v">{total}</div><div class="l">Total</div></div>
+ {stats_html}
+</div>
+<div class="controls">
+ <input type="text" id="filter" placeholder="Filter by name, category, city, project…" oninput="render()">
+ <label><input type="checkbox" data-proj="ventura-corridor" checked onchange="render()"> LA Local</label>
+ <label><input type="checkbox" data-proj="lawyer" checked onchange="render()"> Lawyers</label>
+ <label><input type="checkbox" data-proj="animals" checked onchange="render()"> Pet Industry</label>
+ <label><input type="checkbox" data-proj="doctor" checked onchange="render()"> Healthcare</label>
+ <label><input type="checkbox" data-proj="lacountyeats" checked onchange="render()"> Restaurants</label>
+ <span style="border-left:1px solid var(--border);padding-left:12px">
+ <label><input type="checkbox" id="t1" checked onchange="render()"> 3+ pixels</label>
+ <label><input type="checkbox" id="t2" checked onchange="render()"> 2 pixels</label>
+ <label><input type="checkbox" id="t3" checked onchange="render()"> 1 pixel</label>
+ </span>
+ <span id="visible-count" style="margin-left:auto;color:var(--muted);font-size:11px"></span>
+</div>
+<div style="overflow-x:auto"><table><thead><tr>
+ <th onclick="sortBy('project_label')">Project</th>
+ <th onclick="sortBy('name')">Business</th>
+ <th onclick="sortBy('category')">Category</th>
+ <th onclick="sortBy('city')">City</th>
+ <th onclick="sortBy('paid_pixels')">Pixels</th>
+ <th onclick="sortBy('tier')">Tier</th>
+ <th>Website</th>
+</tr></thead><tbody id="tbody"></tbody></table></div>
+<div class="compliance">Generated {generated}. Pure tracking-pixel detection on public websites. Not a verified spend list. Internal sales targeting only. Source CSVs: ventura-corridor, lawyer-directory-builder, animals, professional-directory, restaurant-directory.</div>
+<script>
+const DATA = {json.dumps(all_rows)};
+let sortKey='paid_pixels',sortAsc=false;
+function toggleTheme(){{const c=document.documentElement.getAttribute('data-theme');const n=c==='dark'?'light':'dark';document.documentElement.setAttribute('data-theme',n);localStorage.setItem('theme',n);document.getElementById('themeBtn').textContent=n==='dark'?'☀ light':'☾ dark';}}
+document.getElementById('themeBtn').textContent=document.documentElement.getAttribute('data-theme')==='dark'?'☀ light':'☾ dark';
+function sortBy(k){{if(sortKey===k)sortAsc=!sortAsc;else{{sortKey=k;sortAsc=false;}}render();}}
+function eh(s){{return String(s).replace(/[&<>\"']/g,c=>({{'&':'&','<':'<','>':'>','\"':'"',\"'\":'''}})[c]);}}
+function tierClass(t){{if(t.includes('TIER1')||t.includes('VERIFIED'))return 'tier-tier1';if(t.includes('TIER2')||t.includes('PIXEL_ONLY'))return 'tier-tier2';return 'tier-tier3';}}
+function tierBucket(t){{if(t.includes('TIER1')||t.includes('VERIFIED'))return 1;if(t.includes('TIER2')||t.includes('PIXEL_ONLY'))return 2;return 3;}}
+function render(){{
+ const q=document.getElementById('filter').value.toLowerCase();
+ const projs=new Set([...document.querySelectorAll('input[data-proj]:checked')].map(i=>i.dataset.proj));
+ const tierShow={{1:document.getElementById('t1').checked,2:document.getElementById('t2').checked,3:document.getElementById('t3').checked}};
+ const f=DATA.filter(r=>projs.has(r.project)&&tierShow[tierBucket(r.tier)]&&(!q||r.name.toLowerCase().includes(q)||r.category.toLowerCase().includes(q)||r.city.toLowerCase().includes(q)||r.project_label.toLowerCase().includes(q)));
+ f.sort((a,b)=>{{const va=a[sortKey],vb=b[sortKey];let r=(typeof va==='number')?(va-vb):String(va).localeCompare(String(vb));return sortAsc?r:-r;}});
+ document.getElementById('tbody').innerHTML=f.map(r=>`<tr>
+ <td><span class="proj-badge" style="background:${{r.project_color}}">${{eh(r.project_label)}}</span></td>
+ <td><strong>${{eh(r.name)}}</strong></td>
+ <td>${{eh(r.category)}}</td>
+ <td>${{eh(r.city)}}, ${{eh(r.state)}}</td>
+ <td>${{r.paid_pixels}}</td>
+ <td><span class="${{tierClass(r.tier)}}">${{r.tier.replace(/_/g,' ')}}</span></td>
+ <td>${{r.website?`<a href="${{eh(r.website)}}" target="_blank">${{eh(r.website.replace(/^https?:\\/\\//,'').slice(0,40))}}</a>`:''}}</td>
+ </tr>`).join('');
+ document.getElementById('visible-count').textContent=`${{f.length}} of ${{DATA.length}}`;
+}}
+render();
+</script></body></html>"""
+
+with open(OUT, 'w') as f:
+ f.write(HTML)
+
+print(f'Wrote {OUT} · {len(HTML):,} bytes · {total} businesses across {sum(1 for v in project_counts.values() if v > 0)} projects')
+print(f'Counts: {project_counts}')
diff --git a/rolodex.html b/rolodex.html
new file mode 100644
index 0000000..beb167f
--- /dev/null
+++ b/rolodex.html
@@ -0,0 +1,95 @@
+<!doctype html>
+<html lang="en"><head><meta charset="utf-8">
+<title>Ad-Signals Rolodex — 465 businesses · INTERNAL</title>
+<script>(function(){const t=localStorage.getItem('theme')||'dark';document.documentElement.setAttribute('data-theme',t);})();</script>
+<style>
+:root[data-theme="dark"]{--bg:#0a0a0a;--fg:#e8e8e8;--muted:#888;--accent:#fff;--card:#161616;--border:#2a2a2a;--banner:#3a1a00;--banner-fg:#ffaa44}
+:root[data-theme="light"]{--bg:#fafafa;--fg:#1a1a1a;--muted:#666;--accent:#000;--card:#fff;--border:#ddd;--banner:#fff4d6;--banner-fg:#7a4f00}
+*{box-sizing:border-box}body{margin:0;font-family:system-ui,-apple-system,sans-serif;background:var(--bg);color:var(--fg);font-size:13px;line-height:1.4}
+.banner{background:var(--banner);color:var(--banner-fg);padding:10px 20px;font-weight:600;font-size:13px;border-bottom:2px solid var(--banner-fg);display:flex;justify-content:space-between;align-items:center}
+.hd{padding:18px 20px;border-bottom:1px solid var(--border);display:flex;justify-content:space-between;align-items:flex-start;gap:20px;flex-wrap:wrap}
+h1{margin:0 0 4px;font-size:22px}.sub{color:var(--muted);font-size:12px}
+.theme-tog{background:none;border:1px solid var(--border);color:var(--fg);padding:6px 12px;border-radius:4px;cursor:pointer}
+.stats{padding:14px 20px;display:flex;gap:24px;flex-wrap:wrap;border-bottom:1px solid var(--border);background:var(--card)}
+.stat{padding-left:12px}.stat .v{font-size:24px;font-weight:600;color:var(--accent)}.stat .l{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:0.5px}
+.controls{padding:12px 20px;display:flex;gap:12px;align-items:center;flex-wrap:wrap;border-bottom:1px solid var(--border)}
+.controls input[type=text]{flex:1;min-width:200px;padding:8px;background:var(--bg);color:var(--fg);border:1px solid var(--border);border-radius:4px}
+.controls label{font-size:12px;display:flex;align-items:center;gap:4px;cursor:pointer}
+table{width:100%;border-collapse:collapse;font-size:12px}
+thead th{text-align:left;padding:8px 10px;background:var(--card);border-bottom:1px solid var(--border);cursor:pointer;position:sticky;top:0;user-select:none}
+thead th:hover{color:var(--accent)}tbody td{padding:8px 10px;border-bottom:1px solid var(--border)}tbody tr:hover{background:var(--card)}
+.proj-badge{display:inline-block;padding:2px 8px;border-radius:99px;font-size:10px;font-weight:600;color:#000}
+.tier-tier1{display:inline-block;padding:2px 6px;border-radius:3px;font-size:10px;font-weight:600;background:#5a1a1a;color:#ffaaaa}
+.tier-tier2{display:inline-block;padding:2px 6px;border-radius:3px;font-size:10px;font-weight:600;background:#5a3d00;color:#ffd180}
+.tier-tier3{display:inline-block;padding:2px 6px;border-radius:3px;font-size:10px;font-weight:600;background:#333;color:#aaa}
+:root[data-theme="light"] .tier-tier1{background:#ffd6d6;color:#8b0000}
+:root[data-theme="light"] .tier-tier2{background:#fff0c2;color:#7a4f00}
+:root[data-theme="light"] .tier-tier3{background:#eee;color:#444}
+a{color:var(--accent);text-decoration:none}a:hover{text-decoration:underline}
+.compliance{padding:12px 20px;background:var(--card);border-top:1px solid var(--border);font-size:11px;color:var(--muted);line-height:1.6}
+</style></head><body>
+<div class="banner">
+ <span>🔒 INTERNAL — Cross-Vertical Sales Rolodex — Not For Public Distribution</span>
+ <span style="font-size:11px;opacity:0.8">465 businesses across 5 directories · 2026-05-06 05:30 PT</span>
+</div>
+<div class="hd">
+ <div><h1>📇 Ad-Signals Rolodex — Cross-Vertical</h1>
+ <div class="sub">465 CA businesses paying for online customer acquisition · LA local biz, lawyers, pet industry, healthcare/wellness, restaurants</div></div>
+ <button class="theme-tog" onclick="toggleTheme()" id="themeBtn">☀ light</button>
+</div>
+<div class="stats">
+ <div class="stat"><div class="v">465</div><div class="l">Total</div></div>
+ <div class="stat" style="border-left:3px solid #f5b800"><div class="v">122</div><div class="l">LA Local Biz</div></div><div class="stat" style="border-left:3px solid #ff7070"><div class="v">153</div><div class="l">CA Law Firms</div></div><div class="stat" style="border-left:3px solid #88dd88"><div class="v">126</div><div class="l">Pet Industry</div></div><div class="stat" style="border-left:3px solid #88ccff"><div class="v">51</div><div class="l">Healthcare/Wellness</div></div><div class="stat" style="border-left:3px solid #ff9966"><div class="v">13</div><div class="l">LA Restaurants</div></div>
+</div>
+<div class="controls">
+ <input type="text" id="filter" placeholder="Filter by name, category, city, project…" oninput="render()">
+ <label><input type="checkbox" data-proj="ventura-corridor" checked onchange="render()"> LA Local</label>
+ <label><input type="checkbox" data-proj="lawyer" checked onchange="render()"> Lawyers</label>
+ <label><input type="checkbox" data-proj="animals" checked onchange="render()"> Pet Industry</label>
+ <label><input type="checkbox" data-proj="doctor" checked onchange="render()"> Healthcare</label>
+ <label><input type="checkbox" data-proj="lacountyeats" checked onchange="render()"> Restaurants</label>
+ <span style="border-left:1px solid var(--border);padding-left:12px">
+ <label><input type="checkbox" id="t1" checked onchange="render()"> 3+ pixels</label>
+ <label><input type="checkbox" id="t2" checked onchange="render()"> 2 pixels</label>
+ <label><input type="checkbox" id="t3" checked onchange="render()"> 1 pixel</label>
+ </span>
+ <span id="visible-count" style="margin-left:auto;color:var(--muted);font-size:11px"></span>
+</div>
+<div style="overflow-x:auto"><table><thead><tr>
+ <th onclick="sortBy('project_label')">Project</th>
+ <th onclick="sortBy('name')">Business</th>
+ <th onclick="sortBy('category')">Category</th>
+ <th onclick="sortBy('city')">City</th>
+ <th onclick="sortBy('paid_pixels')">Pixels</th>
+ <th onclick="sortBy('tier')">Tier</th>
+ <th>Website</th>
+</tr></thead><tbody id="tbody"></tbody></table></div>
+<div class="compliance">Generated 2026-05-06 05:30 PT. Pure tracking-pixel detection on public websites. Not a verified spend list. Internal sales targeting only. Source CSVs: ventura-corridor, lawyer-directory-builder, animals, professional-directory, restaurant-directory.</div>
+<script>
+const DATA = [{"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "MILLENNIUM DENTAL", "category": "amenity: clinic", "city": "SHERMAN OAKS", "state": "CA", "website": "https://princessdentalstaffing.com", "paid_pixels": 4, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "PaymentCloud", "category": "office: financial advisor", "city": "Encino", "state": "CA", "website": "https://paymentcloudinc.com", "paid_pixels": 4, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "SALON SOPHIA", "category": "amenity: bar", "city": "SHERMAN OAKS", "state": "CA", "website": "https://solasalonstudios.com", "paid_pixels": 4, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "STRETCHLAB ENCINO", "category": "office: company", "city": "ENCINO", "state": "CA", "website": "https://stretchlab.com", "paid_pixels": 4, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "ARTISAN BUILD GROUP", "category": "office: company", "city": "SHERMAN OAKS", "state": "CA", "website": "https://buildzoom.com", "paid_pixels": 3, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "DISCOUNT TIRE & SERVICE CENTERS", "category": "shop: clothes", "city": "STUDIO CITY", "state": "CA", "website": "https://discounttirecenters.com", "paid_pixels": 3, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Lighting Place", "category": "shop: lighting", "city": "Sherman Oaks", "state": "CA", "website": "https://crystalplace.com/", "paid_pixels": 3, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "RELAX THE BACK", "category": "shop: furniture", "city": "STUDIO CITY", "state": "CA", "website": "https://relaxtheback.com", "paid_pixels": 3, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "ALICE A SALVO", "category": "office: lawyer", "city": "WOODLAND HILLS", "state": "CA", "website": "https://salvolaw.com", "paid_pixels": 2, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "EMPOWER WELLNESS SPA", "category": "office: company", "city": "ENCINO", "state": "CA", "website": "https://empowerwellnessspa.com", "paid_pixels": 2, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "EXCEPTIONAL MINDS", "category": "office: company", "city": "SHERMAN OAKS", "state": "CA", "website": "https://exceptional-minds.org", "paid_pixels": 2, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "FIRST OPTION HOSPICE CARE", "category": "shop: car_repair", "city": "TARZANA", "state": "CA", "website": "https://seniorcarefinder.com", "paid_pixels": 2, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "REAL CONSTRUCTION", "category": "office: company", "city": "WOODLAND HILLS", "state": "CA", "website": "https://greenworksconstruction.com", "paid_pixels": 2, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Starbucks", "category": "amenity: cafe", "city": "Encino", "state": "CA", "website": "https://www.starbucks.com/store-locator/store/16036/ventura-louise-17308-ventura-blvd-encino-ca-913163904-us", "paid_pixels": 2, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Starbucks", "category": "amenity: cafe", "city": "Encino", "state": "CA", "website": "https://www.starbucks.com/store-locator/store/15108/ventura-hayvenhurst-16461-a-ventura-blvd-encino-ca-914364370-us", "paid_pixels": 2, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "THE KEBAB SHOP", "category": "office: company", "city": "ENCINO", "state": "CA", "website": "https://thekebabshop.com", "paid_pixels": 2, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "VISTA FORD LINCOLN", "category": "shop: car_repair", "city": "WOODLAND HILLS", "state": "CA", "website": "https://vistaford.com", "paid_pixels": 2, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "ZEVIA", "category": "office: company", "city": "ENCINO", "state": "CA", "website": "https://zevia.com", "paid_pixels": 2, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "$300 DATA RECOVERY", "category": "shop: car_repair", "city": "STUDIO CITY", "state": "CA", "website": "https://300dollardatarecovery.com", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "$300 Data Recovery", "category": "office: company", "city": "Studio City", "state": "CA", "website": "https://www.300dollardatarecovery.com/", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "ALLERGY & IMMUNOLOGY CENTER INC", "category": "amenity: clinic", "city": "ENCINO", "state": "CA", "website": "https://allergyandimmunologycenter.com", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "BARRY'S", "category": "leisure: fitness_centre", "city": "STUDIO CITY", "state": "CA", "website": "https://barrys.com", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "CLEARCHOICE DENTAL IMPLANT CENTER", "category": "amenity: dentist", "city": "ENCINO", "state": "CA", "website": "https://clearchoice.com", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "ELITE SHADES", "category": "office: company", "city": "ENCINO", "state": "CA", "website": "https://socaleliteshades.com", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "FORESIGHT MENTAL HEALTH", "category": "amenity: clinic", "city": "ENCINO", "state": "CA", "website": "https://foresightmentalhealth.com", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "LOGISTIC PARKING INC", "category": "office: company", "city": "STUDIO CITY", "state": "CA", "website": "https://logisticparking.com", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Leading Tax Group", "category": "office: lawyer", "city": "Sherman Oaks", "state": "CA", "website": "https://www.leadingtaxgroup.com/sherman-oaks/", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Leading Tax Group", "category": "office: lawyer", "city": "Encino", "state": "CA", "website": "https://www.leadingtaxgroup.com/encino/", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "ROSENTHAL PSYCHOTHERAPY", "category": "amenity: clinic", "city": "WOODLAND HILLS", "state": "CA", "website": "https://corirosenthal.com", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Studio City Shopping Mall", "category": "shop: mall", "city": "Studio City", "state": "CA", "website": "https://mrdjservices.com/", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "THE MUSCLE WHISPERER", "category": "office: company", "city": "STUDIO CITY", "state": "CA", "website": "https://themusclewhispererinc.com", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "THE TENDER DENTIST", "category": "amenity: clinic", "city": "WOODLAND HILLS", "state": "CA", "website": "https://tenderdentist.com", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "WHOLE FOODS MARKET", "category": "shop: supermarket", "city": "SHERMAN OAKS", "state": "CA", "website": "https://wholefoodsmarket.com", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "WHOLE FOODS MARKET", "category": "shop: supermarket", "city": "WOODLAND HILLS", "state": "CA", "website": "https://wholefoodsmarket.com", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Whole Foods Market", "category": "shop: supermarket", "city": "Sherman Oaks", "state": "CA", "website": "https://www.wholefoodsmarket.com/stores/sherman-oaks", "paid_pixels": 1, "tier": "VERIFIED_ACTIVE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Brentwood", "state": "MO", "website": "https://stores.petco.com/mo/brentwood/pet-supplies-brentwood-mo-1688.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Lees Summit", "state": "MO", "website": "https://stores.petco.com/mo/leessummit/pet-supplies-leessummit-mo-1603.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Independence", "state": "MO", "website": "https://stores.petco.com/mo/independence/pet-supplies-independence-mo-1693.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Florissant", "state": "MO", "website": "https://stores.petco.com/mo/florissant/pet-supplies-florissant-mo-1690.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Saint Joseph", "state": "MO", "website": "https://stores.petco.com/mo/saintjoseph/pet-supplies-saintjoseph-mo-1635.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Springfield", "state": "MO", "website": "https://stores.petco.com/mo/springfield/pet-supplies-springfield-mo-2616.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Nottingham", "state": "MD", "website": "https://stores.petco.com/md/nottingham/pet-supplies-nottingham-md-3813.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Bowie", "state": "MD", "website": "https://stores.petco.com/md/bowie/pet-supplies-bowie-md-3818.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Marinette", "state": "WI", "website": "https://stores.petco.com/wi/marinette/pet-supplies-marinette-wi-2624.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Rosedale", "state": "MD", "website": "https://stores.petco.com/md/baltimore/pet-supplies-baltimore-md-1754.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "North East", "state": "MD", "website": "https://stores.petco.com/md/northeast/pet-supplies-northeast-md-2820.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Westminster", "state": "MD", "website": "https://stores.petco.com/md/westminster/pet-supplies-westminster-md-2867.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Eau Claire", "state": "WI", "website": "https://stores.petco.com/wi/eauclaire/pet-supplies-eauclaire-wi-616.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Denton", "state": "MD", "website": "https://stores.petco.com/md/denton/pet-supplies-denton-md-3802.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Aplton-West", "state": "WI", "website": "https://stores.petco.com/wi/aplton-west/pet-supplies-aplton-west-wi-1661.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "La Plata", "state": "MD", "website": "https://stores.petco.com/md/laplata/pet-supplies-laplata-md-2739.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Burtonsville", "state": "MD", "website": "https://stores.petco.com/md/burtonsville/pet-supplies-burtonsville-md-2871.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Laurel", "state": "MD", "website": "https://stores.petco.com/md/laurel/pet-supplies-laurel-md-3837.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Green Bay", "state": "WI", "website": "https://stores.petco.com/wi/greenbay/pet-supplies-greenbay-wi-1903.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Clinton", "state": "MD", "website": "https://stores.petco.com/md/clinton/pet-supplies-clinton-md-2770.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Wausau", "state": "WI", "website": "https://stores.petco.com/wi/wausau/pet-supplies-wausau-wi-615.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Rockville", "state": "MD", "website": "https://stores.petco.com/md/rockville/pet-supplies-rockville-md-1704.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Bel Air", "state": "MD", "website": "https://stores.petco.com/md/belair/pet-supplies-belair-md-2890.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Delafield", "state": "WI", "website": "https://stores.petco.com/wi/delafield/pet-supplies-delafield-wi-1925.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Lake Geneva", "state": "WI", "website": "https://stores.petco.com/wi/lakegeneva/pet-supplies-lakegeneva-wi-1659.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "West Bend", "state": "WI", "website": "https://stores.petco.com/wi/westbend/pet-supplies-westbend-wi-1664.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Lutherville", "state": "MD", "website": "https://stores.petco.com/md/lutherville/pet-supplies-lutherville-md-940.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Glen Burnie", "state": "MD", "website": "https://stores.petco.com/md/glenburnie/pet-supplies-glenburnie-md-2724.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Sykesville", "state": "MD", "website": "https://stores.petco.com/md/sykesville/pet-supplies-sykesville-md-3808.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Saint Charles", "state": "MO", "website": "https://stores.petco.com/mo/stcharles/pet-supplies-stcharles-mo-1651.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Liberty", "state": "MO", "website": "https://stores.petco.com/mo/liberty/pet-supplies-liberty-mo-2615.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Saint Louis", "state": "MO", "website": "https://stores.petco.com/mo/stlouis/pet-supplies-stlouis-mo-1689.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Grandview", "state": "MO", "website": "https://stores.petco.com/mo/grandview/pet-supplies-grandview-mo-2607.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Oak Creek", "state": "WI", "website": "https://stores.petco.com/wi/oakcreek/pet-supplies-oakcreek-wi-1687.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Kansas City", "state": "MO", "website": "https://stores.petco.com/mo/kansascity/pet-supplies-kansascity-mo-1694.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "St. Francis", "state": "WI", "website": "https://stores.petco.com/wi/st-francis/pet-supplies-st-francis-wi-1698.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Frederick", "state": "MD", "website": "https://stores.petco.com/md/frederick/pet-supplies-frederick-md-2815.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Manitowoc", "state": "WI", "website": "https://stores.petco.com/wi/manitowoc/pet-supplies-manitowoc-wi-1653.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Saint Peters", "state": "MO", "website": "https://stores.petco.com/mo/stcharles/pet-supplies-stcharles-mo-1605.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Osage Beach", "state": "MO", "website": "https://stores.petco.com/mo/osagebeach/pet-supplies-osagebeach-mo-1649.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Washington", "state": "MO", "website": "https://stores.petco.com/mo/washington/pet-supplies-washington-mo-1682.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Belton", "state": "MO", "website": "https://stores.petco.com/mo/belton/pet-supplies-belton-mo-2622.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Branson", "state": "MO", "website": "https://stores.petco.com/mo/branson/pet-supplies-branson-mo-1669.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Mount Pleasant", "state": "WI", "website": "https://stores.petco.com/wi/sturtevant/pet-supplies-sturtevant-wi-885.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Janesville", "state": "WI", "website": "https://stores.petco.com/wi/janesville/pet-supplies-janesville-wi-881.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Columbia", "state": "MD", "website": "https://stores.petco.com/md/columbia/pet-supplies-columbia-md-1762.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Ellicott City", "state": "MD", "website": "https://stores.petco.com/md/ellicottcity/pet-supplies-ellicottcity-md-735.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Baltimore", "state": "MD", "website": "https://stores.petco.com/md/baltimore/pet-supplies-baltimore-md-2819.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Onalaska", "state": "WI", "website": "https://stores.petco.com/wi/onalaska/pet-supplies-onalaska-wi-622.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Parkville", "state": "MD", "website": "https://stores.petco.com/md/parkville/pet-supplies-parkville-md-2887.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Greenfield", "state": "WI", "website": "https://stores.petco.com/wi/greenfield/pet-supplies-greenfield-wi-1929.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Wauwatosa", "state": "WI", "website": "https://stores.petco.com/wi/wauwatosa/pet-supplies-wauwatosa-wi-1697.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Waukesha", "state": "WI", "website": "https://stores.petco.com/wi/waukesha/pet-supplies-waukesha-wi-1686.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Oshkosh", "state": "WI", "website": "https://stores.petco.com/wi/oshkosh/pet-supplies-oshkosh-wi-621.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Petco", "category": "pet_store", "city": "Annapolis", "state": "MD", "website": "https://stores.petco.com/md/annapolis/pet-supplies-annapolis-md-770.html", "paid_pixels": 6, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Beth S Dorris", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://bethdorris.com/", "paid_pixels": 5, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "H G Robert Fong", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://robertfong.com/", "paid_pixels": 5, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Bet Tzedek", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://bettzedek.org/", "paid_pixels": 4, "tier": "TIER1_HEAVY"}, {"project": "lacountyeats", "project_label": "LA Restaurants", "project_color": "#ff9966", "name": "CHICK-FIL-A", "category": "restaurant", "city": "ENCINO", "state": "CA", "website": "https://www.chick-fil-a.com/locations/ca/white-oak-ventura", "paid_pixels": 4, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Dogtopia", "category": "boarding", "city": "Bel Air", "state": "MD", "website": "https://www.dogtopia.com/maryland-belair-north/", "paid_pixels": 4, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Douglas A Shaw", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.douglasshaw.com/", "paid_pixels": 4, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Law Brothers - Injury Attorneys", "category": "law firm", "city": "Beverly Hills", "state": "CA", "website": "https://www.lawbrothers.com/", "paid_pixels": 4, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Lex Machina", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://lexmachina.com/", "paid_pixels": 4, "tier": "TIER1_HEAVY"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Sola Salons", "category": "salon", "city": "Arcadia", "state": "CA", "website": "https://www.solasalonstudios.com/locations/santa-anita-mall", "paid_pixels": 4, "tier": "TIER1_HEAVY"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "The Joint Chiropractic", "category": "tcm_clinic", "city": "Rosemead", "state": "CA", "website": "https://www.thejoint.com/california/rosemead/rosemead-31145", "paid_pixels": 4, "tier": "TIER1_HEAVY"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "The Joint Chiropractic", "category": "tcm_clinic", "city": "Monterey Park", "state": "CA", "website": "https://www.thejoint.com/california/monterey-park/monterey-park-31153", "paid_pixels": 4, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "American Institute of Law", "category": "law firm", "city": "", "state": "CA", "website": "https://www.americaninstitute.edu/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Back to Healthcare Chiropractic", "category": "tcm_clinic", "city": "Torrance", "state": "CA", "website": "https://www.backtohealthcare.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Berger, Michelena & T Huntoon", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.bergermichelena.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Burke Williams & Sorensen Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.burkewilliams.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Chaumont Law Inc", "category": "law firm", "city": "Canoga Park", "state": "CA", "website": "https://chaumontlaw.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Fenwick & West", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.fenwick.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Gianelli & Morris, A Law Corp.", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.gmlawyers.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Jalilvand Law Corporation", "category": "law firm", "city": "Beverly Hills", "state": "CA", "website": "https://www.jlcla.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Judith K Williams", "category": "law firm", "city": "Studio City", "state": "CA", "website": "https://www.judithwilliams.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Keystone Law Group Pc", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.keystone.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Malk Law Firm - Sexual Harassment Lawyers", "category": "law firm", "city": "Beverly Hills", "state": "CA", "website": "https://www.malklawfirm.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Palm Beach Tan", "category": "salon", "city": "Los Angeles", "state": "CA", "website": "https://palmbeachtan.com/locations/CA/Los-Angeles-Wilshire-Boulevard", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Scott A Schiff Apc", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://scottschiff.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Sonage Skincare", "category": "salon", "city": "Woodland Hills", "state": "CA", "website": "https://sonage.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Thompson Animal Medical Clinic", "category": "vet_clinic", "city": "", "state": "WI", "website": "https://www.thompsonamc.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Thompson Animal Medical Clinic", "category": "vet_clinic", "city": "La Crosse", "state": "WI", "website": "https://www.thompsonamc.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Underwood Law Firm, P.C.", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.underwood.law", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "West coast trial lawyers", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://westcoasttriallawyers.com", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Wood Smith Henning & Berman Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.woodsmith.com/", "paid_pixels": 3, "tier": "TIER1_HEAVY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Panera Bread", "category": "amenity: fast food", "city": "Studio City", "state": "CA", "website": "https://locations.panerabread.com/ca/studio-city/12131-ventura-boulevard.html", "paid_pixels": 7, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Panera Bread", "category": "amenity: fast food", "city": "Encino", "state": "CA", "website": "https://locations.panerabread.com/ca/encino/16624-ventura-blvd.html", "paid_pixels": 7, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "KUMON OF STUDIO CITY", "category": "office: company", "city": "STUDIO CITY", "state": "CA", "website": "https://kumon.com", "paid_pixels": 6, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Petco", "category": "shop: pet", "city": "Encino", "state": "CA", "website": "https://stores.petco.com/ca/encino/pet-supplies-encino-ca-519.html", "paid_pixels": 6, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Chick-fil-A", "category": "amenity: fast food", "city": "Encino", "state": "CA", "website": "https://www.chick-fil-a.com/locations/ca/white-oak-ventura", "paid_pixels": 4, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "F45 TRAINING STUDIO CITY", "category": "leisure: fitness_centre", "city": "STUDIO CITY", "state": "CA", "website": "https://f45training.com", "paid_pixels": 4, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "KM BUILDERS", "category": "office: company", "city": "TARZANA", "state": "CA", "website": "https://kmbuildersca.com", "paid_pixels": 4, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "SYLVAN LEARNING OF SHERMAN OAKS & STUDIO CITY", "category": "office: company", "city": "SHERMAN OAKS", "state": "CA", "website": "https://sylvanlearning.com", "paid_pixels": 4, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "HOME PROS BUILDERS INC", "category": "office: company", "city": "WOODLAND HILLS", "state": "CA", "website": "https://homeadvisor.com", "paid_pixels": 3, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "THE SAM SIMON CHARITABLE FOUNDATION", "category": "office: company", "city": "SHERMAN OAKS", "state": "CA", "website": "https://fconline.foundationcenter.org", "paid_pixels": 3, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "World Market", "category": "shop: interior decoration", "city": "Sherman Oaks", "state": "CA", "website": "https://stores.worldmarket.com/ca/sherman-oaks/15201-ventura-blvd.html", "paid_pixels": 3, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "AAA Automobile Club", "category": "office: insurance", "city": "Sherman Oaks", "state": "CA", "website": "https://www.aaa.com/", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Adopthelp Inc", "category": "law firm", "city": "Woodland Hills", "state": "CA", "website": "https://www.adopthelp.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Allen Matkins", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "http://www.allenmatkins.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Allen Matkins Leck Gamble & Mallory Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.allenmatkins.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Animal Care Hospital", "category": "vet_clinic", "city": "", "state": "CA", "website": "https://www.achlompoc.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Animal Hospital-Sun Prairie", "category": "vet_clinic", "city": "", "state": "WI", "website": "http://www.animalhospitalofsunprairie.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Anthony M Solis A Professional Law Corporation", "category": "law firm", "city": "Calabasas", "state": "CA", "website": "https://www.anthonysolis.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Bentley's Pet Stuff", "category": "pet_store", "city": "Milwaukee", "state": "WI", "website": "https://petstuff.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Bentley's Pet Stuff", "category": "pet_store", "city": "O'Fallon", "state": "MO", "website": "https://petstuff.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Best Friends Fur Ever", "category": "boarding", "city": "Joppa", "state": "MD", "website": "https://www.bestfriendsfurever.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Bibiyan Law Group", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.tomorrowlaw.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Blackstone Law", "category": "law firm", "city": "Beverly Hills", "state": "CA", "website": "https://blackstonepc.com", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Blushington", "category": "salon", "city": "West Hollywood", "state": "CA", "website": "https://www.blushington.com/store-locations/west-hollywood/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Brager Tax Law Group", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.bragertaxlaw.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lacountyeats", "project_label": "LA Restaurants", "project_color": "#ff9966", "name": "COURTYARD BY MARRIOTT", "category": "restaurant", "city": "SHERMAN OAKS", "state": "CA", "website": "https://marriott.com", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Camp K9", "category": "boarding", "city": "Madison", "state": "WI", "website": "https://www.campk9madison.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Care Veterinary Center", "category": "vet_clinic", "city": "Frederick", "state": "MD", "website": "http://www.carefrederick.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Churchville Veterinary Clinic", "category": "vet_clinic", "city": "Churchville", "state": "MD", "website": "https://www.churchvillevet.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Cosmetic Rejuvenation Medical Center", "category": "salon", "city": "West Hollywood", "state": "CA", "website": "http://crmclaser.com", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "DISABILITY ADVOCATES GROUP", "category": "office: lawyer", "city": "TARZANA", "state": "CA", "website": "https://ssdisabilityaccess.com", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "David A Shapiro A Professional Corp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.davidshapirolaw.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Dechert Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.dechert.com//", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Downtown Veterinary Clinic", "category": "vet_clinic", "city": "Milwaukee", "state": "WI", "website": "https://milwaukeedowntownvet.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Dylan Keith Salon", "category": "salon", "city": "Burbank", "state": "CA", "website": "https://www.burbanksalon.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Eagle Animal Hospital and Resort", "category": "vet_clinic", "city": "Riverside", "state": "MO", "website": "https://www.eagleanimalhospital.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Eye Candy Medspa and Lash Bar", "category": "salon", "city": "Lakewood", "state": "CA", "website": "https://eyecandymedbeauty.com/lakewood/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Frederick Road Veterinary Hospital", "category": "vet_clinic", "city": "Catonsville", "state": "MD", "website": "https://www.frederickroadvet.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Goodwin Procter Llp", "category": "law firm", "city": "Boston", "state": "CA", "website": "https://www.goodwinlaw.com/en", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Grant/Shenon, Aplc", "category": "law firm", "city": "Sherman Oaks", "state": "CA", "website": "https://grantshenon.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Greenbrier Veterinary Clinic", "category": "vet_clinic", "city": "Bel Air", "state": "MD", "website": "https://www.greenbriervetclinic.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Haffner Law", "category": "office: lawyer", "city": "Sherman Oaks", "state": "CA", "website": "https://www.haffnerlawyers.com/", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Haffner Law", "category": "law firm", "city": "Sherman Oaks", "state": "CA", "website": "https://www.haffnerlawyers.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Huffard Animal Hospital", "category": "vet_clinic", "city": "", "state": "MD", "website": "https://huffardanimalhospital.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Humane Society of Missouri", "category": "shelter", "city": "Saint Louis", "state": "MO", "website": "https://www.hsmo.org/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "James M Leonard", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://jamesleonard.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "KARATE FAMILIES", "category": "leisure: fitness_centre", "city": "TARZANA", "state": "CA", "website": "https://karatefamilies.com", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "KC GLOBAL NETWORK INC", "category": "shop: supermarket", "city": "WOODLAND HILLS", "state": "CA", "website": "https://kcglobalnetwork.com", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Kantor & Kantor Llp", "category": "law firm", "city": "Northridge", "state": "CA", "website": "https://www.kantorlaw.net/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Lakeview Veterinary Clinic", "category": "vet_clinic", "city": "", "state": "WI", "website": "https://www.lakeviewvetclinic.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Law Offices Of Jennie Levin P C", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.levinlegalhelp.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Law Offices of Dunham & Associates", "category": "law firm", "city": "", "state": "CA", "website": "https://www.dunhamlaw.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Law Offices of Scott Warmuth", "category": "law firm", "city": "San Gabriel", "state": "CA", "website": "https://warmuthlaw.com/san-gabriel/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Magisa Law", "category": "law firm", "city": "Montrose", "state": "CA", "website": "https://magisalaw.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Martinian Lawyers, Inc", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.martinianlaw.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Martinian Lawyers, Inc", "category": "law firm", "city": "Van Nuys", "state": "CA", "website": "https://www.martinianlaw.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Mel's Drive In", "category": "amenity: restaurant", "city": "", "state": "CA", "website": "https://melsdrive-in.com/", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Mova Law Group", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.movalegal.com/los-angeles-personal-injury-lawyers/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Natalie Blake", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.natalieblakestudios.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Odyssey Veterinary Care", "category": "vet_clinic", "city": "", "state": "WI", "website": "https://www.odysseyvetcare.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Panish | Shea | Boyle | Ravipudi LLP", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.panish.law/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Paws & Claws Pet Resort", "category": "boarding", "city": "Hudson", "state": "WI", "website": "https://pawsclawsspa.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Perry Hall Animal Hospital", "category": "vet_clinic", "city": "Nottingham", "state": "MD", "website": "https://www.perryhallanimal.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Pet+ER", "category": "vet_clinic", "city": "", "state": "MD", "website": "https://www.pet-er.net/locations/columbia/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Pet+ER", "category": "vet_clinic", "city": "Towson", "state": "MD", "website": "https://www.pet-er.net/locations/towson/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "RED GINGER", "category": "amenity: restaurant", "city": "WOODLAND HILLS", "state": "CA", "website": "https://redgingersushi.com", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "lacountyeats", "project_label": "LA Restaurants", "project_color": "#ff9966", "name": "RED GINGER", "category": "restaurant", "city": "WOODLAND HILLS", "state": "CA", "website": "https://redgingersushi.com", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "ROLLING LIVE STUDIOS", "category": "office: company", "city": "STUDIO CITY", "state": "CA", "website": "https://rollinglivestudios.com", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "ROLLING LIVE STUDIOS LP", "category": "office: company", "city": "STUDIO CITY", "state": "CA", "website": "https://rollinglivestudios.com", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Riverchase Animal Hospital", "category": "vet_clinic", "city": "Coppell", "state": "TX", "website": "https://www.riverchaseanimalhospital.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "SHALIMAR CUISINE OF INDIA INC", "category": "amenity: restaurant", "city": "WOODLAND HILLS", "state": "CA", "website": "https://shalimarcuisineofindia.com", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Shanghai Rose", "category": "amenity: restaurant", "city": "", "state": "CA", "website": "https://shanghairosedimsum.com/", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Small Animal Hospital", "category": "vet_clinic", "city": "", "state": "WI", "website": "http://www.smallanimalhospitalllc.com", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Solov And Teitell, A. P. C.", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://solovteitell.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Spring Harbor Animal Hospital", "category": "vet_clinic", "city": "", "state": "WI", "website": "http://www.springharboranimalhospital.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Swan Creek Veterinary Clinic", "category": "vet_clinic", "city": "Havre de Grace", "state": "MD", "website": "https://www.swancreekvetclinic.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lacountyeats", "project_label": "LA Restaurants", "project_color": "#ff9966", "name": "THE KEBAB SHOP", "category": "restaurant", "city": "ENCINO", "state": "CA", "website": "https://thekebabshop.com", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Tenina Law, Inc", "category": "law firm", "city": "Sherman Oaks", "state": "CA", "website": "https://www.teninalaw.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "The Law Office Of Ann Marie Scott Pc", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://annmarie.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "The Lemon Law Experts", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://lemonlawexperts.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "The Skin Agency", "category": "salon", "city": "Glendale", "state": "CA", "website": "https://www.theskinagency.com", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "The Skin Agency", "category": "salon", "city": "Toluca Lake", "state": "CA", "website": "https://www.theskinagency.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "The Ticket Clinic, A Professional Law Corporation", "category": "law firm", "city": "Studio City", "state": "CA", "website": "https://ticketclinic.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Treats Unleashed", "category": "pet_store", "city": "Saint Peters", "state": "MO", "website": "https://www.treats-unleashed.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "VCA All Creatures Animal Hospital", "category": "vet_clinic", "city": "O'Fallon", "state": "MO", "website": "https://vcahospitals.com/all-creatures", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "VCA Delmarva Animal Hospital", "category": "vet_clinic", "city": "", "state": "MD", "website": "https://www.vcahospitals.com/delmarva", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "VIP PETCARE", "category": "amenity: clinic", "city": "TARZANA", "state": "CA", "website": "https://locations.vippetcare.com", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Victory Tax Lawyers, LLP", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://victorytaxlaw.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "WVRC - Waukesha", "category": "vet_clinic", "city": "Waukesha", "state": "WI", "website": "https://www.wvrcwi.com/locations/waukesha/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Wasteland Studio City", "category": "shop: clothes", "city": "Studio City", "state": "CA", "website": "https://www.shopwasteland.com/locations-1/#/studio-city-1/", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Wentzville Animal Hospital", "category": "vet_clinic", "city": "Wentzville", "state": "MO", "website": "https://lovefamilyvet.com/team/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Wildfire Recovery Attorneys", "category": "law firm", "city": "Pasadena", "state": "CA", "website": "https://www.fireattorneys.com/", "paid_pixels": 2, "tier": "TIER2_MODERATE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "paysley", "category": "office: financial advisor", "city": "Encino", "state": "CA", "website": "https://paysley.com", "paid_pixels": 2, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "AESTHETIC SKIN CARE", "category": "shop: hairdresser", "city": "STUDIO CITY", "state": "CA", "website": "https://askcares.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "AMERICAS HOOD CLEANING SERVICES", "category": "office: company", "city": "TARZANA", "state": "CA", "website": "https://americashoodservices.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "AMPM Appliance Repair", "category": "office: company", "city": "Sherman Oaks", "state": "CA", "website": "http://www.ampmappliancerepair.com/", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "ATTITUDE OPTOMETRY", "category": "amenity: clinic", "city": "STUDIO CITY", "state": "CA", "website": "https://attitudeoptometry.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "BOXER INSURANCE SERVICES", "category": "office: insurance", "city": "ENCINO", "state": "CA", "website": "https://boxerinsurance.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "CARPET SHOWCASE", "category": "shop: furniture", "city": "SHERMAN OAKS", "state": "CA", "website": "https://thecarpetshowcase.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "COMPLETE PACKAGE DRAFTING", "category": "office: company", "city": "WOODLAND HILLS", "state": "CA", "website": "https://cpdrafting.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Dent-All By Dr. Z", "category": "amenity: dentist", "city": "Sherman Oaks", "state": "CA", "website": "http://dentallbydrz.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "EMERALD EYE CENTER INC", "category": "office: company", "city": "ENCINO", "state": "CA", "website": "https://emeraldeyecenterinc.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "FELLOW BARBER", "category": "amenity: bar", "city": "STUDIO CITY", "state": "CA", "website": "https://fellowbarber.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Guitar Center", "category": "shop: musical instrument", "city": "", "state": "CA", "website": "https://stores.guitarcenter.com/Sherman-Oaks?source=4SOSWXXN", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "HOLY SAVER HOSPICE INC", "category": "office: company", "city": "SHERMAN OAKS", "state": "CA", "website": "https://hospicematch.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "HOSPICE CARE INC", "category": "shop: car_repair", "city": "ENCINO", "state": "CA", "website": "https://nationalhospicelocator.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Millennium Dental", "category": "amenity: dentist", "city": "Sherman Oaks", "state": "CA", "website": "http://www.millenniumdental.net/", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Petit Trois", "category": "amenity: restaurant", "city": "", "state": "CA", "website": "https://valley.petittrois.com/", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Phil'z Coffee", "category": "amenity: cafe", "city": "", "state": "CA", "website": "https://philzcoffee.com/locations/56", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "RUSSELL FISCHER", "category": "office: estate_agent", "city": "SHERMAN OAKS", "state": "CA", "website": "https://russellfischercarwash.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "SENIOR HELPERS OF NORTH VALLEY", "category": "office: company", "city": "STUDIO CITY", "state": "CA", "website": "https://seniorhelpers.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "SOUTHERN CALIFORNIA PERMANENTE MEDICAL GROUP", "category": "shop: pharmacy", "city": "WOODLAND HILLS", "state": "CA", "website": "https://southerncalifornia.permanente.org", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Studio City Court Yard Hotel", "category": "tourism: hotel", "city": "Studio City", "state": "CA", "website": "https://www.studiocitycourtyard.com/", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "THE TANGLED THREAD", "category": "shop: clothes", "city": "STUDIO CITY", "state": "CA", "website": "https://shoptangledthread.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "ZOO CULTURE", "category": "leisure: fitness_centre", "city": "ENCINO", "state": "CA", "website": "https://thezooculture.com", "paid_pixels": 1, "tier": "PIXEL_ONLY"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "EL POLLO LOCO", "category": "amenity: restaurant", "city": "WOODLAND HILLS", "state": "CA", "website": "https://restaurants.elpolloloco.com", "paid_pixels": 4, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "ROAD RUNNER SPORTS", "category": "shop: clothes", "city": "STUDIO CITY", "state": "CA", "website": "https://stores.roadrunnersports.com", "paid_pixels": 4, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Kaffe Rouge", "category": "shop: tobacco", "city": "Studio City", "state": "CA", "website": "http://kafferouge.com/", "paid_pixels": 3, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "AAA T.L.C. HEALTH CARE, INC.", "category": "office: company", "city": "ENCINO", "state": "CA", "website": "https://care.com", "paid_pixels": 2, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Baja Fresh", "category": "amenity: fast food", "city": "Sherman Oaks", "state": "CA", "website": "https://www.bajafresh.com/", "paid_pixels": 2, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "CODE NINJAS ENCINO", "category": "office: company", "city": "ENCINO", "state": "CA", "website": "https://codeninjas.com", "paid_pixels": 2, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Motion Picture Association of America", "category": "office: company", "city": "Sherman Oaks", "state": "CA", "website": "https://www.mpaa.org/", "paid_pixels": 2, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "The Coffee Bean & Tea Leaf", "category": "amenity: cafe", "city": "Studio City", "state": "CA", "website": "https://www.coffeebean.com/", "paid_pixels": 2, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "24 HOUR FITNESS", "category": "leisure: fitness_centre", "city": "SHERMAN OAKS", "state": "CA", "website": "https://24hourfitness.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lacountyeats", "project_label": "LA Restaurants", "project_color": "#ff9966", "name": "24 HOUR FITNESS", "category": "restaurant", "city": "SHERMAN OAKS", "state": "CA", "website": "https://24hourfitness.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "360 ORTHODONTICS", "category": "amenity: dentist", "city": "WOODLAND HILLS", "state": "CA", "website": "https://360orthodontics.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "AIRFLOW WIZARDS", "category": "office: company", "city": "ENCINO", "state": "CA", "website": "https://airflowwizards.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "ALIVE Wellness Center", "category": "tcm_clinic", "city": "Agoura Hills", "state": "CA", "website": "https://www.ALIVEWellnessCenter.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Advanced Consulting Inc", "category": "law firm", "city": "Pacific Palisades", "state": "CA", "website": "https://advancedconsulting.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Alan Berg", "category": "law firm", "city": "Sherman Oaks", "state": "CA", "website": "https://alanberg.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Alta View Veterinary Clinic", "category": "vet_clinic", "city": "Greenfield", "state": "WI", "website": "https://altaviewveterinaryclinic.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Alternative Med Center INC.", "category": "tcm_clinic", "city": "North Hollywood", "state": "CA", "website": "https://www.alternativetomeds.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Andrew Charles Kauffman", "category": "law firm", "city": "Redondo Beach", "state": "CA", "website": "https://andrewcharles.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Animal Emergency & Specialty Center of Chattanooga", "category": "vet_clinic", "city": "Chattanooga", "state": "TN", "website": "https://chattanoogaspecialty.vet/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Animal Medical Center", "category": "vet_clinic", "city": "Bel Air", "state": "MD", "website": "https://animalmedicalcenterofbelair.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Arnold & Porter Kaye Scholer Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.arnoldporter.com/en", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Arnold Veterinary Hospital", "category": "vet_clinic", "city": "Arnold", "state": "MD", "website": "https://arnoldvethospital.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lacountyeats", "project_label": "LA Restaurants", "project_color": "#ff9966", "name": "BARRY'S", "category": "restaurant", "city": "STUDIO CITY", "state": "CA", "website": "https://barrys.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "BLOOM FINANCIAL TEAM", "category": "office: accountant", "city": "ENCINO", "state": "CA", "website": "https://bloomfinancialco.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "BRIGHTER HOME", "category": "office: company", "city": "STUDIO CITY", "state": "CA", "website": "https://thebrighterhome.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Ballard Spahr Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.ballardspahr.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Barak Lurie", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://baraklurie.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Beverly Hills Rejuvenation Center", "category": "salon", "city": "Los Angeles", "state": "CA", "website": "https://bhrcenter.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "BluePearl", "category": "vet_clinic", "city": "Oak Creek", "state": "WI", "website": "https://bluepearlvet.com/hospital/oak-creek-wi/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "BluePearl", "category": "vet_clinic", "city": "Appleton", "state": "WI", "website": "http://fvarc.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "BluePearl Pet Hospital", "category": "vet_clinic", "city": "", "state": "MD", "website": "https://bluepearlvet.com/hospital/rockville-md/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Bokaos", "category": "salon", "city": "Pasadena", "state": "CA", "website": "https://bokaos.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Borekas Sephardic Pastries", "category": "amenity: cafe", "city": "Sherman Oaks", "state": "CA", "website": "https://www.bo-re-kas.com/", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Brandon Martinez Salon", "category": "salon", "city": "Hermosa Beach", "state": "CA", "website": "https://btheproduct.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Bremer,Whyte,Brown & O'Meara, Llp", "category": "law firm", "city": "Woodland Hills", "state": "CA", "website": "https://bremerwhyte.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Brenda Higuera at Bolden Beauty Salon", "category": "salon", "city": "Santa Monica", "state": "CA", "website": "https://boldenbeauty.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Brooks Kushman P C", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.brookskushman.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Bubble Cuts", "category": "salon", "city": "Los Angeles", "state": "CA", "website": "https://bubblecuts.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Bubble Cuts: kids salon", "category": "salon", "city": "Montrose", "state": "CA", "website": "https://www.bubblecuts.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "CANDLES BY ARI", "category": "office: company", "city": "STUDIO CITY", "state": "CA", "website": "https://candlesbyari.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "COSMETIC INJECTABLES CENTER", "category": "amenity: clinic", "city": "SHERMAN OAKS", "state": "CA", "website": "https://cosmeticinjectables.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "CTE Aquatics", "category": "pet_store", "city": "Lutherville", "state": "MD", "website": "https://www.cteaquatics.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "California Appellate Project /C", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://californiaappellate.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "California Property Law Group", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "http://www.capropertylawgroup.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Calvert County Animal Shelter", "category": "shelter", "city": "Prince Frederick", "state": "MD", "website": "https://calvertcountyanimalshelter.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Carlos J Castaneda", "category": "law firm", "city": "Downey", "state": "CA", "website": "https://www.castaneda.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Carol House Quick Fix", "category": "vet_clinic", "city": "", "state": "MO", "website": "https://stlspayneuter.org/rolla/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Casa Vega", "category": "amenity: restaurant", "city": "Sherman Oaks", "state": "CA", "website": "https://www.casavega.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Castelblanco Law Group", "category": "law firm", "city": "Studio City", "state": "CA", "website": "https://castelblanco.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Catalina Sea Spa", "category": "salon", "city": "Avalon", "state": "CA", "website": "https://www.catalinaseaspa.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Charles M Miller/Terri Senesac Miller", "category": "law firm", "city": "Studio City", "state": "CA", "website": "https://www.charlesmiller.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "City Dog Vet & Grooming", "category": "vet_clinic", "city": "", "state": "WI", "website": "https://www.gracecoffeewi.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Clarksburg Animal Hospital", "category": "vet_clinic", "city": "Clarksburg", "state": "MD", "website": "https://www.clarksburganimalhospital.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Columbia DogPark", "category": "dog_park", "city": "Columbia", "state": "MD", "website": "https://www.columbiaassociation.org/facilities/columbia-dog-park/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Come Hope Acupuncture Clinic", "category": "acupuncture_clinic", "city": "Arcadia", "state": "CA", "website": "https://comehopeacuclinic.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Complete Health", "category": "tcm_clinic", "city": "Agoura Hills", "state": "CA", "website": "https://completehealthinstitute.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Cosmetic World", "category": "beauty_supply", "city": "Temple City", "state": "CA", "website": "https://www.ecosmeticworld.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Country View Veterinary Service", "category": "vet_clinic", "city": "Oregon", "state": "WI", "website": "https://countryviewvets.com/oregon/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Croydon Pet Hospital", "category": "vet_clinic", "city": "Glen Burnie", "state": "MD", "website": "https://croydonpethospital.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "DCD LAW", "category": "law firm", "city": "San Fernando", "state": "CA", "website": "https://www.dcdlaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "DESIGNER WALLCOVERINGS", "category": "office: company", "city": "SHERMAN OAKS", "state": "CA", "website": "https://designerwallcoverings.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Dane County Humane Society", "category": "shelter", "city": "Madison", "state": "WI", "website": "https://www.giveshelter.org/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Daniel T Pierson", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.compass.com/agents/daniel-pierson/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Dapeer Rosenblit & Litvak Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.drllaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "David D Diamond", "category": "law firm", "city": "Burbank", "state": "CA", "website": "https://www.losangeles-criminalattorney.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "David Payab", "category": "law firm", "city": "Woodland Hills", "state": "CA", "website": "https://www.payablaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Debra S White", "category": "law firm", "city": "Calabasas", "state": "CA", "website": "https://debrawhitelaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Dent-All By Dr. Z", "category": "dental_office", "city": "Sherman Oaks", "state": "CA", "website": "http://dentallbydrz.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Dr. Steven Becker Chiropractor", "category": "tcm_clinic", "city": "Los Angeles", "state": "CA", "website": "https://drstevenbecker.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Duncan Family Law", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://duncanfamilylaw.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Elaine O San Juan", "category": "law firm", "city": "Sherman Oaks", "state": "CA", "website": "https://www.elainesanjuan.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Emergency Animal Hospital of Ellicott City", "category": "vet_clinic", "city": "Ellicott City", "state": "MD", "website": "https://www.eceah.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Erewhon", "category": "shop: grocery", "city": "", "state": "CA", "website": "https://erewhon.com/", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "FOUNDATION LABORATORY", "category": "amenity: clinic", "city": "ENCINO", "state": "CA", "website": "https://foundationlaboratory.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "FOUR PAWS DAY CARE", "category": "amenity: clinic", "city": "STUDIO CITY", "state": "CA", "website": "https://fourpawsdaycare.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Facile", "category": "salon", "city": "Pasadena", "state": "CA", "website": "https://facileskin.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Fazio Cleaners", "category": "shop: dry cleaning", "city": "Sherman Oaks", "state": "CA", "website": "https://www.faziocleaners.com/", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Fish & Richardson", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.fr.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Franklin County Human Society", "category": "shelter", "city": "Union", "state": "MO", "website": "https://fchsmo.org/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Freetown Animal Hospital", "category": "vet_clinic", "city": "Columbia", "state": "MD", "website": "https://www.freetownanimalhospital.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Friedman Law Group Pc", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.friedmanlaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Future Nail and Spa", "category": "salon", "city": "Long Beach", "state": "CA", "website": "https://futurenailsandspalongbeach.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Gentle Doctor Animal Hospital", "category": "vet_clinic", "city": "O'Fallon", "state": "MO", "website": "https://www.gentledranimalhospital.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "George Lopez Gamez", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.georgelopez.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Glenvilah Veterinary Clinic", "category": "vet_clinic", "city": "Potomac", "state": "MD", "website": "https://glenvilahvet.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Glotzer & Leib, LLP", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.socalpersonalinjurylawyer.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Glotzer & Leib, LLP", "category": "law firm", "city": "Beverly Hills", "state": "CA", "website": "https://www.socalpersonalinjurylawyer.com/?utm_source=GMB&utm_medium=site_click&utm_campaign=beverlyhills", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Goodwill", "category": "shop: charity", "city": "Sherman Oaks", "state": "CA", "website": "https://www.goodwillsocal.org/", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Gorman Dental", "category": "dental_office", "city": "Encino", "state": "CA", "website": "https://mgormandental.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Guess;Rifkin Raanan Beverly Hills Cosmetic Dentistry", "category": "dental_office", "city": "Beverly Hills", "state": "CA", "website": "https://www.rifkinraanan.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "HASKELL CLEANERS", "category": "office: company", "city": "ENCINO", "state": "CA", "website": "https://haskellcleaners.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "HKM Employment Attorneys LLP", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://hkm.com/los-angeles", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "HOLLYWOOD RIDES INC", "category": "shop: car_repair", "city": "STUDIO CITY", "state": "CA", "website": "https://thehollywoodrides.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Harbor View Veterinary Hospital", "category": "vet_clinic", "city": "Baltimore", "state": "MD", "website": "https://harborviewvet.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Heavy Handed", "category": "amenity: fast food", "city": "Studio City", "state": "CA", "website": "https://heavyhanded.la/", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Helfend Law Group", "category": "law firm", "city": "Santa Monica", "state": "CA", "website": "https://www.robertmhelfend.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Herbs of Mexico", "category": "tcm_herbalist", "city": "Los Angeles", "state": "CA", "website": "https://herbsofmexico.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "IDW PUBLISHING", "category": "office: company", "city": "SHERMAN OAKS", "state": "CA", "website": "https://idwpublishing.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Irene Ruzin Attorney At Law", "category": "law firm", "city": "Encino", "state": "CA", "website": "https://ireneruzinlaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "JOYEE ACUPUNCTURE & HERBS", "category": "acupuncture_clinic", "city": "SOUTH PASADENA", "state": "CA", "website": "https://joyeeenterpriseinc.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "James C Galloway Jr Apc/Anthony D Seine/Mark A Weinstein", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://gallowaylawpllc.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "James H Mcguire", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://jamesmcguire.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Jolie's Nail", "category": "salon", "city": "Arcadia", "state": "CA", "website": "https://joliesnail.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Julie A Aragon", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://aragonlending.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "KELVIN TOLBERT", "category": "office: company", "city": "ENCINO", "state": "CA", "website": "https://drglennatolbert.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "KJMLAW Partners", "category": "law firm", "city": "Pasadena", "state": "CA", "website": "https://www.kjmlaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Kabateck Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.kbklawyers.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Kalologie | Ventura Blvd", "category": "amenity: clinic", "city": "Studio City", "state": "CA", "website": "https://kalologie.com/our-locations/kalologie-in-studio-city", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Kansas City Campus for Animal Care", "category": "shelter", "city": "Kansas City", "state": "MO", "website": "https://kcpetproject.org", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Kaplan Fox & Kilsheimer Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.kaplanfox.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Kathy Zahedi, DDS & Associates", "category": "dental_office", "city": "Santa Monica", "state": "CA", "website": "https://kathyzahedidds.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Kendall Law", "category": "law firm", "city": "", "state": "CA", "website": "https://www.kendalllaw.net/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Kingsley/Kingsley Apc", "category": "law firm", "city": "Encino", "state": "CA", "website": "https://www.kingsleykingsley.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "LA Beauty Skin Center", "category": "salon", "city": "Pasadena", "state": "CA", "website": "https://labeautyskincenter.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lacountyeats", "project_label": "LA Restaurants", "project_color": "#ff9966", "name": "LINDORA MEDICAL CLINIC", "category": "restaurant", "city": "SHERMAN OAKS", "state": "CA", "website": "https://www.lindora.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "La Consultor\u00eda", "category": "law firm", "city": "San Fernando", "state": "CA", "website": "https://laconsultoria.us/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Lara & Davis Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://laradavis.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Law Office of Raymond Perez", "category": "law firm", "city": "Downey", "state": "CA", "website": "https://bankruptcyservice.org", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Law Offices Of Carpenter & Zuckerman", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.cz.law/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Law Offices Of John C Ye Aplc", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://johnyelaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Law Offices Of Lerner & Weiss, Apc", "category": "law firm", "city": "Woodland Hills", "state": "CA", "website": "https://lernerweisslaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Law Offices of Christopher L Hoglin, PC", "category": "law firm", "city": "San Marino", "state": "CA", "website": "https://www.hoglinlaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Law Offices of Jerry Nicholson", "category": "law firm", "city": "Long Beach", "state": "CA", "website": "https://jnlawoffices.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Law Offices of John C. Ye", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.johnyelaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Law Offices of Lisa Z. Liu", "category": "law firm", "city": "Alhambra", "state": "CA", "website": "https://lisaliu.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Law Offices of Vincent W Davis And Associates", "category": "law firm", "city": "Arcadia", "state": "CA", "website": "https://vincentwdavis.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Leading Tax Group", "category": "law firm", "city": "Marina Del Rey", "state": "CA", "website": "https://www.leadingtaxgroup.com/marina-del-rey/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Leading Tax Group", "category": "law firm", "city": "Beverly Hills", "state": "CA", "website": "https://www.leadingtaxgroup.com/beverly-hills/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Leading Tax Group", "category": "law firm", "city": "Santa Monica", "state": "CA", "website": "https://www.leadingtaxgroup.com/santa-monica/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Leading Tax Group", "category": "law firm", "city": "Sherman Oaks", "state": "CA", "website": "https://www.leadingtaxgroup.com/sherman-oaks/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Leading Tax Group", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.leadingtaxgroup.com/los-angeles/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Leading Tax Group", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.leadingtaxgroup.com/century-city/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Leading Tax Group", "category": "law firm", "city": "Encino", "state": "CA", "website": "https://www.leadingtaxgroup.com/encino/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Leading Tax Group", "category": "law firm", "city": "Pasadena", "state": "CA", "website": "https://www.leadingtaxgroup.com/pasadena/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Legally Name Change.com", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.legallynamechange.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Lindora Medical Clinic", "category": "amenity: clinic", "city": "Sherman Oaks", "state": "CA", "website": "https://www.lindora.com/", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Lisa M Anderson", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.lisaandersonlaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Logunova Beauty Salon", "category": "salon", "city": "Los Angeles", "state": "CA", "website": "https://www.logunova.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Los Angeles Truck Accident Lawyers", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.trucklawyers.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "M Head Spa", "category": "salon", "city": "Rosemead", "state": "CA", "website": "https://mheadspa.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Mahbod Style", "category": "salon", "city": "Los Angeles", "state": "CA", "website": "https://mahbodstyle.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Manu Farrarons", "category": "shop: tattoo", "city": "Studio City", "state": "CA", "website": "https://www.manufarrarons.com/contact-manu-farrarons", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Mark J Henderson A Professional Corporation", "category": "law firm", "city": "Valley Village", "state": "CA", "website": "https://markhenderson.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Marriottsville Animal Hospital", "category": "vet_clinic", "city": "Marriottsville", "state": "MD", "website": "https://marriottsvillevet.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "McLachlan Law, APC", "category": "law firm", "city": "Hermosa Beach", "state": "CA", "website": "https://mclachlan-law.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Mcgee Lerer & Associates Apc", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.mcgeelerer.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Megeredchian Law", "category": "law firm", "city": "", "state": "CA", "website": "https://bestcaraccidentattorney.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Michael D Schulman", "category": "law firm", "city": "Tarzana", "state": "CA", "website": "https://michaelschulman.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Michael H Silvers Alc", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://michaelsilvers.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "MidiCi Neapolitan Pizza", "category": "shop: clothes", "city": "Sherman Oaks", "state": "CA", "website": "https://mymidici.com/stores/california/sherman-oaks/sherman-oaks/", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Morales Law Firm, Car Accident & Personal Injury Attorneys", "category": "law firm", "city": "San Dimas", "state": "CA", "website": "https://my1lawyer.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Ms Kawaii Eyelash", "category": "salon", "city": "San Gabriel", "state": "CA", "website": "https://www.mskawaii.com/sangabriel/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Muddy Creek Animal Hospital", "category": "vet_clinic", "city": "West River", "state": "MD", "website": "https://www.muddycreekanimalhospital.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "NOLAN HEIMANN LLP", "category": "office: lawyer", "city": "ENCINO", "state": "CA", "website": "https://nolanheimann.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Nadrich Accident Injury Lawyers", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://personalinjurylawcal.com/los-angeles/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Nenergy Boost", "category": "tcm_clinic", "city": "Marina Del Rey", "state": "CA", "website": "https://nenergyboost.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "No Leash Needed", "category": "boarding", "city": "Saint Louis", "state": "MO", "website": "https://www.noleashneeded.com/locations/st-louis-city", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Noah's Ark Veterinary & Boarding Resort", "category": "vet_clinic", "city": "Millersville", "state": "MD", "website": "https://noahsarkboardingresort.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Nona Williams", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://nonawilliams.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "North East Animal Hospital", "category": "vet_clinic", "city": "Elkton", "state": "MD", "website": "https://northeastanimalhosp.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Northern Paws Animal Hospita", "category": "vet_clinic", "city": "", "state": "WI", "website": "https://www.northernpawsanimalhospital.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Norton Rose Fulbright Us Llp", "category": "law firm", "city": "Houston", "state": "CA", "website": "https://www.nortonrosefulbright.com/en-us", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lacountyeats", "project_label": "LA Restaurants", "project_color": "#ff9966", "name": "PANERA BREAD", "category": "restaurant", "city": "STUDIO CITY", "state": "CA", "website": "https://locations.panerabread.com/ca/studio-city/12131-ventura-boulevard.html", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lacountyeats", "project_label": "LA Restaurants", "project_color": "#ff9966", "name": "PANERA BREAD", "category": "restaurant", "city": "ENCINO", "state": "CA", "website": "https://locations.panerabread.com/ca/encino/16624-ventura-blvd.html", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lacountyeats", "project_label": "LA Restaurants", "project_color": "#ff9966", "name": "PARIS BAGUETTE", "category": "restaurant", "city": "ENCINO", "state": "CA", "website": "https://parisbaguette.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "PURE STRENGTH", "category": "office: company", "city": "STUDIO CITY", "state": "CA", "website": "https://purestrengthla.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Parr Hill Dog Park", "category": "dog_park", "city": "", "state": "MO", "website": "https://www.joplinmo.org/843/Dog-Park-Information", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Perliss Law Firm", "category": "law firm", "city": "San Gabriel", "state": "CA", "website": "https://www.perlisslaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Pet Nirvana", "category": "pet_store", "city": "Bel Air", "state": "MD", "website": "https://petnirvanabelair.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Pet Resource Center of Kansas City", "category": "vet_clinic", "city": "", "state": "MO", "website": "https://prckc.org", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Pet Wants", "category": "pet_store", "city": "", "state": "MD", "website": "https://www.petwantsrockville.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Phillips Law Firm", "category": "law firm", "city": "El Segundo", "state": "CA", "website": "https://www.justiceforyou.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Quinn Emanuel Urquhart & Sullivan", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "http://www.quinnemanuel.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Quinn Emanuel Urquhart & Sullivan Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.quinnemanuel.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Relax Holistic", "category": "tcm_clinic", "city": "West Hollywood", "state": "CA", "website": "https://www.relaxholistic.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Reptilian Arts", "category": "pet_store", "city": "Cumberland", "state": "MD", "website": "https://reptilianarts.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Rivas Professional Services Inc", "category": "law firm", "city": "Tarzana", "state": "CA", "website": "https://rivasprofessional.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Robert H. Cohen, MD", "category": "salon", "city": "Beverly Hills", "state": "CA", "website": "https://roberthcohenmd.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "SHOWROOM GLAM", "category": "office: company", "city": "ENCINO", "state": "CA", "website": "https://showroomdolls.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "SWEIS, INC.", "category": "shop: hairdresser", "city": "ENCINO", "state": "CA", "website": "https://sweisinc.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Salcido Law", "category": "law firm", "city": "Long Beach", "state": "CA", "website": "https://www.salcidolawfirm.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Salon Republic", "category": "salon", "city": "Santa Monica", "state": "CA", "website": "https://salonrepublic.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Salon Republic", "category": "salon", "city": "Pasadena", "state": "CA", "website": "https://salonrepublic.com/locations/pasadena-ca/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Salon Row", "category": "salon", "city": "Long Beach", "state": "CA", "website": "https://www.salonrow.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Salon Yuriy", "category": "salon", "city": "Pasadena", "state": "CA", "website": "https://salonyuriy.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Sam B/Alfred H Makhanian/Edward Makhanian", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://samalfred.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Sanders Roberts Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://sandersroberts.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Service Employees International Union Local 347 Afl", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://serviceemployees.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Shai Oved", "category": "law firm", "city": "Canoga Park", "state": "CA", "website": "https://www.shaioved.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Sharon Beth Marshall Law Inc", "category": "law firm", "city": "Calabasas", "state": "CA", "website": "https://www.sharonbeth.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Silver Law Offices Inc", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.silverlaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Sport Clips", "category": "salon", "city": "Santa Clarita", "state": "CA", "website": "https://sportclips.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "St. Charles County Pet Adoption Center", "category": "shelter", "city": "Cottleville", "state": "MO", "website": "https://www.sccmo.org/824/Pet-Adoption-Center", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Steven David Ross", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.stevendavid.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Steven R Stein", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://stevenstein.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Stone & Busailah Llp", "category": "law firm", "city": "Pasadena", "state": "CA", "website": "https://stonebusailah.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "THE RED JUMPSUIT APPARATUS", "category": "office: company", "city": "SHERMAN OAKS", "state": "CA", "website": "https://theredjumpsuitapparatus.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Talkov Law", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.talkovlaw.com/los-angeles/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Telleria, Telleria & Levy, LLP", "category": "law firm", "city": "San Gabriel", "state": "CA", "website": "https://www.tellerialevy.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Tendergreens", "category": "amenity: restaurant", "city": "", "state": "CA", "website": "https://www.tendergreens.com/locations/studio-city/", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "The Bankruptcy Law Firm, Pc", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://bankruptcy.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "The Cochran Firm", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://cochranfirm.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "The Document People", "category": "law firm", "city": "Woodland Hills", "state": "CA", "website": "https://documentpeople.net/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "The Fish Factory", "category": "pet_store", "city": "West Allis", "state": "WI", "website": "https://thefishfactoryonline.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "The Johnson Law Firm", "category": "law firm", "city": "Palmdale", "state": "CA", "website": "https://www.avdivorceattorney.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "The L.A. Law Firm - Car Accident & Personal Injury Attorneys", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.thelalawfirm.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "The Law Office of Omid Nosrati", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://nosratilaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "The Law Offices Of Godwin & Rubin", "category": "law firm", "city": "Van Nuys", "state": "CA", "website": "https://godwinrubinlaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "The Lemon Pros", "category": "law firm", "city": "Beverly Hills", "state": "CA", "website": "https://thelemonpros.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "The Trial Law Offices of Bradley I. Kramer M.D., Esq", "category": "law firm", "city": "Beverly Hills", "state": "CA", "website": "https://www.biklaw.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "The Western Center On Law & Poverty Inc", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://westerncenter.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "TheRideApp Attorneys", "category": "law firm", "city": "Agoura Hills", "state": "CA", "website": "https://www.rideapplaw.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Thu Le", "category": "law firm", "city": "Sherman Oaks", "state": "CA", "website": "https://www.thule.com/en-us/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Thumos Health Center, INC.", "category": "tcm_clinic", "city": "West Hollywood", "state": "CA", "website": "https://thumoshealthcenter.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Tqm Law Corp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://tqmcorp.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Trout Creek Veterinary Center", "category": "vet_clinic", "city": "Hobart", "state": "WI", "website": "https://www.troutcreekveterinary.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Venable Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://www.venable.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "Vespa Sherman Oaks", "category": "shop: scooter", "city": "Sherman Oaks", "state": "CA", "website": "https://www.vespaso.com/", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "ventura-corridor", "project_label": "LA Local Biz", "project_color": "#f5b800", "name": "WHIPPLE RUSSELL ARCHITECTS", "category": "office: company", "city": "SHERMAN OAKS", "state": "CA", "website": "https://whipplerussell.com", "paid_pixels": 1, "tier": "OTHER_PLATFORM"}, {"project": "lacountyeats", "project_label": "LA Restaurants", "project_color": "#ff9966", "name": "WHOLE FOODS MARKET", "category": "restaurant", "city": "SHERMAN OAKS", "state": "CA", "website": "https://wholefoodsmarket.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lacountyeats", "project_label": "LA Restaurants", "project_color": "#ff9966", "name": "WHOLE FOODS MARKET", "category": "restaurant", "city": "SHERMAN OAKS", "state": "CA", "website": "https://www.wholefoodsmarket.com/stores/sherman-oaks", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lacountyeats", "project_label": "LA Restaurants", "project_color": "#ff9966", "name": "WHOLE FOODS MARKET", "category": "restaurant", "city": "SHERMAN OAKS", "state": "CA", "website": "https://wholefoodsmarket.com", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "West Los Angeles Chiropractic", "category": "tcm_clinic", "city": "Los Angeles", "state": "CA", "website": "https://westlosangeleschiropractic.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Wild Birds Unlimited", "category": "pet_store", "city": "Rockville", "state": "MD", "website": "https://www.wbu.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "Wing Hop Fung \u6c38\u5408\u8c50", "category": "tcm_herbalist", "city": "Monterey Park", "state": "CA", "website": "https://winghopfung.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Yadidi Law Firm Pc", "category": "law firm", "city": "Encino", "state": "CA", "website": "https://www.yadidi.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Young K Chang", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://youngchangandweber.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "animals", "project_label": "Pet Industry", "project_color": "#88dd88", "name": "Zeeland Farm Services", "category": "vet_clinic", "city": "Beloit", "state": "WI", "website": "https://www.zfsinc.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "lawyer", "project_label": "CA Law Firms", "project_color": "#ff7070", "name": "Zuber Lawler Llp", "category": "law firm", "city": "Los Angeles", "state": "CA", "website": "https://zuberlawler.com/", "paid_pixels": 1, "tier": "TIER3_SINGLE"}, {"project": "doctor", "project_label": "Healthcare/Wellness", "project_color": "#88ccff", "name": "bluemercury", "category": "beauty_supply", "city": "West Hollywood", "state": "CA", "website": "https://bluemercury.com/pages/store-details?store_number=172165", "paid_pixels": 1, "tier": "TIER3_SINGLE"}];
+let sortKey='paid_pixels',sortAsc=false;
+function toggleTheme(){const c=document.documentElement.getAttribute('data-theme');const n=c==='dark'?'light':'dark';document.documentElement.setAttribute('data-theme',n);localStorage.setItem('theme',n);document.getElementById('themeBtn').textContent=n==='dark'?'☀ light':'☾ dark';}
+document.getElementById('themeBtn').textContent=document.documentElement.getAttribute('data-theme')==='dark'?'☀ light':'☾ dark';
+function sortBy(k){if(sortKey===k)sortAsc=!sortAsc;else{sortKey=k;sortAsc=false;}render();}
+function eh(s){return String(s).replace(/[&<>"']/g,c=>({'&':'&','<':'<','>':'>','"':'"',"'":'''})[c]);}
+function tierClass(t){if(t.includes('TIER1')||t.includes('VERIFIED'))return 'tier-tier1';if(t.includes('TIER2')||t.includes('PIXEL_ONLY'))return 'tier-tier2';return 'tier-tier3';}
+function tierBucket(t){if(t.includes('TIER1')||t.includes('VERIFIED'))return 1;if(t.includes('TIER2')||t.includes('PIXEL_ONLY'))return 2;return 3;}
+function render(){
+ const q=document.getElementById('filter').value.toLowerCase();
+ const projs=new Set([...document.querySelectorAll('input[data-proj]:checked')].map(i=>i.dataset.proj));
+ const tierShow={1:document.getElementById('t1').checked,2:document.getElementById('t2').checked,3:document.getElementById('t3').checked};
+ const f=DATA.filter(r=>projs.has(r.project)&&tierShow[tierBucket(r.tier)]&&(!q||r.name.toLowerCase().includes(q)||r.category.toLowerCase().includes(q)||r.city.toLowerCase().includes(q)||r.project_label.toLowerCase().includes(q)));
+ f.sort((a,b)=>{const va=a[sortKey],vb=b[sortKey];let r=(typeof va==='number')?(va-vb):String(va).localeCompare(String(vb));return sortAsc?r:-r;});
+ document.getElementById('tbody').innerHTML=f.map(r=>`<tr>
+ <td><span class="proj-badge" style="background:${r.project_color}">${eh(r.project_label)}</span></td>
+ <td><strong>${eh(r.name)}</strong></td>
+ <td>${eh(r.category)}</td>
+ <td>${eh(r.city)}, ${eh(r.state)}</td>
+ <td>${r.paid_pixels}</td>
+ <td><span class="${tierClass(r.tier)}">${r.tier.replace(/_/g,' ')}</span></td>
+ <td>${r.website?`<a href="${eh(r.website)}" target="_blank">${eh(r.website.replace(/^https?:\/\//,'').slice(0,40))}</a>`:''}</td>
+ </tr>`).join('');
+ document.getElementById('visible-count').textContent=`${f.length} of ${DATA.length}`;
+}
+render();
+</script></body></html>
\ No newline at end of file
(oldest)
·
back to Ad Signals Rolodex
·
snapshot: 1 file(s) changed, ~1 modified a3c0796 →