- 751 versehentlich getrackte Scratch-/Cache-Dateien (.chunk_*, .graphify_*, cache/ast/) aus Git entfernt; graphify-out/.* + graphify-out/cache/ in .gitignore - Getrackt bleibt die echte Memory: graph.json (mit 27 Traceability-Kanten), GRAPH_REPORT.md, graph.html, manifest.json, memory/ (gespeicherte Query-Antworten) - CLAUDE.md: graph-first Workflow geschaerft (Graph nennt Dateien -> gezielt 1-2 lesen statt grep) = der eigentliche Token-Spar-Mechanismus Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
307 lines
436 KiB
HTML
307 lines
436 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>graphify - graphify-out/graph.html</title>
|
|
<script src="https://unpkg.com/vis-network@9.1.6/standalone/umd/vis-network.min.js"
|
|
integrity="sha384-Ux6phic9PEHJ38YtrijhkzyJ8yQlH8i/+buBR8s3mAZOJrP1gwyvAcIYl3GWtpX1"
|
|
crossorigin="anonymous"></script>
|
|
<style>
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; overflow: hidden; }
|
|
#graph { flex: 1; }
|
|
#sidebar { width: 280px; background: #1a1a2e; border-left: 1px solid #2a2a4e; display: flex; flex-direction: column; overflow: hidden; }
|
|
#search-wrap { padding: 12px; border-bottom: 1px solid #2a2a4e; }
|
|
#search { width: 100%; background: #0f0f1a; border: 1px solid #3a3a5e; color: #e0e0e0; padding: 7px 10px; border-radius: 6px; font-size: 13px; outline: none; }
|
|
#search:focus { border-color: #4E79A7; }
|
|
#search-results { max-height: 140px; overflow-y: auto; padding: 4px 12px; border-bottom: 1px solid #2a2a4e; display: none; }
|
|
.search-item { padding: 4px 6px; cursor: pointer; border-radius: 4px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
.search-item:hover { background: #2a2a4e; }
|
|
#info-panel { padding: 14px; border-bottom: 1px solid #2a2a4e; min-height: 140px; }
|
|
#info-panel h3 { font-size: 13px; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
#info-content { font-size: 13px; color: #ccc; line-height: 1.6; }
|
|
#info-content .field { margin-bottom: 5px; }
|
|
#info-content .field b { color: #e0e0e0; }
|
|
#info-content .empty { color: #555; font-style: italic; }
|
|
.neighbor-link { display: block; padding: 2px 6px; margin: 2px 0; border-radius: 3px; cursor: pointer; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-left: 3px solid #333; }
|
|
.neighbor-link:hover { background: #2a2a4e; }
|
|
#neighbors-list { max-height: 160px; overflow-y: auto; margin-top: 4px; }
|
|
#legend-wrap { flex: 1; overflow-y: auto; padding: 12px; }
|
|
#legend-wrap h3 { font-size: 13px; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
.legend-item { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; border-radius: 4px; font-size: 12px; }
|
|
.legend-item:hover { background: #2a2a4e; padding-left: 4px; }
|
|
.legend-item.dimmed { opacity: 0.35; }
|
|
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
|
|
.legend-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.legend-count { color: #666; font-size: 11px; }
|
|
#stats { padding: 10px 14px; border-top: 1px solid #2a2a4e; font-size: 11px; color: #555; }
|
|
#legend-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
|
|
#legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
|
|
#legend-controls label:hover { color: #e0e0e0; }
|
|
.legend-cb, #select-all-cb { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1.5px solid #3a3a5e; border-radius: 3px; background: #0f0f1a; cursor: pointer; position: relative; flex-shrink: 0; }
|
|
.legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
|
|
.legend-cb:checked::after, #select-all-cb:checked::after { content: ''; position: absolute; left: 3.5px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
|
|
#select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
|
|
#select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="graph"></div>
|
|
<div id="sidebar">
|
|
<div id="search-wrap">
|
|
<input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
|
|
<div id="search-results"></div>
|
|
</div>
|
|
<div id="info-panel">
|
|
<h3>Node Info</h3>
|
|
<div id="info-content"><span class="empty">Click a node to inspect it</span></div>
|
|
</div>
|
|
<div id="legend-wrap">
|
|
<h3>Communities</h3>
|
|
<div id="legend-controls">
|
|
<label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
|
|
</div>
|
|
<div id="legend"></div>
|
|
</div>
|
|
<div id="stats">863 nodes · 371 edges · 863 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "708", "label": "Community 708", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 708", "community": 708, "community_name": "Community 708", "source_file": "", "file_type": "", "degree": 0}, {"id": "271", "label": "Community 271", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 271", "community": 271, "community_name": "Community 271", "source_file": "", "file_type": "", "degree": 1}, {"id": "291", "label": "Community 291", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 291", "community": 291, "community_name": "Community 291", "source_file": "", "file_type": "", "degree": 2}, {"id": "767", "label": "Community 767", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 767", "community": 767, "community_name": "Community 767", "source_file": "", "file_type": "", "degree": 0}, {"id": "768", "label": "Community 768", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 768", "community": 768, "community_name": "Community 768", "source_file": "", "file_type": "", "degree": 0}, {"id": "769", "label": "Community 769", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 769", "community": 769, "community_name": "Community 769", "source_file": "", "file_type": "", "degree": 0}, {"id": "628", "label": "Community 628", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 628", "community": 628, "community_name": "Community 628", "source_file": "", "file_type": "", "degree": 0}, {"id": "51", "label": "Community 51", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 51", "community": 51, "community_name": "Community 51", "source_file": "", "file_type": "", "degree": 0}, {"id": "10", "label": "i18n: Pricing Strings", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 19.3, "font": {"size": 12, "color": "#ffffff"}, "title": "i18n: Pricing Strings", "community": 10, "community_name": "i18n: Pricing Strings", "source_file": "", "file_type": "", "degree": 3}, {"id": "770", "label": "Community 770", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 770", "community": 770, "community_name": "Community 770", "source_file": "", "file_type": "", "degree": 0}, {"id": "761", "label": "Community 761", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 761", "community": 761, "community_name": "Community 761", "source_file": "", "file_type": "", "degree": 0}, {"id": "6", "label": "Backend Tests & Auth Routes", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 21.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Backend Tests & Auth Routes", "community": 6, "community_name": "Backend Tests & Auth Routes", "source_file": "", "file_type": "", "degree": 15}, {"id": "4", "label": "Debug & Dev Tools", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 23.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Debug & Dev Tools", "community": 4, "community_name": "Debug & Dev Tools", "source_file": "", "file_type": "", "degree": 20}, {"id": "657", "label": "Community 657", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 657", "community": 657, "community_name": "Community 657", "source_file": "", "file_type": "", "degree": 0}, {"id": "157", "label": "Community 157", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 157", "community": 157, "community_name": "Community 157", "source_file": "", "file_type": "", "degree": 1}, {"id": "384", "label": "Community 384", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 384", "community": 384, "community_name": "Community 384", "source_file": "", "file_type": "", "degree": 1}, {"id": "385", "label": "Community 385", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 385", "community": 385, "community_name": "Community 385", "source_file": "", "file_type": "", "degree": 1}, {"id": "9", "label": "Android DNS Filter (Kotlin)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 20.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Android DNS Filter (Kotlin)", "community": 9, "community_name": "Android DNS Filter (Kotlin)", "source_file": "", "file_type": "", "degree": 20}, {"id": "39", "label": "Community 39", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 39", "community": 39, "community_name": "Community 39", "source_file": "", "file_type": "", "degree": 8}, {"id": "629", "label": "Community 629", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 629", "community": 629, "community_name": "Community 629", "source_file": "", "file_type": "", "degree": 0}, {"id": "48", "label": "Community 48", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 48", "community": 48, "community_name": "Community 48", "source_file": "", "file_type": "", "degree": 6}, {"id": "32", "label": "Community 32", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 32", "community": 32, "community_name": "Community 32", "source_file": "", "file_type": "", "degree": 8}, {"id": "80", "label": "Community 80", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 80", "community": 80, "community_name": "Community 80", "source_file": "", "file_type": "", "degree": 6}, {"id": "771", "label": "Community 771", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 771", "community": 771, "community_name": "Community 771", "source_file": "", "file_type": "", "degree": 0}, {"id": "752", "label": "Community 752", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 752", "community": 752, "community_name": "Community 752", "source_file": "", "file_type": "", "degree": 0}, {"id": "79", "label": "Community 79", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 79", "community": 79, "community_name": "Community 79", "source_file": "", "file_type": "", "degree": 8}, {"id": "112", "label": "Community 112", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 112", "community": 112, "community_name": "Community 112", "source_file": "", "file_type": "", "degree": 2}, {"id": "34", "label": "Community 34", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 34", "community": 34, "community_name": "Community 34", "source_file": "", "file_type": "", "degree": 7}, {"id": "700", "label": "Community 700", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 700", "community": 700, "community_name": "Community 700", "source_file": "", "file_type": "", "degree": 0}, {"id": "276", "label": "Community 276", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 276", "community": 276, "community_name": "Community 276", "source_file": "", "file_type": "", "degree": 4}, {"id": "68", "label": "Community 68", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 68", "community": 68, "community_name": "Community 68", "source_file": "", "file_type": "", "degree": 2}, {"id": "62", "label": "Community 62", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 62", "community": 62, "community_name": "Community 62", "source_file": "", "file_type": "", "degree": 5}, {"id": "277", "label": "Community 277", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 277", "community": 277, "community_name": "Community 277", "source_file": "", "file_type": "", "degree": 3}, {"id": "269", "label": "Community 269", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 269", "community": 269, "community_name": "Community 269", "source_file": "", "file_type": "", "degree": 3}, {"id": "181", "label": "Community 181", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 181", "community": 181, "community_name": "Community 181", "source_file": "", "file_type": "", "degree": 7}, {"id": "47", "label": "Community 47", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 47", "community": 47, "community_name": "Community 47", "source_file": "", "file_type": "", "degree": 13}, {"id": "772", "label": "Community 772", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 772", "community": 772, "community_name": "Community 772", "source_file": "", "file_type": "", "degree": 0}, {"id": "773", "label": "Community 773", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 773", "community": 773, "community_name": "Community 773", "source_file": "", "file_type": "", "degree": 0}, {"id": "774", "label": "Community 774", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 774", "community": 774, "community_name": "Community 774", "source_file": "", "file_type": "", "degree": 0}, {"id": "775", "label": "Community 775", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 775", "community": 775, "community_name": "Community 775", "source_file": "", "file_type": "", "degree": 0}, {"id": "751", "label": "Community 751", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 751", "community": 751, "community_name": "Community 751", "source_file": "", "file_type": "", "degree": 0}, {"id": "776", "label": "Community 776", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 776", "community": 776, "community_name": "Community 776", "source_file": "", "file_type": "", "degree": 0}, {"id": "683", "label": "Community 683", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 683", "community": 683, "community_name": "Community 683", "source_file": "", "file_type": "", "degree": 0}, {"id": "5", "label": "Backend API Routes", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 22.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Backend API Routes", "community": 5, "community_name": "Backend API Routes", "source_file": "", "file_type": "", "degree": 9}, {"id": "413", "label": "Community 413", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 413", "community": 413, "community_name": "Community 413", "source_file": "", "file_type": "", "degree": 6}, {"id": "777", "label": "Community 777", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 777", "community": 777, "community_name": "Community 777", "source_file": "", "file_type": "", "degree": 0}, {"id": "778", "label": "Community 778", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 778", "community": 778, "community_name": "Community 778", "source_file": "", "file_type": "", "degree": 0}, {"id": "448", "label": "Community 448", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 448", "community": 448, "community_name": "Community 448", "source_file": "", "file_type": "", "degree": 1}, {"id": "779", "label": "Community 779", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 779", "community": 779, "community_name": "Community 779", "source_file": "", "file_type": "", "degree": 0}, {"id": "424", "label": "Community 424", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 424", "community": 424, "community_name": "Community 424", "source_file": "", "file_type": "", "degree": 0}, {"id": "436", "label": "Community 436", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 436", "community": 436, "community_name": "Community 436", "source_file": "", "file_type": "", "degree": 0}, {"id": "613", "label": "Community 613", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 613", "community": 613, "community_name": "Community 613", "source_file": "", "file_type": "", "degree": 0}, {"id": "692", "label": "Community 692", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 692", "community": 692, "community_name": "Community 692", "source_file": "", "file_type": "", "degree": 0}, {"id": "703", "label": "Community 703", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 703", "community": 703, "community_name": "Community 703", "source_file": "", "file_type": "", "degree": 0}, {"id": "780", "label": "Community 780", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 780", "community": 780, "community_name": "Community 780", "source_file": "", "file_type": "", "degree": 0}, {"id": "46", "label": "Community 46", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 46", "community": 46, "community_name": "Community 46", "source_file": "", "file_type": "", "degree": 0}, {"id": "685", "label": "Community 685", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 685", "community": 685, "community_name": "Community 685", "source_file": "", "file_type": "", "degree": 0}, {"id": "655", "label": "Community 655", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 655", "community": 655, "community_name": "Community 655", "source_file": "", "file_type": "", "degree": 0}, {"id": "656", "label": "Community 656", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 656", "community": 656, "community_name": "Community 656", "source_file": "", "file_type": "", "degree": 0}, {"id": "691", "label": "Community 691", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 691", "community": 691, "community_name": "Community 691", "source_file": "", "file_type": "", "degree": 0}, {"id": "663", "label": "Community 663", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 663", "community": 663, "community_name": "Community 663", "source_file": "", "file_type": "", "degree": 0}, {"id": "662", "label": "Community 662", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 662", "community": 662, "community_name": "Community 662", "source_file": "", "file_type": "", "degree": 0}, {"id": "664", "label": "Community 664", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 664", "community": 664, "community_name": "Community 664", "source_file": "", "file_type": "", "degree": 0}, {"id": "264", "label": "Community 264", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 264", "community": 264, "community_name": "Community 264", "source_file": "", "file_type": "", "degree": 1}, {"id": "412", "label": "Community 412", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 412", "community": 412, "community_name": "Community 412", "source_file": "", "file_type": "", "degree": 0}, {"id": "416", "label": "Community 416", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 416", "community": 416, "community_name": "Community 416", "source_file": "", "file_type": "", "degree": 6}, {"id": "606", "label": "Community 606", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 606", "community": 606, "community_name": "Community 606", "source_file": "", "file_type": "", "degree": 3}, {"id": "266", "label": "Community 266", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 266", "community": 266, "community_name": "Community 266", "source_file": "", "file_type": "", "degree": 6}, {"id": "765", "label": "Community 765", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 765", "community": 765, "community_name": "Community 765", "source_file": "", "file_type": "", "degree": 0}, {"id": "705", "label": "Community 705", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 705", "community": 705, "community_name": "Community 705", "source_file": "", "file_type": "", "degree": 0}, {"id": "259", "label": "Community 259", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 259", "community": 259, "community_name": "Community 259", "source_file": "", "file_type": "", "degree": 9}, {"id": "569", "label": "Community 569", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 569", "community": 569, "community_name": "Community 569", "source_file": "", "file_type": "", "degree": 0}, {"id": "265", "label": "Community 265", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 265", "community": 265, "community_name": "Community 265", "source_file": "", "file_type": "", "degree": 2}, {"id": "571", "label": "Community 571", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 571", "community": 571, "community_name": "Community 571", "source_file": "", "file_type": "", "degree": 7}, {"id": "570", "label": "Community 570", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 570", "community": 570, "community_name": "Community 570", "source_file": "", "file_type": "", "degree": 1}, {"id": "450", "label": "Community 450", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 450", "community": 450, "community_name": "Community 450", "source_file": "", "file_type": "", "degree": 3}, {"id": "427", "label": "Community 427", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 427", "community": 427, "community_name": "Community 427", "source_file": "", "file_type": "", "degree": 2}, {"id": "781", "label": "Community 781", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 781", "community": 781, "community_name": "Community 781", "source_file": "", "file_type": "", "degree": 0}, {"id": "614", "label": "Community 614", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 614", "community": 614, "community_name": "Community 614", "source_file": "", "file_type": "", "degree": 0}, {"id": "415", "label": "Community 415", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 415", "community": 415, "community_name": "Community 415", "source_file": "", "file_type": "", "degree": 4}, {"id": "616", "label": "Community 616", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 616", "community": 616, "community_name": "Community 616", "source_file": "", "file_type": "", "degree": 2}, {"id": "618", "label": "Community 618", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 618", "community": 618, "community_name": "Community 618", "source_file": "", "file_type": "", "degree": 0}, {"id": "435", "label": "Community 435", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 435", "community": 435, "community_name": "Community 435", "source_file": "", "file_type": "", "degree": 13}, {"id": "658", "label": "Community 658", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 658", "community": 658, "community_name": "Community 658", "source_file": "", "file_type": "", "degree": 0}, {"id": "688", "label": "Community 688", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 688", "community": 688, "community_name": "Community 688", "source_file": "", "file_type": "", "degree": 0}, {"id": "766", "label": "Community 766", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 766", "community": 766, "community_name": "Community 766", "source_file": "", "file_type": "", "degree": 0}, {"id": "572", "label": "Community 572", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 572", "community": 572, "community_name": "Community 572", "source_file": "", "file_type": "", "degree": 0}, {"id": "764", "label": "Community 764", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 764", "community": 764, "community_name": "Community 764", "source_file": "", "file_type": "", "degree": 0}, {"id": "782", "label": "Community 782", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 782", "community": 782, "community_name": "Community 782", "source_file": "", "file_type": "", "degree": 0}, {"id": "747", "label": "Community 747", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 747", "community": 747, "community_name": "Community 747", "source_file": "", "file_type": "", "degree": 0}, {"id": "783", "label": "Community 783", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 783", "community": 783, "community_name": "Community 783", "source_file": "", "file_type": "", "degree": 0}, {"id": "182", "label": "Community 182", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 182", "community": 182, "community_name": "Community 182", "source_file": "", "file_type": "", "degree": 0}, {"id": "94", "label": "Community 94", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 94", "community": 94, "community_name": "Community 94", "source_file": "", "file_type": "", "degree": 0}, {"id": "784", "label": "Community 784", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 784", "community": 784, "community_name": "Community 784", "source_file": "", "file_type": "", "degree": 0}, {"id": "433", "label": "Community 433", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 433", "community": 433, "community_name": "Community 433", "source_file": "", "file_type": "", "degree": 2}, {"id": "785", "label": "Community 785", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 785", "community": 785, "community_name": "Community 785", "source_file": "", "file_type": "", "degree": 0}, {"id": "26", "label": "Community 26", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 26", "community": 26, "community_name": "Community 26", "source_file": "", "file_type": "", "degree": 1}, {"id": "451", "label": "Community 451", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 451", "community": 451, "community_name": "Community 451", "source_file": "", "file_type": "", "degree": 2}, {"id": "423", "label": "Community 423", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 423", "community": 423, "community_name": "Community 423", "source_file": "", "file_type": "", "degree": 0}, {"id": "63", "label": "Community 63", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 63", "community": 63, "community_name": "Community 63", "source_file": "", "file_type": "", "degree": 1}, {"id": "697", "label": "Community 697", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 697", "community": 697, "community_name": "Community 697", "source_file": "", "file_type": "", "degree": 0}, {"id": "786", "label": "Community 786", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 786", "community": 786, "community_name": "Community 786", "source_file": "", "file_type": "", "degree": 0}, {"id": "787", "label": "Community 787", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 787", "community": 787, "community_name": "Community 787", "source_file": "", "file_type": "", "degree": 0}, {"id": "18", "label": "Community 18", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 18", "community": 18, "community_name": "Community 18", "source_file": "", "file_type": "", "degree": 28}, {"id": "441", "label": "Community 441", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 441", "community": 441, "community_name": "Community 441", "source_file": "", "file_type": "", "degree": 2}, {"id": "24", "label": "Community 24", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 24", "community": 24, "community_name": "Community 24", "source_file": "", "file_type": "", "degree": 6}, {"id": "49", "label": "Community 49", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 49", "community": 49, "community_name": "Community 49", "source_file": "", "file_type": "", "degree": 7}, {"id": "29", "label": "Community 29", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 16.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 29", "community": 29, "community_name": "Community 29", "source_file": "", "file_type": "", "degree": 16}, {"id": "69", "label": "Community 69", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 69", "community": 69, "community_name": "Community 69", "source_file": "", "file_type": "", "degree": 5}, {"id": "426", "label": "Community 426", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 426", "community": 426, "community_name": "Community 426", "source_file": "", "file_type": "", "degree": 7}, {"id": "7", "label": "Consent & Magic API Routes", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 20.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Consent & Magic API Routes", "community": 7, "community_name": "Consent & Magic API Routes", "source_file": "", "file_type": "", "degree": 16}, {"id": "1", "label": "i18n: Blocker/Activation Strings", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 35.2, "font": {"size": 12, "color": "#ffffff"}, "title": "i18n: Blocker/Activation Strings", "community": 1, "community_name": "i18n: Blocker/Activation Strings", "source_file": "", "file_type": "", "degree": 8}, {"id": "22", "label": "Community 22", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 22", "community": 22, "community_name": "Community 22", "source_file": "", "file_type": "", "degree": 13}, {"id": "35", "label": "Community 35", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 35", "community": 35, "community_name": "Community 35", "source_file": "", "file_type": "", "degree": 6}, {"id": "442", "label": "Community 442", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 442", "community": 442, "community_name": "Community 442", "source_file": "", "file_type": "", "degree": 1}, {"id": "19", "label": "Community 19", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 18.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 19", "community": 19, "community_name": "Community 19", "source_file": "", "file_type": "", "degree": 2}, {"id": "45", "label": "Community 45", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 45", "community": 45, "community_name": "Community 45", "source_file": "", "file_type": "", "degree": 4}, {"id": "432", "label": "Community 432", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 432", "community": 432, "community_name": "Community 432", "source_file": "", "file_type": "", "degree": 3}, {"id": "0", "label": "i18n: Blocker/Activation Strings", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "i18n: Blocker/Activation Strings", "community": 0, "community_name": "i18n: Blocker/Activation Strings", "source_file": "", "file_type": "", "degree": 3}, {"id": "43", "label": "Community 43", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 43", "community": 43, "community_name": "Community 43", "source_file": "", "file_type": "", "degree": 6}, {"id": "130", "label": "Community 130", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 130", "community": 130, "community_name": "Community 130", "source_file": "", "file_type": "", "degree": 3}, {"id": "25", "label": "Community 25", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 25", "community": 25, "community_name": "Community 25", "source_file": "", "file_type": "", "degree": 2}, {"id": "40", "label": "Community 40", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 40", "community": 40, "community_name": "Community 40", "source_file": "", "file_type": "", "degree": 7}, {"id": "604", "label": "Community 604", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 604", "community": 604, "community_name": "Community 604", "source_file": "", "file_type": "", "degree": 4}, {"id": "3", "label": "i18n: Blocker/Activation Strings", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 30.9, "font": {"size": 12, "color": "#ffffff"}, "title": "i18n: Blocker/Activation Strings", "community": 3, "community_name": "i18n: Blocker/Activation Strings", "source_file": "", "file_type": "", "degree": 3}, {"id": "83", "label": "Community 83", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 83", "community": 83, "community_name": "Community 83", "source_file": "", "file_type": "", "degree": 2}, {"id": "71", "label": "Community 71", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 71", "community": 71, "community_name": "Community 71", "source_file": "", "file_type": "", "degree": 1}, {"id": "28", "label": "Community 28", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 28", "community": 28, "community_name": "Community 28", "source_file": "", "file_type": "", "degree": 5}, {"id": "23", "label": "Community 23", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 23", "community": 23, "community_name": "Community 23", "source_file": "", "file_type": "", "degree": 2}, {"id": "41", "label": "Community 41", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 41", "community": 41, "community_name": "Community 41", "source_file": "", "file_type": "", "degree": 6}, {"id": "602", "label": "Community 602", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 602", "community": 602, "community_name": "Community 602", "source_file": "", "file_type": "", "degree": 3}, {"id": "2", "label": "i18n: Blocker/Activation Strings", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 31.1, "font": {"size": 12, "color": "#ffffff"}, "title": "i18n: Blocker/Activation Strings", "community": 2, "community_name": "i18n: Blocker/Activation Strings", "source_file": "", "file_type": "", "degree": 3}, {"id": "82", "label": "Community 82", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 82", "community": 82, "community_name": "Community 82", "source_file": "", "file_type": "", "degree": 1}, {"id": "55", "label": "Community 55", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 55", "community": 55, "community_name": "Community 55", "source_file": "", "file_type": "", "degree": 1}, {"id": "422", "label": "Community 422", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 422", "community": 422, "community_name": "Community 422", "source_file": "", "file_type": "", "degree": 1}, {"id": "17", "label": "App Root Layout & Shell", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 18.8, "font": {"size": 12, "color": "#ffffff"}, "title": "App Root Layout & Shell", "community": 17, "community_name": "App Root Layout & Shell", "source_file": "", "file_type": "", "degree": 9}, {"id": "8", "label": "i18n: Pricing Strings", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 20.5, "font": {"size": 12, "color": "#ffffff"}, "title": "i18n: Pricing Strings", "community": 8, "community_name": "i18n: Pricing Strings", "source_file": "", "file_type": "", "degree": 21}, {"id": "20", "label": "Community 20", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 20", "community": 20, "community_name": "Community 20", "source_file": "", "file_type": "", "degree": 17}, {"id": "286", "label": "Community 286", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 286", "community": 286, "community_name": "Community 286", "source_file": "", "file_type": "", "degree": 10}, {"id": "21", "label": "Community 21", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 21", "community": 21, "community_name": "Community 21", "source_file": "", "file_type": "", "degree": 10}, {"id": "53", "label": "Community 53", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 53", "community": 53, "community_name": "Community 53", "source_file": "", "file_type": "", "degree": 7}, {"id": "27", "label": "Community 27", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 27", "community": 27, "community_name": "Community 27", "source_file": "", "file_type": "", "degree": 11}, {"id": "746", "label": "Community 746", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 746", "community": 746, "community_name": "Community 746", "source_file": "", "file_type": "", "degree": 0}, {"id": "428", "label": "Community 428", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 428", "community": 428, "community_name": "Community 428", "source_file": "", "file_type": "", "degree": 1}, {"id": "690", "label": "Community 690", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 690", "community": 690, "community_name": "Community 690", "source_file": "", "file_type": "", "degree": 1}, {"id": "660", "label": "Community 660", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 660", "community": 660, "community_name": "Community 660", "source_file": "", "file_type": "", "degree": 1}, {"id": "659", "label": "Community 659", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 659", "community": 659, "community_name": "Community 659", "source_file": "", "file_type": "", "degree": 1}, {"id": "757", "label": "Community 757", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 757", "community": 757, "community_name": "Community 757", "source_file": "", "file_type": "", "degree": 0}, {"id": "748", "label": "Community 748", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 748", "community": 748, "community_name": "Community 748", "source_file": "", "file_type": "", "degree": 0}, {"id": "392", "label": "Community 392", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 392", "community": 392, "community_name": "Community 392", "source_file": "", "file_type": "", "degree": 1}, {"id": "285", "label": "Community 285", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 285", "community": 285, "community_name": "Community 285", "source_file": "", "file_type": "", "degree": 5}, {"id": "597", "label": "Community 597", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 597", "community": 597, "community_name": "Community 597", "source_file": "", "file_type": "", "degree": 0}, {"id": "267", "label": "Community 267", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 267", "community": 267, "community_name": "Community 267", "source_file": "", "file_type": "", "degree": 0}, {"id": "33", "label": "Community 33", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 33", "community": 33, "community_name": "Community 33", "source_file": "", "file_type": "", "degree": 1}, {"id": "255", "label": "Community 255", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 255", "community": 255, "community_name": "Community 255", "source_file": "", "file_type": "", "degree": 0}, {"id": "788", "label": "Community 788", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 788", "community": 788, "community_name": "Community 788", "source_file": "", "file_type": "", "degree": 0}, {"id": "675", "label": "Community 675", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 675", "community": 675, "community_name": "Community 675", "source_file": "", "file_type": "", "degree": 0}, {"id": "650", "label": "Community 650", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 650", "community": 650, "community_name": "Community 650", "source_file": "", "file_type": "", "degree": 0}, {"id": "651", "label": "Community 651", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 651", "community": 651, "community_name": "Community 651", "source_file": "", "file_type": "", "degree": 0}, {"id": "652", "label": "Community 652", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 652", "community": 652, "community_name": "Community 652", "source_file": "", "file_type": "", "degree": 0}, {"id": "30", "label": "Community 30", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 30", "community": 30, "community_name": "Community 30", "source_file": "", "file_type": "", "degree": 0}, {"id": "701", "label": "Community 701", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 701", "community": 701, "community_name": "Community 701", "source_file": "", "file_type": "", "degree": 0}, {"id": "567", "label": "Community 567", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 567", "community": 567, "community_name": "Community 567", "source_file": "", "file_type": "", "degree": 0}, {"id": "156", "label": "Community 156", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 156", "community": 156, "community_name": "Community 156", "source_file": "", "file_type": "", "degree": 4}, {"id": "702", "label": "Community 702", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 702", "community": 702, "community_name": "Community 702", "source_file": "", "file_type": "", "degree": 0}, {"id": "753", "label": "Community 753", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 753", "community": 753, "community_name": "Community 753", "source_file": "", "file_type": "", "degree": 0}, {"id": "756", "label": "Community 756", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 756", "community": 756, "community_name": "Community 756", "source_file": "", "file_type": "", "degree": 0}, {"id": "789", "label": "Community 789", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 789", "community": 789, "community_name": "Community 789", "source_file": "", "file_type": "", "degree": 0}, {"id": "790", "label": "Community 790", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 790", "community": 790, "community_name": "Community 790", "source_file": "", "file_type": "", "degree": 0}, {"id": "791", "label": "Community 791", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 791", "community": 791, "community_name": "Community 791", "source_file": "", "file_type": "", "degree": 0}, {"id": "792", "label": "Community 792", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 792", "community": 792, "community_name": "Community 792", "source_file": "", "file_type": "", "degree": 0}, {"id": "793", "label": "Community 793", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 793", "community": 793, "community_name": "Community 793", "source_file": "", "file_type": "", "degree": 0}, {"id": "794", "label": "Community 794", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 794", "community": 794, "community_name": "Community 794", "source_file": "", "file_type": "", "degree": 0}, {"id": "795", "label": "Community 795", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 795", "community": 795, "community_name": "Community 795", "source_file": "", "file_type": "", "degree": 0}, {"id": "796", "label": "Community 796", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 796", "community": 796, "community_name": "Community 796", "source_file": "", "file_type": "", "degree": 0}, {"id": "797", "label": "Community 797", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 797", "community": 797, "community_name": "Community 797", "source_file": "", "file_type": "", "degree": 0}, {"id": "798", "label": "Community 798", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 798", "community": 798, "community_name": "Community 798", "source_file": "", "file_type": "", "degree": 0}, {"id": "11", "label": "i18n: Landing Page Strings", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "i18n: Landing Page Strings", "community": 11, "community_name": "i18n: Landing Page Strings", "source_file": "", "file_type": "", "degree": 1}, {"id": "673", "label": "Community 673", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 673", "community": 673, "community_name": "Community 673", "source_file": "", "file_type": "", "degree": 0}, {"id": "736", "label": "Community 736", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 736", "community": 736, "community_name": "Community 736", "source_file": "", "file_type": "", "degree": 0}, {"id": "737", "label": "Community 737", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 737", "community": 737, "community_name": "Community 737", "source_file": "", "file_type": "", "degree": 0}, {"id": "734", "label": "Community 734", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 734", "community": 734, "community_name": "Community 734", "source_file": "", "file_type": "", "degree": 0}, {"id": "735", "label": "Community 735", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 735", "community": 735, "community_name": "Community 735", "source_file": "", "file_type": "", "degree": 0}, {"id": "105", "label": "Community 105", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 105", "community": 105, "community_name": "Community 105", "source_file": "", "file_type": "", "degree": 0}, {"id": "261", "label": "Community 261", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 261", "community": 261, "community_name": "Community 261", "source_file": "", "file_type": "", "degree": 1}, {"id": "349", "label": "Community 349", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 349", "community": 349, "community_name": "Community 349", "source_file": "", "file_type": "", "degree": 0}, {"id": "526", "label": "Community 526", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 526", "community": 526, "community_name": "Community 526", "source_file": "", "file_type": "", "degree": 0}, {"id": "203", "label": "Community 203", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 203", "community": 203, "community_name": "Community 203", "source_file": "", "file_type": "", "degree": 0}, {"id": "102", "label": "Community 102", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 102", "community": 102, "community_name": "Community 102", "source_file": "", "file_type": "", "degree": 0}, {"id": "98", "label": "Community 98", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 98", "community": 98, "community_name": "Community 98", "source_file": "", "file_type": "", "degree": 0}, {"id": "347", "label": "Community 347", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 347", "community": 347, "community_name": "Community 347", "source_file": "", "file_type": "", "degree": 0}, {"id": "408", "label": "Community 408", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 408", "community": 408, "community_name": "Community 408", "source_file": "", "file_type": "", "degree": 0}, {"id": "275", "label": "Community 275", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 275", "community": 275, "community_name": "Community 275", "source_file": "", "file_type": "", "degree": 0}, {"id": "410", "label": "Community 410", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 410", "community": 410, "community_name": "Community 410", "source_file": "", "file_type": "", "degree": 0}, {"id": "108", "label": "Community 108", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 108", "community": 108, "community_name": "Community 108", "source_file": "", "file_type": "", "degree": 0}, {"id": "605", "label": "Community 605", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 605", "community": 605, "community_name": "Community 605", "source_file": "", "file_type": "", "degree": 1}, {"id": "527", "label": "Community 527", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 527", "community": 527, "community_name": "Community 527", "source_file": "", "file_type": "", "degree": 0}, {"id": "100", "label": "Community 100", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 100", "community": 100, "community_name": "Community 100", "source_file": "", "file_type": "", "degree": 0}, {"id": "643", "label": "Community 643", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 643", "community": 643, "community_name": "Community 643", "source_file": "", "file_type": "", "degree": 0}, {"id": "574", "label": "Community 574", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 574", "community": 574, "community_name": "Community 574", "source_file": "", "file_type": "", "degree": 0}, {"id": "343", "label": "Community 343", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 343", "community": 343, "community_name": "Community 343", "source_file": "", "file_type": "", "degree": 0}, {"id": "220", "label": "Community 220", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 220", "community": 220, "community_name": "Community 220", "source_file": "", "file_type": "", "degree": 0}, {"id": "101", "label": "Community 101", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 101", "community": 101, "community_name": "Community 101", "source_file": "", "file_type": "", "degree": 0}, {"id": "173", "label": "Community 173", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 173", "community": 173, "community_name": "Community 173", "source_file": "", "file_type": "", "degree": 0}, {"id": "137", "label": "Community 137", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 137", "community": 137, "community_name": "Community 137", "source_file": "", "file_type": "", "degree": 0}, {"id": "231", "label": "Community 231", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 231", "community": 231, "community_name": "Community 231", "source_file": "", "file_type": "", "degree": 0}, {"id": "44", "label": "Community 44", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 44", "community": 44, "community_name": "Community 44", "source_file": "", "file_type": "", "degree": 0}, {"id": "525", "label": "Community 525", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 525", "community": 525, "community_name": "Community 525", "source_file": "", "file_type": "", "degree": 0}, {"id": "97", "label": "Community 97", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 97", "community": 97, "community_name": "Community 97", "source_file": "", "file_type": "", "degree": 0}, {"id": "523", "label": "Community 523", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 523", "community": 523, "community_name": "Community 523", "source_file": "", "file_type": "", "degree": 0}, {"id": "524", "label": "Community 524", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 524", "community": 524, "community_name": "Community 524", "source_file": "", "file_type": "", "degree": 0}, {"id": "103", "label": "Community 103", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 103", "community": 103, "community_name": "Community 103", "source_file": "", "file_type": "", "degree": 0}, {"id": "107", "label": "Community 107", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 107", "community": 107, "community_name": "Community 107", "source_file": "", "file_type": "", "degree": 0}, {"id": "344", "label": "Community 344", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 344", "community": 344, "community_name": "Community 344", "source_file": "", "file_type": "", "degree": 0}, {"id": "403", "label": "Community 403", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 403", "community": 403, "community_name": "Community 403", "source_file": "", "file_type": "", "degree": 0}, {"id": "522", "label": "Community 522", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 522", "community": 522, "community_name": "Community 522", "source_file": "", "file_type": "", "degree": 0}, {"id": "104", "label": "Community 104", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 104", "community": 104, "community_name": "Community 104", "source_file": "", "file_type": "", "degree": 0}, {"id": "346", "label": "Community 346", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 346", "community": 346, "community_name": "Community 346", "source_file": "", "file_type": "", "degree": 0}, {"id": "99", "label": "Community 99", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 99", "community": 99, "community_name": "Community 99", "source_file": "", "file_type": "", "degree": 0}, {"id": "171", "label": "Community 171", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 171", "community": 171, "community_name": "Community 171", "source_file": "", "file_type": "", "degree": 0}, {"id": "114", "label": "Community 114", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 114", "community": 114, "community_name": "Community 114", "source_file": "", "file_type": "", "degree": 0}, {"id": "152", "label": "Community 152", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 152", "community": 152, "community_name": "Community 152", "source_file": "", "file_type": "", "degree": 0}, {"id": "106", "label": "Community 106", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 106", "community": 106, "community_name": "Community 106", "source_file": "", "file_type": "", "degree": 0}, {"id": "799", "label": "Community 799", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 799", "community": 799, "community_name": "Community 799", "source_file": "", "file_type": "", "degree": 0}, {"id": "92", "label": "Community 92", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 92", "community": 92, "community_name": "Community 92", "source_file": "", "file_type": "", "degree": 0}, {"id": "674", "label": "Community 674", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 674", "community": 674, "community_name": "Community 674", "source_file": "", "file_type": "", "degree": 0}, {"id": "64", "label": "Community 64", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 64", "community": 64, "community_name": "Community 64", "source_file": "", "file_type": "", "degree": 1}, {"id": "744", "label": "Community 744", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 744", "community": 744, "community_name": "Community 744", "source_file": "", "file_type": "", "degree": 0}, {"id": "745", "label": "Community 745", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 745", "community": 745, "community_name": "Community 745", "source_file": "", "file_type": "", "degree": 0}, {"id": "742", "label": "Community 742", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 742", "community": 742, "community_name": "Community 742", "source_file": "", "file_type": "", "degree": 0}, {"id": "743", "label": "Community 743", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 743", "community": 743, "community_name": "Community 743", "source_file": "", "file_type": "", "degree": 0}, {"id": "551", "label": "Community 551", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 551", "community": 551, "community_name": "Community 551", "source_file": "", "file_type": "", "degree": 0}, {"id": "626", "label": "Community 626", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 626", "community": 626, "community_name": "Community 626", "source_file": "", "file_type": "", "degree": 0}, {"id": "376", "label": "Community 376", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 376", "community": 376, "community_name": "Community 376", "source_file": "", "file_type": "", "degree": 0}, {"id": "562", "label": "Community 562", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 562", "community": 562, "community_name": "Community 562", "source_file": "", "file_type": "", "degree": 0}, {"id": "563", "label": "Community 563", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 563", "community": 563, "community_name": "Community 563", "source_file": "", "file_type": "", "degree": 0}, {"id": "191", "label": "Community 191", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 191", "community": 191, "community_name": "Community 191", "source_file": "", "file_type": "", "degree": 0}, {"id": "556", "label": "Community 556", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 556", "community": 556, "community_name": "Community 556", "source_file": "", "file_type": "", "degree": 0}, {"id": "178", "label": "Community 178", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 178", "community": 178, "community_name": "Community 178", "source_file": "", "file_type": "", "degree": 0}, {"id": "558", "label": "Community 558", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 558", "community": 558, "community_name": "Community 558", "source_file": "", "file_type": "", "degree": 0}, {"id": "564", "label": "Community 564", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 564", "community": 564, "community_name": "Community 564", "source_file": "", "file_type": "", "degree": 0}, {"id": "559", "label": "Community 559", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 559", "community": 559, "community_name": "Community 559", "source_file": "", "file_type": "", "degree": 0}, {"id": "380", "label": "Community 380", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 380", "community": 380, "community_name": "Community 380", "source_file": "", "file_type": "", "degree": 0}, {"id": "369", "label": "Community 369", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 369", "community": 369, "community_name": "Community 369", "source_file": "", "file_type": "", "degree": 0}, {"id": "371", "label": "Community 371", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 371", "community": 371, "community_name": "Community 371", "source_file": "", "file_type": "", "degree": 0}, {"id": "213", "label": "Community 213", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 213", "community": 213, "community_name": "Community 213", "source_file": "", "file_type": "", "degree": 0}, {"id": "243", "label": "Community 243", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 243", "community": 243, "community_name": "Community 243", "source_file": "", "file_type": "", "degree": 0}, {"id": "383", "label": "Community 383", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 383", "community": 383, "community_name": "Community 383", "source_file": "", "file_type": "", "degree": 0}, {"id": "560", "label": "Community 560", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 560", "community": 560, "community_name": "Community 560", "source_file": "", "file_type": "", "degree": 0}, {"id": "561", "label": "Community 561", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 561", "community": 561, "community_name": "Community 561", "source_file": "", "file_type": "", "degree": 0}, {"id": "592", "label": "Community 592", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 592", "community": 592, "community_name": "Community 592", "source_file": "", "file_type": "", "degree": 0}, {"id": "372", "label": "Community 372", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 372", "community": 372, "community_name": "Community 372", "source_file": "", "file_type": "", "degree": 0}, {"id": "283", "label": "Community 283", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 283", "community": 283, "community_name": "Community 283", "source_file": "", "file_type": "", "degree": 0}, {"id": "223", "label": "Community 223", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 223", "community": 223, "community_name": "Community 223", "source_file": "", "file_type": "", "degree": 0}, {"id": "553", "label": "Community 553", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 553", "community": 553, "community_name": "Community 553", "source_file": "", "file_type": "", "degree": 0}, {"id": "549", "label": "Community 549", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 549", "community": 549, "community_name": "Community 549", "source_file": "", "file_type": "", "degree": 0}, {"id": "554", "label": "Community 554", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 554", "community": 554, "community_name": "Community 554", "source_file": "", "file_type": "", "degree": 0}, {"id": "179", "label": "Community 179", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 179", "community": 179, "community_name": "Community 179", "source_file": "", "file_type": "", "degree": 0}, {"id": "565", "label": "Community 565", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 565", "community": 565, "community_name": "Community 565", "source_file": "", "file_type": "", "degree": 0}, {"id": "150", "label": "Community 150", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 150", "community": 150, "community_name": "Community 150", "source_file": "", "file_type": "", "degree": 0}, {"id": "375", "label": "Community 375", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 375", "community": 375, "community_name": "Community 375", "source_file": "", "file_type": "", "degree": 0}, {"id": "555", "label": "Community 555", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 555", "community": 555, "community_name": "Community 555", "source_file": "", "file_type": "", "degree": 0}, {"id": "548", "label": "Community 548", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 548", "community": 548, "community_name": "Community 548", "source_file": "", "file_type": "", "degree": 0}, {"id": "379", "label": "Community 379", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 379", "community": 379, "community_name": "Community 379", "source_file": "", "file_type": "", "degree": 0}, {"id": "550", "label": "Community 550", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 550", "community": 550, "community_name": "Community 550", "source_file": "", "file_type": "", "degree": 0}, {"id": "575", "label": "Community 575", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 575", "community": 575, "community_name": "Community 575", "source_file": "", "file_type": "", "degree": 0}, {"id": "128", "label": "Community 128", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 128", "community": 128, "community_name": "Community 128", "source_file": "", "file_type": "", "degree": 0}, {"id": "115", "label": "Community 115", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 115", "community": 115, "community_name": "Community 115", "source_file": "", "file_type": "", "degree": 0}, {"id": "557", "label": "Community 557", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 557", "community": 557, "community_name": "Community 557", "source_file": "", "file_type": "", "degree": 0}, {"id": "552", "label": "Community 552", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 552", "community": 552, "community_name": "Community 552", "source_file": "", "file_type": "", "degree": 0}, {"id": "251", "label": "Community 251", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 251", "community": 251, "community_name": "Community 251", "source_file": "", "file_type": "", "degree": 0}, {"id": "800", "label": "Community 800", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 800", "community": 800, "community_name": "Community 800", "source_file": "", "file_type": "", "degree": 0}, {"id": "90", "label": "Community 90", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 90", "community": 90, "community_name": "Community 90", "source_file": "", "file_type": "", "degree": 0}, {"id": "672", "label": "Community 672", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 672", "community": 672, "community_name": "Community 672", "source_file": "", "file_type": "", "degree": 0}, {"id": "59", "label": "Community 59", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 59", "community": 59, "community_name": "Community 59", "source_file": "", "file_type": "", "degree": 0}, {"id": "732", "label": "Community 732", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 732", "community": 732, "community_name": "Community 732", "source_file": "", "file_type": "", "degree": 0}, {"id": "733", "label": "Community 733", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 733", "community": 733, "community_name": "Community 733", "source_file": "", "file_type": "", "degree": 0}, {"id": "730", "label": "Community 730", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 730", "community": 730, "community_name": "Community 730", "source_file": "", "file_type": "", "degree": 0}, {"id": "731", "label": "Community 731", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 731", "community": 731, "community_name": "Community 731", "source_file": "", "file_type": "", "degree": 0}, {"id": "507", "label": "Community 507", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 507", "community": 507, "community_name": "Community 507", "source_file": "", "file_type": "", "degree": 0}, {"id": "139", "label": "Community 139", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 139", "community": 139, "community_name": "Community 139", "source_file": "", "file_type": "", "degree": 0}, {"id": "212", "label": "Community 212", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 212", "community": 212, "community_name": "Community 212", "source_file": "", "file_type": "", "degree": 0}, {"id": "334", "label": "Community 334", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 334", "community": 334, "community_name": "Community 334", "source_file": "", "file_type": "", "degree": 0}, {"id": "518", "label": "Community 518", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 518", "community": 518, "community_name": "Community 518", "source_file": "", "file_type": "", "degree": 0}, {"id": "519", "label": "Community 519", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 519", "community": 519, "community_name": "Community 519", "source_file": "", "file_type": "", "degree": 0}, {"id": "512", "label": "Community 512", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 512", "community": 512, "community_name": "Community 512", "source_file": "", "file_type": "", "degree": 0}, {"id": "192", "label": "Community 192", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 192", "community": 192, "community_name": "Community 192", "source_file": "", "file_type": "", "degree": 0}, {"id": "166", "label": "Community 166", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 166", "community": 166, "community_name": "Community 166", "source_file": "", "file_type": "", "degree": 0}, {"id": "514", "label": "Community 514", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 514", "community": 514, "community_name": "Community 514", "source_file": "", "file_type": "", "degree": 0}, {"id": "520", "label": "Community 520", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 520", "community": 520, "community_name": "Community 520", "source_file": "", "file_type": "", "degree": 0}, {"id": "515", "label": "Community 515", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 515", "community": 515, "community_name": "Community 515", "source_file": "", "file_type": "", "degree": 0}, {"id": "338", "label": "Community 338", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 338", "community": 338, "community_name": "Community 338", "source_file": "", "file_type": "", "degree": 0}, {"id": "327", "label": "Community 327", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 327", "community": 327, "community_name": "Community 327", "source_file": "", "file_type": "", "degree": 0}, {"id": "274", "label": "Community 274", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 274", "community": 274, "community_name": "Community 274", "source_file": "", "file_type": "", "degree": 0}, {"id": "329", "label": "Community 329", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 329", "community": 329, "community_name": "Community 329", "source_file": "", "file_type": "", "degree": 0}, {"id": "341", "label": "Community 341", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 341", "community": 341, "community_name": "Community 341", "source_file": "", "file_type": "", "degree": 0}, {"id": "127", "label": "Community 127", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 127", "community": 127, "community_name": "Community 127", "source_file": "", "file_type": "", "degree": 0}, {"id": "516", "label": "Community 516", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 516", "community": 516, "community_name": "Community 516", "source_file": "", "file_type": "", "degree": 0}, {"id": "517", "label": "Community 517", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 517", "community": 517, "community_name": "Community 517", "source_file": "", "file_type": "", "degree": 0}, {"id": "330", "label": "Community 330", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 330", "community": 330, "community_name": "Community 330", "source_file": "", "file_type": "", "degree": 0}, {"id": "242", "label": "Community 242", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 242", "community": 242, "community_name": "Community 242", "source_file": "", "file_type": "", "degree": 0}, {"id": "509", "label": "Community 509", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 509", "community": 509, "community_name": "Community 509", "source_file": "", "file_type": "", "degree": 0}, {"id": "505", "label": "Community 505", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 505", "community": 505, "community_name": "Community 505", "source_file": "", "file_type": "", "degree": 0}, {"id": "169", "label": "Community 169", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 169", "community": 169, "community_name": "Community 169", "source_file": "", "file_type": "", "degree": 0}, {"id": "510", "label": "Community 510", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 510", "community": 510, "community_name": "Community 510", "source_file": "", "file_type": "", "degree": 0}, {"id": "521", "label": "Community 521", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 521", "community": 521, "community_name": "Community 521", "source_file": "", "file_type": "", "degree": 0}, {"id": "333", "label": "Community 333", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 333", "community": 333, "community_name": "Community 333", "source_file": "", "file_type": "", "degree": 0}, {"id": "511", "label": "Community 511", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 511", "community": 511, "community_name": "Community 511", "source_file": "", "file_type": "", "degree": 0}, {"id": "504", "label": "Community 504", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 504", "community": 504, "community_name": "Community 504", "source_file": "", "file_type": "", "degree": 0}, {"id": "232", "label": "Community 232", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 232", "community": 232, "community_name": "Community 232", "source_file": "", "file_type": "", "degree": 0}, {"id": "337", "label": "Community 337", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 337", "community": 337, "community_name": "Community 337", "source_file": "", "file_type": "", "degree": 0}, {"id": "225", "label": "Community 225", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 225", "community": 225, "community_name": "Community 225", "source_file": "", "file_type": "", "degree": 0}, {"id": "506", "label": "Community 506", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 506", "community": 506, "community_name": "Community 506", "source_file": "", "file_type": "", "degree": 0}, {"id": "594", "label": "Community 594", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 594", "community": 594, "community_name": "Community 594", "source_file": "", "file_type": "", "degree": 0}, {"id": "579", "label": "Community 579", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 579", "community": 579, "community_name": "Community 579", "source_file": "", "file_type": "", "degree": 0}, {"id": "513", "label": "Community 513", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 513", "community": 513, "community_name": "Community 513", "source_file": "", "file_type": "", "degree": 0}, {"id": "639", "label": "Community 639", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 639", "community": 639, "community_name": "Community 639", "source_file": "", "file_type": "", "degree": 0}, {"id": "508", "label": "Community 508", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 508", "community": 508, "community_name": "Community 508", "source_file": "", "file_type": "", "degree": 0}, {"id": "113", "label": "Community 113", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 113", "community": 113, "community_name": "Community 113", "source_file": "", "file_type": "", "degree": 0}, {"id": "801", "label": "Community 801", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 801", "community": 801, "community_name": "Community 801", "source_file": "", "file_type": "", "degree": 0}, {"id": "91", "label": "Community 91", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 91", "community": 91, "community_name": "Community 91", "source_file": "", "file_type": "", "degree": 0}, {"id": "694", "label": "Community 694", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 694", "community": 694, "community_name": "Community 694", "source_file": "", "file_type": "", "degree": 0}, {"id": "61", "label": "Community 61", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 61", "community": 61, "community_name": "Community 61", "source_file": "", "file_type": "", "degree": 0}, {"id": "740", "label": "Community 740", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 740", "community": 740, "community_name": "Community 740", "source_file": "", "file_type": "", "degree": 0}, {"id": "741", "label": "Community 741", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 741", "community": 741, "community_name": "Community 741", "source_file": "", "file_type": "", "degree": 0}, {"id": "738", "label": "Community 738", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 738", "community": 738, "community_name": "Community 738", "source_file": "", "file_type": "", "degree": 0}, {"id": "739", "label": "Community 739", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 739", "community": 739, "community_name": "Community 739", "source_file": "", "file_type": "", "degree": 0}, {"id": "532", "label": "Community 532", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 532", "community": 532, "community_name": "Community 532", "source_file": "", "file_type": "", "degree": 0}, {"id": "222", "label": "Community 222", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 222", "community": 222, "community_name": "Community 222", "source_file": "", "file_type": "", "degree": 0}, {"id": "143", "label": "Community 143", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 143", "community": 143, "community_name": "Community 143", "source_file": "", "file_type": "", "degree": 0}, {"id": "360", "label": "Community 360", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 360", "community": 360, "community_name": "Community 360", "source_file": "", "file_type": "", "degree": 0}, {"id": "543", "label": "Community 543", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 543", "community": 543, "community_name": "Community 543", "source_file": "", "file_type": "", "degree": 0}, {"id": "151", "label": "Community 151", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 151", "community": 151, "community_name": "Community 151", "source_file": "", "file_type": "", "degree": 0}, {"id": "544", "label": "Community 544", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 544", "community": 544, "community_name": "Community 544", "source_file": "", "file_type": "", "degree": 0}, {"id": "537", "label": "Community 537", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 537", "community": 537, "community_name": "Community 537", "source_file": "", "file_type": "", "degree": 0}, {"id": "539", "label": "Community 539", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 539", "community": 539, "community_name": "Community 539", "source_file": "", "file_type": "", "degree": 0}, {"id": "545", "label": "Community 545", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 545", "community": 545, "community_name": "Community 545", "source_file": "", "file_type": "", "degree": 0}, {"id": "540", "label": "Community 540", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 540", "community": 540, "community_name": "Community 540", "source_file": "", "file_type": "", "degree": 0}, {"id": "364", "label": "Community 364", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 364", "community": 364, "community_name": "Community 364", "source_file": "", "file_type": "", "degree": 0}, {"id": "353", "label": "Community 353", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 353", "community": 353, "community_name": "Community 353", "source_file": "", "file_type": "", "degree": 0}, {"id": "595", "label": "Community 595", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 595", "community": 595, "community_name": "Community 595", "source_file": "", "file_type": "", "degree": 0}, {"id": "201", "label": "Community 201", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 201", "community": 201, "community_name": "Community 201", "source_file": "", "file_type": "", "degree": 0}, {"id": "355", "label": "Community 355", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 355", "community": 355, "community_name": "Community 355", "source_file": "", "file_type": "", "degree": 0}, {"id": "116", "label": "Community 116", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 116", "community": 116, "community_name": "Community 116", "source_file": "", "file_type": "", "degree": 0}, {"id": "367", "label": "Community 367", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 367", "community": 367, "community_name": "Community 367", "source_file": "", "file_type": "", "degree": 0}, {"id": "541", "label": "Community 541", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 541", "community": 541, "community_name": "Community 541", "source_file": "", "file_type": "", "degree": 0}, {"id": "641", "label": "Community 641", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 641", "community": 641, "community_name": "Community 641", "source_file": "", "file_type": "", "degree": 0}, {"id": "542", "label": "Community 542", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 542", "community": 542, "community_name": "Community 542", "source_file": "", "file_type": "", "degree": 0}, {"id": "233", "label": "Community 233", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 233", "community": 233, "community_name": "Community 233", "source_file": "", "file_type": "", "degree": 0}, {"id": "244", "label": "Community 244", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 244", "community": 244, "community_name": "Community 244", "source_file": "", "file_type": "", "degree": 0}, {"id": "577", "label": "Community 577", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 577", "community": 577, "community_name": "Community 577", "source_file": "", "file_type": "", "degree": 0}, {"id": "356", "label": "Community 356", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 356", "community": 356, "community_name": "Community 356", "source_file": "", "file_type": "", "degree": 0}, {"id": "284", "label": "Community 284", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 284", "community": 284, "community_name": "Community 284", "source_file": "", "file_type": "", "degree": 0}, {"id": "534", "label": "Community 534", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 534", "community": 534, "community_name": "Community 534", "source_file": "", "file_type": "", "degree": 0}, {"id": "530", "label": "Community 530", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 530", "community": 530, "community_name": "Community 530", "source_file": "", "file_type": "", "degree": 0}, {"id": "190", "label": "Community 190", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 190", "community": 190, "community_name": "Community 190", "source_file": "", "file_type": "", "degree": 0}, {"id": "535", "label": "Community 535", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 535", "community": 535, "community_name": "Community 535", "source_file": "", "file_type": "", "degree": 0}, {"id": "546", "label": "Community 546", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 546", "community": 546, "community_name": "Community 546", "source_file": "", "file_type": "", "degree": 0}, {"id": "359", "label": "Community 359", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 359", "community": 359, "community_name": "Community 359", "source_file": "", "file_type": "", "degree": 0}, {"id": "536", "label": "Community 536", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 536", "community": 536, "community_name": "Community 536", "source_file": "", "file_type": "", "degree": 0}, {"id": "529", "label": "Community 529", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 529", "community": 529, "community_name": "Community 529", "source_file": "", "file_type": "", "degree": 0}, {"id": "363", "label": "Community 363", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 363", "community": 363, "community_name": "Community 363", "source_file": "", "file_type": "", "degree": 0}, {"id": "531", "label": "Community 531", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 531", "community": 531, "community_name": "Community 531", "source_file": "", "file_type": "", "degree": 0}, {"id": "538", "label": "Community 538", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 538", "community": 538, "community_name": "Community 538", "source_file": "", "file_type": "", "degree": 0}, {"id": "177", "label": "Community 177", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 177", "community": 177, "community_name": "Community 177", "source_file": "", "file_type": "", "degree": 0}, {"id": "533", "label": "Community 533", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 533", "community": 533, "community_name": "Community 533", "source_file": "", "file_type": "", "degree": 0}, {"id": "802", "label": "Community 802", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 802", "community": 802, "community_name": "Community 802", "source_file": "", "file_type": "", "degree": 0}, {"id": "87", "label": "Community 87", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 87", "community": 87, "community_name": "Community 87", "source_file": "", "file_type": "", "degree": 0}, {"id": "669", "label": "Community 669", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 669", "community": 669, "community_name": "Community 669", "source_file": "", "file_type": "", "degree": 0}, {"id": "57", "label": "Community 57", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 57", "community": 57, "community_name": "Community 57", "source_file": "", "file_type": "", "degree": 0}, {"id": "720", "label": "Community 720", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 720", "community": 720, "community_name": "Community 720", "source_file": "", "file_type": "", "degree": 0}, {"id": "721", "label": "Community 721", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 721", "community": 721, "community_name": "Community 721", "source_file": "", "file_type": "", "degree": 0}, {"id": "718", "label": "Community 718", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 718", "community": 718, "community_name": "Community 718", "source_file": "", "file_type": "", "degree": 0}, {"id": "719", "label": "Community 719", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 719", "community": 719, "community_name": "Community 719", "source_file": "", "file_type": "", "degree": 0}, {"id": "478", "label": "Community 478", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 478", "community": 478, "community_name": "Community 478", "source_file": "", "file_type": "", "degree": 0}, {"id": "396", "label": "Community 396", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 396", "community": 396, "community_name": "Community 396", "source_file": "", "file_type": "", "degree": 0}, {"id": "475", "label": "Community 475", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 475", "community": 475, "community_name": "Community 475", "source_file": "", "file_type": "", "degree": 0}, {"id": "474", "label": "Community 474", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 474", "community": 474, "community_name": "Community 474", "source_file": "", "file_type": "", "degree": 0}, {"id": "309", "label": "Community 309", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 309", "community": 309, "community_name": "Community 309", "source_file": "", "file_type": "", "degree": 0}, {"id": "393", "label": "Community 393", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 393", "community": 393, "community_name": "Community 393", "source_file": "", "file_type": "", "degree": 0}, {"id": "586", "label": "Community 586", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 586", "community": 586, "community_name": "Community 586", "source_file": "", "file_type": "", "degree": 0}, {"id": "235", "label": "Community 235", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 235", "community": 235, "community_name": "Community 235", "source_file": "", "file_type": "", "degree": 0}, {"id": "399", "label": "Community 399", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 399", "community": 399, "community_name": "Community 399", "source_file": "", "file_type": "", "degree": 0}, {"id": "133", "label": "Community 133", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 133", "community": 133, "community_name": "Community 133", "source_file": "", "file_type": "", "degree": 0}, {"id": "404", "label": "Community 404", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 404", "community": 404, "community_name": "Community 404", "source_file": "", "file_type": "", "degree": 0}, {"id": "165", "label": "Community 165", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 165", "community": 165, "community_name": "Community 165", "source_file": "", "file_type": "", "degree": 0}, {"id": "118", "label": "Community 118", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 118", "community": 118, "community_name": "Community 118", "source_file": "", "file_type": "", "degree": 0}, {"id": "282", "label": "Community 282", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 282", "community": 282, "community_name": "Community 282", "source_file": "", "file_type": "", "degree": 0}, {"id": "477", "label": "Community 477", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 477", "community": 477, "community_name": "Community 477", "source_file": "", "file_type": "", "degree": 0}, {"id": "144", "label": "Community 144", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 144", "community": 144, "community_name": "Community 144", "source_file": "", "file_type": "", "degree": 0}, {"id": "640", "label": "Community 640", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 640", "community": 640, "community_name": "Community 640", "source_file": "", "file_type": "", "degree": 0}, {"id": "308", "label": "Community 308", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 308", "community": 308, "community_name": "Community 308", "source_file": "", "file_type": "", "degree": 0}, {"id": "163", "label": "Community 163", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 163", "community": 163, "community_name": "Community 163", "source_file": "", "file_type": "", "degree": 0}, {"id": "246", "label": "Community 246", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 246", "community": 246, "community_name": "Community 246", "source_file": "", "file_type": "", "degree": 0}, {"id": "406", "label": "Community 406", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 406", "community": 406, "community_name": "Community 406", "source_file": "", "file_type": "", "degree": 0}, {"id": "479", "label": "Community 479", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 479", "community": 479, "community_name": "Community 479", "source_file": "", "file_type": "", "degree": 0}, {"id": "395", "label": "Community 395", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 395", "community": 395, "community_name": "Community 395", "source_file": "", "file_type": "", "degree": 0}, {"id": "194", "label": "Community 194", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 194", "community": 194, "community_name": "Community 194", "source_file": "", "file_type": "", "degree": 0}, {"id": "583", "label": "Community 583", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 583", "community": 583, "community_name": "Community 583", "source_file": "", "file_type": "", "degree": 0}, {"id": "164", "label": "Community 164", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 164", "community": 164, "community_name": "Community 164", "source_file": "", "file_type": "", "degree": 0}, {"id": "476", "label": "Community 476", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 476", "community": 476, "community_name": "Community 476", "source_file": "", "file_type": "", "degree": 0}, {"id": "206", "label": "Community 206", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 206", "community": 206, "community_name": "Community 206", "source_file": "", "file_type": "", "degree": 0}, {"id": "803", "label": "Community 803", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 803", "community": 803, "community_name": "Community 803", "source_file": "", "file_type": "", "degree": 0}, {"id": "86", "label": "Community 86", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 86", "community": 86, "community_name": "Community 86", "source_file": "", "file_type": "", "degree": 0}, {"id": "668", "label": "Community 668", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 668", "community": 668, "community_name": "Community 668", "source_file": "", "file_type": "", "degree": 0}, {"id": "56", "label": "Community 56", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 56", "community": 56, "community_name": "Community 56", "source_file": "", "file_type": "", "degree": 0}, {"id": "716", "label": "Community 716", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 716", "community": 716, "community_name": "Community 716", "source_file": "", "file_type": "", "degree": 0}, {"id": "717", "label": "Community 717", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 717", "community": 717, "community_name": "Community 717", "source_file": "", "file_type": "", "degree": 0}, {"id": "714", "label": "Community 714", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 714", "community": 714, "community_name": "Community 714", "source_file": "", "file_type": "", "degree": 0}, {"id": "715", "label": "Community 715", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 715", "community": 715, "community_name": "Community 715", "source_file": "", "file_type": "", "degree": 0}, {"id": "240", "label": "Community 240", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 240", "community": 240, "community_name": "Community 240", "source_file": "", "file_type": "", "degree": 0}, {"id": "159", "label": "Community 159", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 159", "community": 159, "community_name": "Community 159", "source_file": "", "file_type": "", "degree": 0}, {"id": "466", "label": "Community 466", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 466", "community": 466, "community_name": "Community 466", "source_file": "", "file_type": "", "degree": 0}, {"id": "464", "label": "Community 464", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 464", "community": 464, "community_name": "Community 464", "source_file": "", "file_type": "", "degree": 0}, {"id": "405", "label": "Community 405", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 405", "community": 405, "community_name": "Community 405", "source_file": "", "file_type": "", "degree": 0}, {"id": "158", "label": "Community 158", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 158", "community": 158, "community_name": "Community 158", "source_file": "", "file_type": "", "degree": 0}, {"id": "300", "label": "Community 300", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 300", "community": 300, "community_name": "Community 300", "source_file": "", "file_type": "", "degree": 0}, {"id": "470", "label": "Community 470", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 470", "community": 470, "community_name": "Community 470", "source_file": "", "file_type": "", "degree": 0}, {"id": "457", "label": "Community 457", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 457", "community": 457, "community_name": "Community 457", "source_file": "", "file_type": "", "degree": 0}, {"id": "456", "label": "Community 456", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 456", "community": 456, "community_name": "Community 456", "source_file": "", "file_type": "", "degree": 0}, {"id": "250", "label": "Community 250", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 250", "community": 250, "community_name": "Community 250", "source_file": "", "file_type": "", "degree": 0}, {"id": "455", "label": "Community 455", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 455", "community": 455, "community_name": "Community 455", "source_file": "", "file_type": "", "degree": 0}, {"id": "467", "label": "Community 467", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 467", "community": 467, "community_name": "Community 467", "source_file": "", "file_type": "", "degree": 0}, {"id": "195", "label": "Community 195", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 195", "community": 195, "community_name": "Community 195", "source_file": "", "file_type": "", "degree": 0}, {"id": "132", "label": "Community 132", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 132", "community": 132, "community_name": "Community 132", "source_file": "", "file_type": "", "degree": 0}, {"id": "461", "label": "Community 461", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 461", "community": 461, "community_name": "Community 461", "source_file": "", "file_type": "", "degree": 0}, {"id": "397", "label": "Community 397", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 397", "community": 397, "community_name": "Community 397", "source_file": "", "file_type": "", "degree": 0}, {"id": "65", "label": "Community 65", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 65", "community": 65, "community_name": "Community 65", "source_file": "", "file_type": "", "degree": 0}, {"id": "459", "label": "Community 459", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 459", "community": 459, "community_name": "Community 459", "source_file": "", "file_type": "", "degree": 0}, {"id": "471", "label": "Community 471", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 471", "community": 471, "community_name": "Community 471", "source_file": "", "file_type": "", "degree": 0}, {"id": "468", "label": "Community 468", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 468", "community": 468, "community_name": "Community 468", "source_file": "", "file_type": "", "degree": 0}, {"id": "469", "label": "Community 469", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 469", "community": 469, "community_name": "Community 469", "source_file": "", "file_type": "", "degree": 0}, {"id": "473", "label": "Community 473", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 473", "community": 473, "community_name": "Community 473", "source_file": "", "file_type": "", "degree": 0}, {"id": "226", "label": "Community 226", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 226", "community": 226, "community_name": "Community 226", "source_file": "", "file_type": "", "degree": 0}, {"id": "645", "label": "Community 645", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 645", "community": 645, "community_name": "Community 645", "source_file": "", "file_type": "", "degree": 0}, {"id": "460", "label": "Community 460", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 460", "community": 460, "community_name": "Community 460", "source_file": "", "file_type": "", "degree": 0}, {"id": "294", "label": "Community 294", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 294", "community": 294, "community_name": "Community 294", "source_file": "", "file_type": "", "degree": 0}, {"id": "581", "label": "Community 581", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 581", "community": 581, "community_name": "Community 581", "source_file": "", "file_type": "", "degree": 0}, {"id": "394", "label": "Community 394", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 394", "community": 394, "community_name": "Community 394", "source_file": "", "file_type": "", "degree": 0}, {"id": "161", "label": "Community 161", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 161", "community": 161, "community_name": "Community 161", "source_file": "", "file_type": "", "degree": 0}, {"id": "465", "label": "Community 465", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 465", "community": 465, "community_name": "Community 465", "source_file": "", "file_type": "", "degree": 0}, {"id": "146", "label": "Community 146", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 146", "community": 146, "community_name": "Community 146", "source_file": "", "file_type": "", "degree": 0}, {"id": "472", "label": "Community 472", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 472", "community": 472, "community_name": "Community 472", "source_file": "", "file_type": "", "degree": 0}, {"id": "281", "label": "Community 281", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 281", "community": 281, "community_name": "Community 281", "source_file": "", "file_type": "", "degree": 0}, {"id": "458", "label": "Community 458", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 458", "community": 458, "community_name": "Community 458", "source_file": "", "file_type": "", "degree": 0}, {"id": "297", "label": "Community 297", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 297", "community": 297, "community_name": "Community 297", "source_file": "", "file_type": "", "degree": 0}, {"id": "400", "label": "Community 400", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 400", "community": 400, "community_name": "Community 400", "source_file": "", "file_type": "", "degree": 0}, {"id": "463", "label": "Community 463", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 463", "community": 463, "community_name": "Community 463", "source_file": "", "file_type": "", "degree": 0}, {"id": "117", "label": "Community 117", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 117", "community": 117, "community_name": "Community 117", "source_file": "", "file_type": "", "degree": 0}, {"id": "462", "label": "Community 462", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 462", "community": 462, "community_name": "Community 462", "source_file": "", "file_type": "", "degree": 0}, {"id": "439", "label": "Community 439", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 439", "community": 439, "community_name": "Community 439", "source_file": "", "file_type": "", "degree": 0}, {"id": "391", "label": "Community 391", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 391", "community": 391, "community_name": "Community 391", "source_file": "", "file_type": "", "degree": 4}, {"id": "804", "label": "Community 804", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 804", "community": 804, "community_name": "Community 804", "source_file": "", "file_type": "", "degree": 0}, {"id": "573", "label": "Community 573", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 573", "community": 573, "community_name": "Community 573", "source_file": "", "file_type": "", "degree": 1}, {"id": "445", "label": "Community 445", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 445", "community": 445, "community_name": "Community 445", "source_file": "", "file_type": "", "degree": 1}, {"id": "749", "label": "Community 749", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 749", "community": 749, "community_name": "Community 749", "source_file": "", "file_type": "", "degree": 0}, {"id": "93", "label": "Community 93", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 93", "community": 93, "community_name": "Community 93", "source_file": "", "file_type": "", "degree": 14}, {"id": "389", "label": "Community 389", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 389", "community": 389, "community_name": "Community 389", "source_file": "", "file_type": "", "degree": 2}, {"id": "258", "label": "Community 258", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 258", "community": 258, "community_name": "Community 258", "source_file": "", "file_type": "", "degree": 1}, {"id": "676", "label": "Community 676", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 676", "community": 676, "community_name": "Community 676", "source_file": "", "file_type": "", "degree": 0}, {"id": "704", "label": "Community 704", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 704", "community": 704, "community_name": "Community 704", "source_file": "", "file_type": "", "degree": 0}, {"id": "661", "label": "Community 661", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 661", "community": 661, "community_name": "Community 661", "source_file": "", "file_type": "", "degree": 0}, {"id": "612", "label": "Community 612", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 612", "community": 612, "community_name": "Community 612", "source_file": "", "file_type": "", "degree": 0}, {"id": "762", "label": "Community 762", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 762", "community": 762, "community_name": "Community 762", "source_file": "", "file_type": "", "degree": 0}, {"id": "262", "label": "Community 262", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 262", "community": 262, "community_name": "Community 262", "source_file": "", "file_type": "", "degree": 3}, {"id": "66", "label": "Community 66", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 66", "community": 66, "community_name": "Community 66", "source_file": "", "file_type": "", "degree": 4}, {"id": "288", "label": "Community 288", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 288", "community": 288, "community_name": "Community 288", "source_file": "", "file_type": "", "degree": 3}, {"id": "440", "label": "Community 440", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 440", "community": 440, "community_name": "Community 440", "source_file": "", "file_type": "", "degree": 0}, {"id": "437", "label": "Community 437", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 437", "community": 437, "community_name": "Community 437", "source_file": "", "file_type": "", "degree": 14}, {"id": "54", "label": "Community 54", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 54", "community": 54, "community_name": "Community 54", "source_file": "", "file_type": "", "degree": 6}, {"id": "81", "label": "Community 81", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 81", "community": 81, "community_name": "Community 81", "source_file": "", "file_type": "", "degree": 6}, {"id": "123", "label": "Community 123", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 123", "community": 123, "community_name": "Community 123", "source_file": "", "file_type": "", "degree": 1}, {"id": "677", "label": "Community 677", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 677", "community": 677, "community_name": "Community 677", "source_file": "", "file_type": "", "degree": 0}, {"id": "419", "label": "Community 419", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 419", "community": 419, "community_name": "Community 419", "source_file": "", "file_type": "", "degree": 2}, {"id": "429", "label": "Community 429", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 429", "community": 429, "community_name": "Community 429", "source_file": "", "file_type": "", "degree": 2}, {"id": "260", "label": "Community 260", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 260", "community": 260, "community_name": "Community 260", "source_file": "", "file_type": "", "degree": 0}, {"id": "268", "label": "Community 268", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 268", "community": 268, "community_name": "Community 268", "source_file": "", "file_type": "", "degree": 0}, {"id": "627", "label": "Community 627", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 627", "community": 627, "community_name": "Community 627", "source_file": "", "file_type": "", "degree": 0}, {"id": "256", "label": "Community 256", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 256", "community": 256, "community_name": "Community 256", "source_file": "", "file_type": "", "degree": 0}, {"id": "805", "label": "Community 805", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 805", "community": 805, "community_name": "Community 805", "source_file": "", "file_type": "", "degree": 0}, {"id": "434", "label": "Community 434", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 434", "community": 434, "community_name": "Community 434", "source_file": "", "file_type": "", "degree": 0}, {"id": "411", "label": "Community 411", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 411", "community": 411, "community_name": "Community 411", "source_file": "", "file_type": "", "degree": 2}, {"id": "180", "label": "Community 180", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 180", "community": 180, "community_name": "Community 180", "source_file": "", "file_type": "", "degree": 0}, {"id": "699", "label": "Community 699", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 699", "community": 699, "community_name": "Community 699", "source_file": "", "file_type": "", "degree": 0}, {"id": "598", "label": "Community 598", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 598", "community": 598, "community_name": "Community 598", "source_file": "", "file_type": "", "degree": 0}, {"id": "681", "label": "Community 681", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 681", "community": 681, "community_name": "Community 681", "source_file": "", "file_type": "", "degree": 0}, {"id": "665", "label": "Community 665", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 665", "community": 665, "community_name": "Community 665", "source_file": "", "file_type": "", "degree": 0}, {"id": "418", "label": "Community 418", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 418", "community": 418, "community_name": "Community 418", "source_file": "", "file_type": "", "degree": 3}, {"id": "443", "label": "Community 443", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 443", "community": 443, "community_name": "Community 443", "source_file": "", "file_type": "", "degree": 3}, {"id": "278", "label": "Community 278", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 278", "community": 278, "community_name": "Community 278", "source_file": "", "file_type": "", "degree": 3}, {"id": "131", "label": "Community 131", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 131", "community": 131, "community_name": "Community 131", "source_file": "", "file_type": "", "degree": 1}, {"id": "678", "label": "Community 678", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 678", "community": 678, "community_name": "Community 678", "source_file": "", "file_type": "", "degree": 0}, {"id": "654", "label": "Community 654", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 654", "community": 654, "community_name": "Community 654", "source_file": "", "file_type": "", "degree": 0}, {"id": "653", "label": "Community 653", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 653", "community": 653, "community_name": "Community 653", "source_file": "", "file_type": "", "degree": 0}, {"id": "680", "label": "Community 680", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 680", "community": 680, "community_name": "Community 680", "source_file": "", "file_type": "", "degree": 0}, {"id": "421", "label": "Community 421", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 421", "community": 421, "community_name": "Community 421", "source_file": "", "file_type": "", "degree": 4}, {"id": "679", "label": "Community 679", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 679", "community": 679, "community_name": "Community 679", "source_file": "", "file_type": "", "degree": 0}, {"id": "290", "label": "Community 290", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 290", "community": 290, "community_name": "Community 290", "source_file": "", "file_type": "", "degree": 3}, {"id": "414", "label": "Community 414", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 414", "community": 414, "community_name": "Community 414", "source_file": "", "file_type": "", "degree": 3}, {"id": "74", "label": "Community 74", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 74", "community": 74, "community_name": "Community 74", "source_file": "", "file_type": "", "degree": 5}, {"id": "50", "label": "Community 50", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 50", "community": 50, "community_name": "Community 50", "source_file": "", "file_type": "", "degree": 11}, {"id": "124", "label": "Community 124", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 124", "community": 124, "community_name": "Community 124", "source_file": "", "file_type": "", "degree": 2}, {"id": "806", "label": "Community 806", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 806", "community": 806, "community_name": "Community 806", "source_file": "", "file_type": "", "degree": 0}, {"id": "96", "label": "Community 96", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 96", "community": 96, "community_name": "Community 96", "source_file": "", "file_type": "", "degree": 0}, {"id": "807", "label": "Community 807", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 807", "community": 807, "community_name": "Community 807", "source_file": "", "file_type": "", "degree": 0}, {"id": "623", "label": "Community 623", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 623", "community": 623, "community_name": "Community 623", "source_file": "", "file_type": "", "degree": 0}, {"id": "808", "label": "Community 808", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 808", "community": 808, "community_name": "Community 808", "source_file": "", "file_type": "", "degree": 0}, {"id": "809", "label": "Community 809", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 809", "community": 809, "community_name": "Community 809", "source_file": "", "file_type": "", "degree": 0}, {"id": "810", "label": "Community 810", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 810", "community": 810, "community_name": "Community 810", "source_file": "", "file_type": "", "degree": 0}, {"id": "811", "label": "Community 811", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 811", "community": 811, "community_name": "Community 811", "source_file": "", "file_type": "", "degree": 0}, {"id": "712", "label": "Community 712", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 712", "community": 712, "community_name": "Community 712", "source_file": "", "file_type": "", "degree": 0}, {"id": "812", "label": "Community 812", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 812", "community": 812, "community_name": "Community 812", "source_file": "", "file_type": "", "degree": 0}, {"id": "813", "label": "Community 813", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 813", "community": 813, "community_name": "Community 813", "source_file": "", "file_type": "", "degree": 0}, {"id": "814", "label": "Community 814", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 814", "community": 814, "community_name": "Community 814", "source_file": "", "file_type": "", "degree": 0}, {"id": "815", "label": "Community 815", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 815", "community": 815, "community_name": "Community 815", "source_file": "", "file_type": "", "degree": 0}, {"id": "816", "label": "Community 816", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 816", "community": 816, "community_name": "Community 816", "source_file": "", "file_type": "", "degree": 0}, {"id": "817", "label": "Community 817", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 817", "community": 817, "community_name": "Community 817", "source_file": "", "file_type": "", "degree": 0}, {"id": "818", "label": "Community 818", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 818", "community": 818, "community_name": "Community 818", "source_file": "", "file_type": "", "degree": 0}, {"id": "819", "label": "Community 819", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 819", "community": 819, "community_name": "Community 819", "source_file": "", "file_type": "", "degree": 0}, {"id": "820", "label": "Community 820", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 820", "community": 820, "community_name": "Community 820", "source_file": "", "file_type": "", "degree": 0}, {"id": "821", "label": "Community 821", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 821", "community": 821, "community_name": "Community 821", "source_file": "", "file_type": "", "degree": 0}, {"id": "822", "label": "Community 822", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 822", "community": 822, "community_name": "Community 822", "source_file": "", "file_type": "", "degree": 0}, {"id": "823", "label": "Community 823", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 823", "community": 823, "community_name": "Community 823", "source_file": "", "file_type": "", "degree": 0}, {"id": "824", "label": "Community 824", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 824", "community": 824, "community_name": "Community 824", "source_file": "", "file_type": "", "degree": 0}, {"id": "825", "label": "Community 825", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 825", "community": 825, "community_name": "Community 825", "source_file": "", "file_type": "", "degree": 0}, {"id": "615", "label": "Community 615", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 615", "community": 615, "community_name": "Community 615", "source_file": "", "file_type": "", "degree": 1}, {"id": "826", "label": "Community 826", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 826", "community": 826, "community_name": "Community 826", "source_file": "", "file_type": "", "degree": 0}, {"id": "711", "label": "Community 711", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 711", "community": 711, "community_name": "Community 711", "source_file": "", "file_type": "", "degree": 0}, {"id": "827", "label": "Community 827", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 827", "community": 827, "community_name": "Community 827", "source_file": "", "file_type": "", "degree": 0}, {"id": "632", "label": "Community 632", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 632", "community": 632, "community_name": "Community 632", "source_file": "", "file_type": "", "degree": 0}, {"id": "828", "label": "Community 828", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 828", "community": 828, "community_name": "Community 828", "source_file": "", "file_type": "", "degree": 0}, {"id": "763", "label": "Community 763", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 763", "community": 763, "community_name": "Community 763", "source_file": "", "file_type": "", "degree": 0}, {"id": "667", "label": "Community 667", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 667", "community": 667, "community_name": "Community 667", "source_file": "", "file_type": "", "degree": 0}, {"id": "649", "label": "Community 649", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 649", "community": 649, "community_name": "Community 649", "source_file": "", "file_type": "", "degree": 0}, {"id": "648", "label": "Community 648", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 648", "community": 648, "community_name": "Community 648", "source_file": "", "file_type": "", "degree": 0}, {"id": "287", "label": "Community 287", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 287", "community": 287, "community_name": "Community 287", "source_file": "", "file_type": "", "degree": 1}, {"id": "454", "label": "Community 454", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 454", "community": 454, "community_name": "Community 454", "source_file": "", "file_type": "", "degree": 1}, {"id": "420", "label": "Community 420", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 420", "community": 420, "community_name": "Community 420", "source_file": "", "file_type": "", "degree": 2}, {"id": "609", "label": "Community 609", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 609", "community": 609, "community_name": "Community 609", "source_file": "", "file_type": "", "degree": 1}, {"id": "696", "label": "Community 696", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 696", "community": 696, "community_name": "Community 696", "source_file": "", "file_type": "", "degree": 1}, {"id": "254", "label": "Community 254", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 254", "community": 254, "community_name": "Community 254", "source_file": "", "file_type": "", "degree": 3}, {"id": "438", "label": "Community 438", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 438", "community": 438, "community_name": "Community 438", "source_file": "", "file_type": "", "degree": 8}, {"id": "122", "label": "Community 122", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 122", "community": 122, "community_name": "Community 122", "source_file": "", "file_type": "", "degree": 3}, {"id": "693", "label": "Community 693", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 693", "community": 693, "community_name": "Community 693", "source_file": "", "file_type": "", "degree": 0}, {"id": "109", "label": "Community 109", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 109", "community": 109, "community_name": "Community 109", "source_file": "", "file_type": "", "degree": 3}, {"id": "77", "label": "Community 77", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 77", "community": 77, "community_name": "Community 77", "source_file": "", "file_type": "", "degree": 0}, {"id": "829", "label": "Community 829", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 829", "community": 829, "community_name": "Community 829", "source_file": "", "file_type": "", "degree": 0}, {"id": "830", "label": "Community 830", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 830", "community": 830, "community_name": "Community 830", "source_file": "", "file_type": "", "degree": 0}, {"id": "686", "label": "Community 686", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 686", "community": 686, "community_name": "Community 686", "source_file": "", "file_type": "", "degree": 4}, {"id": "16", "label": "Devices Management Screen", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 18.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Devices Management Screen", "community": 16, "community_name": "Devices Management Screen", "source_file": "", "file_type": "", "degree": 3}, {"id": "388", "label": "Community 388", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 388", "community": 388, "community_name": "Community 388", "source_file": "", "file_type": "", "degree": 2}, {"id": "76", "label": "Community 76", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 76", "community": 76, "community_name": "Community 76", "source_file": "", "file_type": "", "degree": 2}, {"id": "13", "label": "i18n: Landing Page Strings", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 19.1, "font": {"size": 12, "color": "#ffffff"}, "title": "i18n: Landing Page Strings", "community": 13, "community_name": "i18n: Landing Page Strings", "source_file": "", "file_type": "", "degree": 4}, {"id": "687", "label": "Community 687", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 687", "community": 687, "community_name": "Community 687", "source_file": "", "file_type": "", "degree": 4}, {"id": "14", "label": "i18n: Auth Strings", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 19.0, "font": {"size": 12, "color": "#ffffff"}, "title": "i18n: Auth Strings", "community": 14, "community_name": "i18n: Auth Strings", "source_file": "", "file_type": "", "degree": 1}, {"id": "390", "label": "Community 390", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 390", "community": 390, "community_name": "Community 390", "source_file": "", "file_type": "", "degree": 2}, {"id": "70", "label": "Community 70", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 70", "community": 70, "community_name": "Community 70", "source_file": "", "file_type": "", "degree": 2}, {"id": "12", "label": "Tauri ACL Manifests (Magic Win)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Tauri ACL Manifests (Magic Win)", "community": 12, "community_name": "Tauri ACL Manifests (Magic Win)", "source_file": "", "file_type": "", "degree": 3}, {"id": "831", "label": "Community 831", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 831", "community": 831, "community_name": "Community 831", "source_file": "", "file_type": "", "degree": 0}, {"id": "832", "label": "Community 832", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 832", "community": 832, "community_name": "Community 832", "source_file": "", "file_type": "", "degree": 0}, {"id": "631", "label": "Community 631", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 631", "community": 631, "community_name": "Community 631", "source_file": "", "file_type": "", "degree": 0}, {"id": "833", "label": "Community 833", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 833", "community": 833, "community_name": "Community 833", "source_file": "", "file_type": "", "degree": 0}, {"id": "834", "label": "Community 834", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 834", "community": 834, "community_name": "Community 834", "source_file": "", "file_type": "", "degree": 0}, {"id": "835", "label": "Community 835", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 835", "community": 835, "community_name": "Community 835", "source_file": "", "file_type": "", "degree": 0}, {"id": "836", "label": "Community 836", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 836", "community": 836, "community_name": "Community 836", "source_file": "", "file_type": "", "degree": 0}, {"id": "617", "label": "Community 617", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 617", "community": 617, "community_name": "Community 617", "source_file": "", "file_type": "", "degree": 0}, {"id": "837", "label": "Community 837", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 837", "community": 837, "community_name": "Community 837", "source_file": "", "file_type": "", "degree": 0}, {"id": "838", "label": "Community 838", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 838", "community": 838, "community_name": "Community 838", "source_file": "", "file_type": "", "degree": 0}, {"id": "839", "label": "Community 839", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 839", "community": 839, "community_name": "Community 839", "source_file": "", "file_type": "", "degree": 0}, {"id": "840", "label": "Community 840", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 840", "community": 840, "community_name": "Community 840", "source_file": "", "file_type": "", "degree": 0}, {"id": "841", "label": "Community 841", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 841", "community": 841, "community_name": "Community 841", "source_file": "", "file_type": "", "degree": 0}, {"id": "263", "label": "Community 263", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 263", "community": 263, "community_name": "Community 263", "source_file": "", "file_type": "", "degree": 2}, {"id": "430", "label": "Community 430", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 430", "community": 430, "community_name": "Community 430", "source_file": "", "file_type": "", "degree": 1}, {"id": "129", "label": "Community 129", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 129", "community": 129, "community_name": "Community 129", "source_file": "", "file_type": "", "degree": 2}, {"id": "599", "label": "Community 599", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 599", "community": 599, "community_name": "Community 599", "source_file": "", "file_type": "", "degree": 1}, {"id": "755", "label": "Community 755", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 755", "community": 755, "community_name": "Community 755", "source_file": "", "file_type": "", "degree": 0}, {"id": "842", "label": "Community 842", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 842", "community": 842, "community_name": "Community 842", "source_file": "", "file_type": "", "degree": 0}, {"id": "425", "label": "Community 425", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 425", "community": 425, "community_name": "Community 425", "source_file": "", "file_type": "", "degree": 3}, {"id": "622", "label": "Community 622", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 622", "community": 622, "community_name": "Community 622", "source_file": "", "file_type": "", "degree": 0}, {"id": "453", "label": "Community 453", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 453", "community": 453, "community_name": "Community 453", "source_file": "", "file_type": "", "degree": 0}, {"id": "684", "label": "Community 684", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 684", "community": 684, "community_name": "Community 684", "source_file": "", "file_type": "", "degree": 0}, {"id": "446", "label": "Community 446", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 446", "community": 446, "community_name": "Community 446", "source_file": "", "file_type": "", "degree": 1}, {"id": "630", "label": "Community 630", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 630", "community": 630, "community_name": "Community 630", "source_file": "", "file_type": "", "degree": 0}, {"id": "600", "label": "Community 600", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 600", "community": 600, "community_name": "Community 600", "source_file": "", "file_type": "", "degree": 2}, {"id": "289", "label": "Community 289", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 289", "community": 289, "community_name": "Community 289", "source_file": "", "file_type": "", "degree": 3}, {"id": "431", "label": "Community 431", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 431", "community": 431, "community_name": "Community 431", "source_file": "", "file_type": "", "degree": 3}, {"id": "647", "label": "Community 647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 647", "community": 647, "community_name": "Community 647", "source_file": "", "file_type": "", "degree": 0}, {"id": "568", "label": "Community 568", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 568", "community": 568, "community_name": "Community 568", "source_file": "", "file_type": "", "degree": 7}, {"id": "387", "label": "Community 387", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 387", "community": 387, "community_name": "Community 387", "source_file": "", "file_type": "", "degree": 1}, {"id": "444", "label": "Community 444", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 444", "community": 444, "community_name": "Community 444", "source_file": "", "file_type": "", "degree": 0}, {"id": "706", "label": "Community 706", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 706", "community": 706, "community_name": "Community 706", "source_file": "", "file_type": "", "degree": 0}, {"id": "707", "label": "Community 707", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 707", "community": 707, "community_name": "Community 707", "source_file": "", "file_type": "", "degree": 0}, {"id": "72", "label": "Community 72", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 72", "community": 72, "community_name": "Community 72", "source_file": "", "file_type": "", "degree": 0}, {"id": "633", "label": "Community 633", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 633", "community": 633, "community_name": "Community 633", "source_file": "", "file_type": "", "degree": 0}, {"id": "52", "label": "Community 52", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 52", "community": 52, "community_name": "Community 52", "source_file": "", "file_type": "", "degree": 0}, {"id": "843", "label": "Community 843", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 843", "community": 843, "community_name": "Community 843", "source_file": "", "file_type": "", "degree": 0}, {"id": "634", "label": "Community 634", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 634", "community": 634, "community_name": "Community 634", "source_file": "", "file_type": "", "degree": 0}, {"id": "619", "label": "Community 619", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 619", "community": 619, "community_name": "Community 619", "source_file": "", "file_type": "", "degree": 0}, {"id": "596", "label": "Community 596", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 596", "community": 596, "community_name": "Community 596", "source_file": "", "file_type": "", "degree": 0}, {"id": "709", "label": "Community 709", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 709", "community": 709, "community_name": "Community 709", "source_file": "", "file_type": "", "degree": 0}, {"id": "754", "label": "Community 754", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 754", "community": 754, "community_name": "Community 754", "source_file": "", "file_type": "", "degree": 0}, {"id": "270", "label": "Community 270", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 270", "community": 270, "community_name": "Community 270", "source_file": "", "file_type": "", "degree": 1}, {"id": "844", "label": "Community 844", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 844", "community": 844, "community_name": "Community 844", "source_file": "", "file_type": "", "degree": 0}, {"id": "845", "label": "Community 845", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 845", "community": 845, "community_name": "Community 845", "source_file": "", "file_type": "", "degree": 0}, {"id": "846", "label": "Community 846", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 846", "community": 846, "community_name": "Community 846", "source_file": "", "file_type": "", "degree": 0}, {"id": "847", "label": "Community 847", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 847", "community": 847, "community_name": "Community 847", "source_file": "", "file_type": "", "degree": 0}, {"id": "848", "label": "Community 848", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 848", "community": 848, "community_name": "Community 848", "source_file": "", "file_type": "", "degree": 0}, {"id": "257", "label": "Community 257", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 257", "community": 257, "community_name": "Community 257", "source_file": "", "file_type": "", "degree": 4}, {"id": "849", "label": "Community 849", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 849", "community": 849, "community_name": "Community 849", "source_file": "", "file_type": "", "degree": 0}, {"id": "850", "label": "Community 850", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 850", "community": 850, "community_name": "Community 850", "source_file": "", "file_type": "", "degree": 0}, {"id": "60", "label": "Community 60", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 60", "community": 60, "community_name": "Community 60", "source_file": "", "file_type": "", "degree": 6}, {"id": "682", "label": "Community 682", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 682", "community": 682, "community_name": "Community 682", "source_file": "", "file_type": "", "degree": 0}, {"id": "851", "label": "Community 851", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 851", "community": 851, "community_name": "Community 851", "source_file": "", "file_type": "", "degree": 0}, {"id": "566", "label": "Community 566", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 566", "community": 566, "community_name": "Community 566", "source_file": "", "file_type": "", "degree": 1}, {"id": "710", "label": "Community 710", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 710", "community": 710, "community_name": "Community 710", "source_file": "", "file_type": "", "degree": 0}, {"id": "636", "label": "Community 636", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 636", "community": 636, "community_name": "Community 636", "source_file": "", "file_type": "", "degree": 0}, {"id": "611", "label": "Community 611", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 611", "community": 611, "community_name": "Community 611", "source_file": "", "file_type": "", "degree": 0}, {"id": "635", "label": "Community 635", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 635", "community": 635, "community_name": "Community 635", "source_file": "", "file_type": "", "degree": 1}, {"id": "689", "label": "Community 689", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 689", "community": 689, "community_name": "Community 689", "source_file": "", "file_type": "", "degree": 1}, {"id": "95", "label": "Community 95", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 95", "community": 95, "community_name": "Community 95", "source_file": "", "file_type": "", "degree": 4}, {"id": "698", "label": "Community 698", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 698", "community": 698, "community_name": "Community 698", "source_file": "", "file_type": "", "degree": 0}, {"id": "758", "label": "Community 758", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 758", "community": 758, "community_name": "Community 758", "source_file": "", "file_type": "", "degree": 0}, {"id": "603", "label": "Community 603", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 603", "community": 603, "community_name": "Community 603", "source_file": "", "file_type": "", "degree": 4}, {"id": "610", "label": "Community 610", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 610", "community": 610, "community_name": "Community 610", "source_file": "", "file_type": "", "degree": 0}, {"id": "852", "label": "Community 852", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 852", "community": 852, "community_name": "Community 852", "source_file": "", "file_type": "", "degree": 0}, {"id": "853", "label": "Community 853", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 853", "community": 853, "community_name": "Community 853", "source_file": "", "file_type": "", "degree": 0}, {"id": "580", "label": "Community 580", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 580", "community": 580, "community_name": "Community 580", "source_file": "", "file_type": "", "degree": 0}, {"id": "345", "label": "Community 345", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 345", "community": 345, "community_name": "Community 345", "source_file": "", "file_type": "", "degree": 0}, {"id": "202", "label": "Community 202", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 202", "community": 202, "community_name": "Community 202", "source_file": "", "file_type": "", "degree": 0}, {"id": "154", "label": "Community 154", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 154", "community": 154, "community_name": "Community 154", "source_file": "", "file_type": "", "degree": 0}, {"id": "170", "label": "Community 170", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 170", "community": 170, "community_name": "Community 170", "source_file": "", "file_type": "", "degree": 0}, {"id": "409", "label": "Community 409", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 409", "community": 409, "community_name": "Community 409", "source_file": "", "file_type": "", "degree": 0}, {"id": "210", "label": "Community 210", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 210", "community": 210, "community_name": "Community 210", "source_file": "", "file_type": "", "degree": 0}, {"id": "193", "label": "Community 193", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 193", "community": 193, "community_name": "Community 193", "source_file": "", "file_type": "", "degree": 0}, {"id": "172", "label": "Community 172", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 172", "community": 172, "community_name": "Community 172", "source_file": "", "file_type": "", "degree": 0}, {"id": "625", "label": "Community 625", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 625", "community": 625, "community_name": "Community 625", "source_file": "", "file_type": "", "degree": 0}, {"id": "351", "label": "Community 351", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 351", "community": 351, "community_name": "Community 351", "source_file": "", "file_type": "", "degree": 0}, {"id": "342", "label": "Community 342", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 342", "community": 342, "community_name": "Community 342", "source_file": "", "file_type": "", "degree": 0}, {"id": "398", "label": "Community 398", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 398", "community": 398, "community_name": "Community 398", "source_file": "", "file_type": "", "degree": 0}, {"id": "229", "label": "Community 229", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 229", "community": 229, "community_name": "Community 229", "source_file": "", "file_type": "", "degree": 0}, {"id": "37", "label": "Community 37", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 37", "community": 37, "community_name": "Community 37", "source_file": "", "file_type": "", "degree": 0}, {"id": "350", "label": "Community 350", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 350", "community": 350, "community_name": "Community 350", "source_file": "", "file_type": "", "degree": 0}, {"id": "585", "label": "Community 585", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 585", "community": 585, "community_name": "Community 585", "source_file": "", "file_type": "", "degree": 0}, {"id": "402", "label": "Community 402", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 402", "community": 402, "community_name": "Community 402", "source_file": "", "file_type": "", "degree": 0}, {"id": "218", "label": "Community 218", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 218", "community": 218, "community_name": "Community 218", "source_file": "", "file_type": "", "degree": 0}, {"id": "141", "label": "Community 141", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 141", "community": 141, "community_name": "Community 141", "source_file": "", "file_type": "", "degree": 0}, {"id": "348", "label": "Community 348", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 348", "community": 348, "community_name": "Community 348", "source_file": "", "file_type": "", "degree": 0}, {"id": "381", "label": "Community 381", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 381", "community": 381, "community_name": "Community 381", "source_file": "", "file_type": "", "degree": 0}, {"id": "642", "label": "Community 642", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 642", "community": 642, "community_name": "Community 642", "source_file": "", "file_type": "", "degree": 0}, {"id": "374", "label": "Community 374", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 374", "community": 374, "community_name": "Community 374", "source_file": "", "file_type": "", "degree": 0}, {"id": "382", "label": "Community 382", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 382", "community": 382, "community_name": "Community 382", "source_file": "", "file_type": "", "degree": 0}, {"id": "142", "label": "Community 142", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 142", "community": 142, "community_name": "Community 142", "source_file": "", "file_type": "", "degree": 0}, {"id": "377", "label": "Community 377", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 377", "community": 377, "community_name": "Community 377", "source_file": "", "file_type": "", "degree": 0}, {"id": "547", "label": "Community 547", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 547", "community": 547, "community_name": "Community 547", "source_file": "", "file_type": "", "degree": 0}, {"id": "119", "label": "Community 119", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 119", "community": 119, "community_name": "Community 119", "source_file": "", "file_type": "", "degree": 0}, {"id": "252", "label": "Community 252", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 252", "community": 252, "community_name": "Community 252", "source_file": "", "file_type": "", "degree": 0}, {"id": "378", "label": "Community 378", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 378", "community": 378, "community_name": "Community 378", "source_file": "", "file_type": "", "degree": 0}, {"id": "224", "label": "Community 224", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 224", "community": 224, "community_name": "Community 224", "source_file": "", "file_type": "", "degree": 0}, {"id": "373", "label": "Community 373", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 373", "community": 373, "community_name": "Community 373", "source_file": "", "file_type": "", "degree": 0}, {"id": "188", "label": "Community 188", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 188", "community": 188, "community_name": "Community 188", "source_file": "", "file_type": "", "degree": 0}, {"id": "368", "label": "Community 368", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 368", "community": 368, "community_name": "Community 368", "source_file": "", "file_type": "", "degree": 0}, {"id": "588", "label": "Community 588", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 588", "community": 588, "community_name": "Community 588", "source_file": "", "file_type": "", "degree": 0}, {"id": "370", "label": "Community 370", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 370", "community": 370, "community_name": "Community 370", "source_file": "", "file_type": "", "degree": 0}, {"id": "149", "label": "Community 149", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 149", "community": 149, "community_name": "Community 149", "source_file": "", "file_type": "", "degree": 0}, {"id": "211", "label": "Community 211", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 211", "community": 211, "community_name": "Community 211", "source_file": "", "file_type": "", "degree": 0}, {"id": "241", "label": "Community 241", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 241", "community": 241, "community_name": "Community 241", "source_file": "", "file_type": "", "degree": 0}, {"id": "230", "label": "Community 230", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 230", "community": 230, "community_name": "Community 230", "source_file": "", "file_type": "", "degree": 0}, {"id": "200", "label": "Community 200", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 200", "community": 200, "community_name": "Community 200", "source_file": "", "file_type": "", "degree": 0}, {"id": "339", "label": "Community 339", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 339", "community": 339, "community_name": "Community 339", "source_file": "", "file_type": "", "degree": 0}, {"id": "168", "label": "Community 168", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 168", "community": 168, "community_name": "Community 168", "source_file": "", "file_type": "", "degree": 0}, {"id": "332", "label": "Community 332", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 332", "community": 332, "community_name": "Community 332", "source_file": "", "file_type": "", "degree": 0}, {"id": "340", "label": "Community 340", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 340", "community": 340, "community_name": "Community 340", "source_file": "", "file_type": "", "degree": 0}, {"id": "214", "label": "Community 214", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 214", "community": 214, "community_name": "Community 214", "source_file": "", "file_type": "", "degree": 0}, {"id": "591", "label": "Community 591", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 591", "community": 591, "community_name": "Community 591", "source_file": "", "file_type": "", "degree": 0}, {"id": "335", "label": "Community 335", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 335", "community": 335, "community_name": "Community 335", "source_file": "", "file_type": "", "degree": 0}, {"id": "167", "label": "Community 167", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 167", "community": 167, "community_name": "Community 167", "source_file": "", "file_type": "", "degree": 0}, {"id": "336", "label": "Community 336", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 336", "community": 336, "community_name": "Community 336", "source_file": "", "file_type": "", "degree": 0}, {"id": "331", "label": "Community 331", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 331", "community": 331, "community_name": "Community 331", "source_file": "", "file_type": "", "degree": 0}, {"id": "234", "label": "Community 234", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 234", "community": 234, "community_name": "Community 234", "source_file": "", "file_type": "", "degree": 0}, {"id": "140", "label": "Community 140", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 140", "community": 140, "community_name": "Community 140", "source_file": "", "file_type": "", "degree": 0}, {"id": "253", "label": "Community 253", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 253", "community": 253, "community_name": "Community 253", "source_file": "", "file_type": "", "degree": 0}, {"id": "326", "label": "Community 326", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 326", "community": 326, "community_name": "Community 326", "source_file": "", "file_type": "", "degree": 0}, {"id": "111", "label": "Community 111", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 111", "community": 111, "community_name": "Community 111", "source_file": "", "file_type": "", "degree": 0}, {"id": "646", "label": "Community 646", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 646", "community": 646, "community_name": "Community 646", "source_file": "", "file_type": "", "degree": 0}, {"id": "155", "label": "Community 155", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 155", "community": 155, "community_name": "Community 155", "source_file": "", "file_type": "", "degree": 0}, {"id": "576", "label": "Community 576", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 576", "community": 576, "community_name": "Community 576", "source_file": "", "file_type": "", "degree": 0}, {"id": "328", "label": "Community 328", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 328", "community": 328, "community_name": "Community 328", "source_file": "", "file_type": "", "degree": 0}, {"id": "219", "label": "Community 219", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 219", "community": 219, "community_name": "Community 219", "source_file": "", "file_type": "", "degree": 0}, {"id": "187", "label": "Community 187", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 187", "community": 187, "community_name": "Community 187", "source_file": "", "file_type": "", "degree": 0}, {"id": "365", "label": "Community 365", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 365", "community": 365, "community_name": "Community 365", "source_file": "", "file_type": "", "degree": 0}, {"id": "221", "label": "Community 221", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 221", "community": 221, "community_name": "Community 221", "source_file": "", "file_type": "", "degree": 0}, {"id": "138", "label": "Community 138", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 138", "community": 138, "community_name": "Community 138", "source_file": "", "file_type": "", "degree": 0}, {"id": "638", "label": "Community 638", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 638", "community": 638, "community_name": "Community 638", "source_file": "", "file_type": "", "degree": 0}, {"id": "358", "label": "Community 358", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 358", "community": 358, "community_name": "Community 358", "source_file": "", "file_type": "", "degree": 0}, {"id": "366", "label": "Community 366", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 366", "community": 366, "community_name": "Community 366", "source_file": "", "file_type": "", "degree": 0}, {"id": "361", "label": "Community 361", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 361", "community": 361, "community_name": "Community 361", "source_file": "", "file_type": "", "degree": 0}, {"id": "204", "label": "Community 204", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 204", "community": 204, "community_name": "Community 204", "source_file": "", "file_type": "", "degree": 0}, {"id": "153", "label": "Community 153", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 153", "community": 153, "community_name": "Community 153", "source_file": "", "file_type": "", "degree": 0}, {"id": "362", "label": "Community 362", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 362", "community": 362, "community_name": "Community 362", "source_file": "", "file_type": "", "degree": 0}, {"id": "528", "label": "Community 528", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 528", "community": 528, "community_name": "Community 528", "source_file": "", "file_type": "", "degree": 0}, {"id": "189", "label": "Community 189", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 189", "community": 189, "community_name": "Community 189", "source_file": "", "file_type": "", "degree": 0}, {"id": "357", "label": "Community 357", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 357", "community": 357, "community_name": "Community 357", "source_file": "", "file_type": "", "degree": 0}, {"id": "175", "label": "Community 175", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 175", "community": 175, "community_name": "Community 175", "source_file": "", "file_type": "", "degree": 0}, {"id": "352", "label": "Community 352", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 352", "community": 352, "community_name": "Community 352", "source_file": "", "file_type": "", "degree": 0}, {"id": "590", "label": "Community 590", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 590", "community": 590, "community_name": "Community 590", "source_file": "", "file_type": "", "degree": 0}, {"id": "354", "label": "Community 354", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 354", "community": 354, "community_name": "Community 354", "source_file": "", "file_type": "", "degree": 0}, {"id": "245", "label": "Community 245", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 245", "community": 245, "community_name": "Community 245", "source_file": "", "file_type": "", "degree": 0}, {"id": "176", "label": "Community 176", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 176", "community": 176, "community_name": "Community 176", "source_file": "", "file_type": "", "degree": 0}, {"id": "174", "label": "Community 174", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 174", "community": 174, "community_name": "Community 174", "source_file": "", "file_type": "", "degree": 0}, {"id": "249", "label": "Community 249", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 249", "community": 249, "community_name": "Community 249", "source_file": "", "file_type": "", "degree": 0}, {"id": "407", "label": "Community 407", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 407", "community": 407, "community_name": "Community 407", "source_file": "", "file_type": "", "degree": 0}, {"id": "136", "label": "Community 136", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 136", "community": 136, "community_name": "Community 136", "source_file": "", "file_type": "", "degree": 0}, {"id": "198", "label": "Community 198", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 198", "community": 198, "community_name": "Community 198", "source_file": "", "file_type": "", "degree": 0}, {"id": "304", "label": "Community 304", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 304", "community": 304, "community_name": "Community 304", "source_file": "", "file_type": "", "degree": 0}, {"id": "38", "label": "Community 38", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 38", "community": 38, "community_name": "Community 38", "source_file": "", "file_type": "", "degree": 0}, {"id": "185", "label": "Community 185", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 185", "community": 185, "community_name": "Community 185", "source_file": "", "file_type": "", "degree": 0}, {"id": "217", "label": "Community 217", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 217", "community": 217, "community_name": "Community 217", "source_file": "", "file_type": "", "degree": 0}, {"id": "305", "label": "Community 305", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 305", "community": 305, "community_name": "Community 305", "source_file": "", "file_type": "", "degree": 0}, {"id": "303", "label": "Community 303", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 303", "community": 303, "community_name": "Community 303", "source_file": "", "file_type": "", "degree": 0}, {"id": "589", "label": "Community 589", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 589", "community": 589, "community_name": "Community 589", "source_file": "", "file_type": "", "degree": 0}, {"id": "401", "label": "Community 401", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 401", "community": 401, "community_name": "Community 401", "source_file": "", "file_type": "", "degree": 0}, {"id": "238", "label": "Community 238", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 238", "community": 238, "community_name": "Community 238", "source_file": "", "file_type": "", "degree": 0}, {"id": "307", "label": "Community 307", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 307", "community": 307, "community_name": "Community 307", "source_file": "", "file_type": "", "degree": 0}, {"id": "125", "label": "Community 125", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 125", "community": 125, "community_name": "Community 125", "source_file": "", "file_type": "", "degree": 0}, {"id": "209", "label": "Community 209", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 209", "community": 209, "community_name": "Community 209", "source_file": "", "file_type": "", "degree": 0}, {"id": "306", "label": "Community 306", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 306", "community": 306, "community_name": "Community 306", "source_file": "", "file_type": "", "degree": 0}, {"id": "42", "label": "Community 42", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 42", "community": 42, "community_name": "Community 42", "source_file": "", "file_type": "", "degree": 0}, {"id": "854", "label": "Community 854", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 854", "community": 854, "community_name": "Community 854", "source_file": "", "file_type": "", "degree": 0}, {"id": "89", "label": "Community 89", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 89", "community": 89, "community_name": "Community 89", "source_file": "", "file_type": "", "degree": 0}, {"id": "671", "label": "Community 671", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 671", "community": 671, "community_name": "Community 671", "source_file": "", "file_type": "", "degree": 0}, {"id": "728", "label": "Community 728", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 728", "community": 728, "community_name": "Community 728", "source_file": "", "file_type": "", "degree": 0}, {"id": "729", "label": "Community 729", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 729", "community": 729, "community_name": "Community 729", "source_file": "", "file_type": "", "degree": 0}, {"id": "726", "label": "Community 726", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 726", "community": 726, "community_name": "Community 726", "source_file": "", "file_type": "", "degree": 0}, {"id": "727", "label": "Community 727", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 727", "community": 727, "community_name": "Community 727", "source_file": "", "file_type": "", "degree": 0}, {"id": "120", "label": "Community 120", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 120", "community": 120, "community_name": "Community 120", "source_file": "", "file_type": "", "degree": 0}, {"id": "323", "label": "Community 323", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 323", "community": 323, "community_name": "Community 323", "source_file": "", "file_type": "", "degree": 0}, {"id": "184", "label": "Community 184", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 184", "community": 184, "community_name": "Community 184", "source_file": "", "file_type": "", "degree": 0}, {"id": "502", "label": "Community 502", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 502", "community": 502, "community_name": "Community 502", "source_file": "", "file_type": "", "degree": 0}, {"id": "499", "label": "Community 499", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 499", "community": 499, "community_name": "Community 499", "source_file": "", "file_type": "", "degree": 0}, {"id": "498", "label": "Community 498", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 498", "community": 498, "community_name": "Community 498", "source_file": "", "file_type": "", "degree": 0}, {"id": "637", "label": "Community 637", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 637", "community": 637, "community_name": "Community 637", "source_file": "", "file_type": "", "degree": 0}, {"id": "208", "label": "Community 208", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 208", "community": 208, "community_name": "Community 208", "source_file": "", "file_type": "", "degree": 0}, {"id": "237", "label": "Community 237", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 237", "community": 237, "community_name": "Community 237", "source_file": "", "file_type": "", "degree": 0}, {"id": "228", "label": "Community 228", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 228", "community": 228, "community_name": "Community 228", "source_file": "", "file_type": "", "degree": 0}, {"id": "582", "label": "Community 582", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 582", "community": 582, "community_name": "Community 582", "source_file": "", "file_type": "", "degree": 0}, {"id": "587", "label": "Community 587", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 587", "community": 587, "community_name": "Community 587", "source_file": "", "file_type": "", "degree": 0}, {"id": "320", "label": "Community 320", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 320", "community": 320, "community_name": "Community 320", "source_file": "", "file_type": "", "degree": 0}, {"id": "325", "label": "Community 325", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 325", "community": 325, "community_name": "Community 325", "source_file": "", "file_type": "", "degree": 0}, {"id": "322", "label": "Community 322", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 322", "community": 322, "community_name": "Community 322", "source_file": "", "file_type": "", "degree": 0}, {"id": "280", "label": "Community 280", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 280", "community": 280, "community_name": "Community 280", "source_file": "", "file_type": "", "degree": 0}, {"id": "501", "label": "Community 501", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 501", "community": 501, "community_name": "Community 501", "source_file": "", "file_type": "", "degree": 0}, {"id": "321", "label": "Community 321", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 321", "community": 321, "community_name": "Community 321", "source_file": "", "file_type": "", "degree": 0}, {"id": "147", "label": "Community 147", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 147", "community": 147, "community_name": "Community 147", "source_file": "", "file_type": "", "degree": 0}, {"id": "216", "label": "Community 216", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 216", "community": 216, "community_name": "Community 216", "source_file": "", "file_type": "", "degree": 0}, {"id": "135", "label": "Community 135", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 135", "community": 135, "community_name": "Community 135", "source_file": "", "file_type": "", "degree": 0}, {"id": "318", "label": "Community 318", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 318", "community": 318, "community_name": "Community 318", "source_file": "", "file_type": "", "degree": 0}, {"id": "503", "label": "Community 503", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 503", "community": 503, "community_name": "Community 503", "source_file": "", "file_type": "", "degree": 0}, {"id": "319", "label": "Community 319", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 319", "community": 319, "community_name": "Community 319", "source_file": "", "file_type": "", "degree": 0}, {"id": "324", "label": "Community 324", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 324", "community": 324, "community_name": "Community 324", "source_file": "", "file_type": "", "degree": 0}, {"id": "197", "label": "Community 197", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 197", "community": 197, "community_name": "Community 197", "source_file": "", "file_type": "", "degree": 0}, {"id": "500", "label": "Community 500", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 500", "community": 500, "community_name": "Community 500", "source_file": "", "file_type": "", "degree": 0}, {"id": "247", "label": "Community 247", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 247", "community": 247, "community_name": "Community 247", "source_file": "", "file_type": "", "degree": 0}, {"id": "299", "label": "Community 299", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 299", "community": 299, "community_name": "Community 299", "source_file": "", "file_type": "", "degree": 0}, {"id": "593", "label": "Community 593", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 593", "community": 593, "community_name": "Community 593", "source_file": "", "file_type": "", "degree": 0}, {"id": "162", "label": "Community 162", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 162", "community": 162, "community_name": "Community 162", "source_file": "", "file_type": "", "degree": 0}, {"id": "145", "label": "Community 145", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 145", "community": 145, "community_name": "Community 145", "source_file": "", "file_type": "", "degree": 0}, {"id": "205", "label": "Community 205", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 205", "community": 205, "community_name": "Community 205", "source_file": "", "file_type": "", "degree": 0}, {"id": "199", "label": "Community 199", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 199", "community": 199, "community_name": "Community 199", "source_file": "", "file_type": "", "degree": 0}, {"id": "236", "label": "Community 236", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 236", "community": 236, "community_name": "Community 236", "source_file": "", "file_type": "", "degree": 0}, {"id": "295", "label": "Community 295", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 295", "community": 295, "community_name": "Community 295", "source_file": "", "file_type": "", "degree": 0}, {"id": "183", "label": "Community 183", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 183", "community": 183, "community_name": "Community 183", "source_file": "", "file_type": "", "degree": 0}, {"id": "302", "label": "Community 302", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 302", "community": 302, "community_name": "Community 302", "source_file": "", "file_type": "", "degree": 0}, {"id": "298", "label": "Community 298", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 298", "community": 298, "community_name": "Community 298", "source_file": "", "file_type": "", "degree": 0}, {"id": "134", "label": "Community 134", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 134", "community": 134, "community_name": "Community 134", "source_file": "", "file_type": "", "degree": 0}, {"id": "296", "label": "Community 296", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 296", "community": 296, "community_name": "Community 296", "source_file": "", "file_type": "", "degree": 0}, {"id": "160", "label": "Community 160", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 160", "community": 160, "community_name": "Community 160", "source_file": "", "file_type": "", "degree": 0}, {"id": "292", "label": "Community 292", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 292", "community": 292, "community_name": "Community 292", "source_file": "", "file_type": "", "degree": 0}, {"id": "293", "label": "Community 293", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 293", "community": 293, "community_name": "Community 293", "source_file": "", "file_type": "", "degree": 0}, {"id": "301", "label": "Community 301", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 301", "community": 301, "community_name": "Community 301", "source_file": "", "file_type": "", "degree": 0}, {"id": "855", "label": "Community 855", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 855", "community": 855, "community_name": "Community 855", "source_file": "", "file_type": "", "degree": 0}, {"id": "88", "label": "Community 88", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 88", "community": 88, "community_name": "Community 88", "source_file": "", "file_type": "", "degree": 0}, {"id": "670", "label": "Community 670", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 670", "community": 670, "community_name": "Community 670", "source_file": "", "file_type": "", "degree": 0}, {"id": "58", "label": "Community 58", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 58", "community": 58, "community_name": "Community 58", "source_file": "", "file_type": "", "degree": 0}, {"id": "724", "label": "Community 724", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 724", "community": 724, "community_name": "Community 724", "source_file": "", "file_type": "", "degree": 0}, {"id": "725", "label": "Community 725", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 725", "community": 725, "community_name": "Community 725", "source_file": "", "file_type": "", "degree": 0}, {"id": "722", "label": "Community 722", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 722", "community": 722, "community_name": "Community 722", "source_file": "", "file_type": "", "degree": 0}, {"id": "723", "label": "Community 723", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 723", "community": 723, "community_name": "Community 723", "source_file": "", "file_type": "", "degree": 0}, {"id": "315", "label": "Community 315", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 315", "community": 315, "community_name": "Community 315", "source_file": "", "file_type": "", "degree": 0}, {"id": "490", "label": "Community 490", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 490", "community": 490, "community_name": "Community 490", "source_file": "", "file_type": "", "degree": 0}, {"id": "488", "label": "Community 488", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 488", "community": 488, "community_name": "Community 488", "source_file": "", "file_type": "", "degree": 0}, {"id": "494", "label": "Community 494", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 494", "community": 494, "community_name": "Community 494", "source_file": "", "file_type": "", "degree": 0}, {"id": "481", "label": "Community 481", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 481", "community": 481, "community_name": "Community 481", "source_file": "", "file_type": "", "degree": 0}, {"id": "480", "label": "Community 480", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 480", "community": 480, "community_name": "Community 480", "source_file": "", "file_type": "", "degree": 0}, {"id": "491", "label": "Community 491", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 491", "community": 491, "community_name": "Community 491", "source_file": "", "file_type": "", "degree": 0}, {"id": "485", "label": "Community 485", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 485", "community": 485, "community_name": "Community 485", "source_file": "", "file_type": "", "degree": 0}, {"id": "227", "label": "Community 227", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 227", "community": 227, "community_name": "Community 227", "source_file": "", "file_type": "", "degree": 0}, {"id": "273", "label": "Community 273", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 273", "community": 273, "community_name": "Community 273", "source_file": "", "file_type": "", "degree": 0}, {"id": "215", "label": "Community 215", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 215", "community": 215, "community_name": "Community 215", "source_file": "", "file_type": "", "degree": 0}, {"id": "186", "label": "Community 186", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 186", "community": 186, "community_name": "Community 186", "source_file": "", "file_type": "", "degree": 0}, {"id": "196", "label": "Community 196", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 196", "community": 196, "community_name": "Community 196", "source_file": "", "file_type": "", "degree": 0}, {"id": "483", "label": "Community 483", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 483", "community": 483, "community_name": "Community 483", "source_file": "", "file_type": "", "degree": 0}, {"id": "312", "label": "Community 312", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 312", "community": 312, "community_name": "Community 312", "source_file": "", "file_type": "", "degree": 0}, {"id": "317", "label": "Community 317", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 317", "community": 317, "community_name": "Community 317", "source_file": "", "file_type": "", "degree": 0}, {"id": "314", "label": "Community 314", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 314", "community": 314, "community_name": "Community 314", "source_file": "", "file_type": "", "degree": 0}, {"id": "495", "label": "Community 495", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 495", "community": 495, "community_name": "Community 495", "source_file": "", "file_type": "", "degree": 0}, {"id": "126", "label": "Community 126", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 126", "community": 126, "community_name": "Community 126", "source_file": "", "file_type": "", "degree": 0}, {"id": "492", "label": "Community 492", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 492", "community": 492, "community_name": "Community 492", "source_file": "", "file_type": "", "degree": 0}, {"id": "493", "label": "Community 493", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 493", "community": 493, "community_name": "Community 493", "source_file": "", "file_type": "", "degree": 0}, {"id": "497", "label": "Community 497", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 497", "community": 497, "community_name": "Community 497", "source_file": "", "file_type": "", "degree": 0}, {"id": "313", "label": "Community 313", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 313", "community": 313, "community_name": "Community 313", "source_file": "", "file_type": "", "degree": 0}, {"id": "644", "label": "Community 644", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 644", "community": 644, "community_name": "Community 644", "source_file": "", "file_type": "", "degree": 0}, {"id": "578", "label": "Community 578", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 578", "community": 578, "community_name": "Community 578", "source_file": "", "file_type": "", "degree": 0}, {"id": "484", "label": "Community 484", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 484", "community": 484, "community_name": "Community 484", "source_file": "", "file_type": "", "degree": 0}, {"id": "148", "label": "Community 148", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 148", "community": 148, "community_name": "Community 148", "source_file": "", "file_type": "", "degree": 0}, {"id": "239", "label": "Community 239", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 239", "community": 239, "community_name": "Community 239", "source_file": "", "file_type": "", "degree": 0}, {"id": "207", "label": "Community 207", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 207", "community": 207, "community_name": "Community 207", "source_file": "", "file_type": "", "degree": 0}, {"id": "489", "label": "Community 489", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 489", "community": 489, "community_name": "Community 489", "source_file": "", "file_type": "", "degree": 0}, {"id": "310", "label": "Community 310", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 310", "community": 310, "community_name": "Community 310", "source_file": "", "file_type": "", "degree": 0}, {"id": "496", "label": "Community 496", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 496", "community": 496, "community_name": "Community 496", "source_file": "", "file_type": "", "degree": 0}, {"id": "482", "label": "Community 482", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 482", "community": 482, "community_name": "Community 482", "source_file": "", "file_type": "", "degree": 0}, {"id": "248", "label": "Community 248", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 248", "community": 248, "community_name": "Community 248", "source_file": "", "file_type": "", "degree": 0}, {"id": "311", "label": "Community 311", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 311", "community": 311, "community_name": "Community 311", "source_file": "", "file_type": "", "degree": 0}, {"id": "316", "label": "Community 316", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 316", "community": 316, "community_name": "Community 316", "source_file": "", "file_type": "", "degree": 0}, {"id": "121", "label": "Community 121", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 121", "community": 121, "community_name": "Community 121", "source_file": "", "file_type": "", "degree": 0}, {"id": "487", "label": "Community 487", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 487", "community": 487, "community_name": "Community 487", "source_file": "", "file_type": "", "degree": 0}, {"id": "584", "label": "Community 584", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 584", "community": 584, "community_name": "Community 584", "source_file": "", "file_type": "", "degree": 0}, {"id": "486", "label": "Community 486", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 486", "community": 486, "community_name": "Community 486", "source_file": "", "file_type": "", "degree": 0}, {"id": "666", "label": "Community 666", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 666", "community": 666, "community_name": "Community 666", "source_file": "", "file_type": "", "degree": 0}, {"id": "621", "label": "Community 621", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 621", "community": 621, "community_name": "Community 621", "source_file": "", "file_type": "", "degree": 0}, {"id": "417", "label": "Community 417", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 417", "community": 417, "community_name": "Community 417", "source_file": "", "file_type": "", "degree": 1}, {"id": "272", "label": "Community 272", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 272", "community": 272, "community_name": "Community 272", "source_file": "", "file_type": "", "degree": 0}, {"id": "856", "label": "Community 856", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 856", "community": 856, "community_name": "Community 856", "source_file": "", "file_type": "", "degree": 0}, {"id": "857", "label": "Community 857", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 857", "community": 857, "community_name": "Community 857", "source_file": "", "file_type": "", "degree": 0}, {"id": "279", "label": "Community 279", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 279", "community": 279, "community_name": "Community 279", "source_file": "", "file_type": "", "degree": 2}, {"id": "760", "label": "Community 760", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 760", "community": 760, "community_name": "Community 760", "source_file": "", "file_type": "", "degree": 0}, {"id": "624", "label": "Community 624", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 624", "community": 624, "community_name": "Community 624", "source_file": "", "file_type": "", "degree": 0}, {"id": "620", "label": "Community 620", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 620", "community": 620, "community_name": "Community 620", "source_file": "", "file_type": "", "degree": 0}, {"id": "15", "label": "Mail Protection Screen", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 19.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Mail Protection Screen", "community": 15, "community_name": "Mail Protection Screen", "source_file": "", "file_type": "", "degree": 0}, {"id": "85", "label": "Community 85", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 85", "community": 85, "community_name": "Community 85", "source_file": "", "file_type": "", "degree": 0}, {"id": "84", "label": "Community 84", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 84", "community": 84, "community_name": "Community 84", "source_file": "", "file_type": "", "degree": 0}, {"id": "36", "label": "Community 36", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 36", "community": 36, "community_name": "Community 36", "source_file": "", "file_type": "", "degree": 1}, {"id": "78", "label": "Community 78", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 78", "community": 78, "community_name": "Community 78", "source_file": "", "file_type": "", "degree": 1}, {"id": "452", "label": "Community 452", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 452", "community": 452, "community_name": "Community 452", "source_file": "", "file_type": "", "degree": 0}, {"id": "713", "label": "Community 713", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 713", "community": 713, "community_name": "Community 713", "source_file": "", "file_type": "", "degree": 0}, {"id": "110", "label": "Community 110", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 110", "community": 110, "community_name": "Community 110", "source_file": "", "file_type": "", "degree": 0}, {"id": "858", "label": "Community 858", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 858", "community": 858, "community_name": "Community 858", "source_file": "", "file_type": "", "degree": 0}, {"id": "608", "label": "Community 608", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 608", "community": 608, "community_name": "Community 608", "source_file": "", "file_type": "", "degree": 0}, {"id": "73", "label": "Community 73", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 73", "community": 73, "community_name": "Community 73", "source_file": "", "file_type": "", "degree": 1}, {"id": "447", "label": "Community 447", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 447", "community": 447, "community_name": "Community 447", "source_file": "", "file_type": "", "degree": 1}, {"id": "67", "label": "Community 67", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 67", "community": 67, "community_name": "Community 67", "source_file": "", "file_type": "", "degree": 6}, {"id": "607", "label": "Community 607", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 607", "community": 607, "community_name": "Community 607", "source_file": "", "file_type": "", "degree": 3}, {"id": "695", "label": "Community 695", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 695", "community": 695, "community_name": "Community 695", "source_file": "", "file_type": "", "degree": 0}, {"id": "859", "label": "Community 859", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 859", "community": 859, "community_name": "Community 859", "source_file": "", "file_type": "", "degree": 0}, {"id": "860", "label": "Community 860", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 860", "community": 860, "community_name": "Community 860", "source_file": "", "file_type": "", "degree": 0}, {"id": "861", "label": "Community 861", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 861", "community": 861, "community_name": "Community 861", "source_file": "", "file_type": "", "degree": 0}, {"id": "862", "label": "Community 862", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 862", "community": 862, "community_name": "Community 862", "source_file": "", "file_type": "", "degree": 0}, {"id": "386", "label": "Community 386", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 386", "community": 386, "community_name": "Community 386", "source_file": "", "file_type": "", "degree": 5}, {"id": "31", "label": "Community 31", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 31", "community": 31, "community_name": "Community 31", "source_file": "", "file_type": "", "degree": 0}, {"id": "759", "label": "Community 759", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 759", "community": 759, "community_name": "Community 759", "source_file": "", "file_type": "", "degree": 0}, {"id": "750", "label": "Community 750", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 750", "community": 750, "community_name": "Community 750", "source_file": "", "file_type": "", "degree": 0}, {"id": "75", "label": "Community 75", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 75", "community": 75, "community_name": "Community 75", "source_file": "", "file_type": "", "degree": 5}, {"id": "449", "label": "Community 449", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 449", "community": 449, "community_name": "Community 449", "source_file": "", "file_type": "", "degree": 2}, {"id": "601", "label": "Community 601", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Community 601", "community": 601, "community_name": "Community 601", "source_file": "", "file_type": "", "degree": 3}];
|
|
const RAW_EDGES = [{"from": "271", "to": "291", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "291", "to": "435", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "66", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "411", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "10", "to": "47", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "4", "label": "65 cross-community edges", "title": "65 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "112", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "68", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "48", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "276", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "80", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "32", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "34", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "9", "label": "24 cross-community edges", "title": "24 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "157", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "181", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "62", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "39", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "257", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "6", "to": "21", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "9", "label": "64 cross-community edges", "title": "64 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "80", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "48", "label": "14 cross-community edges", "title": "14 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "39", "label": "39 cross-community edges", "title": "39 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "269", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "276", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "32", "label": "24 cross-community edges", "title": "24 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "34", "label": "35 cross-community edges", "title": "35 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "384", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "62", "label": "24 cross-community edges", "title": "24 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "181", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "257", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "385", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "47", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "68", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "22", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "448", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "5", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "4", "to": "566", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "39", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "32", "label": "14 cross-community edges", "title": "14 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "269", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "34", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "181", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "62", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "48", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "257", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "80", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "276", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "27", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "29", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "156", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "22", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "8", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "93", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "36", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "9", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "181", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "62", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "269", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "34", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "39", "to": "47", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "48", "to": "21", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "48", "to": "286", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "48", "to": "79", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "34", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "60", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "80", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "435", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "32", "to": "257", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "80", "to": "7", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "80", "to": "8", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "79", "to": "435", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "79", "to": "286", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "79", "to": "5", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "79", "to": "277", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "79", "to": "60", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "79", "to": "601", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "79", "to": "568", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "112", "to": "277", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "34", "to": "276", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "34", "to": "93", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "62", "to": "181", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "277", "to": "20", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "47", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "181", "to": "20", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "7", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "8", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "29", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "18", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "20", "label": "11 cross-community edges", "title": "11 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "53", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "27", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "21", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "47", "to": "17", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "5", "to": "8", "label": "21 cross-community edges", "title": "21 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "5", "to": "29", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "5", "to": "7", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "5", "to": "258", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "5", "to": "20", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "5", "to": "286", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "5", "to": "18", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "413", "to": "18", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "413", "to": "24", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "413", "to": "69", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "413", "to": "426", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "413", "to": "441", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "413", "to": "49", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "264", "to": "259", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "416", "to": "606", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "416", "to": "450", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "416", "to": "571", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "416", "to": "265", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "416", "to": "266", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "416", "to": "415", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "606", "to": "259", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "606", "to": "571", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "266", "to": "450", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "266", "to": "571", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "266", "to": "427", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "266", "to": "259", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "266", "to": "415", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "259", "to": "571", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "259", "to": "570", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "259", "to": "450", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "259", "to": "427", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "259", "to": "616", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "259", "to": "415", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "265", "to": "571", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "571", "to": "616", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "571", "to": "415", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "435", "to": "689", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "435", "to": "659", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "435", "to": "428", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "435", "to": "392", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "435", "to": "690", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "435", "to": "635", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "435", "to": "445", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "435", "to": "573", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "435", "to": "270", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "435", "to": "660", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "433", "to": "26", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "433", "to": "451", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "451", "to": "417", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "63", "to": "286", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "69", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "7", "label": "16 cross-community edges", "title": "16 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "426", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "24", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "1", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "441", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "49", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "35", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "43", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "28", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "29", "label": "20 cross-community edges", "title": "20 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "8", "label": "44 cross-community edges", "title": "44 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "20", "label": "25 cross-community edges", "title": "25 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "17", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "21", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "27", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "95", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "261", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "279", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "53", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "22", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "156", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "603", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "389", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "18", "to": "93", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "29", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "49", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "615", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "24", "to": "7", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "49", "to": "8", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "49", "to": "93", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "49", "to": "1", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "49", "to": "426", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "17", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "8", "label": "23 cross-community edges", "title": "23 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "20", "label": "25 cross-community edges", "title": "25 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "286", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "21", "label": "13 cross-community edges", "title": "13 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "53", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "22", "label": "10 cross-community edges", "title": "10 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "93", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "27", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "7", "label": "12 cross-community edges", "title": "12 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "29", "to": "95", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "69", "to": "7", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "69", "to": "426", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "69", "to": "1", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "426", "to": "1", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "426", "to": "22", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "426", "to": "8", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "22", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "20", "label": "17 cross-community edges", "title": "17 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "53", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "21", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "8", "label": "53 cross-community edges", "title": "53 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "27", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "16", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "286", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "7", "to": "285", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "8", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "603", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "22", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "1", "to": "389", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "21", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "20", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "603", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "8", "label": "32 cross-community edges", "title": "32 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "93", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "22", "to": "27", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "432", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "19", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "0", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "442", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "35", "to": "45", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "19", "to": "45", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "0", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "45", "to": "432", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "432", "to": "0", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "25", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "3", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "130", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "40", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "43", "to": "604", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "130", "to": "604", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "130", "to": "40", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "25", "to": "40", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "40", "to": "83", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "40", "to": "71", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "40", "to": "3", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "40", "to": "604", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "604", "to": "3", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "83", "to": "13", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "28", "to": "23", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "28", "to": "2", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "28", "to": "41", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "28", "to": "602", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "23", "to": "41", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "82", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "55", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "2", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "41", "to": "602", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "602", "to": "2", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "422", "to": "20", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "286", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "20", "label": "27 cross-community edges", "title": "27 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "8", "label": "28 cross-community edges", "title": "28 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "95", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "27", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "17", "to": "53", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "20", "label": "24 cross-community edges", "title": "24 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "93", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "78", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "286", "label": "8 cross-community edges", "title": "8 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "21", "label": "23 cross-community edges", "title": "23 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "53", "label": "17 cross-community edges", "title": "17 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "27", "label": "21 cross-community edges", "title": "21 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "156", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "8", "to": "16", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "20", "to": "95", "label": "7 cross-community edges", "title": "7 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "20", "to": "286", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "20", "to": "53", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "20", "to": "27", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "20", "to": "21", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "20", "to": "93", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "286", "to": "568", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "21", "to": "27", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "27", "to": "156", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "285", "to": "437", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "285", "to": "414", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "285", "to": "109", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "285", "to": "438", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "33", "to": "288", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "11", "to": "64", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "605", "to": "391", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "391", "to": "81", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "391", "to": "54", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "391", "to": "414", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "93", "to": "66", "label": "17 cross-community edges", "title": "17 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "93", "to": "262", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "93", "to": "411", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "93", "to": "603", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "93", "to": "75", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "93", "to": "60", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "262", "to": "66", "label": "15 cross-community edges", "title": "15 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "262", "to": "288", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "66", "to": "288", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "437", "to": "54", "label": "9 cross-community edges", "title": "9 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "437", "to": "419", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "437", "to": "81", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "437", "to": "109", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "437", "to": "607", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "437", "to": "438", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "437", "to": "67", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "437", "to": "122", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "437", "to": "254", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "437", "to": "429", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "437", "to": "74", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "437", "to": "418", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "437", "to": "290", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "54", "to": "123", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "54", "to": "81", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "54", "to": "418", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "54", "to": "446", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "81", "to": "67", "label": "6 cross-community edges", "title": "6 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "81", "to": "122", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "81", "to": "438", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "419", "to": "429", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "418", "to": "254", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "443", "to": "278", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "443", "to": "290", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "443", "to": "279", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "278", "to": "131", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "278", "to": "74", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "421", "to": "124", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "421", "to": "74", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "421", "to": "67", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "421", "to": "420", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "290", "to": "414", "label": "3 cross-community edges", "title": "3 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "74", "to": "50", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "74", "to": "124", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "447", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "420", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "73", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "287", "label": "4 cross-community edges", "title": "4 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "696", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "609", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "454", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "67", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "607", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "50", "to": "386", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "254", "to": "438", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "438", "to": "109", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "438", "to": "607", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "438", "to": "67", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "438", "to": "122", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "686", "to": "16", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "686", "to": "388", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "686", "to": "13", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "686", "to": "76", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "388", "to": "13", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "76", "to": "13", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "687", "to": "14", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "687", "to": "390", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "687", "to": "12", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "687", "to": "70", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "390", "to": "12", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "70", "to": "12", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "263", "to": "425", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "263", "to": "386", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "430", "to": "386", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "129", "to": "599", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "129", "to": "425", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "425", "to": "386", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "600", "to": "289", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "600", "to": "431", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "289", "to": "431", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "289", "to": "568", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "431", "to": "568", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "568", "to": "387", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "568", "to": "75", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "568", "to": "60", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "60", "to": "75", "label": "5 cross-community edges", "title": "5 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "60", "to": "601", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "67", "to": "386", "label": "2 cross-community edges", "title": "2 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "75", "to": "449", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}, {"from": "75", "to": "601", "label": "1 cross-community edges", "title": "1 cross-community edges [AGGREGATED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AGGREGATED"}];
|
|
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "i18n: Blocker/Activation Strings", "count": 293}, {"cid": 1, "color": "#F28E2B", "label": "i18n: Blocker/Activation Strings", "count": 246}, {"cid": 2, "color": "#E15759", "label": "i18n: Blocker/Activation Strings", "count": 206}, {"cid": 3, "color": "#76B7B2", "label": "i18n: Blocker/Activation Strings", "count": 204}, {"cid": 4, "color": "#59A14F", "label": "Debug & Dev Tools", "count": 127}, {"cid": 5, "color": "#EDC948", "label": "Backend API Routes", "count": 118}, {"cid": 6, "color": "#B07AA1", "label": "Backend Tests & Auth Routes", "count": 112}, {"cid": 7, "color": "#FF9DA7", "label": "Consent & Magic API Routes", "count": 106}, {"cid": 8, "color": "#9C755F", "label": "i18n: Pricing Strings", "count": 103}, {"cid": 9, "color": "#BAB0AC", "label": "Android DNS Filter (Kotlin)", "count": 99}, {"cid": 10, "color": "#4E79A7", "label": "i18n: Pricing Strings", "count": 91}, {"cid": 11, "color": "#F28E2B", "label": "i18n: Landing Page Strings", "count": 90}, {"cid": 12, "color": "#E15759", "label": "Tauri ACL Manifests (Magic Win)", "count": 90}, {"cid": 13, "color": "#76B7B2", "label": "i18n: Landing Page Strings", "count": 89}, {"cid": 14, "color": "#59A14F", "label": "i18n: Auth Strings", "count": 88}, {"cid": 15, "color": "#EDC948", "label": "Mail Protection Screen", "count": 88}, {"cid": 16, "color": "#B07AA1", "label": "Devices Management Screen", "count": 87}, {"cid": 17, "color": "#FF9DA7", "label": "App Root Layout & Shell", "count": 86}, {"cid": 18, "color": "#9C755F", "label": "Community 18", "count": 84}, {"cid": 19, "color": "#BAB0AC", "label": "Community 19", "count": 82}, {"cid": 20, "color": "#4E79A7", "label": "Community 20", "count": 80}, {"cid": 21, "color": "#F28E2B", "label": "Community 21", "count": 73}, {"cid": 22, "color": "#E15759", "label": "Community 22", "count": 70}, {"cid": 23, "color": "#76B7B2", "label": "Community 23", "count": 68}, {"cid": 24, "color": "#59A14F", "label": "Community 24", "count": 68}, {"cid": 25, "color": "#EDC948", "label": "Community 25", "count": 68}, {"cid": 26, "color": "#B07AA1", "label": "Community 26", "count": 68}, {"cid": 27, "color": "#FF9DA7", "label": "Community 27", "count": 68}, {"cid": 28, "color": "#9C755F", "label": "Community 28", "count": 66}, {"cid": 29, "color": "#BAB0AC", "label": "Community 29", "count": 66}, {"cid": 30, "color": "#4E79A7", "label": "Community 30", "count": 57}, {"cid": 31, "color": "#F28E2B", "label": "Community 31", "count": 54}, {"cid": 32, "color": "#E15759", "label": "Community 32", "count": 52}, {"cid": 33, "color": "#76B7B2", "label": "Community 33", "count": 51}, {"cid": 34, "color": "#59A14F", "label": "Community 34", "count": 51}, {"cid": 35, "color": "#EDC948", "label": "Community 35", "count": 51}, {"cid": 36, "color": "#B07AA1", "label": "Community 36", "count": 50}, {"cid": 37, "color": "#FF9DA7", "label": "Community 37", "count": 47}, {"cid": 38, "color": "#9C755F", "label": "Community 38", "count": 47}, {"cid": 39, "color": "#BAB0AC", "label": "Community 39", "count": 46}, {"cid": 40, "color": "#4E79A7", "label": "Community 40", "count": 46}, {"cid": 41, "color": "#F28E2B", "label": "Community 41", "count": 44}, {"cid": 42, "color": "#E15759", "label": "Community 42", "count": 43}, {"cid": 43, "color": "#76B7B2", "label": "Community 43", "count": 43}, {"cid": 44, "color": "#59A14F", "label": "Community 44", "count": 43}, {"cid": 45, "color": "#EDC948", "label": "Community 45", "count": 42}, {"cid": 46, "color": "#B07AA1", "label": "Community 46", "count": 40}, {"cid": 47, "color": "#FF9DA7", "label": "Community 47", "count": 40}, {"cid": 48, "color": "#9C755F", "label": "Community 48", "count": 39}, {"cid": 49, "color": "#BAB0AC", "label": "Community 49", "count": 39}, {"cid": 50, "color": "#4E79A7", "label": "Community 50", "count": 38}, {"cid": 51, "color": "#F28E2B", "label": "Community 51", "count": 38}, {"cid": 52, "color": "#E15759", "label": "Community 52", "count": 38}, {"cid": 53, "color": "#76B7B2", "label": "Community 53", "count": 36}, {"cid": 54, "color": "#59A14F", "label": "Community 54", "count": 35}, {"cid": 55, "color": "#EDC948", "label": "Community 55", "count": 34}, {"cid": 56, "color": "#B07AA1", "label": "Community 56", "count": 33}, {"cid": 57, "color": "#FF9DA7", "label": "Community 57", "count": 33}, {"cid": 58, "color": "#9C755F", "label": "Community 58", "count": 33}, {"cid": 59, "color": "#BAB0AC", "label": "Community 59", "count": 33}, {"cid": 60, "color": "#4E79A7", "label": "Community 60", "count": 33}, {"cid": 61, "color": "#F28E2B", "label": "Community 61", "count": 33}, {"cid": 62, "color": "#E15759", "label": "Community 62", "count": 32}, {"cid": 63, "color": "#76B7B2", "label": "Community 63", "count": 32}, {"cid": 64, "color": "#59A14F", "label": "Community 64", "count": 32}, {"cid": 65, "color": "#EDC948", "label": "Community 65", "count": 31}, {"cid": 66, "color": "#B07AA1", "label": "Community 66", "count": 31}, {"cid": 67, "color": "#FF9DA7", "label": "Community 67", "count": 31}, {"cid": 68, "color": "#9C755F", "label": "Community 68", "count": 31}, {"cid": 69, "color": "#BAB0AC", "label": "Community 69", "count": 31}, {"cid": 70, "color": "#4E79A7", "label": "Community 70", "count": 31}, {"cid": 71, "color": "#F28E2B", "label": "Community 71", "count": 31}, {"cid": 72, "color": "#E15759", "label": "Community 72", "count": 31}, {"cid": 73, "color": "#76B7B2", "label": "Community 73", "count": 30}, {"cid": 74, "color": "#59A14F", "label": "Community 74", "count": 30}, {"cid": 75, "color": "#EDC948", "label": "Community 75", "count": 30}, {"cid": 76, "color": "#B07AA1", "label": "Community 76", "count": 30}, {"cid": 77, "color": "#FF9DA7", "label": "Community 77", "count": 30}, {"cid": 78, "color": "#9C755F", "label": "Community 78", "count": 29}, {"cid": 79, "color": "#BAB0AC", "label": "Community 79", "count": 29}, {"cid": 80, "color": "#4E79A7", "label": "Community 80", "count": 28}, {"cid": 81, "color": "#F28E2B", "label": "Community 81", "count": 28}, {"cid": 82, "color": "#E15759", "label": "Community 82", "count": 28}, {"cid": 83, "color": "#76B7B2", "label": "Community 83", "count": 28}, {"cid": 84, "color": "#59A14F", "label": "Community 84", "count": 28}, {"cid": 85, "color": "#EDC948", "label": "Community 85", "count": 28}, {"cid": 86, "color": "#B07AA1", "label": "Community 86", "count": 27}, {"cid": 87, "color": "#FF9DA7", "label": "Community 87", "count": 27}, {"cid": 88, "color": "#9C755F", "label": "Community 88", "count": 27}, {"cid": 89, "color": "#BAB0AC", "label": "Community 89", "count": 27}, {"cid": 90, "color": "#4E79A7", "label": "Community 90", "count": 27}, {"cid": 91, "color": "#F28E2B", "label": "Community 91", "count": 27}, {"cid": 92, "color": "#E15759", "label": "Community 92", "count": 27}, {"cid": 93, "color": "#76B7B2", "label": "Community 93", "count": 26}, {"cid": 94, "color": "#59A14F", "label": "Community 94", "count": 26}, {"cid": 95, "color": "#EDC948", "label": "Community 95", "count": 26}, {"cid": 96, "color": "#B07AA1", "label": "Community 96", "count": 25}, {"cid": 97, "color": "#FF9DA7", "label": "Community 97", "count": 25}, {"cid": 98, "color": "#9C755F", "label": "Community 98", "count": 25}, {"cid": 99, "color": "#BAB0AC", "label": "Community 99", "count": 25}, {"cid": 100, "color": "#4E79A7", "label": "Community 100", "count": 25}, {"cid": 101, "color": "#F28E2B", "label": "Community 101", "count": 25}, {"cid": 102, "color": "#E15759", "label": "Community 102", "count": 25}, {"cid": 103, "color": "#76B7B2", "label": "Community 103", "count": 25}, {"cid": 104, "color": "#59A14F", "label": "Community 104", "count": 25}, {"cid": 105, "color": "#EDC948", "label": "Community 105", "count": 25}, {"cid": 106, "color": "#B07AA1", "label": "Community 106", "count": 25}, {"cid": 107, "color": "#FF9DA7", "label": "Community 107", "count": 25}, {"cid": 108, "color": "#9C755F", "label": "Community 108", "count": 25}, {"cid": 109, "color": "#BAB0AC", "label": "Community 109", "count": 25}, {"cid": 110, "color": "#4E79A7", "label": "Community 110", "count": 24}, {"cid": 111, "color": "#F28E2B", "label": "Community 111", "count": 24}, {"cid": 112, "color": "#E15759", "label": "Community 112", "count": 24}, {"cid": 113, "color": "#76B7B2", "label": "Community 113", "count": 24}, {"cid": 114, "color": "#59A14F", "label": "Community 114", "count": 24}, {"cid": 115, "color": "#EDC948", "label": "Community 115", "count": 24}, {"cid": 116, "color": "#B07AA1", "label": "Community 116", "count": 24}, {"cid": 117, "color": "#FF9DA7", "label": "Community 117", "count": 24}, {"cid": 118, "color": "#9C755F", "label": "Community 118", "count": 24}, {"cid": 119, "color": "#BAB0AC", "label": "Community 119", "count": 24}, {"cid": 120, "color": "#4E79A7", "label": "Community 120", "count": 24}, {"cid": 121, "color": "#F28E2B", "label": "Community 121", "count": 24}, {"cid": 122, "color": "#E15759", "label": "Community 122", "count": 24}, {"cid": 123, "color": "#76B7B2", "label": "Community 123", "count": 24}, {"cid": 124, "color": "#59A14F", "label": "Community 124", "count": 23}, {"cid": 125, "color": "#EDC948", "label": "Community 125", "count": 23}, {"cid": 126, "color": "#B07AA1", "label": "Community 126", "count": 23}, {"cid": 127, "color": "#FF9DA7", "label": "Community 127", "count": 23}, {"cid": 128, "color": "#9C755F", "label": "Community 128", "count": 23}, {"cid": 129, "color": "#BAB0AC", "label": "Community 129", "count": 23}, {"cid": 130, "color": "#4E79A7", "label": "Community 130", "count": 23}, {"cid": 131, "color": "#F28E2B", "label": "Community 131", "count": 23}, {"cid": 132, "color": "#E15759", "label": "Community 132", "count": 23}, {"cid": 133, "color": "#76B7B2", "label": "Community 133", "count": 23}, {"cid": 134, "color": "#59A14F", "label": "Community 134", "count": 23}, {"cid": 135, "color": "#EDC948", "label": "Community 135", "count": 23}, {"cid": 136, "color": "#B07AA1", "label": "Community 136", "count": 23}, {"cid": 137, "color": "#FF9DA7", "label": "Community 137", "count": 23}, {"cid": 138, "color": "#9C755F", "label": "Community 138", "count": 23}, {"cid": 139, "color": "#BAB0AC", "label": "Community 139", "count": 23}, {"cid": 140, "color": "#4E79A7", "label": "Community 140", "count": 23}, {"cid": 141, "color": "#F28E2B", "label": "Community 141", "count": 23}, {"cid": 142, "color": "#E15759", "label": "Community 142", "count": 23}, {"cid": 143, "color": "#76B7B2", "label": "Community 143", "count": 23}, {"cid": 144, "color": "#59A14F", "label": "Community 144", "count": 23}, {"cid": 145, "color": "#EDC948", "label": "Community 145", "count": 23}, {"cid": 146, "color": "#B07AA1", "label": "Community 146", "count": 23}, {"cid": 147, "color": "#FF9DA7", "label": "Community 147", "count": 23}, {"cid": 148, "color": "#9C755F", "label": "Community 148", "count": 23}, {"cid": 149, "color": "#BAB0AC", "label": "Community 149", "count": 23}, {"cid": 150, "color": "#4E79A7", "label": "Community 150", "count": 23}, {"cid": 151, "color": "#F28E2B", "label": "Community 151", "count": 23}, {"cid": 152, "color": "#E15759", "label": "Community 152", "count": 23}, {"cid": 153, "color": "#76B7B2", "label": "Community 153", "count": 23}, {"cid": 154, "color": "#59A14F", "label": "Community 154", "count": 23}, {"cid": 155, "color": "#EDC948", "label": "Community 155", "count": 23}, {"cid": 156, "color": "#B07AA1", "label": "Community 156", "count": 23}, {"cid": 157, "color": "#FF9DA7", "label": "Community 157", "count": 23}, {"cid": 158, "color": "#9C755F", "label": "Community 158", "count": 22}, {"cid": 159, "color": "#BAB0AC", "label": "Community 159", "count": 22}, {"cid": 160, "color": "#4E79A7", "label": "Community 160", "count": 22}, {"cid": 161, "color": "#F28E2B", "label": "Community 161", "count": 22}, {"cid": 162, "color": "#E15759", "label": "Community 162", "count": 22}, {"cid": 163, "color": "#76B7B2", "label": "Community 163", "count": 22}, {"cid": 164, "color": "#59A14F", "label": "Community 164", "count": 22}, {"cid": 165, "color": "#EDC948", "label": "Community 165", "count": 22}, {"cid": 166, "color": "#B07AA1", "label": "Community 166", "count": 22}, {"cid": 167, "color": "#FF9DA7", "label": "Community 167", "count": 22}, {"cid": 168, "color": "#9C755F", "label": "Community 168", "count": 22}, {"cid": 169, "color": "#BAB0AC", "label": "Community 169", "count": 22}, {"cid": 170, "color": "#4E79A7", "label": "Community 170", "count": 22}, {"cid": 171, "color": "#F28E2B", "label": "Community 171", "count": 22}, {"cid": 172, "color": "#E15759", "label": "Community 172", "count": 22}, {"cid": 173, "color": "#76B7B2", "label": "Community 173", "count": 22}, {"cid": 174, "color": "#59A14F", "label": "Community 174", "count": 22}, {"cid": 175, "color": "#EDC948", "label": "Community 175", "count": 22}, {"cid": 176, "color": "#B07AA1", "label": "Community 176", "count": 22}, {"cid": 177, "color": "#FF9DA7", "label": "Community 177", "count": 22}, {"cid": 178, "color": "#9C755F", "label": "Community 178", "count": 22}, {"cid": 179, "color": "#BAB0AC", "label": "Community 179", "count": 22}, {"cid": 180, "color": "#4E79A7", "label": "Community 180", "count": 22}, {"cid": 181, "color": "#F28E2B", "label": "Community 181", "count": 22}, {"cid": 182, "color": "#E15759", "label": "Community 182", "count": 22}, {"cid": 183, "color": "#76B7B2", "label": "Community 183", "count": 22}, {"cid": 184, "color": "#59A14F", "label": "Community 184", "count": 22}, {"cid": 185, "color": "#EDC948", "label": "Community 185", "count": 22}, {"cid": 186, "color": "#B07AA1", "label": "Community 186", "count": 22}, {"cid": 187, "color": "#FF9DA7", "label": "Community 187", "count": 22}, {"cid": 188, "color": "#9C755F", "label": "Community 188", "count": 22}, {"cid": 189, "color": "#BAB0AC", "label": "Community 189", "count": 22}, {"cid": 190, "color": "#4E79A7", "label": "Community 190", "count": 22}, {"cid": 191, "color": "#F28E2B", "label": "Community 191", "count": 22}, {"cid": 192, "color": "#E15759", "label": "Community 192", "count": 22}, {"cid": 193, "color": "#76B7B2", "label": "Community 193", "count": 22}, {"cid": 194, "color": "#59A14F", "label": "Community 194", "count": 22}, {"cid": 195, "color": "#EDC948", "label": "Community 195", "count": 22}, {"cid": 196, "color": "#B07AA1", "label": "Community 196", "count": 22}, {"cid": 197, "color": "#FF9DA7", "label": "Community 197", "count": 22}, {"cid": 198, "color": "#9C755F", "label": "Community 198", "count": 22}, {"cid": 199, "color": "#BAB0AC", "label": "Community 199", "count": 22}, {"cid": 200, "color": "#4E79A7", "label": "Community 200", "count": 22}, {"cid": 201, "color": "#F28E2B", "label": "Community 201", "count": 22}, {"cid": 202, "color": "#E15759", "label": "Community 202", "count": 22}, {"cid": 203, "color": "#76B7B2", "label": "Community 203", "count": 22}, {"cid": 204, "color": "#59A14F", "label": "Community 204", "count": 22}, {"cid": 205, "color": "#EDC948", "label": "Community 205", "count": 22}, {"cid": 206, "color": "#B07AA1", "label": "Community 206", "count": 22}, {"cid": 207, "color": "#FF9DA7", "label": "Community 207", "count": 22}, {"cid": 208, "color": "#9C755F", "label": "Community 208", "count": 22}, {"cid": 209, "color": "#BAB0AC", "label": "Community 209", "count": 22}, {"cid": 210, "color": "#4E79A7", "label": "Community 210", "count": 22}, {"cid": 211, "color": "#F28E2B", "label": "Community 211", "count": 22}, {"cid": 212, "color": "#E15759", "label": "Community 212", "count": 22}, {"cid": 213, "color": "#76B7B2", "label": "Community 213", "count": 22}, {"cid": 214, "color": "#59A14F", "label": "Community 214", "count": 22}, {"cid": 215, "color": "#EDC948", "label": "Community 215", "count": 22}, {"cid": 216, "color": "#B07AA1", "label": "Community 216", "count": 22}, {"cid": 217, "color": "#FF9DA7", "label": "Community 217", "count": 22}, {"cid": 218, "color": "#9C755F", "label": "Community 218", "count": 22}, {"cid": 219, "color": "#BAB0AC", "label": "Community 219", "count": 22}, {"cid": 220, "color": "#4E79A7", "label": "Community 220", "count": 22}, {"cid": 221, "color": "#F28E2B", "label": "Community 221", "count": 22}, {"cid": 222, "color": "#E15759", "label": "Community 222", "count": 22}, {"cid": 223, "color": "#76B7B2", "label": "Community 223", "count": 22}, {"cid": 224, "color": "#59A14F", "label": "Community 224", "count": 22}, {"cid": 225, "color": "#EDC948", "label": "Community 225", "count": 22}, {"cid": 226, "color": "#B07AA1", "label": "Community 226", "count": 22}, {"cid": 227, "color": "#FF9DA7", "label": "Community 227", "count": 22}, {"cid": 228, "color": "#9C755F", "label": "Community 228", "count": 22}, {"cid": 229, "color": "#BAB0AC", "label": "Community 229", "count": 22}, {"cid": 230, "color": "#4E79A7", "label": "Community 230", "count": 22}, {"cid": 231, "color": "#F28E2B", "label": "Community 231", "count": 22}, {"cid": 232, "color": "#E15759", "label": "Community 232", "count": 22}, {"cid": 233, "color": "#76B7B2", "label": "Community 233", "count": 22}, {"cid": 234, "color": "#59A14F", "label": "Community 234", "count": 22}, {"cid": 235, "color": "#EDC948", "label": "Community 235", "count": 22}, {"cid": 236, "color": "#B07AA1", "label": "Community 236", "count": 22}, {"cid": 237, "color": "#FF9DA7", "label": "Community 237", "count": 22}, {"cid": 238, "color": "#9C755F", "label": "Community 238", "count": 22}, {"cid": 239, "color": "#BAB0AC", "label": "Community 239", "count": 22}, {"cid": 240, "color": "#4E79A7", "label": "Community 240", "count": 22}, {"cid": 241, "color": "#F28E2B", "label": "Community 241", "count": 22}, {"cid": 242, "color": "#E15759", "label": "Community 242", "count": 22}, {"cid": 243, "color": "#76B7B2", "label": "Community 243", "count": 22}, {"cid": 244, "color": "#59A14F", "label": "Community 244", "count": 22}, {"cid": 245, "color": "#EDC948", "label": "Community 245", "count": 22}, {"cid": 246, "color": "#B07AA1", "label": "Community 246", "count": 22}, {"cid": 247, "color": "#FF9DA7", "label": "Community 247", "count": 22}, {"cid": 248, "color": "#9C755F", "label": "Community 248", "count": 22}, {"cid": 249, "color": "#BAB0AC", "label": "Community 249", "count": 22}, {"cid": 250, "color": "#4E79A7", "label": "Community 250", "count": 22}, {"cid": 251, "color": "#F28E2B", "label": "Community 251", "count": 22}, {"cid": 252, "color": "#E15759", "label": "Community 252", "count": 22}, {"cid": 253, "color": "#76B7B2", "label": "Community 253", "count": 22}, {"cid": 254, "color": "#59A14F", "label": "Community 254", "count": 22}, {"cid": 255, "color": "#EDC948", "label": "Community 255", "count": 21}, {"cid": 256, "color": "#B07AA1", "label": "Community 256", "count": 21}, {"cid": 257, "color": "#FF9DA7", "label": "Community 257", "count": 21}, {"cid": 258, "color": "#9C755F", "label": "Community 258", "count": 21}, {"cid": 259, "color": "#BAB0AC", "label": "Community 259", "count": 21}, {"cid": 260, "color": "#4E79A7", "label": "Community 260", "count": 21}, {"cid": 261, "color": "#F28E2B", "label": "Community 261", "count": 21}, {"cid": 262, "color": "#E15759", "label": "Community 262", "count": 20}, {"cid": 263, "color": "#76B7B2", "label": "Community 263", "count": 20}, {"cid": 264, "color": "#59A14F", "label": "Community 264", "count": 20}, {"cid": 265, "color": "#EDC948", "label": "Community 265", "count": 20}, {"cid": 266, "color": "#B07AA1", "label": "Community 266", "count": 20}, {"cid": 267, "color": "#FF9DA7", "label": "Community 267", "count": 19}, {"cid": 268, "color": "#9C755F", "label": "Community 268", "count": 19}, {"cid": 269, "color": "#BAB0AC", "label": "Community 269", "count": 19}, {"cid": 270, "color": "#4E79A7", "label": "Community 270", "count": 19}, {"cid": 271, "color": "#F28E2B", "label": "Community 271", "count": 19}, {"cid": 272, "color": "#E15759", "label": "Community 272", "count": 18}, {"cid": 273, "color": "#76B7B2", "label": "Community 273", "count": 18}, {"cid": 274, "color": "#59A14F", "label": "Community 274", "count": 18}, {"cid": 275, "color": "#EDC948", "label": "Community 275", "count": 18}, {"cid": 276, "color": "#B07AA1", "label": "Community 276", "count": 18}, {"cid": 277, "color": "#FF9DA7", "label": "Community 277", "count": 18}, {"cid": 278, "color": "#9C755F", "label": "Community 278", "count": 18}, {"cid": 279, "color": "#BAB0AC", "label": "Community 279", "count": 18}, {"cid": 280, "color": "#4E79A7", "label": "Community 280", "count": 18}, {"cid": 281, "color": "#F28E2B", "label": "Community 281", "count": 18}, {"cid": 282, "color": "#E15759", "label": "Community 282", "count": 18}, {"cid": 283, "color": "#76B7B2", "label": "Community 283", "count": 18}, {"cid": 284, "color": "#59A14F", "label": "Community 284", "count": 18}, {"cid": 285, "color": "#EDC948", "label": "Community 285", "count": 18}, {"cid": 286, "color": "#B07AA1", "label": "Community 286", "count": 18}, {"cid": 287, "color": "#FF9DA7", "label": "Community 287", "count": 17}, {"cid": 288, "color": "#9C755F", "label": "Community 288", "count": 17}, {"cid": 289, "color": "#BAB0AC", "label": "Community 289", "count": 17}, {"cid": 290, "color": "#4E79A7", "label": "Community 290", "count": 17}, {"cid": 291, "color": "#F28E2B", "label": "Community 291", "count": 17}, {"cid": 292, "color": "#E15759", "label": "Community 292", "count": 16}, {"cid": 293, "color": "#76B7B2", "label": "Community 293", "count": 16}, {"cid": 294, "color": "#59A14F", "label": "Community 294", "count": 16}, {"cid": 295, "color": "#EDC948", "label": "Community 295", "count": 16}, {"cid": 296, "color": "#B07AA1", "label": "Community 296", "count": 16}, {"cid": 297, "color": "#FF9DA7", "label": "Community 297", "count": 16}, {"cid": 298, "color": "#9C755F", "label": "Community 298", "count": 16}, {"cid": 299, "color": "#BAB0AC", "label": "Community 299", "count": 16}, {"cid": 300, "color": "#4E79A7", "label": "Community 300", "count": 16}, {"cid": 301, "color": "#F28E2B", "label": "Community 301", "count": 16}, {"cid": 302, "color": "#E15759", "label": "Community 302", "count": 16}, {"cid": 303, "color": "#76B7B2", "label": "Community 303", "count": 16}, {"cid": 304, "color": "#59A14F", "label": "Community 304", "count": 16}, {"cid": 305, "color": "#EDC948", "label": "Community 305", "count": 16}, {"cid": 306, "color": "#B07AA1", "label": "Community 306", "count": 16}, {"cid": 307, "color": "#FF9DA7", "label": "Community 307", "count": 16}, {"cid": 308, "color": "#9C755F", "label": "Community 308", "count": 16}, {"cid": 309, "color": "#BAB0AC", "label": "Community 309", "count": 16}, {"cid": 310, "color": "#4E79A7", "label": "Community 310", "count": 16}, {"cid": 311, "color": "#F28E2B", "label": "Community 311", "count": 16}, {"cid": 312, "color": "#E15759", "label": "Community 312", "count": 16}, {"cid": 313, "color": "#76B7B2", "label": "Community 313", "count": 16}, {"cid": 314, "color": "#59A14F", "label": "Community 314", "count": 16}, {"cid": 315, "color": "#EDC948", "label": "Community 315", "count": 16}, {"cid": 316, "color": "#B07AA1", "label": "Community 316", "count": 16}, {"cid": 317, "color": "#FF9DA7", "label": "Community 317", "count": 16}, {"cid": 318, "color": "#9C755F", "label": "Community 318", "count": 16}, {"cid": 319, "color": "#BAB0AC", "label": "Community 319", "count": 16}, {"cid": 320, "color": "#4E79A7", "label": "Community 320", "count": 16}, {"cid": 321, "color": "#F28E2B", "label": "Community 321", "count": 16}, {"cid": 322, "color": "#E15759", "label": "Community 322", "count": 16}, {"cid": 323, "color": "#76B7B2", "label": "Community 323", "count": 16}, {"cid": 324, "color": "#59A14F", "label": "Community 324", "count": 16}, {"cid": 325, "color": "#EDC948", "label": "Community 325", "count": 16}, {"cid": 326, "color": "#B07AA1", "label": "Community 326", "count": 16}, {"cid": 327, "color": "#FF9DA7", "label": "Community 327", "count": 16}, {"cid": 328, "color": "#9C755F", "label": "Community 328", "count": 16}, {"cid": 329, "color": "#BAB0AC", "label": "Community 329", "count": 16}, {"cid": 330, "color": "#4E79A7", "label": "Community 330", "count": 16}, {"cid": 331, "color": "#F28E2B", "label": "Community 331", "count": 16}, {"cid": 332, "color": "#E15759", "label": "Community 332", "count": 16}, {"cid": 333, "color": "#76B7B2", "label": "Community 333", "count": 16}, {"cid": 334, "color": "#59A14F", "label": "Community 334", "count": 16}, {"cid": 335, "color": "#EDC948", "label": "Community 335", "count": 16}, {"cid": 336, "color": "#B07AA1", "label": "Community 336", "count": 16}, {"cid": 337, "color": "#FF9DA7", "label": "Community 337", "count": 16}, {"cid": 338, "color": "#9C755F", "label": "Community 338", "count": 16}, {"cid": 339, "color": "#BAB0AC", "label": "Community 339", "count": 16}, {"cid": 340, "color": "#4E79A7", "label": "Community 340", "count": 16}, {"cid": 341, "color": "#F28E2B", "label": "Community 341", "count": 16}, {"cid": 342, "color": "#E15759", "label": "Community 342", "count": 16}, {"cid": 343, "color": "#76B7B2", "label": "Community 343", "count": 16}, {"cid": 344, "color": "#59A14F", "label": "Community 344", "count": 16}, {"cid": 345, "color": "#EDC948", "label": "Community 345", "count": 16}, {"cid": 346, "color": "#B07AA1", "label": "Community 346", "count": 16}, {"cid": 347, "color": "#FF9DA7", "label": "Community 347", "count": 16}, {"cid": 348, "color": "#9C755F", "label": "Community 348", "count": 16}, {"cid": 349, "color": "#BAB0AC", "label": "Community 349", "count": 16}, {"cid": 350, "color": "#4E79A7", "label": "Community 350", "count": 16}, {"cid": 351, "color": "#F28E2B", "label": "Community 351", "count": 16}, {"cid": 352, "color": "#E15759", "label": "Community 352", "count": 16}, {"cid": 353, "color": "#76B7B2", "label": "Community 353", "count": 16}, {"cid": 354, "color": "#59A14F", "label": "Community 354", "count": 16}, {"cid": 355, "color": "#EDC948", "label": "Community 355", "count": 16}, {"cid": 356, "color": "#B07AA1", "label": "Community 356", "count": 16}, {"cid": 357, "color": "#FF9DA7", "label": "Community 357", "count": 16}, {"cid": 358, "color": "#9C755F", "label": "Community 358", "count": 16}, {"cid": 359, "color": "#BAB0AC", "label": "Community 359", "count": 16}, {"cid": 360, "color": "#4E79A7", "label": "Community 360", "count": 16}, {"cid": 361, "color": "#F28E2B", "label": "Community 361", "count": 16}, {"cid": 362, "color": "#E15759", "label": "Community 362", "count": 16}, {"cid": 363, "color": "#76B7B2", "label": "Community 363", "count": 16}, {"cid": 364, "color": "#59A14F", "label": "Community 364", "count": 16}, {"cid": 365, "color": "#EDC948", "label": "Community 365", "count": 16}, {"cid": 366, "color": "#B07AA1", "label": "Community 366", "count": 16}, {"cid": 367, "color": "#FF9DA7", "label": "Community 367", "count": 16}, {"cid": 368, "color": "#9C755F", "label": "Community 368", "count": 16}, {"cid": 369, "color": "#BAB0AC", "label": "Community 369", "count": 16}, {"cid": 370, "color": "#4E79A7", "label": "Community 370", "count": 16}, {"cid": 371, "color": "#F28E2B", "label": "Community 371", "count": 16}, {"cid": 372, "color": "#E15759", "label": "Community 372", "count": 16}, {"cid": 373, "color": "#76B7B2", "label": "Community 373", "count": 16}, {"cid": 374, "color": "#59A14F", "label": "Community 374", "count": 16}, {"cid": 375, "color": "#EDC948", "label": "Community 375", "count": 16}, {"cid": 376, "color": "#B07AA1", "label": "Community 376", "count": 16}, {"cid": 377, "color": "#FF9DA7", "label": "Community 377", "count": 16}, {"cid": 378, "color": "#9C755F", "label": "Community 378", "count": 16}, {"cid": 379, "color": "#BAB0AC", "label": "Community 379", "count": 16}, {"cid": 380, "color": "#4E79A7", "label": "Community 380", "count": 16}, {"cid": 381, "color": "#F28E2B", "label": "Community 381", "count": 16}, {"cid": 382, "color": "#E15759", "label": "Community 382", "count": 16}, {"cid": 383, "color": "#76B7B2", "label": "Community 383", "count": 16}, {"cid": 384, "color": "#59A14F", "label": "Community 384", "count": 16}, {"cid": 385, "color": "#EDC948", "label": "Community 385", "count": 16}, {"cid": 386, "color": "#B07AA1", "label": "Community 386", "count": 16}, {"cid": 387, "color": "#FF9DA7", "label": "Community 387", "count": 16}, {"cid": 388, "color": "#9C755F", "label": "Community 388", "count": 16}, {"cid": 389, "color": "#BAB0AC", "label": "Community 389", "count": 16}, {"cid": 390, "color": "#4E79A7", "label": "Community 390", "count": 16}, {"cid": 391, "color": "#F28E2B", "label": "Community 391", "count": 16}, {"cid": 392, "color": "#E15759", "label": "Community 392", "count": 16}, {"cid": 393, "color": "#76B7B2", "label": "Community 393", "count": 16}, {"cid": 394, "color": "#59A14F", "label": "Community 394", "count": 16}, {"cid": 395, "color": "#EDC948", "label": "Community 395", "count": 16}, {"cid": 396, "color": "#B07AA1", "label": "Community 396", "count": 16}, {"cid": 397, "color": "#FF9DA7", "label": "Community 397", "count": 16}, {"cid": 398, "color": "#9C755F", "label": "Community 398", "count": 16}, {"cid": 399, "color": "#BAB0AC", "label": "Community 399", "count": 16}, {"cid": 400, "color": "#4E79A7", "label": "Community 400", "count": 16}, {"cid": 401, "color": "#F28E2B", "label": "Community 401", "count": 16}, {"cid": 402, "color": "#E15759", "label": "Community 402", "count": 16}, {"cid": 403, "color": "#76B7B2", "label": "Community 403", "count": 16}, {"cid": 404, "color": "#59A14F", "label": "Community 404", "count": 16}, {"cid": 405, "color": "#EDC948", "label": "Community 405", "count": 16}, {"cid": 406, "color": "#B07AA1", "label": "Community 406", "count": 16}, {"cid": 407, "color": "#FF9DA7", "label": "Community 407", "count": 16}, {"cid": 408, "color": "#9C755F", "label": "Community 408", "count": 16}, {"cid": 409, "color": "#BAB0AC", "label": "Community 409", "count": 16}, {"cid": 410, "color": "#4E79A7", "label": "Community 410", "count": 16}, {"cid": 411, "color": "#F28E2B", "label": "Community 411", "count": 15}, {"cid": 412, "color": "#E15759", "label": "Community 412", "count": 15}, {"cid": 413, "color": "#76B7B2", "label": "Community 413", "count": 15}, {"cid": 414, "color": "#59A14F", "label": "Community 414", "count": 15}, {"cid": 415, "color": "#EDC948", "label": "Community 415", "count": 15}, {"cid": 416, "color": "#B07AA1", "label": "Community 416", "count": 15}, {"cid": 417, "color": "#FF9DA7", "label": "Community 417", "count": 15}, {"cid": 418, "color": "#9C755F", "label": "Community 418", "count": 15}, {"cid": 419, "color": "#BAB0AC", "label": "Community 419", "count": 15}, {"cid": 420, "color": "#4E79A7", "label": "Community 420", "count": 14}, {"cid": 421, "color": "#F28E2B", "label": "Community 421", "count": 14}, {"cid": 422, "color": "#E15759", "label": "Community 422", "count": 14}, {"cid": 423, "color": "#76B7B2", "label": "Community 423", "count": 14}, {"cid": 424, "color": "#59A14F", "label": "Community 424", "count": 14}, {"cid": 425, "color": "#EDC948", "label": "Community 425", "count": 14}, {"cid": 426, "color": "#B07AA1", "label": "Community 426", "count": 14}, {"cid": 427, "color": "#FF9DA7", "label": "Community 427", "count": 14}, {"cid": 428, "color": "#9C755F", "label": "Community 428", "count": 14}, {"cid": 429, "color": "#BAB0AC", "label": "Community 429", "count": 14}, {"cid": 430, "color": "#4E79A7", "label": "Community 430", "count": 13}, {"cid": 431, "color": "#F28E2B", "label": "Community 431", "count": 13}, {"cid": 432, "color": "#E15759", "label": "Community 432", "count": 13}, {"cid": 433, "color": "#76B7B2", "label": "Community 433", "count": 13}, {"cid": 434, "color": "#59A14F", "label": "Community 434", "count": 12}, {"cid": 435, "color": "#EDC948", "label": "Community 435", "count": 12}, {"cid": 436, "color": "#B07AA1", "label": "Community 436", "count": 12}, {"cid": 437, "color": "#FF9DA7", "label": "Community 437", "count": 12}, {"cid": 438, "color": "#9C755F", "label": "Community 438", "count": 12}, {"cid": 439, "color": "#BAB0AC", "label": "Community 439", "count": 11}, {"cid": 440, "color": "#4E79A7", "label": "Community 440", "count": 11}, {"cid": 441, "color": "#F28E2B", "label": "Community 441", "count": 11}, {"cid": 442, "color": "#E15759", "label": "Community 442", "count": 11}, {"cid": 443, "color": "#76B7B2", "label": "Community 443", "count": 11}, {"cid": 444, "color": "#59A14F", "label": "Community 444", "count": 11}, {"cid": 445, "color": "#EDC948", "label": "Community 445", "count": 11}, {"cid": 446, "color": "#B07AA1", "label": "Community 446", "count": 11}, {"cid": 447, "color": "#FF9DA7", "label": "Community 447", "count": 10}, {"cid": 448, "color": "#9C755F", "label": "Community 448", "count": 10}, {"cid": 449, "color": "#BAB0AC", "label": "Community 449", "count": 10}, {"cid": 450, "color": "#4E79A7", "label": "Community 450", "count": 10}, {"cid": 451, "color": "#F28E2B", "label": "Community 451", "count": 10}, {"cid": 452, "color": "#E15759", "label": "Community 452", "count": 10}, {"cid": 453, "color": "#76B7B2", "label": "Community 453", "count": 9}, {"cid": 454, "color": "#59A14F", "label": "Community 454", "count": 9}, {"cid": 455, "color": "#EDC948", "label": "Community 455", "count": 9}, {"cid": 456, "color": "#B07AA1", "label": "Community 456", "count": 9}, {"cid": 457, "color": "#FF9DA7", "label": "Community 457", "count": 9}, {"cid": 458, "color": "#9C755F", "label": "Community 458", "count": 9}, {"cid": 459, "color": "#BAB0AC", "label": "Community 459", "count": 9}, {"cid": 460, "color": "#4E79A7", "label": "Community 460", "count": 9}, {"cid": 461, "color": "#F28E2B", "label": "Community 461", "count": 9}, {"cid": 462, "color": "#E15759", "label": "Community 462", "count": 9}, {"cid": 463, "color": "#76B7B2", "label": "Community 463", "count": 9}, {"cid": 464, "color": "#59A14F", "label": "Community 464", "count": 9}, {"cid": 465, "color": "#EDC948", "label": "Community 465", "count": 9}, {"cid": 466, "color": "#B07AA1", "label": "Community 466", "count": 9}, {"cid": 467, "color": "#FF9DA7", "label": "Community 467", "count": 9}, {"cid": 468, "color": "#9C755F", "label": "Community 468", "count": 9}, {"cid": 469, "color": "#BAB0AC", "label": "Community 469", "count": 9}, {"cid": 470, "color": "#4E79A7", "label": "Community 470", "count": 9}, {"cid": 471, "color": "#F28E2B", "label": "Community 471", "count": 9}, {"cid": 472, "color": "#E15759", "label": "Community 472", "count": 9}, {"cid": 473, "color": "#76B7B2", "label": "Community 473", "count": 9}, {"cid": 474, "color": "#59A14F", "label": "Community 474", "count": 9}, {"cid": 475, "color": "#EDC948", "label": "Community 475", "count": 9}, {"cid": 476, "color": "#B07AA1", "label": "Community 476", "count": 9}, {"cid": 477, "color": "#FF9DA7", "label": "Community 477", "count": 9}, {"cid": 478, "color": "#9C755F", "label": "Community 478", "count": 9}, {"cid": 479, "color": "#BAB0AC", "label": "Community 479", "count": 9}, {"cid": 480, "color": "#4E79A7", "label": "Community 480", "count": 9}, {"cid": 481, "color": "#F28E2B", "label": "Community 481", "count": 9}, {"cid": 482, "color": "#E15759", "label": "Community 482", "count": 9}, {"cid": 483, "color": "#76B7B2", "label": "Community 483", "count": 9}, {"cid": 484, "color": "#59A14F", "label": "Community 484", "count": 9}, {"cid": 485, "color": "#EDC948", "label": "Community 485", "count": 9}, {"cid": 486, "color": "#B07AA1", "label": "Community 486", "count": 9}, {"cid": 487, "color": "#FF9DA7", "label": "Community 487", "count": 9}, {"cid": 488, "color": "#9C755F", "label": "Community 488", "count": 9}, {"cid": 489, "color": "#BAB0AC", "label": "Community 489", "count": 9}, {"cid": 490, "color": "#4E79A7", "label": "Community 490", "count": 9}, {"cid": 491, "color": "#F28E2B", "label": "Community 491", "count": 9}, {"cid": 492, "color": "#E15759", "label": "Community 492", "count": 9}, {"cid": 493, "color": "#76B7B2", "label": "Community 493", "count": 9}, {"cid": 494, "color": "#59A14F", "label": "Community 494", "count": 9}, {"cid": 495, "color": "#EDC948", "label": "Community 495", "count": 9}, {"cid": 496, "color": "#B07AA1", "label": "Community 496", "count": 9}, {"cid": 497, "color": "#FF9DA7", "label": "Community 497", "count": 9}, {"cid": 498, "color": "#9C755F", "label": "Community 498", "count": 9}, {"cid": 499, "color": "#BAB0AC", "label": "Community 499", "count": 9}, {"cid": 500, "color": "#4E79A7", "label": "Community 500", "count": 9}, {"cid": 501, "color": "#F28E2B", "label": "Community 501", "count": 9}, {"cid": 502, "color": "#E15759", "label": "Community 502", "count": 9}, {"cid": 503, "color": "#76B7B2", "label": "Community 503", "count": 9}, {"cid": 504, "color": "#59A14F", "label": "Community 504", "count": 9}, {"cid": 505, "color": "#EDC948", "label": "Community 505", "count": 9}, {"cid": 506, "color": "#B07AA1", "label": "Community 506", "count": 9}, {"cid": 507, "color": "#FF9DA7", "label": "Community 507", "count": 9}, {"cid": 508, "color": "#9C755F", "label": "Community 508", "count": 9}, {"cid": 509, "color": "#BAB0AC", "label": "Community 509", "count": 9}, {"cid": 510, "color": "#4E79A7", "label": "Community 510", "count": 9}, {"cid": 511, "color": "#F28E2B", "label": "Community 511", "count": 9}, {"cid": 512, "color": "#E15759", "label": "Community 512", "count": 9}, {"cid": 513, "color": "#76B7B2", "label": "Community 513", "count": 9}, {"cid": 514, "color": "#59A14F", "label": "Community 514", "count": 9}, {"cid": 515, "color": "#EDC948", "label": "Community 515", "count": 9}, {"cid": 516, "color": "#B07AA1", "label": "Community 516", "count": 9}, {"cid": 517, "color": "#FF9DA7", "label": "Community 517", "count": 9}, {"cid": 518, "color": "#9C755F", "label": "Community 518", "count": 9}, {"cid": 519, "color": "#BAB0AC", "label": "Community 519", "count": 9}, {"cid": 520, "color": "#4E79A7", "label": "Community 520", "count": 9}, {"cid": 521, "color": "#F28E2B", "label": "Community 521", "count": 9}, {"cid": 522, "color": "#E15759", "label": "Community 522", "count": 9}, {"cid": 523, "color": "#76B7B2", "label": "Community 523", "count": 9}, {"cid": 524, "color": "#59A14F", "label": "Community 524", "count": 9}, {"cid": 525, "color": "#EDC948", "label": "Community 525", "count": 9}, {"cid": 526, "color": "#B07AA1", "label": "Community 526", "count": 9}, {"cid": 527, "color": "#FF9DA7", "label": "Community 527", "count": 9}, {"cid": 528, "color": "#9C755F", "label": "Community 528", "count": 9}, {"cid": 529, "color": "#BAB0AC", "label": "Community 529", "count": 9}, {"cid": 530, "color": "#4E79A7", "label": "Community 530", "count": 9}, {"cid": 531, "color": "#F28E2B", "label": "Community 531", "count": 9}, {"cid": 532, "color": "#E15759", "label": "Community 532", "count": 9}, {"cid": 533, "color": "#76B7B2", "label": "Community 533", "count": 9}, {"cid": 534, "color": "#59A14F", "label": "Community 534", "count": 9}, {"cid": 535, "color": "#EDC948", "label": "Community 535", "count": 9}, {"cid": 536, "color": "#B07AA1", "label": "Community 536", "count": 9}, {"cid": 537, "color": "#FF9DA7", "label": "Community 537", "count": 9}, {"cid": 538, "color": "#9C755F", "label": "Community 538", "count": 9}, {"cid": 539, "color": "#BAB0AC", "label": "Community 539", "count": 9}, {"cid": 540, "color": "#4E79A7", "label": "Community 540", "count": 9}, {"cid": 541, "color": "#F28E2B", "label": "Community 541", "count": 9}, {"cid": 542, "color": "#E15759", "label": "Community 542", "count": 9}, {"cid": 543, "color": "#76B7B2", "label": "Community 543", "count": 9}, {"cid": 544, "color": "#59A14F", "label": "Community 544", "count": 9}, {"cid": 545, "color": "#EDC948", "label": "Community 545", "count": 9}, {"cid": 546, "color": "#B07AA1", "label": "Community 546", "count": 9}, {"cid": 547, "color": "#FF9DA7", "label": "Community 547", "count": 9}, {"cid": 548, "color": "#9C755F", "label": "Community 548", "count": 9}, {"cid": 549, "color": "#BAB0AC", "label": "Community 549", "count": 9}, {"cid": 550, "color": "#4E79A7", "label": "Community 550", "count": 9}, {"cid": 551, "color": "#F28E2B", "label": "Community 551", "count": 9}, {"cid": 552, "color": "#E15759", "label": "Community 552", "count": 9}, {"cid": 553, "color": "#76B7B2", "label": "Community 553", "count": 9}, {"cid": 554, "color": "#59A14F", "label": "Community 554", "count": 9}, {"cid": 555, "color": "#EDC948", "label": "Community 555", "count": 9}, {"cid": 556, "color": "#B07AA1", "label": "Community 556", "count": 9}, {"cid": 557, "color": "#FF9DA7", "label": "Community 557", "count": 9}, {"cid": 558, "color": "#9C755F", "label": "Community 558", "count": 9}, {"cid": 559, "color": "#BAB0AC", "label": "Community 559", "count": 9}, {"cid": 560, "color": "#4E79A7", "label": "Community 560", "count": 9}, {"cid": 561, "color": "#F28E2B", "label": "Community 561", "count": 9}, {"cid": 562, "color": "#E15759", "label": "Community 562", "count": 9}, {"cid": 563, "color": "#76B7B2", "label": "Community 563", "count": 9}, {"cid": 564, "color": "#59A14F", "label": "Community 564", "count": 9}, {"cid": 565, "color": "#EDC948", "label": "Community 565", "count": 9}, {"cid": 566, "color": "#B07AA1", "label": "Community 566", "count": 9}, {"cid": 567, "color": "#FF9DA7", "label": "Community 567", "count": 9}, {"cid": 568, "color": "#9C755F", "label": "Community 568", "count": 9}, {"cid": 569, "color": "#BAB0AC", "label": "Community 569", "count": 9}, {"cid": 570, "color": "#4E79A7", "label": "Community 570", "count": 9}, {"cid": 571, "color": "#F28E2B", "label": "Community 571", "count": 9}, {"cid": 572, "color": "#E15759", "label": "Community 572", "count": 9}, {"cid": 573, "color": "#76B7B2", "label": "Community 573", "count": 9}, {"cid": 574, "color": "#59A14F", "label": "Community 574", "count": 9}, {"cid": 575, "color": "#EDC948", "label": "Community 575", "count": 9}, {"cid": 576, "color": "#B07AA1", "label": "Community 576", "count": 9}, {"cid": 577, "color": "#FF9DA7", "label": "Community 577", "count": 9}, {"cid": 578, "color": "#9C755F", "label": "Community 578", "count": 9}, {"cid": 579, "color": "#BAB0AC", "label": "Community 579", "count": 9}, {"cid": 580, "color": "#4E79A7", "label": "Community 580", "count": 9}, {"cid": 581, "color": "#F28E2B", "label": "Community 581", "count": 9}, {"cid": 582, "color": "#E15759", "label": "Community 582", "count": 9}, {"cid": 583, "color": "#76B7B2", "label": "Community 583", "count": 9}, {"cid": 584, "color": "#59A14F", "label": "Community 584", "count": 9}, {"cid": 585, "color": "#EDC948", "label": "Community 585", "count": 9}, {"cid": 586, "color": "#B07AA1", "label": "Community 586", "count": 9}, {"cid": 587, "color": "#FF9DA7", "label": "Community 587", "count": 9}, {"cid": 588, "color": "#9C755F", "label": "Community 588", "count": 9}, {"cid": 589, "color": "#BAB0AC", "label": "Community 589", "count": 9}, {"cid": 590, "color": "#4E79A7", "label": "Community 590", "count": 9}, {"cid": 591, "color": "#F28E2B", "label": "Community 591", "count": 9}, {"cid": 592, "color": "#E15759", "label": "Community 592", "count": 9}, {"cid": 593, "color": "#76B7B2", "label": "Community 593", "count": 9}, {"cid": 594, "color": "#59A14F", "label": "Community 594", "count": 9}, {"cid": 595, "color": "#EDC948", "label": "Community 595", "count": 9}, {"cid": 596, "color": "#B07AA1", "label": "Community 596", "count": 8}, {"cid": 597, "color": "#FF9DA7", "label": "Community 597", "count": 8}, {"cid": 598, "color": "#9C755F", "label": "Community 598", "count": 8}, {"cid": 599, "color": "#BAB0AC", "label": "Community 599", "count": 8}, {"cid": 600, "color": "#4E79A7", "label": "Community 600", "count": 8}, {"cid": 601, "color": "#F28E2B", "label": "Community 601", "count": 8}, {"cid": 602, "color": "#E15759", "label": "Community 602", "count": 8}, {"cid": 603, "color": "#76B7B2", "label": "Community 603", "count": 8}, {"cid": 604, "color": "#59A14F", "label": "Community 604", "count": 8}, {"cid": 605, "color": "#EDC948", "label": "Community 605", "count": 8}, {"cid": 606, "color": "#B07AA1", "label": "Community 606", "count": 8}, {"cid": 607, "color": "#FF9DA7", "label": "Community 607", "count": 8}, {"cid": 608, "color": "#9C755F", "label": "Community 608", "count": 7}, {"cid": 609, "color": "#BAB0AC", "label": "Community 609", "count": 7}, {"cid": 610, "color": "#4E79A7", "label": "Community 610", "count": 7}, {"cid": 611, "color": "#F28E2B", "label": "Community 611", "count": 7}, {"cid": 612, "color": "#E15759", "label": "Community 612", "count": 7}, {"cid": 613, "color": "#76B7B2", "label": "Community 613", "count": 7}, {"cid": 614, "color": "#59A14F", "label": "Community 614", "count": 7}, {"cid": 615, "color": "#EDC948", "label": "Community 615", "count": 7}, {"cid": 616, "color": "#B07AA1", "label": "Community 616", "count": 7}, {"cid": 617, "color": "#FF9DA7", "label": "Community 617", "count": 7}, {"cid": 618, "color": "#9C755F", "label": "Community 618", "count": 7}, {"cid": 619, "color": "#BAB0AC", "label": "Community 619", "count": 7}, {"cid": 620, "color": "#4E79A7", "label": "Community 620", "count": 7}, {"cid": 621, "color": "#F28E2B", "label": "Community 621", "count": 6}, {"cid": 622, "color": "#E15759", "label": "Community 622", "count": 6}, {"cid": 623, "color": "#76B7B2", "label": "Community 623", "count": 6}, {"cid": 624, "color": "#59A14F", "label": "Community 624", "count": 6}, {"cid": 625, "color": "#EDC948", "label": "Community 625", "count": 6}, {"cid": 626, "color": "#B07AA1", "label": "Community 626", "count": 6}, {"cid": 627, "color": "#FF9DA7", "label": "Community 627", "count": 6}, {"cid": 628, "color": "#9C755F", "label": "Community 628", "count": 6}, {"cid": 629, "color": "#BAB0AC", "label": "Community 629", "count": 6}, {"cid": 630, "color": "#4E79A7", "label": "Community 630", "count": 6}, {"cid": 631, "color": "#F28E2B", "label": "Community 631", "count": 6}, {"cid": 632, "color": "#E15759", "label": "Community 632", "count": 6}, {"cid": 633, "color": "#76B7B2", "label": "Community 633", "count": 6}, {"cid": 634, "color": "#59A14F", "label": "Community 634", "count": 6}, {"cid": 635, "color": "#EDC948", "label": "Community 635", "count": 6}, {"cid": 636, "color": "#B07AA1", "label": "Community 636", "count": 6}, {"cid": 637, "color": "#FF9DA7", "label": "Community 637", "count": 6}, {"cid": 638, "color": "#9C755F", "label": "Community 638", "count": 6}, {"cid": 639, "color": "#BAB0AC", "label": "Community 639", "count": 6}, {"cid": 640, "color": "#4E79A7", "label": "Community 640", "count": 6}, {"cid": 641, "color": "#F28E2B", "label": "Community 641", "count": 6}, {"cid": 642, "color": "#E15759", "label": "Community 642", "count": 6}, {"cid": 643, "color": "#76B7B2", "label": "Community 643", "count": 6}, {"cid": 644, "color": "#59A14F", "label": "Community 644", "count": 6}, {"cid": 645, "color": "#EDC948", "label": "Community 645", "count": 6}, {"cid": 646, "color": "#B07AA1", "label": "Community 646", "count": 6}, {"cid": 647, "color": "#FF9DA7", "label": "Community 647", "count": 6}, {"cid": 648, "color": "#9C755F", "label": "Community 648", "count": 5}, {"cid": 649, "color": "#BAB0AC", "label": "Community 649", "count": 5}, {"cid": 650, "color": "#4E79A7", "label": "Community 650", "count": 5}, {"cid": 651, "color": "#F28E2B", "label": "Community 651", "count": 5}, {"cid": 652, "color": "#E15759", "label": "Community 652", "count": 5}, {"cid": 653, "color": "#76B7B2", "label": "Community 653", "count": 5}, {"cid": 654, "color": "#59A14F", "label": "Community 654", "count": 5}, {"cid": 655, "color": "#EDC948", "label": "Community 655", "count": 5}, {"cid": 656, "color": "#B07AA1", "label": "Community 656", "count": 5}, {"cid": 657, "color": "#FF9DA7", "label": "Community 657", "count": 5}, {"cid": 658, "color": "#9C755F", "label": "Community 658", "count": 5}, {"cid": 659, "color": "#BAB0AC", "label": "Community 659", "count": 5}, {"cid": 660, "color": "#4E79A7", "label": "Community 660", "count": 5}, {"cid": 661, "color": "#F28E2B", "label": "Community 661", "count": 5}, {"cid": 662, "color": "#E15759", "label": "Community 662", "count": 5}, {"cid": 663, "color": "#76B7B2", "label": "Community 663", "count": 5}, {"cid": 664, "color": "#59A14F", "label": "Community 664", "count": 5}, {"cid": 665, "color": "#EDC948", "label": "Community 665", "count": 5}, {"cid": 666, "color": "#B07AA1", "label": "Community 666", "count": 5}, {"cid": 667, "color": "#FF9DA7", "label": "Community 667", "count": 4}, {"cid": 668, "color": "#9C755F", "label": "Community 668", "count": 4}, {"cid": 669, "color": "#BAB0AC", "label": "Community 669", "count": 4}, {"cid": 670, "color": "#4E79A7", "label": "Community 670", "count": 4}, {"cid": 671, "color": "#F28E2B", "label": "Community 671", "count": 4}, {"cid": 672, "color": "#E15759", "label": "Community 672", "count": 4}, {"cid": 673, "color": "#76B7B2", "label": "Community 673", "count": 4}, {"cid": 674, "color": "#59A14F", "label": "Community 674", "count": 4}, {"cid": 675, "color": "#EDC948", "label": "Community 675", "count": 4}, {"cid": 676, "color": "#B07AA1", "label": "Community 676", "count": 4}, {"cid": 677, "color": "#FF9DA7", "label": "Community 677", "count": 4}, {"cid": 678, "color": "#9C755F", "label": "Community 678", "count": 4}, {"cid": 679, "color": "#BAB0AC", "label": "Community 679", "count": 4}, {"cid": 680, "color": "#4E79A7", "label": "Community 680", "count": 4}, {"cid": 681, "color": "#F28E2B", "label": "Community 681", "count": 4}, {"cid": 682, "color": "#E15759", "label": "Community 682", "count": 4}, {"cid": 683, "color": "#76B7B2", "label": "Community 683", "count": 4}, {"cid": 684, "color": "#59A14F", "label": "Community 684", "count": 4}, {"cid": 685, "color": "#EDC948", "label": "Community 685", "count": 4}, {"cid": 686, "color": "#B07AA1", "label": "Community 686", "count": 4}, {"cid": 687, "color": "#FF9DA7", "label": "Community 687", "count": 4}, {"cid": 688, "color": "#9C755F", "label": "Community 688", "count": 4}, {"cid": 689, "color": "#BAB0AC", "label": "Community 689", "count": 4}, {"cid": 690, "color": "#4E79A7", "label": "Community 690", "count": 4}, {"cid": 691, "color": "#F28E2B", "label": "Community 691", "count": 4}, {"cid": 692, "color": "#E15759", "label": "Community 692", "count": 4}, {"cid": 693, "color": "#76B7B2", "label": "Community 693", "count": 4}, {"cid": 694, "color": "#59A14F", "label": "Community 694", "count": 4}, {"cid": 695, "color": "#EDC948", "label": "Community 695", "count": 3}, {"cid": 696, "color": "#B07AA1", "label": "Community 696", "count": 3}, {"cid": 697, "color": "#FF9DA7", "label": "Community 697", "count": 3}, {"cid": 698, "color": "#9C755F", "label": "Community 698", "count": 3}, {"cid": 699, "color": "#BAB0AC", "label": "Community 699", "count": 3}, {"cid": 700, "color": "#4E79A7", "label": "Community 700", "count": 3}, {"cid": 701, "color": "#F28E2B", "label": "Community 701", "count": 3}, {"cid": 702, "color": "#E15759", "label": "Community 702", "count": 3}, {"cid": 703, "color": "#76B7B2", "label": "Community 703", "count": 3}, {"cid": 704, "color": "#59A14F", "label": "Community 704", "count": 3}, {"cid": 705, "color": "#EDC948", "label": "Community 705", "count": 3}, {"cid": 706, "color": "#B07AA1", "label": "Community 706", "count": 3}, {"cid": 707, "color": "#FF9DA7", "label": "Community 707", "count": 3}, {"cid": 708, "color": "#9C755F", "label": "Community 708", "count": 3}, {"cid": 709, "color": "#BAB0AC", "label": "Community 709", "count": 3}, {"cid": 710, "color": "#4E79A7", "label": "Community 710", "count": 3}, {"cid": 711, "color": "#F28E2B", "label": "Community 711", "count": 2}, {"cid": 712, "color": "#E15759", "label": "Community 712", "count": 2}, {"cid": 713, "color": "#76B7B2", "label": "Community 713", "count": 2}, {"cid": 714, "color": "#59A14F", "label": "Community 714", "count": 2}, {"cid": 715, "color": "#EDC948", "label": "Community 715", "count": 2}, {"cid": 716, "color": "#B07AA1", "label": "Community 716", "count": 2}, {"cid": 717, "color": "#FF9DA7", "label": "Community 717", "count": 2}, {"cid": 718, "color": "#9C755F", "label": "Community 718", "count": 2}, {"cid": 719, "color": "#BAB0AC", "label": "Community 719", "count": 2}, {"cid": 720, "color": "#4E79A7", "label": "Community 720", "count": 2}, {"cid": 721, "color": "#F28E2B", "label": "Community 721", "count": 2}, {"cid": 722, "color": "#E15759", "label": "Community 722", "count": 2}, {"cid": 723, "color": "#76B7B2", "label": "Community 723", "count": 2}, {"cid": 724, "color": "#59A14F", "label": "Community 724", "count": 2}, {"cid": 725, "color": "#EDC948", "label": "Community 725", "count": 2}, {"cid": 726, "color": "#B07AA1", "label": "Community 726", "count": 2}, {"cid": 727, "color": "#FF9DA7", "label": "Community 727", "count": 2}, {"cid": 728, "color": "#9C755F", "label": "Community 728", "count": 2}, {"cid": 729, "color": "#BAB0AC", "label": "Community 729", "count": 2}, {"cid": 730, "color": "#4E79A7", "label": "Community 730", "count": 2}, {"cid": 731, "color": "#F28E2B", "label": "Community 731", "count": 2}, {"cid": 732, "color": "#E15759", "label": "Community 732", "count": 2}, {"cid": 733, "color": "#76B7B2", "label": "Community 733", "count": 2}, {"cid": 734, "color": "#59A14F", "label": "Community 734", "count": 2}, {"cid": 735, "color": "#EDC948", "label": "Community 735", "count": 2}, {"cid": 736, "color": "#B07AA1", "label": "Community 736", "count": 2}, {"cid": 737, "color": "#FF9DA7", "label": "Community 737", "count": 2}, {"cid": 738, "color": "#9C755F", "label": "Community 738", "count": 2}, {"cid": 739, "color": "#BAB0AC", "label": "Community 739", "count": 2}, {"cid": 740, "color": "#4E79A7", "label": "Community 740", "count": 2}, {"cid": 741, "color": "#F28E2B", "label": "Community 741", "count": 2}, {"cid": 742, "color": "#E15759", "label": "Community 742", "count": 2}, {"cid": 743, "color": "#76B7B2", "label": "Community 743", "count": 2}, {"cid": 744, "color": "#59A14F", "label": "Community 744", "count": 2}, {"cid": 745, "color": "#EDC948", "label": "Community 745", "count": 2}, {"cid": 746, "color": "#B07AA1", "label": "Community 746", "count": 2}, {"cid": 747, "color": "#FF9DA7", "label": "Community 747", "count": 2}, {"cid": 748, "color": "#9C755F", "label": "Community 748", "count": 2}, {"cid": 749, "color": "#BAB0AC", "label": "Community 749", "count": 2}, {"cid": 750, "color": "#4E79A7", "label": "Community 750", "count": 2}, {"cid": 751, "color": "#F28E2B", "label": "Community 751", "count": 2}, {"cid": 752, "color": "#E15759", "label": "Community 752", "count": 2}, {"cid": 753, "color": "#76B7B2", "label": "Community 753", "count": 2}, {"cid": 754, "color": "#59A14F", "label": "Community 754", "count": 2}, {"cid": 755, "color": "#EDC948", "label": "Community 755", "count": 2}, {"cid": 756, "color": "#B07AA1", "label": "Community 756", "count": 2}, {"cid": 757, "color": "#FF9DA7", "label": "Community 757", "count": 2}, {"cid": 758, "color": "#9C755F", "label": "Community 758", "count": 2}, {"cid": 759, "color": "#BAB0AC", "label": "Community 759", "count": 2}, {"cid": 760, "color": "#4E79A7", "label": "Community 760", "count": 2}, {"cid": 761, "color": "#F28E2B", "label": "Community 761", "count": 2}, {"cid": 762, "color": "#E15759", "label": "Community 762", "count": 2}, {"cid": 763, "color": "#76B7B2", "label": "Community 763", "count": 2}, {"cid": 764, "color": "#59A14F", "label": "Community 764", "count": 2}, {"cid": 765, "color": "#EDC948", "label": "Community 765", "count": 2}, {"cid": 766, "color": "#B07AA1", "label": "Community 766", "count": 2}, {"cid": 767, "color": "#FF9DA7", "label": "Community 767", "count": 1}, {"cid": 768, "color": "#9C755F", "label": "Community 768", "count": 1}, {"cid": 769, "color": "#BAB0AC", "label": "Community 769", "count": 1}, {"cid": 770, "color": "#4E79A7", "label": "Community 770", "count": 1}, {"cid": 771, "color": "#F28E2B", "label": "Community 771", "count": 1}, {"cid": 772, "color": "#E15759", "label": "Community 772", "count": 1}, {"cid": 773, "color": "#76B7B2", "label": "Community 773", "count": 1}, {"cid": 774, "color": "#59A14F", "label": "Community 774", "count": 1}, {"cid": 775, "color": "#EDC948", "label": "Community 775", "count": 1}, {"cid": 776, "color": "#B07AA1", "label": "Community 776", "count": 1}, {"cid": 777, "color": "#FF9DA7", "label": "Community 777", "count": 1}, {"cid": 778, "color": "#9C755F", "label": "Community 778", "count": 1}, {"cid": 779, "color": "#BAB0AC", "label": "Community 779", "count": 1}, {"cid": 780, "color": "#4E79A7", "label": "Community 780", "count": 1}, {"cid": 781, "color": "#F28E2B", "label": "Community 781", "count": 1}, {"cid": 782, "color": "#E15759", "label": "Community 782", "count": 1}, {"cid": 783, "color": "#76B7B2", "label": "Community 783", "count": 1}, {"cid": 784, "color": "#59A14F", "label": "Community 784", "count": 1}, {"cid": 785, "color": "#EDC948", "label": "Community 785", "count": 1}, {"cid": 786, "color": "#B07AA1", "label": "Community 786", "count": 1}, {"cid": 787, "color": "#FF9DA7", "label": "Community 787", "count": 1}, {"cid": 788, "color": "#9C755F", "label": "Community 788", "count": 1}, {"cid": 789, "color": "#BAB0AC", "label": "Community 789", "count": 1}, {"cid": 790, "color": "#4E79A7", "label": "Community 790", "count": 1}, {"cid": 791, "color": "#F28E2B", "label": "Community 791", "count": 1}, {"cid": 792, "color": "#E15759", "label": "Community 792", "count": 1}, {"cid": 793, "color": "#76B7B2", "label": "Community 793", "count": 1}, {"cid": 794, "color": "#59A14F", "label": "Community 794", "count": 1}, {"cid": 795, "color": "#EDC948", "label": "Community 795", "count": 1}, {"cid": 796, "color": "#B07AA1", "label": "Community 796", "count": 1}, {"cid": 797, "color": "#FF9DA7", "label": "Community 797", "count": 1}, {"cid": 798, "color": "#9C755F", "label": "Community 798", "count": 1}, {"cid": 799, "color": "#BAB0AC", "label": "Community 799", "count": 1}, {"cid": 800, "color": "#4E79A7", "label": "Community 800", "count": 1}, {"cid": 801, "color": "#F28E2B", "label": "Community 801", "count": 1}, {"cid": 802, "color": "#E15759", "label": "Community 802", "count": 1}, {"cid": 803, "color": "#76B7B2", "label": "Community 803", "count": 1}, {"cid": 804, "color": "#59A14F", "label": "Community 804", "count": 1}, {"cid": 805, "color": "#EDC948", "label": "Community 805", "count": 1}, {"cid": 806, "color": "#B07AA1", "label": "Community 806", "count": 1}, {"cid": 807, "color": "#FF9DA7", "label": "Community 807", "count": 1}, {"cid": 808, "color": "#9C755F", "label": "Community 808", "count": 1}, {"cid": 809, "color": "#BAB0AC", "label": "Community 809", "count": 1}, {"cid": 810, "color": "#4E79A7", "label": "Community 810", "count": 1}, {"cid": 811, "color": "#F28E2B", "label": "Community 811", "count": 1}, {"cid": 812, "color": "#E15759", "label": "Community 812", "count": 1}, {"cid": 813, "color": "#76B7B2", "label": "Community 813", "count": 1}, {"cid": 814, "color": "#59A14F", "label": "Community 814", "count": 1}, {"cid": 815, "color": "#EDC948", "label": "Community 815", "count": 1}, {"cid": 816, "color": "#B07AA1", "label": "Community 816", "count": 1}, {"cid": 817, "color": "#FF9DA7", "label": "Community 817", "count": 1}, {"cid": 818, "color": "#9C755F", "label": "Community 818", "count": 1}, {"cid": 819, "color": "#BAB0AC", "label": "Community 819", "count": 1}, {"cid": 820, "color": "#4E79A7", "label": "Community 820", "count": 1}, {"cid": 821, "color": "#F28E2B", "label": "Community 821", "count": 1}, {"cid": 822, "color": "#E15759", "label": "Community 822", "count": 1}, {"cid": 823, "color": "#76B7B2", "label": "Community 823", "count": 1}, {"cid": 824, "color": "#59A14F", "label": "Community 824", "count": 1}, {"cid": 825, "color": "#EDC948", "label": "Community 825", "count": 1}, {"cid": 826, "color": "#B07AA1", "label": "Community 826", "count": 1}, {"cid": 827, "color": "#FF9DA7", "label": "Community 827", "count": 1}, {"cid": 828, "color": "#9C755F", "label": "Community 828", "count": 1}, {"cid": 829, "color": "#BAB0AC", "label": "Community 829", "count": 1}, {"cid": 830, "color": "#4E79A7", "label": "Community 830", "count": 1}, {"cid": 831, "color": "#F28E2B", "label": "Community 831", "count": 1}, {"cid": 832, "color": "#E15759", "label": "Community 832", "count": 1}, {"cid": 833, "color": "#76B7B2", "label": "Community 833", "count": 1}, {"cid": 834, "color": "#59A14F", "label": "Community 834", "count": 1}, {"cid": 835, "color": "#EDC948", "label": "Community 835", "count": 1}, {"cid": 836, "color": "#B07AA1", "label": "Community 836", "count": 1}, {"cid": 837, "color": "#FF9DA7", "label": "Community 837", "count": 1}, {"cid": 838, "color": "#9C755F", "label": "Community 838", "count": 1}, {"cid": 839, "color": "#BAB0AC", "label": "Community 839", "count": 1}, {"cid": 840, "color": "#4E79A7", "label": "Community 840", "count": 1}, {"cid": 841, "color": "#F28E2B", "label": "Community 841", "count": 1}, {"cid": 842, "color": "#E15759", "label": "Community 842", "count": 1}, {"cid": 843, "color": "#76B7B2", "label": "Community 843", "count": 1}, {"cid": 844, "color": "#59A14F", "label": "Community 844", "count": 1}, {"cid": 845, "color": "#EDC948", "label": "Community 845", "count": 1}, {"cid": 846, "color": "#B07AA1", "label": "Community 846", "count": 1}, {"cid": 847, "color": "#FF9DA7", "label": "Community 847", "count": 1}, {"cid": 848, "color": "#9C755F", "label": "Community 848", "count": 1}, {"cid": 849, "color": "#BAB0AC", "label": "Community 849", "count": 1}, {"cid": 850, "color": "#4E79A7", "label": "Community 850", "count": 1}, {"cid": 851, "color": "#F28E2B", "label": "Community 851", "count": 1}, {"cid": 852, "color": "#E15759", "label": "Community 852", "count": 1}, {"cid": 853, "color": "#76B7B2", "label": "Community 853", "count": 1}, {"cid": 854, "color": "#59A14F", "label": "Community 854", "count": 1}, {"cid": 855, "color": "#EDC948", "label": "Community 855", "count": 1}, {"cid": 856, "color": "#B07AA1", "label": "Community 856", "count": 1}, {"cid": 857, "color": "#FF9DA7", "label": "Community 857", "count": 1}, {"cid": 858, "color": "#9C755F", "label": "Community 858", "count": 1}, {"cid": 859, "color": "#BAB0AC", "label": "Community 859", "count": 1}, {"cid": 860, "color": "#4E79A7", "label": "Community 860", "count": 1}, {"cid": 861, "color": "#F28E2B", "label": "Community 861", "count": 1}, {"cid": 862, "color": "#E15759", "label": "Community 862", "count": 1}, {"cid": 863, "color": "#76B7B2", "label": "Community 863", "count": 0}, {"cid": 864, "color": "#59A14F", "label": "Community 864", "count": 0}, {"cid": 865, "color": "#EDC948", "label": "Community 865", "count": 0}, {"cid": 866, "color": "#B07AA1", "label": "Community 866", "count": 0}, {"cid": 867, "color": "#FF9DA7", "label": "Community 867", "count": 0}, {"cid": 868, "color": "#9C755F", "label": "Community 868", "count": 0}, {"cid": 869, "color": "#BAB0AC", "label": "Community 869", "count": 0}, {"cid": 870, "color": "#4E79A7", "label": "Community 870", "count": 0}, {"cid": 871, "color": "#F28E2B", "label": "Community 871", "count": 0}, {"cid": 872, "color": "#E15759", "label": "Community 872", "count": 0}, {"cid": 873, "color": "#76B7B2", "label": "Community 873", "count": 0}, {"cid": 874, "color": "#59A14F", "label": "Community 874", "count": 0}, {"cid": 875, "color": "#EDC948", "label": "Community 875", "count": 0}, {"cid": 876, "color": "#B07AA1", "label": "Community 876", "count": 0}, {"cid": 877, "color": "#FF9DA7", "label": "Community 877", "count": 0}, {"cid": 878, "color": "#9C755F", "label": "Community 878", "count": 0}, {"cid": 879, "color": "#BAB0AC", "label": "Community 879", "count": 0}, {"cid": 880, "color": "#4E79A7", "label": "Community 880", "count": 0}, {"cid": 881, "color": "#F28E2B", "label": "Community 881", "count": 0}, {"cid": 882, "color": "#E15759", "label": "Community 882", "count": 0}];
|
|
|
|
// HTML-escape helper — prevents XSS when injecting graph data into innerHTML
|
|
function esc(s) {
|
|
return String(s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/'/g,''');
|
|
}
|
|
|
|
// Build vis datasets
|
|
const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
|
|
id: n.id, label: n.label, color: n.color, size: n.size,
|
|
font: n.font, title: n.title,
|
|
_community: n.community, _community_name: n.community_name,
|
|
_source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
|
|
})));
|
|
|
|
const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
|
|
id: i, from: e.from, to: e.to,
|
|
label: '',
|
|
title: e.title,
|
|
dashes: e.dashes,
|
|
width: e.width,
|
|
color: e.color,
|
|
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
|
|
})));
|
|
|
|
const container = document.getElementById('graph');
|
|
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
|
|
physics: {
|
|
enabled: true,
|
|
solver: 'forceAtlas2Based',
|
|
forceAtlas2Based: {
|
|
gravitationalConstant: -60,
|
|
centralGravity: 0.005,
|
|
springLength: 120,
|
|
springConstant: 0.08,
|
|
damping: 0.4,
|
|
avoidOverlap: 0.8,
|
|
},
|
|
stabilization: { iterations: 200, fit: true },
|
|
},
|
|
interaction: {
|
|
hover: true,
|
|
tooltipDelay: 100,
|
|
hideEdgesOnDrag: true,
|
|
navigationButtons: false,
|
|
keyboard: false,
|
|
},
|
|
nodes: { shape: 'dot', borderWidth: 1.5 },
|
|
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
|
|
});
|
|
|
|
network.once('stabilizationIterationsDone', () => {
|
|
network.setOptions({ physics: { enabled: false } });
|
|
});
|
|
|
|
function showInfo(nodeId) {
|
|
const n = nodesDS.get(nodeId);
|
|
if (!n) return;
|
|
const neighborIds = network.getConnectedNodes(nodeId);
|
|
const neighborItems = neighborIds.map(nid => {
|
|
const nb = nodesDS.get(nid);
|
|
const color = nb ? nb.color.background : '#555';
|
|
return `<span class="neighbor-link" style="border-left-color:${esc(color)}" onclick="focusNode(${JSON.stringify(nid)})">${esc(nb ? nb.label : nid)}</span>`;
|
|
}).join('');
|
|
document.getElementById('info-content').innerHTML = `
|
|
<div class="field"><b>${esc(n.label)}</b></div>
|
|
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
|
|
<div class="field">Community: ${esc(n._community_name)}</div>
|
|
<div class="field">Source: ${esc(n._source_file || '-')}</div>
|
|
<div class="field">Degree: ${n._degree}</div>
|
|
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
|
|
`;
|
|
}
|
|
|
|
function focusNode(nodeId) {
|
|
network.focus(nodeId, { scale: 1.4, animation: true });
|
|
network.selectNodes([nodeId]);
|
|
showInfo(nodeId);
|
|
}
|
|
|
|
// Track hovered node — hover detection is more reliable than click params
|
|
let hoveredNodeId = null;
|
|
network.on('hoverNode', params => {
|
|
hoveredNodeId = params.node;
|
|
container.style.cursor = 'pointer';
|
|
});
|
|
network.on('blurNode', () => {
|
|
hoveredNodeId = null;
|
|
container.style.cursor = 'default';
|
|
});
|
|
container.addEventListener('click', () => {
|
|
if (hoveredNodeId !== null) {
|
|
showInfo(hoveredNodeId);
|
|
network.selectNodes([hoveredNodeId]);
|
|
}
|
|
});
|
|
network.on('click', params => {
|
|
if (params.nodes.length > 0) {
|
|
showInfo(params.nodes[0]);
|
|
} else if (hoveredNodeId === null) {
|
|
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
|
|
}
|
|
});
|
|
|
|
const searchInput = document.getElementById('search');
|
|
const searchResults = document.getElementById('search-results');
|
|
searchInput.addEventListener('input', () => {
|
|
const q = searchInput.value.toLowerCase().trim();
|
|
searchResults.innerHTML = '';
|
|
if (!q) { searchResults.style.display = 'none'; return; }
|
|
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
|
|
if (!matches.length) { searchResults.style.display = 'none'; return; }
|
|
searchResults.style.display = 'block';
|
|
matches.forEach(n => {
|
|
const el = document.createElement('div');
|
|
el.className = 'search-item';
|
|
el.textContent = n.label;
|
|
el.style.borderLeft = `3px solid ${n.color.background}`;
|
|
el.style.paddingLeft = '8px';
|
|
el.onclick = () => {
|
|
network.focus(n.id, { scale: 1.5, animation: true });
|
|
network.selectNodes([n.id]);
|
|
showInfo(n.id);
|
|
searchResults.style.display = 'none';
|
|
searchInput.value = '';
|
|
};
|
|
searchResults.appendChild(el);
|
|
});
|
|
});
|
|
document.addEventListener('click', e => {
|
|
if (!searchResults.contains(e.target) && e.target !== searchInput)
|
|
searchResults.style.display = 'none';
|
|
});
|
|
|
|
const hiddenCommunities = new Set();
|
|
|
|
const selectAllCb = document.getElementById('select-all-cb');
|
|
|
|
function updateSelectAllState() {
|
|
const total = LEGEND.length;
|
|
const hidden = hiddenCommunities.size;
|
|
selectAllCb.checked = hidden === 0;
|
|
selectAllCb.indeterminate = hidden > 0 && hidden < total;
|
|
}
|
|
|
|
function toggleAllCommunities(hide) {
|
|
document.querySelectorAll('.legend-item').forEach(item => {
|
|
hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
|
|
});
|
|
document.querySelectorAll('.legend-cb').forEach(cb => {
|
|
cb.checked = !hide;
|
|
});
|
|
LEGEND.forEach(c => {
|
|
if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
|
|
});
|
|
const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
}
|
|
|
|
const legendEl = document.getElementById('legend');
|
|
LEGEND.forEach(c => {
|
|
const item = document.createElement('div');
|
|
item.className = 'legend-item';
|
|
const cb = document.createElement('input');
|
|
cb.type = 'checkbox';
|
|
cb.className = 'legend-cb';
|
|
cb.checked = true;
|
|
cb.addEventListener('change', (e) => {
|
|
e.stopPropagation();
|
|
if (cb.checked) {
|
|
hiddenCommunities.delete(c.cid);
|
|
item.classList.remove('dimmed');
|
|
} else {
|
|
hiddenCommunities.add(c.cid);
|
|
item.classList.add('dimmed');
|
|
}
|
|
const updates = RAW_NODES
|
|
.filter(n => n.community === c.cid)
|
|
.map(n => ({ id: n.id, hidden: !cb.checked }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
});
|
|
item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
|
|
<span class="legend-label">${c.label}</span>
|
|
<span class="legend-count">${c.count}</span>`;
|
|
item.prepend(cb);
|
|
item.onclick = (e) => {
|
|
if (e.target === cb) return;
|
|
cb.checked = !cb.checked;
|
|
cb.dispatchEvent(new Event('change'));
|
|
};
|
|
legendEl.appendChild(item);
|
|
});
|
|
</script>
|
|
<script>
|
|
// Render hyperedges as shaded regions
|
|
const hyperedges = [{"id": "diga_technical_file_dossier", "label": "DiGA Technische Akte (Dossier-Plan + Zweckbestimmung + Requirements + Risiko + Test + Lyra-Eval + Datenschutz)", "nodes": ["60", "79"]}, {"id": "iec62304_traceability_chain", "label": "IEC-62304-Traceability (Anforderung\u2192Risikoma\u00dfnahme\u2192Test\u2192Lyra-Eval)", "nodes": ["79", "60"]}, {"id": "fags_nls_funding_strategy", "label": "FAGS/NLS F\u00f6rder- & Partnerschafts-Strategie (Tr\u00e4ger, Forschung, Geldgeber)", "nodes": ["75", "60"]}];
|
|
// afterDrawing passes ctx already transformed to network coordinate space.
|
|
// Draw node positions raw — no manual pan/zoom/DPR math needed.
|
|
network.on('afterDrawing', function(ctx) {
|
|
hyperedges.forEach(h => {
|
|
const positions = h.nodes
|
|
.map(nid => network.getPositions([nid])[nid])
|
|
.filter(p => p !== undefined);
|
|
if (positions.length < 2) return;
|
|
ctx.save();
|
|
ctx.globalAlpha = 0.12;
|
|
ctx.fillStyle = '#6366f1';
|
|
ctx.strokeStyle = '#6366f1';
|
|
ctx.lineWidth = 2;
|
|
ctx.beginPath();
|
|
// Centroid and expanded hull in network coordinates
|
|
const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
|
|
const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
|
|
const expanded = positions.map(p => ({
|
|
x: cx + (p.x - cx) * 1.15,
|
|
y: cy + (p.y - cy) * 1.15
|
|
}));
|
|
ctx.moveTo(expanded[0].x, expanded[0].y);
|
|
expanded.slice(1).forEach(p => ctx.lineTo(p.x, p.y));
|
|
ctx.closePath();
|
|
ctx.fill();
|
|
ctx.globalAlpha = 0.4;
|
|
ctx.stroke();
|
|
// Label
|
|
ctx.globalAlpha = 0.8;
|
|
ctx.fillStyle = '#4f46e5';
|
|
ctx.font = 'bold 11px sans-serif';
|
|
ctx.textAlign = 'center';
|
|
ctx.fillText(h.label, cx, cy - 5);
|
|
ctx.restore();
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |