Some checks failed
check / check (push) Failing after 48s
updated text sizing to better match the bar size, and increase readability.
320 lines
No EOL
462 KiB
HTML
320 lines
No EOL
462 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">566 nodes · 1077 edges · 46 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "ci_build", "label": "build.sh", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "build.sh", "community": 43, "community_name": "build.sh", "source_file": "ci/build.sh", "file_type": "code", "degree": 1}, {"id": "ci_build_sh__entry", "label": "build.sh script", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "build.sh script", "community": 43, "community_name": "build.sh", "source_file": "ci/build.sh", "file_type": "code", "degree": 1}, {"id": "src_bar_bluetooth", "label": "bluetooth.rs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "bluetooth.rs", "community": 10, "community_name": "bluetooth.rs", "source_file": "src/bar/bluetooth.rs", "file_type": "code", "degree": 10}, {"id": "src_bar_bluetooth_btdevice", "label": "BtDevice", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "BtDevice", "community": 10, "community_name": "bluetooth.rs", "source_file": "src/bar/bluetooth.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_bluetooth_rs_string", "label": "String", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 10, "community_name": "bluetooth.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_bar_bluetooth_btpopoverdata", "label": "BtPopoverData", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BtPopoverData", "community": 10, "community_name": "bluetooth.rs", "source_file": "src/bar/bluetooth.rs", "file_type": "code", "degree": 6}, {"id": "src_bar_bluetooth_rs_vec", "label": "Vec", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 10, "community_name": "bluetooth.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_bar_bluetooth_powered", "label": "powered()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "powered()", "community": 10, "community_name": "bluetooth.rs", "source_file": "src/bar/bluetooth.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_bluetooth_fetch_devices", "label": "fetch_devices()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch_devices()", "community": 10, "community_name": "bluetooth.rs", "source_file": "src/bar/bluetooth.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_bluetooth_try_fetch_devices", "label": "try_fetch_devices()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "try_fetch_devices()", "community": 10, "community_name": "bluetooth.rs", "source_file": "src/bar/bluetooth.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_bluetooth_rs_option", "label": "Option", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 10, "community_name": "bluetooth.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_bar_bluetooth_spawn_popover_load", "label": "spawn_popover_load()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_popover_load()", "community": 10, "community_name": "bluetooth.rs", "source_file": "src/bar/bluetooth.rs", "file_type": "code", "degree": 6}, {"id": "src_bar_bluetooth_rs_componentsender", "label": "ComponentSender", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ComponentSender", "community": 10, "community_name": "bluetooth.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_bar_bluetooth_spawn_set_powered", "label": "spawn_set_powered()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_set_powered()", "community": 10, "community_name": "bluetooth.rs", "source_file": "src/bar/bluetooth.rs", "file_type": "code", "degree": 1}, {"id": "src_bar_bluetooth_spawn_connect", "label": "spawn_connect()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_connect()", "community": 10, "community_name": "bluetooth.rs", "source_file": "src/bar/bluetooth.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_bluetooth_spawn_disconnect", "label": "spawn_disconnect()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_disconnect()", "community": 10, "community_name": "bluetooth.rs", "source_file": "src/bar/bluetooth.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_clock", "label": "clock.rs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "clock.rs", "community": 20, "community_name": "clock.rs", "source_file": "src/bar/clock.rs", "file_type": "code", "degree": 6}, {"id": "src_bar_clock_now", "label": "now()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "now()", "community": 20, "community_name": "clock.rs", "source_file": "src/bar/clock.rs", "file_type": "code", "degree": 4}, {"id": "datetime", "label": "DateTime", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DateTime", "community": 20, "community_name": "clock.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_bar_clock_time", "label": "time()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "time()", "community": 20, "community_name": "clock.rs", "source_file": "src/bar/clock.rs", "file_type": "code", "degree": 3}, {"id": "src_bar_clock_rs_string", "label": "String", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 20, "community_name": "clock.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_bar_clock_date", "label": "date()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "date()", "community": 20, "community_name": "clock.rs", "source_file": "src/bar/clock.rs", "file_type": "code", "degree": 3}, {"id": "src_bar_clock_current", "label": "current()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "current()", "community": 20, "community_name": "clock.rs", "source_file": "src/bar/clock.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_clock_spawn_ticker", "label": "spawn_ticker()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_ticker()", "community": 20, "community_name": "clock.rs", "source_file": "src/bar/clock.rs", "file_type": "code", "degree": 3}, {"id": "src_bar_clock_rs_componentsender", "label": "ComponentSender", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ComponentSender", "community": 20, "community_name": "clock.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_bar_control", "label": "control.rs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "control.rs", "community": 13, "community_name": "control.rs", "source_file": "src/bar/control.rs", "file_type": "code", "degree": 10}, {"id": "src_bar_control_audiosink", "label": "AudioSink", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AudioSink", "community": 13, "community_name": "control.rs", "source_file": "src/bar/control.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_control_rs_string", "label": "String", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 13, "community_name": "control.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_bar_control_controlpaneldata", "label": "ControlPanelData", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ControlPanelData", "community": 13, "community_name": "control.rs", "source_file": "src/bar/control.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_control_rs_vec", "label": "Vec", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 13, "community_name": "control.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_bar_control_fetch_volume", "label": "fetch_volume()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch_volume()", "community": 13, "community_name": "control.rs", "source_file": "src/bar/control.rs", "file_type": "code", "degree": 1}, {"id": "src_bar_control_fetch_brightness", "label": "fetch_brightness()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch_brightness()", "community": 13, "community_name": "control.rs", "source_file": "src/bar/control.rs", "file_type": "code", "degree": 1}, {"id": "src_bar_control_fetch_sinks", "label": "fetch_sinks()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch_sinks()", "community": 13, "community_name": "control.rs", "source_file": "src/bar/control.rs", "file_type": "code", "degree": 3}, {"id": "src_bar_control_spawn_load", "label": "spawn_load()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_load()", "community": 13, "community_name": "control.rs", "source_file": "src/bar/control.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_control_rs_componentsender", "label": "ComponentSender", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ComponentSender", "community": 13, "community_name": "control.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_bar_control_spawn_set_volume", "label": "spawn_set_volume()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_set_volume()", "community": 13, "community_name": "control.rs", "source_file": "src/bar/control.rs", "file_type": "code", "degree": 1}, {"id": "src_bar_control_spawn_set_brightness", "label": "spawn_set_brightness()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_set_brightness()", "community": 13, "community_name": "control.rs", "source_file": "src/bar/control.rs", "file_type": "code", "degree": 1}, {"id": "src_bar_control_spawn_set_sink", "label": "spawn_set_sink()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_set_sink()", "community": 13, "community_name": "control.rs", "source_file": "src/bar/control.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_media", "label": "media.rs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "media.rs", "community": 21, "community_name": "media.rs", "source_file": "src/bar/media.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_media_mediastate", "label": "MediaState", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MediaState", "community": 21, "community_name": "media.rs", "source_file": "src/bar/media.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_media_rs_string", "label": "String", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 21, "community_name": "media.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_bar_media_fetch", "label": "fetch()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch()", "community": 21, "community_name": "media.rs", "source_file": "src/bar/media.rs", "file_type": "code", "degree": 3}, {"id": "src_bar_media_spawn_poller", "label": "spawn_poller()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_poller()", "community": 21, "community_name": "media.rs", "source_file": "src/bar/media.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_media_rs_componentsender", "label": "ComponentSender", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ComponentSender", "community": 21, "community_name": "media.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_bar_media_spawn_cmd", "label": "spawn_cmd()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_cmd()", "community": 21, "community_name": "media.rs", "source_file": "src/bar/media.rs", "file_type": "code", "degree": 1}, {"id": "src_bar_mod", "label": "bar/mod.rs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "bar/mod.rs", "community": 40, "community_name": "bar/mod.rs", "source_file": "src/bar/mod.rs", "file_type": "code", "degree": 0}, {"id": "src_bar_stats", "label": "stats.rs", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 24.4, "font": {"size": 12, "color": "#ffffff"}, "title": "stats.rs", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 24}, {"id": "src_bar_stats_stats", "label": "Stats", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Stats", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_stats_rs_string", "label": "String", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 4, "community_name": "stats.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_bar_stats_rs_option", "label": "Option", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Option", "community": 4, "community_name": "stats.rs", "source_file": "", "file_type": "code", "degree": 11}, {"id": "src_bar_stats_cpusnapshot", "label": "CpuSnapshot", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CpuSnapshot", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 1}, {"id": "src_bar_stats_read_cpu", "label": "read_cpu()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "read_cpu()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_stats_read_ram", "label": "read_ram()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "read_ram()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_stats_bat_path", "label": "bat_path()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "bat_path()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_stats_rs_pathbuf", "label": "PathBuf", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PathBuf", "community": 4, "community_name": "stats.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_bar_stats_read_power", "label": "read_power()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "read_power()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_stats_read_battery", "label": "read_battery()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "read_battery()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_stats_bat_level_icon", "label": "bat_level_icon()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "bat_level_icon()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 1}, {"id": "src_bar_stats_read_ac", "label": "read_ac()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "read_ac()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_stats_bt_rfkill_on", "label": "bt_rfkill_on()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "bt_rfkill_on()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_stats_read_bt", "label": "read_bt()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "read_bt()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_stats_bt_connected_icon", "label": "bt_connected_icon()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "bt_connected_icon()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 3}, {"id": "src_bar_stats_wifi_iface", "label": "wifi_iface()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "wifi_iface()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 3}, {"id": "src_bar_stats_read_wifi", "label": "read_wifi()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "read_wifi()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_stats_read_hwmon_temp", "label": "read_hwmon_temp()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "read_hwmon_temp()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_stats_read_cpu_temp", "label": "read_cpu_temp()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "read_cpu_temp()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_stats_read_gpu_temp", "label": "read_gpu_temp()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "read_gpu_temp()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_stats_read_gpu_usage", "label": "read_gpu_usage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "read_gpu_usage()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 3}, {"id": "src_bar_stats_read_net_throughput", "label": "read_net_throughput()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "read_net_throughput()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_stats_read_crumbs_profile", "label": "read_crumbs_profile()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "read_crumbs_profile()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_stats_poll", "label": "poll()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 19.6, "font": {"size": 12, "color": "#ffffff"}, "title": "poll()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 16}, {"id": "src_bar_stats_read_volume_pct", "label": "read_volume_pct()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "read_volume_pct()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_stats_spawn_poller", "label": "spawn_poller()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_poller()", "community": 4, "community_name": "stats.rs", "source_file": "src/bar/stats.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_stats_rs_componentsender", "label": "ComponentSender", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ComponentSender", "community": 4, "community_name": "stats.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_bar_tray", "label": "tray.rs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "tray.rs", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 12}, {"id": "src_bar_tray_trayicondata", "label": "TrayIconData", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TrayIconData", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 7}, {"id": "src_bar_tray_rs_vec", "label": "Vec", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 3, "community_name": "tray.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_bar_tray_rs_string", "label": "String", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "String", "community": 3, "community_name": "tray.rs", "source_file": "", "file_type": "code", "degree": 10}, {"id": "src_bar_tray_trayupdate", "label": "TrayUpdate", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TrayUpdate", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 6}, {"id": "src_bar_tray_rs_option", "label": "Option", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 3, "community_name": "tray.rs", "source_file": "", "file_type": "code", "degree": 5}, {"id": "src_bar_tray_watcherstate", "label": "WatcherState", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WatcherState", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_tray_watcher", "label": "Watcher", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Watcher", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 11}, {"id": "arc", "label": "Arc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Arc", "community": 3, "community_name": "tray.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_bar_tray_rs_mutex", "label": "Mutex", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Mutex", "community": 3, "community_name": "tray.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "unboundedsender", "label": "UnboundedSender", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UnboundedSender", "community": 3, "community_name": "tray.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_bar_tray_watcher_register_status_notifier_item", "label": ".register_status_notifier_item()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".register_status_notifier_item()", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 5}, {"id": "header", "label": "Header", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Header", "community": 3, "community_name": "tray.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "signalemitter", "label": "SignalEmitter", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SignalEmitter", "community": 3, "community_name": "tray.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_bar_tray_watcher_register_status_notifier_host", "label": ".register_status_notifier_host()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".register_status_notifier_host()", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 3}, {"id": "src_bar_tray_watcher_registered_status_notifier_items", "label": ".registered_status_notifier_items()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".registered_status_notifier_items()", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 3}, {"id": "src_bar_tray_watcher_is_status_notifier_host_registered", "label": ".is_status_notifier_host_registered()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".is_status_notifier_host_registered()", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 1}, {"id": "src_bar_tray_watcher_protocol_version", "label": ".protocol_version()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".protocol_version()", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 1}, {"id": "src_bar_tray_parse_service", "label": "parse_service()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_service()", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 3}, {"id": "src_bar_tray_read_item", "label": "read_item()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "read_item()", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 7}, {"id": "src_bar_tray_rs_connection", "label": "Connection", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Connection", "community": 3, "community_name": "tray.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_bar_tray_read_icon", "label": "read_icon()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "read_icon()", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 5}, {"id": "proxy", "label": "Proxy", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Proxy", "community": 3, "community_name": "tray.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_bar_tray_spawn_activate", "label": "spawn_activate()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_activate()", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_tray_spawn_watcher", "label": "spawn_watcher()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_watcher()", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_tray_rs_componentsender", "label": "ComponentSender", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ComponentSender", "community": 3, "community_name": "tray.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_bar_tray_make_tray_image", "label": "make_tray_image()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "make_tray_image()", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_tray_rs_image", "label": "Image", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Image", "community": 3, "community_name": "tray.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_bar_tray_pixels_to_image", "label": "pixels_to_image()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "pixels_to_image()", "community": 3, "community_name": "tray.rs", "source_file": "src/bar/tray.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_wifi", "label": "wifi.rs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.8, "font": {"size": 12, "color": "#ffffff"}, "title": "wifi.rs", "community": 8, "community_name": "wifi.rs", "source_file": "src/bar/wifi.rs", "file_type": "code", "degree": 13}, {"id": "src_bar_wifi_crumbsstatus", "label": "CrumbsStatus", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CrumbsStatus", "community": 8, "community_name": "wifi.rs", "source_file": "src/bar/wifi.rs", "file_type": "code", "degree": 7}, {"id": "src_bar_wifi_rs_string", "label": "String", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "String", "community": 8, "community_name": "wifi.rs", "source_file": "", "file_type": "code", "degree": 8}, {"id": "src_bar_wifi_rs_option", "label": "Option", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 8, "community_name": "wifi.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_bar_wifi_scanentry", "label": "ScanEntry", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ScanEntry", "community": 8, "community_name": "wifi.rs", "source_file": "src/bar/wifi.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_wifi_wifipopoverdata", "label": "WifiPopoverData", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "WifiPopoverData", "community": 8, "community_name": "wifi.rs", "source_file": "src/bar/wifi.rs", "file_type": "code", "degree": 7}, {"id": "src_bar_wifi_rs_vec", "label": "Vec", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 8, "community_name": "wifi.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_bar_wifi_fetch_status", "label": "fetch_status()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch_status()", "community": 8, "community_name": "wifi.rs", "source_file": "src/bar/wifi.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_wifi_fetch_profile_list", "label": "fetch_profile_list()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch_profile_list()", "community": 8, "community_name": "wifi.rs", "source_file": "src/bar/wifi.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_wifi_saved_ssids", "label": "saved_ssids()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "saved_ssids()", "community": 8, "community_name": "wifi.rs", "source_file": "src/bar/wifi.rs", "file_type": "code", "degree": 4}, {"id": "hashset", "label": "HashSet", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HashSet", "community": 8, "community_name": "wifi.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_bar_wifi_fetch_scan", "label": "fetch_scan()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch_scan()", "community": 8, "community_name": "wifi.rs", "source_file": "src/bar/wifi.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_wifi_spawn_status_poller", "label": "spawn_status_poller()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_status_poller()", "community": 8, "community_name": "wifi.rs", "source_file": "src/bar/wifi.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_wifi_rs_componentsender", "label": "ComponentSender", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ComponentSender", "community": 8, "community_name": "wifi.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_bar_wifi_spawn_popover_load", "label": "spawn_popover_load()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_popover_load()", "community": 8, "community_name": "wifi.rs", "source_file": "src/bar/wifi.rs", "file_type": "code", "degree": 6}, {"id": "src_bar_wifi_spawn_profile_set", "label": "spawn_profile_set()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_profile_set()", "community": 8, "community_name": "wifi.rs", "source_file": "src/bar/wifi.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_wifi_spawn_join", "label": "spawn_join()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_join()", "community": 8, "community_name": "wifi.rs", "source_file": "src/bar/wifi.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_wifi_spawn_add_and_join", "label": "spawn_add_and_join()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_add_and_join()", "community": 8, "community_name": "wifi.rs", "source_file": "src/bar/wifi.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_workspaces", "label": "workspaces.rs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 22.0, "font": {"size": 12, "color": "#ffffff"}, "title": "workspaces.rs", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 20}, {"id": "src_bar_workspaces_switch_workspace", "label": "switch_workspace()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "switch_workspace()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_workspaces_rs_workspaceid", "label": "WorkspaceId", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "WorkspaceId", "community": 17, "community_name": "workspaces.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_bar_workspaces_sync_state", "label": "sync_state()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "sync_state()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_workspaces_rs_componentsender", "label": "ComponentSender", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ComponentSender", "community": 17, "community_name": "workspaces.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_bar_workspaces_spawn_watcher", "label": "spawn_watcher()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_watcher()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_workspaces_make_button", "label": "make_button()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "make_button()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_workspaces_rs_button", "label": "Button", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Button", "community": 17, "community_name": "workspaces.rs", "source_file": "", "file_type": "code", "degree": 6}, {"id": "src_bar_workspaces_geom", "label": "Geom", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Geom", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 9}, {"id": "src_bar_workspaces_trailinner", "label": "TrailInner", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TrailInner", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 6}, {"id": "src_bar_workspaces_rs_option", "label": "Option", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 17, "community_name": "workspaces.rs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "tickcallbackid", "label": "TickCallbackId", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TickCallbackId", "community": 17, "community_name": "workspaces.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_bar_workspaces_workspacetrail", "label": "WorkspaceTrail", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 18.4, "font": {"size": 12, "color": "#ffffff"}, "title": "WorkspaceTrail", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 14}, {"id": "overlay", "label": "Overlay", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Overlay", "community": 17, "community_name": "workspaces.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_bar_workspaces_rs_box", "label": "Box", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Box", "community": 17, "community_name": "workspaces.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "fixed", "label": "Fixed", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Fixed", "community": 17, "community_name": "workspaces.rs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "src_bar_workspaces_rs_rc", "label": "Rc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Rc", "community": 17, "community_name": "workspaces.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "refcell", "label": "RefCell", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "RefCell", "community": 17, "community_name": "workspaces.rs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "src_bar_workspaces_workspacetrail_new", "label": ".new()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".new()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 5}, {"id": "src_bar_workspaces_rs_self", "label": "Self", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Self", "community": 17, "community_name": "workspaces.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_bar_workspaces_workspacetrail_cancel", "label": ".cancel()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".cancel()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_workspaces_workspacetrail_clear", "label": ".clear()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".clear()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_workspaces_workspacetrail_place", "label": ".place()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".place()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 7}, {"id": "src_bar_workspaces_workspacetrail_stretch", "label": ".stretch()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": ".stretch()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 11}, {"id": "src_bar_workspaces_workspacetrail_from_geom", "label": ".from_geom()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_geom()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 6}, {"id": "src_bar_workspaces_inset_pill", "label": "inset_pill()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "inset_pill()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_workspaces_resolved_dest", "label": "resolved_dest()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "resolved_dest()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 8}, {"id": "src_bar_workspaces_button_geom", "label": "button_geom()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "button_geom()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 8}, {"id": "src_bar_workspaces_apply_geom", "label": "apply_geom()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "apply_geom()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 9}, {"id": "src_bar_workspaces_still_placeholder", "label": "still_placeholder()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "still_placeholder()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 3}, {"id": "src_bar_workspaces_lerp", "label": "lerp()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "lerp()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_workspaces_lerp_geom", "label": "lerp_geom()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "lerp_geom()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 4}, {"id": "src_bar_workspaces_ease", "label": "ease()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ease()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 2}, {"id": "src_bar_workspaces_ease_overshoot", "label": "ease_overshoot()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ease_overshoot()", "community": 17, "community_name": "workspaces.rs", "source_file": "src/bar/workspaces.rs", "file_type": "code", "degree": 2}, {"id": "src_main", "label": "main.rs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 32.8, "font": {"size": 12, "color": "#ffffff"}, "title": "main.rs", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 38}, {"id": "src_main_barinit", "label": "BarInit", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BarInit", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_rs_option", "label": "Option", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 6}, {"id": "src_main_rs_string", "label": "String", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "String", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 10}, {"id": "src_main_app", "label": "App", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "App", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 50}, {"id": "src_main_rs_vec", "label": "Vec", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Vec", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 9}, {"id": "controller", "label": "Controller", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 3}, {"id": "workspace", "label": "Workspace", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Workspace", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 4}, {"id": "src_main_rs_workspaceid", "label": "WorkspaceId", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WorkspaceId", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 4}, {"id": "src_main_rs_box", "label": "Box", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Box", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 5}, {"id": "src_main_rs_hashmap", "label": "HashMap", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HashMap", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_main_rs_button", "label": "Button", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Button", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_main_rs_label", "label": "Label", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Label", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 6}, {"id": "separator", "label": "Separator", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Separator", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_main_rs_image", "label": "Image", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Image", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 4}, {"id": "src_main_rs_texture", "label": "Texture", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Texture", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 3}, {"id": "instant", "label": "Instant", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Instant", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 2}, {"id": "scale", "label": "Scale", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Scale", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_main_rs_rc", "label": "Rc", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Rc", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 2}, {"id": "cell", "label": "Cell", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Cell", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 2}, {"id": "widgetplacement", "label": "WidgetPlacement", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WidgetPlacement", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_main_appinput", "label": "AppInput", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.4, "font": {"size": 12, "color": "#ffffff"}, "title": "AppInput", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 14}, {"id": "widgetspec", "label": "WidgetSpec", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "WidgetSpec", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 3}, {"id": "simplecomponent", "label": "SimpleComponent", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SimpleComponent", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_main_app_init", "label": ".init()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.2, "font": {"size": 12, "color": "#ffffff"}, "title": ".init()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 17}, {"id": "init", "label": "Init", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Init", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 1}, {"id": "root", "label": "Root", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Root", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_main_rs_componentsender", "label": "ComponentSender", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ComponentSender", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 4}, {"id": "src_main_rs_self", "label": "Self", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Self", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 4}, {"id": "componentparts", "label": "ComponentParts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ComponentParts", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_main_app_update", "label": ".update()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 21.4, "font": {"size": 12, "color": "#ffffff"}, "title": ".update()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 19}, {"id": "input", "label": "Input", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Input", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_main_app_reconcile_widgets", "label": ".reconcile_widgets()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".reconcile_widgets()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_app_reconcile_satellites", "label": ".reconcile_satellites()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".reconcile_satellites()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 5}, {"id": "src_main_app_rebuild_sinks", "label": ".rebuild_sinks()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".rebuild_sinks()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 6}, {"id": "src_main_app_apply_wifi_label", "label": ".apply_wifi_label()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".apply_wifi_label()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 2}, {"id": "src_main_app_rebuild_buttons", "label": ".rebuild_buttons()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".rebuild_buttons()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_app_rebuild_wifi_popover", "label": ".rebuild_wifi_popover()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": ".rebuild_wifi_popover()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 9}, {"id": "src_main_app_rebuild_bt_popover", "label": ".rebuild_bt_popover()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".rebuild_bt_popover()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_build_slider_row", "label": "build_slider_row()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "build_slider_row()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_wifi_icon_for_signal", "label": "wifi_icon_for_signal()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "wifi_icon_for_signal()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 2}, {"id": "src_main_show_add_network_dialog", "label": "show_add_network_dialog()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "show_add_network_dialog()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 7}, {"id": "src_main_rs_isa", "label": "IsA", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsA", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 4}, {"id": "src_main_rs_widget", "label": "Widget", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Widget", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 4}, {"id": "fnonce", "label": "FnOnce", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FnOnce", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_main_rs_window", "label": "Window", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Window", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_main_stat_pair", "label": "stat_pair()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "stat_pair()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 6}, {"id": "src_main_visible_ws_rows", "label": "visible_ws_rows()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "visible_ws_rows()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 6}, {"id": "src_main_bar_chip", "label": "bar_chip()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "bar_chip()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 5}, {"id": "src_main_popover_caret", "label": "popover_caret()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "popover_caret()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_stagger_row", "label": "stagger_row()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "stagger_row()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 6}, {"id": "src_main_play_once", "label": "play_once()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "play_once()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 7}, {"id": "src_main_make_clock_digits", "label": "make_clock_digits()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "make_clock_digits()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_flip_clock_digits", "label": "flip_clock_digits()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "flip_clock_digits()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_tick_label", "label": "tick_label()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "tick_label()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_reveal_media", "label": "reveal_media()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "reveal_media()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_popover_tab", "label": "popover_tab()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "popover_tab()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_rs_togglebutton", "label": "ToggleButton", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ToggleButton", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_main_unique_profiles", "label": "unique_profiles()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "unique_profiles()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_prepare_icon", "label": "prepare_icon()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "prepare_icon()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 6}, {"id": "src_main_svg_image", "label": "svg_image()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "svg_image()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 6}, {"id": "src_main_svg_image_sized", "label": "svg_image_sized()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "svg_image_sized()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 5}, {"id": "src_main_svg_texture", "label": "svg_texture()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "svg_texture()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 5}, {"id": "src_main_svg_texture_sized", "label": "svg_texture_sized()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "svg_texture_sized()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_stat_label", "label": "stat_label()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "stat_label()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_main", "label": "main()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 1}, {"id": "src_main_hyprmon", "label": "HyprMon", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "HyprMon", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_hypr_monitors_live", "label": "hypr_monitors_live()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hypr_monitors_live()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 6}, {"id": "src_main_primary_hypr_monitor", "label": "primary_hypr_monitor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "primary_hypr_monitor()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_hypr_monitor_names", "label": "hypr_monitor_names()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hypr_monitor_names()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 6}, {"id": "src_main_hypr_monitor_origin", "label": "hypr_monitor_origin()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "hypr_monitor_origin()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_gdk_monitor_for_hypr", "label": "gdk_monitor_for_hypr()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "gdk_monitor_for_hypr()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 7}, {"id": "monitor", "label": "Monitor", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Monitor", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_main_bind_layer_monitor", "label": "bind_layer_monitor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "bind_layer_monitor()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 6}, {"id": "layershell", "label": "LayerShell", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LayerShell", "community": 0, "community_name": "App", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_main_spawn_satellite", "label": "spawn_satellite()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn_satellite()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 7}, {"id": "src_main_drop_satellite", "label": "drop_satellite()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "drop_satellite()", "community": 0, "community_name": "App", "source_file": "src/main.rs", "file_type": "code", "degree": 7}, {"id": "src_notifications_history", "label": "history.rs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 28.6, "font": {"size": 12, "color": "#ffffff"}, "title": "history.rs", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 31}, {"id": "src_notifications_history_entry", "label": "Entry", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Entry", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 9}, {"id": "src_notifications_history_rs_string", "label": "String", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 6, "community_name": "history.rs", "source_file": "", "file_type": "code", "degree": 5}, {"id": "systemtime", "label": "SystemTime", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SystemTime", "community": 6, "community_name": "history.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_notifications_history_ui", "label": "Ui", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Ui", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 8}, {"id": "src_notifications_history_rs_window", "label": "Window", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Window", "community": 6, "community_name": "history.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_notifications_history_rs_box", "label": "Box", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Box", "community": 6, "community_name": "history.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_notifications_history_rs_store", "label": "Store", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Store", "community": 6, "community_name": "history.rs", "source_file": "", "file_type": "code", "degree": 10}, {"id": "src_notifications_history_new_store", "label": "new_store()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "new_store()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 7}, {"id": "src_notifications_history_load_store", "label": "load_store()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "load_store()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 5}, {"id": "src_notifications_history_next_id", "label": "next_id()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "next_id()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 2}, {"id": "src_notifications_history_record", "label": "record()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "record()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 6}, {"id": "src_notifications_history_persist", "label": "persist()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "persist()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 4}, {"id": "src_notifications_history_history_path", "label": "history_path()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "history_path()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 6}, {"id": "src_notifications_history_rs_option", "label": "Option", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 6, "community_name": "history.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_notifications_history_rs_pathbuf", "label": "PathBuf", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PathBuf", "community": 6, "community_name": "history.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_notifications_history_state_dir", "label": "state_dir()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "state_dir()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 4}, {"id": "src_notifications_history_persistedentry", "label": "PersistedEntry", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PersistedEntry", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 4}, {"id": "src_notifications_history_urgency_name", "label": "urgency_name()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "urgency_name()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_history_urgency_from_name", "label": "urgency_from_name()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "urgency_from_name()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_history_to_persisted", "label": "to_persisted()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "to_persisted()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 4}, {"id": "src_notifications_history_from_persisted", "label": "from_persisted()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "from_persisted()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 5}, {"id": "src_notifications_history_persist_to", "label": "persist_to()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "persist_to()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 6}, {"id": "path", "label": "Path", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 6, "community_name": "history.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_notifications_history_rs_result", "label": "Result", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Result", "community": 6, "community_name": "history.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_notifications_history_load_into", "label": "load_into()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "load_into()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 7}, {"id": "src_notifications_history_build_window", "label": "build_window()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "build_window()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_history_toggle", "label": "toggle()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "toggle()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_history_refresh_if_visible", "label": "refresh_if_visible()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "refresh_if_visible()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_history_rebuild", "label": "rebuild()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "rebuild()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 6}, {"id": "src_notifications_history_make_row", "label": "make_row()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "make_row()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 7}, {"id": "src_notifications_history_format_time", "label": "format_time()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "format_time()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 4}, {"id": "src_notifications_history_collapse_ws", "label": "collapse_ws()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "collapse_ws()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_history_truncate", "label": "truncate()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "truncate()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_history_record_is_newest_first_and_bounded", "label": "record_is_newest_first_and_bounded()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "record_is_newest_first_and_bounded()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_history_record_replaces_same_id_and_moves_to_front", "label": "record_replaces_same_id_and_moves_to_front()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "record_replaces_same_id_and_moves_to_front()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_history_truncate_adds_ellipsis_past_limit", "label": "truncate_adds_ellipsis_past_limit()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "truncate_adds_ellipsis_past_limit()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 1}, {"id": "src_notifications_history_persist_roundtrip_keeps_newest_first_and_bound", "label": "persist_roundtrip_keeps_newest_first_and_bound()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "persist_roundtrip_keeps_newest_first_and_bound()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 5}, {"id": "src_notifications_history_load_into_ignores_corrupt_file", "label": "load_into_ignores_corrupt_file()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "load_into_ignores_corrupt_file()", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/history.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_mod", "label": "notifications/mod.rs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 28.0, "font": {"size": 12, "color": "#ffffff"}, "title": "notifications/mod.rs", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 30}, {"id": "src_notifications_mod_action", "label": "Action", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Action", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 6}, {"id": "src_notifications_mod_rs_string", "label": "String", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "String", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 9}, {"id": "src_notifications_mod_expire", "label": "Expire", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Expire", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 4}, {"id": "src_notifications_mod_rs_duration", "label": "Duration", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Duration", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_notifications_mod_notifevent", "label": "NotifEvent", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "NotifEvent", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 12}, {"id": "src_notifications_mod_rs_vec", "label": "Vec", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Vec", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "src_notifications_mod_rs_option", "label": "Option", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 5}, {"id": "src_notifications_mod_urgency", "label": "Urgency", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Urgency", "community": 6, "community_name": "history.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 9}, {"id": "src_notifications_mod_urgency_from_hint", "label": ".from_hint()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".from_hint()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 5}, {"id": "ownedvalue", "label": "OwnedValue", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "OwnedValue", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 5}, {"id": "src_notifications_mod_rs_self", "label": "Self", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Self", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_notifications_mod_urgency_css_class", "label": ".css_class()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".css_class()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 2}, {"id": "src_notifications_mod_parse_actions", "label": "parse_actions()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_actions()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 6}, {"id": "src_notifications_mod_inline_reply_placeholder", "label": "inline_reply_placeholder()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "inline_reply_placeholder()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 7}, {"id": "src_notifications_mod_rs_hashmap", "label": "HashMap", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "HashMap", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 5}, {"id": "src_notifications_mod_compute_expire", "label": "compute_expire()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "compute_expire()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 5}, {"id": "src_notifications_mod_notifserver", "label": "NotifServer", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.8, "font": {"size": 12, "color": "#ffffff"}, "title": "NotifServer", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 13}, {"id": "src_notifications_mod_rs_sender", "label": "Sender", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Sender", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "atomicu32", "label": "AtomicU32", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AtomicU32", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_notifications_mod_rs_mutex", "label": "Mutex", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Mutex", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_notifications_mod_rs_store", "label": "Store", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Store", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_notifications_mod_barservice", "label": "BarService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BarService", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 4}, {"id": "src_notifications_mod_barservice_toggle_history", "label": ".toggle_history()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".toggle_history()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 1}, {"id": "src_notifications_mod_toggle_history_remote", "label": "toggle_history_remote()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "toggle_history_remote()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 2}, {"id": "src_notifications_mod_rs_result", "label": "Result", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Result", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_notifications_mod_notifserver_notify", "label": ".notify()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 18.4, "font": {"size": 12, "color": "#ffffff"}, "title": ".notify()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 14}, {"id": "src_notifications_mod_notifserver_close_notification", "label": ".close_notification()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".close_notification()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 1}, {"id": "src_notifications_mod_notifserver_get_capabilities", "label": ".get_capabilities()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_capabilities()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 4}, {"id": "src_notifications_mod_notifserver_get_server_information", "label": ".get_server_information()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_server_information()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 2}, {"id": "src_notifications_mod_samplekind", "label": "SampleKind", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SampleKind", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_mod_samplekind_sample_event", "label": ".sample_event()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".sample_event()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_mod_spawn", "label": "spawn()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 5}, {"id": "src_notifications_mod_rs_window", "label": "Window", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Window", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_notifications_mod_zero_timeout_never_expires_regardless_of_urgency", "label": "zero_timeout_never_expires_regardless_of_urgency()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "zero_timeout_never_expires_regardless_of_urgency()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 1}, {"id": "src_notifications_mod_negative_timeout_defaults_to_five_seconds_for_normal_urgency", "label": "negative_timeout_defaults_to_five_seconds_for_normal_urgency()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "negative_timeout_defaults_to_five_seconds_for_normal_urgency()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 2}, {"id": "src_notifications_mod_negative_timeout_persists_for_critical_urgency", "label": "negative_timeout_persists_for_critical_urgency()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "negative_timeout_persists_for_critical_urgency()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 1}, {"id": "src_notifications_mod_positive_timeout_is_taken_literally", "label": "positive_timeout_is_taken_literally()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "positive_timeout_is_taken_literally()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 2}, {"id": "src_notifications_mod_test_server", "label": "test_server()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "test_server()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 10}, {"id": "src_notifications_mod_rs_receiver", "label": "Receiver", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Receiver", "community": 1, "community_name": "notifications/mod.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_notifications_mod_sync_hints", "label": "sync_hints()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "sync_hints()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 6}, {"id": "src_notifications_mod_synchronous_hint_reuses_id_for_same_app_and_tag", "label": "synchronous_hint_reuses_id_for_same_app_and_tag()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "synchronous_hint_reuses_id_for_same_app_and_tag()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 4}, {"id": "src_notifications_mod_synchronous_hint_is_scoped_per_app_name", "label": "synchronous_hint_is_scoped_per_app_name()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "synchronous_hint_is_scoped_per_app_name()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 4}, {"id": "src_notifications_mod_no_synchronous_hint_always_allocates_a_new_id", "label": "no_synchronous_hint_always_allocates_a_new_id()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "no_synchronous_hint_always_allocates_a_new_id()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_mod_notify_records_history_newest_first", "label": "notify_records_history_newest_first()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "notify_records_history_newest_first()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_mod_parse_actions_pairs_and_drops_trailing_id", "label": "parse_actions_pairs_and_drops_trailing_id()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_actions_pairs_and_drops_trailing_id()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 2}, {"id": "src_notifications_mod_parse_actions_skips_empty_keys", "label": "parse_actions_skips_empty_keys()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parse_actions_skips_empty_keys()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 1}, {"id": "src_notifications_mod_inline_reply_from_action_or_kde_hint", "label": "inline_reply_from_action_or_kde_hint()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "inline_reply_from_action_or_kde_hint()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 1}, {"id": "src_notifications_mod_get_capabilities_includes_actions_and_inline_reply", "label": "get_capabilities_includes_actions_and_inline_reply()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "get_capabilities_includes_actions_and_inline_reply()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_mod_notify_forwards_actions_and_inline_reply", "label": "notify_forwards_actions_and_inline_reply()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "notify_forwards_actions_and_inline_reply()", "community": 1, "community_name": "notifications/mod.rs", "source_file": "src/notifications/mod.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_popup", "label": "popup.rs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 18.4, "font": {"size": 12, "color": "#ffffff"}, "title": "popup.rs", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 14}, {"id": "src_notifications_popup_build_window", "label": "build_window()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "build_window()", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 4}, {"id": "src_notifications_popup_rs_window", "label": "Window", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Window", "community": 12, "community_name": "popup.rs", "source_file": "", "file_type": "code", "degree": 6}, {"id": "src_notifications_popup_rs_box", "label": "Box", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Box", "community": 12, "community_name": "popup.rs", "source_file": "", "file_type": "code", "degree": 6}, {"id": "src_notifications_popup_run", "label": "run()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "run()", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 11}, {"id": "src_notifications_popup_rs_receiver", "label": "Receiver", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Receiver", "community": 12, "community_name": "popup.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_notifications_popup_rs_option", "label": "Option", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 12, "community_name": "popup.rs", "source_file": "", "file_type": "code", "degree": 6}, {"id": "src_notifications_popup_rs_connection", "label": "Connection", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Connection", "community": 12, "community_name": "popup.rs", "source_file": "", "file_type": "code", "degree": 6}, {"id": "src_notifications_popup_dismiss", "label": "dismiss()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "dismiss()", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 7}, {"id": "cards", "label": "Cards", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Cards", "community": 12, "community_name": "popup.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_notifications_popup_emit_closed", "label": "emit_closed()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "emit_closed()", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 6}, {"id": "src_notifications_popup_create_window", "label": "create_window()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "create_window()", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_popup_cardspec", "label": "CardSpec", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "CardSpec", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 9}, {"id": "src_notifications_popup_make_card", "label": "make_card()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "make_card()", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 7}, {"id": "src_notifications_popup_apply_body_text", "label": "apply_body_text()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "apply_body_text()", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 3}, {"id": "src_notifications_popup_rs_label", "label": "Label", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Label", "community": 12, "community_name": "popup.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_notifications_popup_invoke", "label": "Invoke", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Invoke", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 8}, {"id": "src_notifications_popup_invoke_action", "label": "invoke_action()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "invoke_action()", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 6}, {"id": "src_notifications_popup_submit_reply", "label": "submit_reply()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "submit_reply()", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 8}, {"id": "src_notifications_popup_emit_action", "label": "emit_action()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "emit_action()", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 5}, {"id": "src_notifications_popup_emit_replied", "label": "emit_replied()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "emit_replied()", "community": 12, "community_name": "popup.rs", "source_file": "src/notifications/popup.rs", "file_type": "code", "degree": 4}, {"id": "src_osd", "label": "osd.rs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "osd.rs", "community": 11, "community_name": "spawn", "source_file": "src/osd.rs", "file_type": "code", "degree": 8}, {"id": "src_osd_osdevent", "label": "OsdEvent", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "OsdEvent", "community": 11, "community_name": "spawn", "source_file": "src/osd.rs", "file_type": "code", "degree": 6}, {"id": "src_osd_samplekind", "label": "SampleKind", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SampleKind", "community": 11, "community_name": "spawn", "source_file": "src/osd.rs", "file_type": "code", "degree": 3}, {"id": "src_osd_samplekind_sample_event", "label": ".sample_event()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".sample_event()", "community": 11, "community_name": "spawn", "source_file": "src/osd.rs", "file_type": "code", "degree": 3}, {"id": "src_osd_spawn", "label": "spawn()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "spawn()", "community": 11, "community_name": "spawn", "source_file": "src/osd.rs", "file_type": "code", "degree": 9}, {"id": "src_osd_rs_option", "label": "Option", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 11, "community_name": "spawn", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_osd_rs_window", "label": "Window", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Window", "community": 11, "community_name": "spawn", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_osd_volume_watcher", "label": "volume_watcher()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "volume_watcher()", "community": 11, "community_name": "spawn", "source_file": "src/osd.rs", "file_type": "code", "degree": 5}, {"id": "src_osd_rs_sender", "label": "Sender", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Sender", "community": 11, "community_name": "spawn", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_osd_query_volume", "label": "query_volume()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "query_volume()", "community": 11, "community_name": "spawn", "source_file": "src/osd.rs", "file_type": "code", "degree": 4}, {"id": "src_osd_brightness_watcher", "label": "brightness_watcher()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "brightness_watcher()", "community": 11, "community_name": "spawn", "source_file": "src/osd.rs", "file_type": "code", "degree": 4}, {"id": "src_osd_run_osd", "label": "run_osd()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "run_osd()", "community": 11, "community_name": "spawn", "source_file": "src/osd.rs", "file_type": "code", "degree": 5}, {"id": "src_osd_rs_receiver", "label": "Receiver", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Receiver", "community": 11, "community_name": "spawn", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_osd_create_window", "label": "create_window()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "create_window()", "community": 11, "community_name": "spawn", "source_file": "src/osd.rs", "file_type": "code", "degree": 3}, {"id": "src_panel", "label": "panel.rs", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "panel.rs", "community": 45, "community_name": "PanelSet", "source_file": "src/panel.rs", "file_type": "code", "degree": 3}, {"id": "src_panel_panelset", "label": "PanelSet", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "PanelSet", "community": 45, "community_name": "PanelSet", "source_file": "src/panel.rs", "file_type": "code", "degree": 10}, {"id": "src_panel_rs_window", "label": "Window", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Window", "community": 45, "community_name": "PanelSet", "source_file": "", "file_type": "code", "degree": 5}, {"id": "src_panel_panelset_new", "label": ".new()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": ".new()", "community": 45, "community_name": "PanelSet", "source_file": "src/panel.rs", "file_type": "code", "degree": 8}, {"id": "src_panel_rs_isa", "label": "IsA", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "IsA", "community": 45, "community_name": "PanelSet", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_panel_rs_widget", "label": "Widget", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Widget", "community": 45, "community_name": "PanelSet", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_panel_rs_self", "label": "Self", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Self", "community": 45, "community_name": "PanelSet", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_panel_panelset_toggle", "label": ".toggle()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".toggle()", "community": 45, "community_name": "PanelSet", "source_file": "src/panel.rs", "file_type": "code", "degree": 4}, {"id": "src_panel_panelset_show", "label": ".show()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".show()", "community": 45, "community_name": "PanelSet", "source_file": "src/panel.rs", "file_type": "code", "degree": 4}, {"id": "src_panel_panelset_hide_all", "label": ".hide_all()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".hide_all()", "community": 45, "community_name": "PanelSet", "source_file": "src/panel.rs", "file_type": "code", "degree": 5}, {"id": "src_panel_panelset_hide_panels", "label": ".hide_panels()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".hide_panels()", "community": 45, "community_name": "PanelSet", "source_file": "src/panel.rs", "file_type": "code", "degree": 3}, {"id": "src_panel_panelset_wire_dismiss", "label": ".wire_dismiss()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".wire_dismiss()", "community": 45, "community_name": "PanelSet", "source_file": "src/panel.rs", "file_type": "code", "degree": 3}, {"id": "src_panel_panelset_wire_escape", "label": ".wire_escape()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".wire_escape()", "community": 45, "community_name": "PanelSet", "source_file": "src/panel.rs", "file_type": "code", "degree": 3}, {"id": "src_panel_make_panel", "label": "make_panel()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "make_panel()", "community": 45, "community_name": "PanelSet", "source_file": "src/panel.rs", "file_type": "code", "degree": 6}, {"id": "src_panel_make_dismiss", "label": "make_dismiss()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "make_dismiss()", "community": 45, "community_name": "PanelSet", "source_file": "src/panel.rs", "file_type": "code", "degree": 4}, {"id": "src_screenshot", "label": "screenshot.rs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "screenshot.rs", "community": 7, "community_name": "screenshot.rs", "source_file": "src/screenshot.rs", "file_type": "code", "degree": 9}, {"id": "src_screenshot_cli", "label": "Cli", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Cli", "community": 7, "community_name": "screenshot.rs", "source_file": "src/screenshot.rs", "file_type": "code", "degree": 5}, {"id": "src_screenshot_rs_option", "label": "Option", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 7, "community_name": "screenshot.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_screenshot_rs_string", "label": "String", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 7, "community_name": "screenshot.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_screenshot_rs_pathbuf", "label": "PathBuf", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PathBuf", "community": 7, "community_name": "screenshot.rs", "source_file": "", "file_type": "code", "degree": 5}, {"id": "src_screenshot_screenshotrequest", "label": "ScreenshotRequest", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenshotRequest", "community": 7, "community_name": "screenshot.rs", "source_file": "src/screenshot.rs", "file_type": "code", "degree": 6}, {"id": "src_screenshot_cli_screenshot_request", "label": ".screenshot_request()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".screenshot_request()", "community": 7, "community_name": "screenshot.rs", "source_file": "src/screenshot.rs", "file_type": "code", "degree": 3}, {"id": "src_screenshot_handles", "label": "Handles", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Handles", "community": 7, "community_name": "screenshot.rs", "source_file": "src/screenshot.rs", "file_type": "code", "degree": 7}, {"id": "src_screenshot_rs_window", "label": "Window", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Window", "community": 7, "community_name": "screenshot.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_screenshot_rs_togglebutton", "label": "ToggleButton", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ToggleButton", "community": 7, "community_name": "screenshot.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_screenshot_rs_box", "label": "Box", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Box", "community": 7, "community_name": "screenshot.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_screenshot_rs_label", "label": "Label", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Label", "community": 7, "community_name": "screenshot.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_screenshot_dispatch", "label": "dispatch()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "dispatch()", "community": 7, "community_name": "screenshot.rs", "source_file": "src/screenshot.rs", "file_type": "code", "degree": 7}, {"id": "applicationwindow", "label": "ApplicationWindow", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ApplicationWindow", "community": 7, "community_name": "screenshot.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_screenshot_open_panel_on_root_map", "label": "open_panel_on_root_map()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "open_panel_on_root_map()", "community": 7, "community_name": "screenshot.rs", "source_file": "src/screenshot.rs", "file_type": "code", "degree": 7}, {"id": "src_screenshot_rs_duration", "label": "Duration", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Duration", "community": 7, "community_name": "screenshot.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_screenshot_capture_standalone_window", "label": "capture_standalone_window()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "capture_standalone_window()", "community": 7, "community_name": "screenshot.rs", "source_file": "src/screenshot.rs", "file_type": "code", "degree": 5}, {"id": "src_screenshot_finish", "label": "finish()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "finish()", "community": 7, "community_name": "screenshot.rs", "source_file": "src/screenshot.rs", "file_type": "code", "degree": 5}, {"id": "src_screenshot_rs_result", "label": "Result", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Result", "community": 7, "community_name": "screenshot.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_theme", "label": "theme.rs", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "theme.rs", "community": 44, "community_name": "theme.rs", "source_file": "src/theme.rs", "file_type": "code", "degree": 9}, {"id": "src_theme_load_css", "label": "load_css()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "load_css()", "community": 44, "community_name": "theme.rs", "source_file": "src/theme.rs", "file_type": "code", "degree": 3}, {"id": "src_theme_rs_string", "label": "String", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "String", "community": 44, "community_name": "theme.rs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "src_theme_fg_color", "label": "fg_color()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "fg_color()", "community": 44, "community_name": "theme.rs", "source_file": "src/theme.rs", "file_type": "code", "degree": 2}, {"id": "src_theme_fg_color_for", "label": "fg_color_for()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "fg_color_for()", "community": 44, "community_name": "theme.rs", "source_file": "src/theme.rs", "file_type": "code", "degree": 2}, {"id": "src_theme_bind_output", "label": "bind_output()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "bind_output()", "community": 44, "community_name": "theme.rs", "source_file": "src/theme.rs", "file_type": "code", "degree": 3}, {"id": "src_theme_rs_isa", "label": "IsA", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IsA", "community": 44, "community_name": "theme.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_theme_rs_widget", "label": "Widget", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Widget", "community": 44, "community_name": "theme.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_theme_bind_auto", "label": "bind_auto()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "bind_auto()", "community": 44, "community_name": "theme.rs", "source_file": "src/theme.rs", "file_type": "code", "degree": 3}, {"id": "native", "label": "Native", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Native", "community": 44, "community_name": "theme.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_theme_load_css_for", "label": "load_css_for()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "load_css_for()", "community": 44, "community_name": "theme.rs", "source_file": "src/theme.rs", "file_type": "code", "degree": 4}, {"id": "palette", "label": "Palette", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Palette", "community": 44, "community_name": "theme.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_theme_apply", "label": "apply()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "apply()", "community": 44, "community_name": "theme.rs", "source_file": "src/theme.rs", "file_type": "code", "degree": 1}, {"id": "src_widgets_client", "label": "client.rs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "client.rs", "community": 9, "community_name": "client.rs", "source_file": "src/widgets/client.rs", "file_type": "code", "degree": 6}, {"id": "src_widgets_client_spawn", "label": "spawn()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "spawn()", "community": 9, "community_name": "client.rs", "source_file": "src/widgets/client.rs", "file_type": "code", "degree": 4}, {"id": "src_widgets_client_rs_componentsender", "label": "ComponentSender", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ComponentSender", "community": 9, "community_name": "client.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "src_widgets_client_fetch_and_send", "label": "fetch_and_send()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch_and_send()", "community": 9, "community_name": "client.rs", "source_file": "src/widgets/client.rs", "file_type": "code", "degree": 4}, {"id": "src_widgets_client_emit_click", "label": "emit_click()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "emit_click()", "community": 9, "community_name": "client.rs", "source_file": "src/widgets/client.rs", "file_type": "code", "degree": 2}, {"id": "value", "label": "Value", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Value", "community": 9, "community_name": "client.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_widgets_mod", "label": "widgets/mod.rs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "widgets/mod.rs", "community": 41, "community_name": "widgets/mod.rs", "source_file": "src/widgets/mod.rs", "file_type": "code", "degree": 0}, {"id": "src_widgets_render", "label": "render.rs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "render.rs", "community": 9, "community_name": "client.rs", "source_file": "src/widgets/render.rs", "file_type": "code", "degree": 6}, {"id": "src_widgets_render_bundled_icon", "label": "bundled_icon()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "bundled_icon()", "community": 9, "community_name": "client.rs", "source_file": "src/widgets/render.rs", "file_type": "code", "degree": 3}, {"id": "src_widgets_render_rs_option", "label": "Option", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Option", "community": 9, "community_name": "client.rs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "src_widgets_render_icon_texture", "label": "icon_texture()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "icon_texture()", "community": 9, "community_name": "client.rs", "source_file": "src/widgets/render.rs", "file_type": "code", "degree": 5}, {"id": "src_widgets_render_rs_texture", "label": "Texture", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Texture", "community": 9, "community_name": "client.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_widgets_render_apply_style", "label": "apply_style()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "apply_style()", "community": 9, "community_name": "client.rs", "source_file": "src/widgets/render.rs", "file_type": "code", "degree": 4}, {"id": "src_widgets_render_rs_widget", "label": "Widget", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Widget", "community": 9, "community_name": "client.rs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "widgetstyle", "label": "WidgetStyle", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WidgetStyle", "community": 9, "community_name": "client.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "src_widgets_render_build_node", "label": "build_node()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "build_node()", "community": 9, "community_name": "client.rs", "source_file": "src/widgets/render.rs", "file_type": "code", "degree": 5}, {"id": "widgetnode", "label": "WidgetNode", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WidgetNode", "community": 9, "community_name": "client.rs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "agents", "label": "AGENTS.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AGENTS.md", "community": 16, "community_name": "AGENTS.md \u2014 Repo hygiene", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_agents_md_repo_hygiene", "label": "AGENTS.md \u2014 Repo hygiene", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AGENTS.md \u2014 Repo hygiene", "community": 16, "community_name": "AGENTS.md \u2014 Repo hygiene", "source_file": "AGENTS.md", "file_type": "document", "degree": 5}, {"id": "agents_remotes", "label": "Remotes", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Remotes", "community": 16, "community_name": "AGENTS.md \u2014 Repo hygiene", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_ci", "label": "CI", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CI", "community": 16, "community_name": "AGENTS.md \u2014 Repo hygiene", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_architecture", "label": "Architecture", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Architecture", "community": 16, "community_name": "AGENTS.md \u2014 Repo hygiene", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_don_t", "label": "Don't", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Don't", "community": 16, "community_name": "AGENTS.md \u2014 Repo hygiene", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "claude", "label": "CLAUDE.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CLAUDE.md", "community": 42, "community_name": "CLAUDE.md \u2014 Repo hygiene", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_claude_md_repo_hygiene", "label": "CLAUDE.md \u2014 Repo hygiene", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CLAUDE.md \u2014 Repo hygiene", "community": 42, "community_name": "CLAUDE.md \u2014 Repo hygiene", "source_file": "CLAUDE.md", "file_type": "document", "degree": 4}, {"id": "claude_remotes", "label": "Remotes", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Remotes", "community": 42, "community_name": "CLAUDE.md \u2014 Repo hygiene", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_ci", "label": "CI", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CI", "community": 42, "community_name": "CLAUDE.md \u2014 Repo hygiene", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_don_t", "label": "Don't", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Don't", "community": 42, "community_name": "CLAUDE.md \u2014 Repo hygiene", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "forgejo_workflows_dev_release_yml_dev_release_workflow", "label": "dev release workflow", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "dev release workflow", "community": 15, "community_name": "dev release workflow", "source_file": ".forgejo/workflows/dev-release.yml", "file_type": "concept", "degree": 4}, {"id": "forgejo_workflows_dev_release_yml_main_branch_trigger", "label": "main branch push trigger", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "main branch push trigger", "community": 15, "community_name": "dev release workflow", "source_file": ".forgejo/workflows/dev-release.yml", "file_type": "concept", "degree": 1}, {"id": "forgejo_workflows_dev_release_yml_cargo_build", "label": "cargo build --release --locked", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "cargo build --release --locked", "community": 15, "community_name": "dev release workflow", "source_file": ".forgejo/workflows/dev-release.yml", "file_type": "concept", "degree": 2}, {"id": "forgejo_workflows_dev_release_yml_version_computation", "label": "Dev version auto-computation", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Dev version auto-computation", "community": 15, "community_name": "dev release workflow", "source_file": ".forgejo/workflows/dev-release.yml", "file_type": "concept", "degree": 1}, {"id": "forgejo_workflows_dev_release_yml_artifact_preparation", "label": "Artifact preparation and signing", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Artifact preparation and signing", "community": 15, "community_name": "dev release workflow", "source_file": ".forgejo/workflows/dev-release.yml", "file_type": "concept", "degree": 3}, {"id": "forgejo_workflows_dev_release_yml_index_generation", "label": "Dev index.json regeneration", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Dev index.json regeneration", "community": 15, "community_name": "dev release workflow", "source_file": ".forgejo/workflows/dev-release.yml", "file_type": "concept", "degree": 1}, {"id": "forgejo_workflows_dev_release_yml_bakery_integration", "label": "bakery.toml integration", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "bakery.toml integration", "community": 15, "community_name": "dev release workflow", "source_file": ".forgejo/workflows/dev-release.yml", "file_type": "concept", "degree": 1}, {"id": "forgejo_workflows_dev_release_yml_self_hosted_runner", "label": "self-hosted runner on hestia", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "self-hosted runner on hestia", "community": 15, "community_name": "dev release workflow", "source_file": ".forgejo/workflows/dev-release.yml", "file_type": "concept", "degree": 1}, {"id": "forgejo_workflows_dev_release_yml_dev_track_distribution", "label": "/srv/breadway-dl/dev/ distribution", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "/srv/breadway-dl/dev/ distribution", "community": 37, "community_name": "/srv/breadway-dl/dev/ distribution", "source_file": ".forgejo/workflows/dev-release.yml", "file_type": "concept", "degree": 0}, {"id": "forgejo_workflows_rc_release_yml_rc_release_workflow", "label": "rc release workflow", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "rc release workflow", "community": 18, "community_name": "rc release workflow", "source_file": ".forgejo/workflows/rc-release.yml", "file_type": "concept", "degree": 3}, {"id": "forgejo_workflows_rc_release_yml_rc_tag_trigger", "label": "vX.Y.Z-rc.N tag push trigger", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "vX.Y.Z-rc.N tag push trigger", "community": 18, "community_name": "rc release workflow", "source_file": ".forgejo/workflows/rc-release.yml", "file_type": "concept", "degree": 1}, {"id": "forgejo_workflows_rc_release_yml_rc_build", "label": "RC build on tag", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RC build on tag", "community": 18, "community_name": "rc release workflow", "source_file": ".forgejo/workflows/rc-release.yml", "file_type": "concept", "degree": 2}, {"id": "forgejo_workflows_rc_release_yml_rc_artifacts", "label": "RC artifact preparation", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RC artifact preparation", "community": 18, "community_name": "rc release workflow", "source_file": ".forgejo/workflows/rc-release.yml", "file_type": "concept", "degree": 2}, {"id": "forgejo_workflows_rc_release_yml_beta_index_generation", "label": "Beta index.json regeneration", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Beta index.json regeneration", "community": 18, "community_name": "rc release workflow", "source_file": ".forgejo/workflows/rc-release.yml", "file_type": "concept", "degree": 1}, {"id": "forgejo_workflows_rc_release_yml_beta_track_distribution", "label": "/srv/breadway-dl/beta/ distribution", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "/srv/breadway-dl/beta/ distribution", "community": 38, "community_name": "/srv/breadway-dl/beta/ distribution", "source_file": ".forgejo/workflows/rc-release.yml", "file_type": "concept", "degree": 0}, {"id": "forgejo_workflows_rc_release_yml_rc_guard", "label": "RC tag guard (contains -rc.)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RC tag guard (contains -rc.)", "community": 18, "community_name": "rc release workflow", "source_file": ".forgejo/workflows/rc-release.yml", "file_type": "concept", "degree": 1}, {"id": "forgejo_workflows_release_yml_release_workflow", "label": "stable release workflow", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "stable release workflow", "community": 23, "community_name": "stable release workflow", "source_file": ".forgejo/workflows/release.yml", "file_type": "concept", "degree": 2}, {"id": "forgejo_workflows_release_yml_stable_tag_trigger", "label": "vX.Y.Z tag push trigger", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "vX.Y.Z tag push trigger", "community": 23, "community_name": "stable release workflow", "source_file": ".forgejo/workflows/release.yml", "file_type": "concept", "degree": 1}, {"id": "forgejo_workflows_release_yml_stable_build", "label": "Stable release build", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Stable release build", "community": 22, "community_name": "Stable artifact preparation", "source_file": ".forgejo/workflows/release.yml", "file_type": "concept", "degree": 1}, {"id": "forgejo_workflows_release_yml_stable_artifacts", "label": "Stable artifact preparation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Stable artifact preparation", "community": 22, "community_name": "Stable artifact preparation", "source_file": ".forgejo/workflows/release.yml", "file_type": "concept", "degree": 3}, {"id": "forgejo_workflows_release_yml_stable_index_generation", "label": "Stable index.json regeneration", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Stable index.json regeneration", "community": 22, "community_name": "Stable artifact preparation", "source_file": ".forgejo/workflows/release.yml", "file_type": "concept", "degree": 1}, {"id": "forgejo_workflows_release_yml_github_release_upload", "label": "GitHub Release artifact upload", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHub Release artifact upload", "community": 22, "community_name": "Stable artifact preparation", "source_file": ".forgejo/workflows/release.yml", "file_type": "concept", "degree": 1}, {"id": "forgejo_workflows_release_yml_stable_distribution", "label": "/srv/breadway-dl/breadbar/ distribution", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "/srv/breadway-dl/breadbar/ distribution", "community": 39, "community_name": "/srv/breadway-dl/breadbar/ distribution", "source_file": ".forgejo/workflows/release.yml", "file_type": "concept", "degree": 0}, {"id": "forgejo_workflows_release_yml_rc_guard_inverse", "label": "NOT -rc tag guard", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NOT -rc tag guard", "community": 23, "community_name": "stable release workflow", "source_file": ".forgejo/workflows/release.yml", "file_type": "concept", "degree": 1}, {"id": "CONTRIBUTING.md:single-trunk-model", "label": "Single-trunk (main) branch model", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Single-trunk (main) branch model", "community": 24, "community_name": "feature/<name> short-lived branches", "source_file": "CONTRIBUTING.md", "file_type": "concept", "degree": 1}, {"id": "CONTRIBUTING.md:feature-branches", "label": "feature/<name> short-lived branches", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "feature/<name> short-lived branches", "community": 24, "community_name": "feature/<name> short-lived branches", "source_file": "CONTRIBUTING.md", "file_type": "concept", "degree": 1}, {"id": "CONTRIBUTING.md:fix-branches", "label": "fix/<name> short-lived branches", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "fix/<name> short-lived branches", "community": 26, "community_name": "fix/<name> short-lived branches", "source_file": "CONTRIBUTING.md", "file_type": "concept", "degree": 0}, {"id": "CONTRIBUTING.md:release-cycle", "label": "Tag-based release cycle", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Tag-based release cycle", "community": 19, "community_name": "bakery package manager integration", "source_file": "CONTRIBUTING.md", "file_type": "concept", "degree": 3}, {"id": "CONTRIBUTING.md:dev-track", "label": "dev track (every push to main)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "dev track (every push to main)", "community": 19, "community_name": "bakery package manager integration", "source_file": "CONTRIBUTING.md", "file_type": "concept", "degree": 2}, {"id": "CONTRIBUTING.md:beta-track", "label": "beta track (vX.Y.Z-rc.N tags)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "beta track (vX.Y.Z-rc.N tags)", "community": 19, "community_name": "bakery package manager integration", "source_file": "CONTRIBUTING.md", "file_type": "concept", "degree": 2}, {"id": "CONTRIBUTING.md:stable-track", "label": "stable track (vX.Y.Z tags)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "stable track (vX.Y.Z tags)", "community": 19, "community_name": "bakery package manager integration", "source_file": "CONTRIBUTING.md", "file_type": "concept", "degree": 2}, {"id": "CONTRIBUTING.md:bakery-integration", "label": "bakery package manager integration", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "bakery package manager integration", "community": 19, "community_name": "bakery package manager integration", "source_file": "CONTRIBUTING.md", "file_type": "concept", "degree": 3}, {"id": "CONTRIBUTING.md:version-auto-compute", "label": "Dev version auto-computation from latest tag", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Dev version auto-computation from latest tag", "community": 27, "community_name": "Dev version auto-computation from latest tag", "source_file": "CONTRIBUTING.md", "file_type": "concept", "degree": 0}, {"id": "CONTRIBUTING.md:bread-ecosystem-dependency", "label": "bread-ecosystem release policy integration", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "bread-ecosystem release policy integration", "community": 25, "community_name": "bread-ecosystem release policy integration", "source_file": "CONTRIBUTING.md", "file_type": "concept", "degree": 0}, {"id": "README.md:status-bar", "label": "Full-width top status bar", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Full-width top status bar", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 10}, {"id": "README.md:control-panel", "label": "Control panel popover", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Control panel popover", "community": 14, "community_name": "Control panel popover", "source_file": "README.md", "file_type": "concept", "degree": 7}, {"id": "README.md:notification-daemon", "label": "D-Bus notification daemon", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "D-Bus notification daemon", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:volume-osd", "label": "Volume/brightness OSD", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Volume/brightness OSD", "community": 36, "community_name": "Volume/brightness OSD", "source_file": "README.md", "file_type": "concept", "degree": 0}, {"id": "README.md:sni-tray", "label": "SNI system tray", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SNI system tray", "community": 14, "community_name": "Control panel popover", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:wifi-popover", "label": "WiFi details popover", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WiFi details popover", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:workspace-buttons", "label": "Workspace buttons (left section)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Workspace buttons (left section)", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:media-widget", "label": "Media widget (center section)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Media widget (center section)", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 4}, {"id": "README.md:clock-widget", "label": "Clock HH:MM (center section)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Clock HH:MM (center section)", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:stats-widget", "label": "CPU/RAM/power/battery (right section)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CPU/RAM/power/battery (right section)", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 6}, {"id": "README.md:bluetooth-icon", "label": "Bluetooth icon with click handler", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Bluetooth icon with click handler", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 5}, {"id": "README.md:wifi-icon", "label": "WiFi SSID and signal strength icon", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "WiFi SSID and signal strength icon", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "README.md:hamburger-button", "label": "Control panel hamburger button", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Control panel hamburger button", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:volume-slider", "label": "Volume slider (wpctl, up to 150%)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Volume slider (wpctl, up to 150%)", "community": 14, "community_name": "Control panel popover", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:brightness-slider", "label": "Brightness slider (brightnessctl)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Brightness slider (brightnessctl)", "community": 14, "community_name": "Control panel popover", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "README.md:cpu-gpu-display", "label": "Live CPU%, GPU%, network throughput display", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Live CPU%, GPU%, network throughput display", "community": 14, "community_name": "Control panel popover", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "README.md:audio-sink-selector", "label": "Audio output selector (PulseAudio sinks)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Audio output selector (PulseAudio sinks)", "community": 14, "community_name": "Control panel popover", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:power-buttons", "label": "Power buttons: lock, suspend, reboot, poweroff", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Power buttons: lock, suspend, reboot, poweroff", "community": 14, "community_name": "Control panel popover", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "README.md:notification-spec", "label": "org.freedesktop.Notifications D-Bus service", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "org.freedesktop.Notifications D-Bus service", "community": 33, "community_name": "org.freedesktop.Notifications D-Bus service", "source_file": "README.md", "file_type": "concept", "degree": 0}, {"id": "README.md:notification-popups", "label": "Notification popups (top-right stack)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Notification popups (top-right stack)", "community": 32, "community_name": "Notification popups (top-right stack)", "source_file": "README.md", "file_type": "concept", "degree": 0}, {"id": "README.md:bread-theme-integration", "label": "bread-theme palette loading", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "bread-theme palette loading", "community": 30, "community_name": "bread-theme palette loading", "source_file": "README.md", "file_type": "concept", "degree": 0}, {"id": "README.md:pywal-integration", "label": "pywal (wal/colors.json) integration", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "pywal (wal/colors.json) integration", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:css-override", "label": "User CSS override (~/.config/breadbar/style.css)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "User CSS override (~/.config/breadbar/style.css)", "community": 31, "community_name": "User CSS override (~/.config/breadbar/style.css)", "source_file": "README.md", "file_type": "concept", "degree": 0}, {"id": "README.md:sighup-reload", "label": "SIGHUP theme reload", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SIGHUP theme reload", "community": 35, "community_name": "SIGHUP theme reload", "source_file": "README.md", "file_type": "concept", "degree": 0}, {"id": "README.md:main.rs", "label": "GTK4 app entry point and widget tree", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "GTK4 app entry point and widget tree", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 10}, {"id": "README.md:bar-workspaces", "label": "Hyprland IPC and workspace buttons", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Hyprland IPC and workspace buttons", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "README.md:bar-clock", "label": "Minute-tick clock", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Minute-tick clock", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:bar-stats", "label": "Polling loop: CPU, RAM, power, battery, BT, WiFi", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Polling loop: CPU, RAM, power, battery, BT, WiFi", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 4}, {"id": "README.md:bar-media", "label": "playerctl polling and media widget", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "playerctl polling and media widget", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "README.md:bar-wifi", "label": "WiFi popover and breadcrumbs integration", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "WiFi popover and breadcrumbs integration", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "README.md:bar-control", "label": "Control panel data: volume, brightness, sinks", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Control panel data: volume, brightness, sinks", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 4}, {"id": "README.md:bar-tray", "label": "StatusNotifierWatcher D-Bus and SNI rendering", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "StatusNotifierWatcher D-Bus and SNI rendering", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "README.md:notifications-mod", "label": "Freedesktop.Notifications D-Bus service", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Freedesktop.Notifications D-Bus service", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:notifications-popup", "label": "Layer-shell popup window and card stack", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Layer-shell popup window and card stack", "community": 34, "community_name": "Layer-shell popup window and card stack", "source_file": "README.md", "file_type": "concept", "degree": 0}, {"id": "README.md:osd", "label": "Volume/brightness on-screen display", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Volume/brightness on-screen display", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:theme.rs", "label": "bread-theme palette and CSS injection", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "bread-theme palette and CSS injection", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 3}, {"id": "README.md:GTK4", "label": "GTK4 >= 4.12 (runtime required)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GTK4 >= 4.12 (runtime required)", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:gtk4-layer-shell", "label": "gtk4-layer-shell (runtime required)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "gtk4-layer-shell (runtime required)", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:iw", "label": "iw tool (WiFi SSID/signal)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "iw tool (WiFi SSID/signal)", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:wpctl", "label": "wpctl (WirePlumber) volume read/write", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "wpctl (WirePlumber) volume read/write", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:pactl", "label": "pactl (PipeWire-Pulse) audio sink listing", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "pactl (PipeWire-Pulse) audio sink listing", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "README.md:brightnessctl", "label": "brightnessctl brightness read/write", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "brightnessctl brightness read/write", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:Hyprland", "label": "Hyprland compositor", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Hyprland compositor", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "README.md:dbus", "label": "D-Bus session bus", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "D-Bus session bus", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "README.md:playerctl", "label": "playerctl media player control (optional)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "playerctl media player control (optional)", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:breadcrumbs", "label": "breadcrumbs WiFi management (optional)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "breadcrumbs WiFi management (optional)", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:blueman-manager", "label": "blueman-manager Bluetooth UI (optional)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "blueman-manager Bluetooth UI (optional)", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:bread-theme", "label": "bread-theme palette provider (optional)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "bread-theme palette provider (optional)", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:rfkill", "label": "/sys/class/rfkill Bluetooth state", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "/sys/class/rfkill Bluetooth state", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "README.md:Rust1.77", "label": "Rust 1.77+ (LazyLock)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Rust 1.77+ (LazyLock)", "community": 29, "community_name": "Rust 1.77+ (LazyLock)", "source_file": "README.md", "file_type": "concept", "degree": 0}, {"id": "README.md:GTK4-dev", "label": "GTK4 development environment", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "GTK4 development environment", "community": 28, "community_name": "GTK4 development environment", "source_file": "README.md", "file_type": "concept", "degree": 0}, {"id": "assets/AC Power.svg:ac-power", "label": "AC Power", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AC Power", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "assets/AC Power.svg", "file_type": "concept", "degree": 1}, {"id": "assets/Battery 1 Bar.svg:battery-low", "label": "Battery Low", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Battery Low", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "assets/Battery 1 Bar.svg", "file_type": "concept", "degree": 1}, {"id": "assets/Battery 2 Bars.svg:battery-medium", "label": "Battery Medium", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Battery Medium", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "assets/Battery 2 Bars.svg", "file_type": "concept", "degree": 1}, {"id": "assets/Battery 3 Bars.svg:battery-full", "label": "Battery Full", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Battery Full", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "assets/Battery 3 Bars.svg", "file_type": "concept", "degree": 1}, {"id": "assets/Bluetooth Connected.svg:bluetooth-connected", "label": "Bluetooth Connected", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Bluetooth Connected", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "assets/Bluetooth Connected.svg", "file_type": "concept", "degree": 1}, {"id": "assets/Bluetooth Off.svg:bluetooth-off", "label": "Bluetooth Off", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Bluetooth Off", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "assets/Bluetooth Off.svg", "file_type": "concept", "degree": 1}, {"id": "assets/Bluetooth Settings.svg:settings-gear", "label": "Settings", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings", "community": 14, "community_name": "Control panel popover", "source_file": "assets/Bluetooth Settings.svg", "file_type": "concept", "degree": 1}, {"id": "assets/Bluetooth.svg:bluetooth-basic", "label": "Bluetooth", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Bluetooth", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "assets/Bluetooth.svg", "file_type": "concept", "degree": 1}, {"id": "assets/Brightness.svg:brightness-sun", "label": "Brightness", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Brightness", "community": 14, "community_name": "Control panel popover", "source_file": "assets/Brightness.svg", "file_type": "concept", "degree": 1}, {"id": "assets/CPU.svg:cpu-chip", "label": "CPU", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CPU", "community": 14, "community_name": "Control panel popover", "source_file": "assets/CPU.svg", "file_type": "concept", "degree": 1}, {"id": "assets/Lock.svg:lock-padlock", "label": "Lock", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Lock", "community": 14, "community_name": "Control panel popover", "source_file": "assets/Lock.svg", "file_type": "concept", "degree": 1}, {"id": "assets/Next.svg:skip-forward", "label": "Next", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Next", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "assets/Next.svg", "file_type": "concept", "degree": 1}, {"id": "assets/Pause.svg:pause-icon", "label": "Pause", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Pause", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "assets/Pause.svg", "file_type": "concept", "degree": 1}, {"id": "assets/Play.svg:play-icon", "label": "Play", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Play", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "assets/Play.svg", "file_type": "concept", "degree": 1}, {"id": "assets/Power Draw.svg:power-zap", "label": "Power", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Power", "community": 5, "community_name": "GTK4 app entry point and widget tree", "source_file": "assets/Power Draw.svg", "file_type": "concept", "degree": 1}, {"id": "assets_previous_svg_skip_back_icon", "label": "Skip Back Icon", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Skip Back Icon", "community": 2, "community_name": "Icon System", "source_file": "assets/Previous.svg", "file_type": "concept", "degree": 4}, {"id": "assets_previous_svg_triangle_shape", "label": "Triangle Polygon", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Triangle Polygon", "community": 2, "community_name": "Icon System", "source_file": "assets/Previous.svg", "file_type": "concept", "degree": 1}, {"id": "assets_previous_svg_vertical_line", "label": "Vertical Separator Line", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Vertical Separator Line", "community": 2, "community_name": "Icon System", "source_file": "assets/Previous.svg", "file_type": "concept", "degree": 1}, {"id": "assets_ram_usage_svg_memory_stick_icon", "label": "Memory Stick Icon", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Memory Stick Icon", "community": 2, "community_name": "Icon System", "source_file": "assets/RAM Usage.svg", "file_type": "concept", "degree": 4}, {"id": "assets_ram_usage_svg_memory_modules", "label": "Memory Module Elements", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Memory Module Elements", "community": 2, "community_name": "Icon System", "source_file": "assets/RAM Usage.svg", "file_type": "concept", "degree": 1}, {"id": "assets_ram_usage_svg_memory_chassis", "label": "Memory Chassis Rectangle", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Memory Chassis Rectangle", "community": 2, "community_name": "Icon System", "source_file": "assets/RAM Usage.svg", "file_type": "concept", "degree": 1}, {"id": "assets_restart_svg_rotate_ccw_icon", "label": "Rotate Counter-Clockwise Icon", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Rotate Counter-Clockwise Icon", "community": 2, "community_name": "Icon System", "source_file": "assets/Restart.svg", "file_type": "concept", "degree": 4}, {"id": "assets_restart_svg_circular_arrow", "label": "Circular Arrow Path", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Circular Arrow Path", "community": 2, "community_name": "Icon System", "source_file": "assets/Restart.svg", "file_type": "concept", "degree": 1}, {"id": "assets_restart_svg_corner_arrow", "label": "Corner Arrow", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Corner Arrow", "community": 2, "community_name": "Icon System", "source_file": "assets/Restart.svg", "file_type": "concept", "degree": 1}, {"id": "assets_shutdown_svg_power_icon", "label": "Power Icon", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Power Icon", "community": 2, "community_name": "Icon System", "source_file": "assets/Shutdown.svg", "file_type": "concept", "degree": 4}, {"id": "assets_shutdown_svg_power_button", "label": "Power Button Line", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Power Button Line", "community": 2, "community_name": "Icon System", "source_file": "assets/Shutdown.svg", "file_type": "concept", "degree": 1}, {"id": "assets_shutdown_svg_power_symbol", "label": "Power Symbol Arc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Power Symbol Arc", "community": 2, "community_name": "Icon System", "source_file": "assets/Shutdown.svg", "file_type": "concept", "degree": 1}, {"id": "assets_sleep_svg_moon_icon", "label": "Moon Icon", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Moon Icon", "community": 2, "community_name": "Icon System", "source_file": "assets/Sleep.svg", "file_type": "concept", "degree": 3}, {"id": "assets_sleep_svg_crescent_shape", "label": "Crescent Moon Path", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Crescent Moon Path", "community": 2, "community_name": "Icon System", "source_file": "assets/Sleep.svg", "file_type": "concept", "degree": 1}, {"id": "assets_volume_svg_volume_2_icon", "label": "Volume Level 2 Icon", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Volume Level 2 Icon", "community": 2, "community_name": "Icon System", "source_file": "assets/Volume.svg", "file_type": "concept", "degree": 4}, {"id": "assets_volume_svg_speaker_cone", "label": "Speaker Cone", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Speaker Cone", "community": 2, "community_name": "Icon System", "source_file": "assets/Volume.svg", "file_type": "concept", "degree": 1}, {"id": "assets_volume_svg_sound_waves", "label": "Concentric Sound Wave Arcs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Concentric Sound Wave Arcs", "community": 2, "community_name": "Icon System", "source_file": "assets/Volume.svg", "file_type": "concept", "degree": 1}, {"id": "assets_wifi_connecting_svg_wifi_sync_icon", "label": "WiFi Sync Icon", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WiFi Sync Icon", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Connecting.svg", "file_type": "concept", "degree": 4}, {"id": "assets_wifi_connecting_svg_wifi_arcs", "label": "WiFi Signal Arcs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WiFi Signal Arcs", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Connecting.svg", "file_type": "concept", "degree": 1}, {"id": "assets_wifi_connecting_svg_sync_arrows", "label": "Synchronization Indicators", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Synchronization Indicators", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Connecting.svg", "file_type": "concept", "degree": 1}, {"id": "assets_wifi_disconnect_svg_wifi_off_icon", "label": "WiFi Disconnected Icon", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WiFi Disconnected Icon", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Disconnect.svg", "file_type": "concept", "degree": 4}, {"id": "assets_wifi_disconnect_svg_wifi_arcs_disabled", "label": "Disabled WiFi Arcs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Disabled WiFi Arcs", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Disconnect.svg", "file_type": "concept", "degree": 1}, {"id": "assets_wifi_disconnect_svg_cancel_slash", "label": "Diagonal Cancel Slash", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Diagonal Cancel Slash", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Disconnect.svg", "file_type": "concept", "degree": 1}, {"id": "assets_wifi_medium_svg_wifi_high_icon", "label": "WiFi High/Medium Icon", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WiFi High/Medium Icon", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Medium.svg", "file_type": "concept", "degree": 4}, {"id": "assets_wifi_medium_svg_signal_dot", "label": "Signal Dot", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Signal Dot", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Medium.svg", "file_type": "concept", "degree": 1}, {"id": "assets_wifi_medium_svg_two_signal_arcs", "label": "Two Outer Signal Arcs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Two Outer Signal Arcs", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Medium.svg", "file_type": "concept", "degree": 1}, {"id": "assets_wifi_strong_svg_wifi_icon", "label": "WiFi Full/Strong Icon", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WiFi Full/Strong Icon", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Strong.svg", "file_type": "concept", "degree": 4}, {"id": "assets_wifi_strong_svg_signal_dot_full", "label": "Signal Dot", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Signal Dot", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Strong.svg", "file_type": "concept", "degree": 1}, {"id": "assets_wifi_strong_svg_three_signal_arcs", "label": "Three Full Signal Arcs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Three Full Signal Arcs", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Strong.svg", "file_type": "concept", "degree": 1}, {"id": "assets_wifi_weak_svg_wifi_low_icon", "label": "WiFi Weak/Low Icon", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WiFi Weak/Low Icon", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Weak.svg", "file_type": "concept", "degree": 4}, {"id": "assets_wifi_weak_svg_signal_dot_low", "label": "Signal Dot", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Signal Dot", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Weak.svg", "file_type": "concept", "degree": 1}, {"id": "assets_wifi_weak_svg_one_signal_arc", "label": "Single Inner Signal Arc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Single Inner Signal Arc", "community": 2, "community_name": "Icon System", "source_file": "assets/WiFi Weak.svg", "file_type": "concept", "degree": 1}, {"id": "https_lucide_icon_library", "label": "Lucide Icon Library", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Lucide Icon Library", "community": 2, "community_name": "Icon System", "source_file": "https:/lucide.dev", "file_type": "concept", "degree": 12}, {"id": "breadbar:statusbar-ui", "label": "Breadbar Status Bar UI", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Breadbar Status Bar UI", "community": 2, "community_name": "Icon System", "source_file": ".", "file_type": "concept", "degree": 1}, {"id": "breadbar:icon-system", "label": "Icon System", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Icon System", "community": 2, "community_name": "Icon System", "source_file": "assets", "file_type": "concept", "degree": 13}];
|
|
const RAW_EDGES = [{"from": "ci_build", "to": "ci_build_sh__entry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth", "to": "src_bar_bluetooth_btdevice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth", "to": "src_bar_bluetooth_btpopoverdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth", "to": "src_bar_bluetooth_fetch_devices", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth", "to": "src_bar_bluetooth_powered", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth", "to": "src_bar_bluetooth_rs_componentsender", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth", "to": "src_bar_bluetooth_spawn_connect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth", "to": "src_bar_bluetooth_spawn_disconnect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth", "to": "src_bar_bluetooth_spawn_popover_load", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth", "to": "src_bar_bluetooth_spawn_set_powered", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth", "to": "src_bar_bluetooth_try_fetch_devices", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_btdevice", "to": "src_bar_bluetooth_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_btpopoverdata", "to": "src_bar_bluetooth_btdevice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_fetch_devices", "to": "src_bar_bluetooth_btdevice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_try_fetch_devices", "to": "src_bar_bluetooth_btdevice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_spawn_connect", "to": "src_bar_bluetooth_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_spawn_disconnect", "to": "src_bar_bluetooth_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_btpopoverdata", "to": "src_bar_bluetooth_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_spawn_popover_load", "to": "src_bar_bluetooth_btpopoverdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_bar_bluetooth_btpopoverdata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_appinput", "to": "src_bar_bluetooth_btpopoverdata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_fetch_devices", "to": "src_bar_bluetooth_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_try_fetch_devices", "to": "src_bar_bluetooth_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_spawn_popover_load", "to": "src_bar_bluetooth_powered", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_fetch_devices", "to": "src_bar_bluetooth_try_fetch_devices", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_spawn_popover_load", "to": "src_bar_bluetooth_fetch_devices", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_try_fetch_devices", "to": "src_bar_bluetooth_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_spawn_popover_load", "to": "src_bar_bluetooth_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_bluetooth_spawn_popover_load", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock", "to": "src_bar_clock_current", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock", "to": "src_bar_clock_date", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock", "to": "src_bar_clock_now", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock", "to": "src_bar_clock_rs_componentsender", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock", "to": "src_bar_clock_spawn_ticker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock", "to": "src_bar_clock_time", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock_date", "to": "src_bar_clock_now", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock_now", "to": "datetime", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock_time", "to": "src_bar_clock_now", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock_time", "to": "src_bar_clock_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock_current", "to": "src_bar_clock_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock_date", "to": "src_bar_clock_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock_spawn_ticker", "to": "src_bar_clock_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_clock_spawn_ticker", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control", "to": "src_bar_control_audiosink", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control", "to": "src_bar_control_controlpaneldata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control", "to": "src_bar_control_fetch_brightness", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control", "to": "src_bar_control_fetch_sinks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control", "to": "src_bar_control_fetch_volume", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control", "to": "src_bar_control_rs_componentsender", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control", "to": "src_bar_control_spawn_load", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control", "to": "src_bar_control_spawn_set_brightness", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control", "to": "src_bar_control_spawn_set_sink", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control", "to": "src_bar_control_spawn_set_volume", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control_audiosink", "to": "src_bar_control_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control_controlpaneldata", "to": "src_bar_control_audiosink", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control_fetch_sinks", "to": "src_bar_control_audiosink", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_sinks", "to": "src_bar_control_audiosink", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control_spawn_set_sink", "to": "src_bar_control_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control_controlpaneldata", "to": "src_bar_control_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control_spawn_load", "to": "src_bar_control_controlpaneldata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_appinput", "to": "src_bar_control_controlpaneldata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control_fetch_sinks", "to": "src_bar_control_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control_spawn_load", "to": "src_bar_control_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control_spawn_load", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control_spawn_set_sink", "to": "src_bar_control_spawn_load", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control_spawn_set_sink", "to": "src_bar_control_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_control_spawn_set_sink", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_media", "to": "src_bar_media_fetch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_media", "to": "src_bar_media_mediastate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_media", "to": "src_bar_media_rs_componentsender", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_media", "to": "src_bar_media_spawn_cmd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_media", "to": "src_bar_media_spawn_poller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_media_fetch", "to": "src_bar_media_mediastate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_media_mediastate", "to": "src_bar_media_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_bar_media_mediastate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_appinput", "to": "src_bar_media_mediastate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_media_spawn_poller", "to": "src_bar_media_fetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_media_spawn_poller", "to": "src_bar_media_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_media_spawn_poller", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_bat_level_icon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_bat_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_bt_connected_icon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_bt_rfkill_on", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_cpusnapshot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_poll", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_battery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_bt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_cpu", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_cpu_temp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_crumbs_profile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_gpu_temp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_gpu_usage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_hwmon_temp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_net_throughput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_power", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_ram", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_volume_pct", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_read_wifi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_rs_componentsender", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_spawn_poller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_stats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats", "to": "src_bar_stats_wifi_iface", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_stats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_stats", "to": "src_bar_stats_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_stats", "to": "src_bar_stats_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_appinput", "to": "src_bar_stats_stats", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_crumbs_profile", "to": "src_bar_stats_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_wifi", "to": "src_bar_stats_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_bat_path", "to": "src_bar_stats_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_bt_connected_icon", "to": "src_bar_stats_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_battery", "to": "src_bar_stats_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_cpu_temp", "to": "src_bar_stats_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_crumbs_profile", "to": "src_bar_stats_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_gpu_temp", "to": "src_bar_stats_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_gpu_usage", "to": "src_bar_stats_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_hwmon_temp", "to": "src_bar_stats_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_power", "to": "src_bar_stats_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_wifi_iface", "to": "src_bar_stats_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_read_cpu", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_read_ram", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_bat_path", "to": "src_bar_stats_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_battery", "to": "src_bar_stats_bat_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_power", "to": "src_bar_stats_bat_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_read_power", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_read_battery", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_read_ac", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_bt", "to": "src_bar_stats_bt_rfkill_on", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_read_bt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_bt", "to": "src_bar_stats_bt_connected_icon", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_wifi", "to": "src_bar_stats_wifi_iface", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_read_wifi", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_cpu_temp", "to": "src_bar_stats_read_hwmon_temp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_read_gpu_temp", "to": "src_bar_stats_read_hwmon_temp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_read_cpu_temp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_read_gpu_temp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_read_gpu_usage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_read_net_throughput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_read_crumbs_profile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_poll", "to": "src_bar_stats_read_volume_pct", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_spawn_poller", "to": "src_bar_stats_poll", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_spawn_poller", "to": "src_bar_stats_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_stats_spawn_poller", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray", "to": "src_bar_tray_make_tray_image", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray", "to": "src_bar_tray_parse_service", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray", "to": "src_bar_tray_pixels_to_image", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray", "to": "src_bar_tray_read_icon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray", "to": "src_bar_tray_read_item", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray", "to": "src_bar_tray_rs_componentsender", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray", "to": "src_bar_tray_spawn_activate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray", "to": "src_bar_tray_spawn_watcher", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray", "to": "src_bar_tray_trayicondata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray", "to": "src_bar_tray_trayupdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray", "to": "src_bar_tray_watcher", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray", "to": "src_bar_tray_watcherstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_make_tray_image", "to": "src_bar_tray_trayicondata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_read_icon", "to": "src_bar_tray_trayicondata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_read_item", "to": "src_bar_tray_trayicondata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_trayicondata", "to": "src_bar_tray_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_trayicondata", "to": "src_bar_tray_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_trayupdate", "to": "src_bar_tray_trayicondata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher_registered_status_notifier_items", "to": "src_bar_tray_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcherstate", "to": "src_bar_tray_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_parse_service", "to": "src_bar_tray_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_read_item", "to": "src_bar_tray_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_spawn_activate", "to": "src_bar_tray_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_trayupdate", "to": "src_bar_tray_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher", "to": "src_bar_tray_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher_register_status_notifier_host", "to": "src_bar_tray_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher_register_status_notifier_item", "to": "src_bar_tray_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher_registered_status_notifier_items", "to": "src_bar_tray_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcherstate", "to": "src_bar_tray_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_spawn_watcher", "to": "src_bar_tray_trayupdate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_trayupdate", "to": "src_bar_tray_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_appinput", "to": "src_bar_tray_trayupdate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_make_tray_image", "to": "src_bar_tray_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_pixels_to_image", "to": "src_bar_tray_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_read_icon", "to": "src_bar_tray_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_read_item", "to": "src_bar_tray_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher", "to": "src_bar_tray_watcherstate", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher", "to": "arc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher", "to": "src_bar_tray_rs_mutex", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher", "to": "src_bar_tray_watcher_is_status_notifier_host_registered", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher", "to": "src_bar_tray_watcher_protocol_version", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher", "to": "src_bar_tray_watcher_register_status_notifier_host", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher", "to": "src_bar_tray_watcher_register_status_notifier_item", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher", "to": "src_bar_tray_watcher_registered_status_notifier_items", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher", "to": "unboundedsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher_register_status_notifier_item", "to": "header", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher_register_status_notifier_item", "to": "signalemitter", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher_register_status_notifier_item", "to": "src_bar_tray_parse_service", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_watcher_register_status_notifier_host", "to": "signalemitter", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_read_item", "to": "src_bar_tray_read_icon", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_read_item", "to": "src_bar_tray_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_spawn_watcher", "to": "src_bar_tray_read_item", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_read_icon", "to": "proxy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_spawn_watcher", "to": "src_bar_tray_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_spawn_watcher", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_make_tray_image", "to": "src_bar_tray_pixels_to_image", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_make_tray_image", "to": "src_bar_tray_rs_image", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_tray_pixels_to_image", "to": "src_bar_tray_rs_image", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi", "to": "src_bar_wifi_crumbsstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi", "to": "src_bar_wifi_fetch_profile_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi", "to": "src_bar_wifi_fetch_scan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi", "to": "src_bar_wifi_fetch_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi", "to": "src_bar_wifi_rs_componentsender", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi", "to": "src_bar_wifi_saved_ssids", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi", "to": "src_bar_wifi_scanentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi", "to": "src_bar_wifi_spawn_add_and_join", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi", "to": "src_bar_wifi_spawn_join", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi", "to": "src_bar_wifi_spawn_popover_load", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi", "to": "src_bar_wifi_spawn_profile_set", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi", "to": "src_bar_wifi_spawn_status_poller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi", "to": "src_bar_wifi_wifipopoverdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_crumbsstatus", "to": "src_bar_wifi_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_crumbsstatus", "to": "src_bar_wifi_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_fetch_status", "to": "src_bar_wifi_crumbsstatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_spawn_status_poller", "to": "src_bar_wifi_crumbsstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_bar_wifi_crumbsstatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_appinput", "to": "src_bar_wifi_crumbsstatus", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_fetch_profile_list", "to": "src_bar_wifi_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_saved_ssids", "to": "src_bar_wifi_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_scanentry", "to": "src_bar_wifi_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_spawn_add_and_join", "to": "src_bar_wifi_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_spawn_join", "to": "src_bar_wifi_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_spawn_profile_set", "to": "src_bar_wifi_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_wifipopoverdata", "to": "src_bar_wifi_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_fetch_status", "to": "src_bar_wifi_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_fetch_scan", "to": "src_bar_wifi_scanentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_wifipopoverdata", "to": "src_bar_wifi_scanentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_spawn_popover_load", "to": "src_bar_wifi_wifipopoverdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_wifipopoverdata", "to": "src_bar_wifi_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_bar_wifi_wifipopoverdata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_appinput", "to": "src_bar_wifi_wifipopoverdata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_fetch_profile_list", "to": "src_bar_wifi_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_fetch_scan", "to": "src_bar_wifi_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_spawn_status_poller", "to": "src_bar_wifi_fetch_status", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_spawn_popover_load", "to": "src_bar_wifi_fetch_profile_list", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_fetch_scan", "to": "src_bar_wifi_saved_ssids", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_saved_ssids", "to": "hashset", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_spawn_popover_load", "to": "src_bar_wifi_fetch_scan", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_spawn_status_poller", "to": "src_bar_wifi_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_spawn_status_poller", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_spawn_popover_load", "to": "src_bar_wifi_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_wifi_spawn_popover_load", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "instant", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "refcell", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_apply_geom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_button_geom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_ease", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_ease_overshoot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_geom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_inset_pill", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_lerp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_lerp_geom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_make_button", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_resolved_dest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_rs_componentsender", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_rs_rc", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_spawn_watcher", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_still_placeholder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_switch_workspace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_sync_state", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_trailinner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces", "to": "src_bar_workspaces_workspacetrail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_make_button", "to": "src_bar_workspaces_switch_workspace", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_switch_workspace", "to": "src_bar_workspaces_rs_workspaceid", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_switch_workspace", "to": "src_bar_workspaces_workspacetrail_new", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_make_button", "to": "src_bar_workspaces_rs_workspaceid", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_spawn_watcher", "to": "src_bar_workspaces_sync_state", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_sync_state", "to": "src_bar_workspaces_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_sync_state", "to": "src_bar_workspaces_workspacetrail_new", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_sync_state", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_spawn_watcher", "to": "src_bar_workspaces_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_spawn_watcher", "to": "src_bar_workspaces_workspacetrail_new", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_spawn_watcher", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_make_button", "to": "src_bar_workspaces_rs_button", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_button_geom", "to": "src_bar_workspaces_rs_button", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_resolved_dest", "to": "src_bar_workspaces_rs_button", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_from_geom", "to": "src_bar_workspaces_rs_button", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_place", "to": "src_bar_workspaces_rs_button", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_stretch", "to": "src_bar_workspaces_rs_button", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_apply_geom", "to": "src_bar_workspaces_geom", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_button_geom", "to": "src_bar_workspaces_geom", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_inset_pill", "to": "src_bar_workspaces_geom", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_lerp_geom", "to": "src_bar_workspaces_geom", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_resolved_dest", "to": "src_bar_workspaces_geom", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_still_placeholder", "to": "src_bar_workspaces_geom", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_trailinner", "to": "src_bar_workspaces_geom", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_from_geom", "to": "src_bar_workspaces_geom", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_apply_geom", "to": "src_bar_workspaces_trailinner", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_trailinner", "to": "src_bar_workspaces_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_trailinner", "to": "tickcallbackid", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail", "to": "src_bar_workspaces_trailinner", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_button_geom", "to": "src_bar_workspaces_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_from_geom", "to": "src_bar_workspaces_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_stretch", "to": "src_bar_workspaces_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail", "to": "fixed", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail", "to": "overlay", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail", "to": "refcell", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail", "to": "src_bar_workspaces_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail", "to": "src_bar_workspaces_rs_rc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail", "to": "src_bar_workspaces_workspacetrail_cancel", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail", "to": "src_bar_workspaces_workspacetrail_clear", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail", "to": "src_bar_workspaces_workspacetrail_from_geom", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail", "to": "src_bar_workspaces_workspacetrail_new", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail", "to": "src_bar_workspaces_workspacetrail_place", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail", "to": "src_bar_workspaces_workspacetrail_stretch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_bar_workspaces_workspacetrail", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_apply_geom", "to": "src_bar_workspaces_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_apply_geom", "to": "fixed", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_button_geom", "to": "fixed", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_resolved_dest", "to": "fixed", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_apply_geom", "to": "src_bar_workspaces_rs_rc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_apply_geom", "to": "refcell", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme", "to": "refcell", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_new", "to": "src_bar_workspaces_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_clear", "to": "src_bar_workspaces_workspacetrail_cancel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_place", "to": "src_bar_workspaces_workspacetrail_cancel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_stretch", "to": "src_bar_workspaces_workspacetrail_cancel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_place", "to": "src_bar_workspaces_apply_geom", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_place", "to": "src_bar_workspaces_button_geom", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_place", "to": "src_bar_workspaces_inset_pill", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_stretch", "to": "src_bar_workspaces_workspacetrail_place", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_stretch", "to": "src_bar_workspaces_apply_geom", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_stretch", "to": "src_bar_workspaces_ease", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_stretch", "to": "src_bar_workspaces_ease_overshoot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_stretch", "to": "src_bar_workspaces_lerp_geom", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_stretch", "to": "src_bar_workspaces_resolved_dest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_stretch", "to": "src_bar_workspaces_workspacetrail_from_geom", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_workspacetrail_from_geom", "to": "src_bar_workspaces_button_geom", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_resolved_dest", "to": "src_bar_workspaces_inset_pill", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_resolved_dest", "to": "src_bar_workspaces_button_geom", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_resolved_dest", "to": "src_bar_workspaces_still_placeholder", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_bar_workspaces_lerp_geom", "to": "src_bar_workspaces_lerp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "cell", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_app", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_appinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_bar_chip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_barinit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_bind_layer_monitor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_build_slider_row", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_drop_satellite", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_flip_clock_digits", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_gdk_monitor_for_hypr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_hypr_monitor_names", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_hypr_monitor_origin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_hypr_monitors_live", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_hyprmon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_make_clock_digits", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_play_once", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_popover_caret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_popover_tab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_prepare_icon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_primary_hypr_monitor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_reveal_media", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_rs_rc", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_rs_workspaceid", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_show_add_network_dialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_spawn_satellite", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_stagger_row", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_stat_label", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_stat_pair", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_svg_image", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_svg_image_sized", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_svg_texture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_svg_texture_sized", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_tick_label", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_unique_profiles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_visible_ws_rows", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_wifi_icon_for_signal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "workspace", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_barinit", "to": "src_main_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_barinit", "to": "src_main_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_barinit", "to": "src_screenshot_screenshotrequest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_gdk_monitor_for_hypr", "to": "src_main_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_hypr_monitor_origin", "to": "src_main_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_primary_hypr_monitor", "to": "src_main_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_spawn_satellite", "to": "src_main_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_appinput", "to": "src_main_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_drop_satellite", "to": "src_main_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_hypr_monitor_names", "to": "src_main_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_hyprmon", "to": "src_main_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_primary_hypr_monitor", "to": "src_main_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_show_add_network_dialog", "to": "src_main_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_unique_profiles", "to": "src_main_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_visible_ws_rows", "to": "src_main_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "cell", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "instant", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "scale", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "separator", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "simplecomponent", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_app_apply_wifi_label", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_app_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_app_rebuild_bt_popover", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_app_rebuild_buttons", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_app_rebuild_sinks", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_app_rebuild_wifi_popover", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_app_reconcile_satellites", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_app_reconcile_widgets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_app_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_rs_button", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_rs_hashmap", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_rs_image", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_rs_label", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_rs_rc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_rs_texture", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_main_rs_workspaceid", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "src_panel_panelset", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "widgetplacement", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app", "to": "workspace", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_drop_satellite", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_spawn_satellite", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_client_fetch_and_send", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_client_spawn", "to": "src_main_app", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_reconcile_widgets", "to": "src_main_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_appinput", "to": "src_main_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_drop_satellite", "to": "src_main_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_hypr_monitor_names", "to": "src_main_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_hypr_monitors_live", "to": "src_main_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_make_clock_digits", "to": "src_main_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_unique_profiles", "to": "src_main_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_visible_ws_rows", "to": "src_main_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_drop_satellite", "to": "controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_spawn_satellite", "to": "controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_appinput", "to": "workspace", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_visible_ws_rows", "to": "workspace", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_appinput", "to": "src_main_rs_workspaceid", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_visible_ws_rows", "to": "src_main_rs_workspaceid", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_build_slider_row", "to": "src_main_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_popover_caret", "to": "src_main_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_reveal_media", "to": "src_main_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_stat_pair", "to": "src_main_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_appinput", "to": "src_main_rs_hashmap", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_flip_clock_digits", "to": "src_main_rs_label", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_make_clock_digits", "to": "src_main_rs_label", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_stat_label", "to": "src_main_rs_label", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_stat_pair", "to": "src_main_rs_label", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_tick_label", "to": "src_main_rs_label", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_prepare_icon", "to": "src_main_rs_image", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_svg_image", "to": "src_main_rs_image", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_svg_image_sized", "to": "src_main_rs_image", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_svg_texture", "to": "src_main_rs_texture", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_svg_texture_sized", "to": "src_main_rs_texture", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_build_slider_row", "to": "scale", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_appinput", "to": "widgetspec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_reconcile_widgets", "to": "widgetspec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_client", "to": "widgetspec", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "componentparts", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "init", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "root", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "src_main_bar_chip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "src_main_bind_layer_monitor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "src_main_build_slider_row", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "src_main_make_clock_digits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "src_main_popover_caret", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "src_main_popover_tab", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "src_main_prepare_icon", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "src_main_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "src_main_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "src_main_stat_label", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "src_main_stat_pair", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "src_main_svg_image", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_init", "to": "src_main_svg_texture", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_sinks", "to": "src_main_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_wifi_popover", "to": "src_main_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_sinks", "to": "src_main_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_wifi_popover", "to": "src_main_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "input", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_app_apply_wifi_label", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_app_rebuild_bt_popover", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_app_rebuild_buttons", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_app_rebuild_sinks", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_app_rebuild_wifi_popover", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_app_reconcile_satellites", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_app_reconcile_widgets", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_drop_satellite", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_flip_clock_digits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_prepare_icon", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_reveal_media", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_spawn_satellite", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_svg_texture", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_tick_label", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_update", "to": "src_main_visible_ws_rows", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_reconcile_satellites", "to": "src_main_drop_satellite", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_reconcile_satellites", "to": "src_main_hypr_monitor_names", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_reconcile_satellites", "to": "src_main_spawn_satellite", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_sinks", "to": "src_main_stagger_row", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_buttons", "to": "src_main_play_once", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_wifi_popover", "to": "src_main_prepare_icon", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_wifi_popover", "to": "src_main_show_add_network_dialog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_wifi_popover", "to": "src_main_stagger_row", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_wifi_popover", "to": "src_main_unique_profiles", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_wifi_popover", "to": "src_main_wifi_icon_for_signal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_bt_popover", "to": "src_main_stagger_row", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_app_rebuild_bt_popover", "to": "src_main_svg_image", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_show_add_network_dialog", "to": "fnonce", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_show_add_network_dialog", "to": "src_main_rs_isa", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_show_add_network_dialog", "to": "src_main_rs_widget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_show_add_network_dialog", "to": "src_main_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_bar_chip", "to": "src_main_rs_isa", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_play_once", "to": "src_main_rs_isa", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_stagger_row", "to": "src_main_rs_isa", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_bar_chip", "to": "src_main_rs_widget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_play_once", "to": "src_main_rs_widget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_stagger_row", "to": "src_main_rs_widget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_stat_pair", "to": "src_main_bar_chip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_stat_pair", "to": "src_main_svg_image", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_flip_clock_digits", "to": "src_main_play_once", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_reveal_media", "to": "src_main_play_once", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_tick_label", "to": "src_main_play_once", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_popover_tab", "to": "src_main_rs_togglebutton", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_svg_image_sized", "to": "src_main_prepare_icon", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_svg_image", "to": "src_main_svg_image_sized", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_svg_image_sized", "to": "src_main_svg_texture_sized", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_svg_texture", "to": "src_main_svg_texture_sized", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_hypr_monitors_live", "to": "src_main_hyprmon", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_hypr_monitor_names", "to": "src_main_hypr_monitors_live", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_hypr_monitor_origin", "to": "src_main_hypr_monitors_live", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_primary_hypr_monitor", "to": "src_main_hypr_monitors_live", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_gdk_monitor_for_hypr", "to": "src_main_hypr_monitor_names", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_gdk_monitor_for_hypr", "to": "src_main_hypr_monitor_origin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_bind_layer_monitor", "to": "src_main_gdk_monitor_for_hypr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_gdk_monitor_for_hypr", "to": "monitor", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_spawn_satellite", "to": "src_main_gdk_monitor_for_hypr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_bind_layer_monitor", "to": "layershell", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_make_dismiss", "to": "src_main_bind_layer_monitor", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_panel_make_panel", "to": "src_main_bind_layer_monitor", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_notifications_history", "to": "path", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_build_window", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_collapse_ws", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_entry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_format_time", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_from_persisted", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_history_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_load_into", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_load_into_ignores_corrupt_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_load_store", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_make_row", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_new_store", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_next_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_persist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_persist_roundtrip_keeps_newest_first_and_bound", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_persist_to", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_persistedentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_rebuild", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_record", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_record_is_newest_first_and_bounded", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_record_replaces_same_id_and_moves_to_front", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_refresh_if_visible", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_state_dir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_to_persisted", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_toggle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_truncate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_truncate_adds_ellipsis_past_limit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_ui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_urgency_from_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_history_urgency_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history", "to": "src_notifications_mod_urgency", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_entry", "to": "src_notifications_history_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_entry", "to": "src_notifications_mod_urgency", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_entry", "to": "systemtime", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_from_persisted", "to": "src_notifications_history_entry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_make_row", "to": "src_notifications_history_entry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_record", "to": "src_notifications_history_entry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_to_persisted", "to": "src_notifications_history_entry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_submit_reply", "to": "src_notifications_history_entry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_collapse_ws", "to": "src_notifications_history_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_format_time", "to": "src_notifications_history_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_persistedentry", "to": "src_notifications_history_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_truncate", "to": "src_notifications_history_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_format_time", "to": "systemtime", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_build_window", "to": "src_notifications_history_ui", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_refresh_if_visible", "to": "src_notifications_history_ui", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_toggle", "to": "src_notifications_history_ui", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_ui", "to": "src_notifications_history_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_ui", "to": "src_notifications_history_rs_store", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_ui", "to": "src_notifications_history_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_run", "to": "src_notifications_history_ui", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_make_row", "to": "src_notifications_history_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_rebuild", "to": "src_notifications_history_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_build_window", "to": "src_notifications_history_rs_store", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_load_into", "to": "src_notifications_history_rs_store", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_load_store", "to": "src_notifications_history_rs_store", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_new_store", "to": "src_notifications_history_rs_store", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_next_id", "to": "src_notifications_history_rs_store", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_persist", "to": "src_notifications_history_rs_store", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_persist_to", "to": "src_notifications_history_rs_store", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_rebuild", "to": "src_notifications_history_rs_store", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_record", "to": "src_notifications_history_rs_store", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_load_into_ignores_corrupt_file", "to": "src_notifications_history_new_store", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_load_store", "to": "src_notifications_history_new_store", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_persist_roundtrip_keeps_newest_first_and_bound", "to": "src_notifications_history_new_store", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_record_is_newest_first_and_bounded", "to": "src_notifications_history_new_store", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_record_replaces_same_id_and_moves_to_front", "to": "src_notifications_history_new_store", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_load_store", "to": "src_notifications_history_history_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_load_store", "to": "src_notifications_history_load_into", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_persist_roundtrip_keeps_newest_first_and_bound", "to": "src_notifications_history_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_record_is_newest_first_and_bounded", "to": "src_notifications_history_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_record_replaces_same_id_and_moves_to_front", "to": "src_notifications_history_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_persist", "to": "src_notifications_history_history_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_persist", "to": "src_notifications_history_persist_to", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_history_path", "to": "src_notifications_history_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_history_path", "to": "src_notifications_history_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_history_path", "to": "src_notifications_history_state_dir", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_state_dir", "to": "src_notifications_history_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_state_dir", "to": "src_notifications_history_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_from_persisted", "to": "src_notifications_history_persistedentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_to_persisted", "to": "src_notifications_history_persistedentry", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_to_persisted", "to": "src_notifications_history_urgency_name", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_urgency_name", "to": "src_notifications_mod_urgency", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_from_persisted", "to": "src_notifications_history_urgency_from_name", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_urgency_from_name", "to": "src_notifications_mod_urgency", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_load_into", "to": "src_notifications_history_from_persisted", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_persist_roundtrip_keeps_newest_first_and_bound", "to": "src_notifications_history_persist_to", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_persist_to", "to": "path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_persist_to", "to": "src_notifications_history_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_load_into", "to": "path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_load_into_ignores_corrupt_file", "to": "src_notifications_history_load_into", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_persist_roundtrip_keeps_newest_first_and_bound", "to": "src_notifications_history_load_into", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_toggle", "to": "src_notifications_history_rebuild", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_refresh_if_visible", "to": "src_notifications_history_rebuild", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_rebuild", "to": "src_notifications_history_make_row", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_make_row", "to": "src_notifications_history_collapse_ws", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_make_row", "to": "src_notifications_history_format_time", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_history_make_row", "to": "src_notifications_history_truncate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "ownedvalue", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_action", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_barservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_compute_expire", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_expire", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_get_capabilities_includes_actions_and_inline_reply", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_inline_reply_from_action_or_kde_hint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_inline_reply_placeholder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_negative_timeout_defaults_to_five_seconds_for_normal_urgency", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_negative_timeout_persists_for_critical_urgency", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_no_synchronous_hint_always_allocates_a_new_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_notifevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_notifserver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_notify_forwards_actions_and_inline_reply", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_notify_records_history_newest_first", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_parse_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_parse_actions_pairs_and_drops_trailing_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_parse_actions_skips_empty_keys", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_positive_timeout_is_taken_literally", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_rs_hashmap", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_rs_mutex", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_samplekind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_spawn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_sync_hints", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_synchronous_hint_is_scoped_per_app_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_synchronous_hint_reuses_id_for_same_app_and_tag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_test_server", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_toggle_history_remote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_urgency", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod", "to": "src_notifications_mod_zero_timeout_never_expires_regardless_of_urgency", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_action", "to": "src_notifications_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_inline_reply_placeholder", "to": "src_notifications_mod_action", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifevent", "to": "src_notifications_mod_action", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_parse_actions", "to": "src_notifications_mod_action", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_cardspec", "to": "src_notifications_mod_action", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_inline_reply_placeholder", "to": "src_notifications_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifevent", "to": "src_notifications_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver", "to": "src_notifications_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver_get_capabilities", "to": "src_notifications_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver_get_server_information", "to": "src_notifications_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver_notify", "to": "src_notifications_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_parse_actions", "to": "src_notifications_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_sync_hints", "to": "src_notifications_mod_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_compute_expire", "to": "src_notifications_mod_expire", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_expire", "to": "src_notifications_mod_rs_duration", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifevent", "to": "src_notifications_mod_expire", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_barservice", "to": "src_notifications_mod_notifevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifevent", "to": "src_notifications_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifevent", "to": "src_notifications_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifevent", "to": "src_notifications_mod_urgency", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver", "to": "src_notifications_mod_notifevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_samplekind_sample_event", "to": "src_notifications_mod_notifevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_test_server", "to": "src_notifications_mod_notifevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_run", "to": "src_notifications_mod_notifevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver_get_capabilities", "to": "src_notifications_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver_notify", "to": "src_notifications_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_parse_actions", "to": "src_notifications_mod_rs_vec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_inline_reply_placeholder", "to": "src_notifications_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_spawn", "to": "src_notifications_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_urgency_css_class", "to": "src_notifications_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_urgency_from_hint", "to": "src_notifications_mod_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_urgency", "to": "src_notifications_mod_urgency_css_class", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_urgency", "to": "src_notifications_mod_urgency_from_hint", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_cardspec", "to": "src_notifications_mod_urgency", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver_notify", "to": "src_notifications_mod_urgency_from_hint", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_urgency_from_hint", "to": "ownedvalue", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_urgency_from_hint", "to": "src_notifications_mod_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_inline_reply_placeholder", "to": "ownedvalue", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver_notify", "to": "ownedvalue", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_sync_hints", "to": "ownedvalue", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver_notify", "to": "src_notifications_mod_parse_actions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_parse_actions_pairs_and_drops_trailing_id", "to": "src_notifications_mod_parse_actions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_inline_reply_placeholder", "to": "src_notifications_mod_rs_hashmap", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver_notify", "to": "src_notifications_mod_inline_reply_placeholder", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver", "to": "src_notifications_mod_rs_hashmap", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver_notify", "to": "src_notifications_mod_rs_hashmap", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_sync_hints", "to": "src_notifications_mod_rs_hashmap", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_negative_timeout_defaults_to_five_seconds_for_normal_urgency", "to": "src_notifications_mod_compute_expire", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver_notify", "to": "src_notifications_mod_compute_expire", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_positive_timeout_is_taken_literally", "to": "src_notifications_mod_compute_expire", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver", "to": "atomicu32", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver", "to": "src_notifications_mod_notifserver_close_notification", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver", "to": "src_notifications_mod_notifserver_get_capabilities", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver", "to": "src_notifications_mod_notifserver_get_server_information", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver", "to": "src_notifications_mod_notifserver_notify", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver", "to": "src_notifications_mod_rs_mutex", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver", "to": "src_notifications_mod_rs_sender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notifserver", "to": "src_notifications_mod_rs_store", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_test_server", "to": "src_notifications_mod_notifserver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_barservice", "to": "src_notifications_mod_rs_sender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_barservice", "to": "src_notifications_mod_barservice_toggle_history", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_toggle_history_remote", "to": "src_notifications_mod_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_no_synchronous_hint_always_allocates_a_new_id", "to": "src_notifications_mod_notifserver_notify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notify_forwards_actions_and_inline_reply", "to": "src_notifications_mod_notifserver_notify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notify_records_history_newest_first", "to": "src_notifications_mod_notifserver_notify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_synchronous_hint_is_scoped_per_app_name", "to": "src_notifications_mod_notifserver_notify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_synchronous_hint_reuses_id_for_same_app_and_tag", "to": "src_notifications_mod_notifserver_notify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_get_capabilities_includes_actions_and_inline_reply", "to": "src_notifications_mod_notifserver_get_capabilities", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_samplekind", "to": "src_notifications_mod_samplekind_sample_event", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_spawn", "to": "src_notifications_mod_samplekind", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_spawn", "to": "src_notifications_mod_samplekind_sample_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_spawn", "to": "src_notifications_mod_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_get_capabilities_includes_actions_and_inline_reply", "to": "src_notifications_mod_test_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_no_synchronous_hint_always_allocates_a_new_id", "to": "src_notifications_mod_test_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notify_forwards_actions_and_inline_reply", "to": "src_notifications_mod_test_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_notify_records_history_newest_first", "to": "src_notifications_mod_test_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_synchronous_hint_is_scoped_per_app_name", "to": "src_notifications_mod_test_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_synchronous_hint_reuses_id_for_same_app_and_tag", "to": "src_notifications_mod_test_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_test_server", "to": "src_notifications_mod_rs_receiver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_synchronous_hint_is_scoped_per_app_name", "to": "src_notifications_mod_sync_hints", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_mod_synchronous_hint_reuses_id_for_same_app_and_tag", "to": "src_notifications_mod_sync_hints", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_apply_body_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_build_window", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_cardspec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_create_window", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_dismiss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_emit_action", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_emit_closed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_emit_replied", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_invoke", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_invoke_action", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_make_card", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_rs_receiver", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_run", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup", "to": "src_notifications_popup_submit_reply", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_build_window", "to": "src_notifications_popup_create_window", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_build_window", "to": "src_notifications_popup_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_build_window", "to": "src_notifications_popup_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_cardspec", "to": "src_notifications_popup_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_create_window", "to": "src_notifications_popup_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_dismiss", "to": "src_notifications_popup_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_invoke", "to": "src_notifications_popup_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_run", "to": "src_notifications_popup_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_cardspec", "to": "src_notifications_popup_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_dismiss", "to": "src_notifications_popup_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_invoke", "to": "src_notifications_popup_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_make_card", "to": "src_notifications_popup_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_run", "to": "src_notifications_popup_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_run", "to": "src_notifications_popup_dismiss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_run", "to": "src_notifications_popup_emit_closed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_run", "to": "src_notifications_popup_make_card", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_run", "to": "src_notifications_popup_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_run", "to": "src_notifications_popup_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_run", "to": "src_notifications_popup_rs_receiver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_cardspec", "to": "src_notifications_popup_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_emit_action", "to": "src_notifications_popup_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_emit_closed", "to": "src_notifications_popup_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_emit_replied", "to": "src_notifications_popup_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_invoke", "to": "src_notifications_popup_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_cardspec", "to": "src_notifications_popup_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_emit_action", "to": "src_notifications_popup_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_emit_closed", "to": "src_notifications_popup_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_emit_replied", "to": "src_notifications_popup_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_invoke", "to": "src_notifications_popup_rs_connection", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_dismiss", "to": "cards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_invoke_action", "to": "src_notifications_popup_dismiss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_submit_reply", "to": "src_notifications_popup_dismiss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_cardspec", "to": "cards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_invoke", "to": "cards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_invoke_action", "to": "src_notifications_popup_emit_closed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_submit_reply", "to": "src_notifications_popup_emit_closed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_make_card", "to": "src_notifications_popup_cardspec", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_make_card", "to": "src_notifications_popup_apply_body_text", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_make_card", "to": "src_notifications_popup_invoke_action", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_make_card", "to": "src_notifications_popup_submit_reply", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_apply_body_text", "to": "src_notifications_popup_rs_label", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_invoke_action", "to": "src_notifications_popup_invoke", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_submit_reply", "to": "src_notifications_popup_invoke", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_invoke_action", "to": "src_notifications_popup_emit_action", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_submit_reply", "to": "src_notifications_popup_emit_action", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_notifications_popup_submit_reply", "to": "src_notifications_popup_emit_replied", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd", "to": "src_osd_brightness_watcher", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd", "to": "src_osd_create_window", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd", "to": "src_osd_osdevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd", "to": "src_osd_query_volume", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd", "to": "src_osd_run_osd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd", "to": "src_osd_samplekind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd", "to": "src_osd_spawn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd", "to": "src_osd_volume_watcher", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_brightness_watcher", "to": "src_osd_osdevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_query_volume", "to": "src_osd_osdevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_run_osd", "to": "src_osd_osdevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_samplekind_sample_event", "to": "src_osd_osdevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_volume_watcher", "to": "src_osd_osdevent", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_samplekind", "to": "src_osd_samplekind_sample_event", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_spawn", "to": "src_osd_samplekind", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_spawn", "to": "src_osd_samplekind_sample_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_spawn", "to": "src_osd_brightness_watcher", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_spawn", "to": "src_osd_create_window", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_spawn", "to": "src_osd_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_spawn", "to": "src_osd_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_spawn", "to": "src_osd_run_osd", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_spawn", "to": "src_osd_volume_watcher", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_query_volume", "to": "src_osd_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_create_window", "to": "src_osd_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_run_osd", "to": "src_osd_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_volume_watcher", "to": "src_osd_query_volume", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_volume_watcher", "to": "src_osd_rs_sender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_brightness_watcher", "to": "src_osd_rs_sender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_osd_run_osd", "to": "src_osd_rs_receiver", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel", "to": "src_panel_make_dismiss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel", "to": "src_panel_make_panel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel", "to": "src_panel_panelset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset", "to": "src_panel_panelset_hide_all", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset", "to": "src_panel_panelset_hide_panels", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset", "to": "src_panel_panelset_new", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset", "to": "src_panel_panelset_show", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset", "to": "src_panel_panelset_toggle", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset", "to": "src_panel_panelset_wire_dismiss", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset", "to": "src_panel_panelset_wire_escape", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset", "to": "src_panel_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_make_dismiss", "to": "src_panel_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_make_panel", "to": "src_panel_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset_show", "to": "src_panel_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset_toggle", "to": "src_panel_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_make_dismiss", "to": "src_panel_panelset_new", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_make_panel", "to": "src_panel_panelset_new", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset_new", "to": "src_panel_panelset_wire_dismiss", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset_new", "to": "src_panel_panelset_wire_escape", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset_new", "to": "src_panel_rs_isa", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset_new", "to": "src_panel_rs_self", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset_new", "to": "src_panel_rs_widget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_make_panel", "to": "src_panel_rs_isa", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_make_panel", "to": "src_panel_rs_widget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset_toggle", "to": "src_panel_panelset_hide_all", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset_toggle", "to": "src_panel_panelset_show", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset_show", "to": "src_panel_panelset_hide_panels", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset_hide_all", "to": "src_panel_panelset_hide_panels", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset_wire_dismiss", "to": "src_panel_panelset_hide_all", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_panel_panelset_wire_escape", "to": "src_panel_panelset_hide_all", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot", "to": "src_screenshot_cli", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot", "to": "src_screenshot_capture_standalone_window", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot", "to": "src_screenshot_dispatch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot", "to": "src_screenshot_finish", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot", "to": "src_screenshot_handles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot", "to": "src_screenshot_open_panel_on_root_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot", "to": "src_screenshot_rs_duration", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot", "to": "src_screenshot_rs_pathbuf", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot", "to": "src_screenshot_screenshotrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_cli", "to": "src_screenshot_cli_screenshot_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_cli", "to": "src_screenshot_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_cli", "to": "src_screenshot_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_cli", "to": "src_screenshot_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_cli_screenshot_request", "to": "src_screenshot_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_handles", "to": "src_screenshot_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_screenshotrequest", "to": "src_screenshot_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_capture_standalone_window", "to": "src_screenshot_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_open_panel_on_root_map", "to": "src_screenshot_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_screenshotrequest", "to": "src_screenshot_rs_pathbuf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_cli_screenshot_request", "to": "src_screenshot_screenshotrequest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_dispatch", "to": "src_screenshot_screenshotrequest", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_dispatch", "to": "src_screenshot_handles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_handles", "to": "src_screenshot_rs_box", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_handles", "to": "src_screenshot_rs_label", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_handles", "to": "src_screenshot_rs_togglebutton", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_handles", "to": "src_screenshot_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_capture_standalone_window", "to": "src_screenshot_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_open_panel_on_root_map", "to": "src_screenshot_rs_window", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_dispatch", "to": "applicationwindow", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_dispatch", "to": "src_screenshot_capture_standalone_window", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_dispatch", "to": "src_screenshot_finish", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_dispatch", "to": "src_screenshot_open_panel_on_root_map", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_open_panel_on_root_map", "to": "applicationwindow", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_open_panel_on_root_map", "to": "src_screenshot_finish", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_open_panel_on_root_map", "to": "src_screenshot_rs_duration", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_capture_standalone_window", "to": "src_screenshot_finish", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_screenshot_finish", "to": "src_screenshot_rs_result", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme", "to": "src_theme_apply", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme", "to": "src_theme_bind_auto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme", "to": "src_theme_bind_output", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme", "to": "src_theme_fg_color", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme", "to": "src_theme_fg_color_for", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme", "to": "src_theme_load_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme", "to": "src_theme_load_css_for", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme", "to": "src_theme_rs_isa", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme_load_css", "to": "src_theme_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme_load_css_for", "to": "src_theme_load_css", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme_fg_color", "to": "src_theme_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme_fg_color_for", "to": "src_theme_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme_load_css_for", "to": "src_theme_rs_string", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme_bind_output", "to": "src_theme_rs_isa", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme_bind_output", "to": "src_theme_rs_widget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme_bind_auto", "to": "src_theme_rs_isa", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme_bind_auto", "to": "native", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_theme_load_css_for", "to": "palette", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_client", "to": "src_widgets_client_emit_click", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_client", "to": "src_widgets_client_fetch_and_send", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_client", "to": "src_widgets_client_rs_componentsender", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_client", "to": "src_widgets_client_spawn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render", "to": "src_widgets_client", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_client_spawn", "to": "src_widgets_client_fetch_and_send", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_client_spawn", "to": "src_widgets_client_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_client_fetch_and_send", "to": "src_widgets_client_rs_componentsender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_client_emit_click", "to": "value", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render", "to": "src_widgets_render_apply_style", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render", "to": "src_widgets_render_build_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render", "to": "src_widgets_render_bundled_icon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render", "to": "src_widgets_render_icon_texture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render", "to": "src_widgets_render_rs_widget", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render_bundled_icon", "to": "src_widgets_render_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render_icon_texture", "to": "src_widgets_render_bundled_icon", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render_icon_texture", "to": "src_widgets_render_rs_option", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render_build_node", "to": "src_widgets_render_icon_texture", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render_icon_texture", "to": "src_widgets_render_rs_texture", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render_apply_style", "to": "src_widgets_render_rs_widget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render_apply_style", "to": "widgetstyle", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render_build_node", "to": "src_widgets_render_apply_style", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render_build_node", "to": "src_widgets_render_rs_widget", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_widgets_render_build_node", "to": "widgetnode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents", "to": "agents_agents_md_repo_hygiene", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_agents_md_repo_hygiene", "to": "agents_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_agents_md_repo_hygiene", "to": "agents_ci", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_agents_md_repo_hygiene", "to": "agents_don_t", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_agents_md_repo_hygiene", "to": "agents_remotes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude", "to": "claude_claude_md_repo_hygiene", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_claude_md_repo_hygiene", "to": "claude_ci", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_claude_md_repo_hygiene", "to": "claude_don_t", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_claude_md_repo_hygiene", "to": "claude_remotes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "forgejo_workflows_dev_release_yml_dev_release_workflow", "to": "forgejo_workflows_dev_release_yml_cargo_build", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_dev_release_yml_dev_release_workflow", "to": "forgejo_workflows_dev_release_yml_main_branch_trigger", "label": "IMPLEMENTS", "title": "IMPLEMENTS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_dev_release_yml_dev_release_workflow", "to": "forgejo_workflows_dev_release_yml_self_hosted_runner", "label": "CONFIGURES", "title": "CONFIGURES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_dev_release_yml_dev_release_workflow", "to": "forgejo_workflows_dev_release_yml_version_computation", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_dev_release_yml_cargo_build", "to": "forgejo_workflows_dev_release_yml_artifact_preparation", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_dev_release_yml_artifact_preparation", "to": "forgejo_workflows_dev_release_yml_bakery_integration", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_dev_release_yml_artifact_preparation", "to": "forgejo_workflows_dev_release_yml_index_generation", "label": "PRECEDES", "title": "PRECEDES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_rc_release_yml_rc_release_workflow", "to": "forgejo_workflows_rc_release_yml_rc_build", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_rc_release_yml_rc_release_workflow", "to": "forgejo_workflows_rc_release_yml_rc_guard", "label": "CONFIGURES", "title": "CONFIGURES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_rc_release_yml_rc_release_workflow", "to": "forgejo_workflows_rc_release_yml_rc_tag_trigger", "label": "IMPLEMENTS", "title": "IMPLEMENTS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_rc_release_yml_rc_build", "to": "forgejo_workflows_rc_release_yml_rc_artifacts", "label": "PRECEDES", "title": "PRECEDES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_rc_release_yml_rc_artifacts", "to": "forgejo_workflows_rc_release_yml_beta_index_generation", "label": "PRECEDES", "title": "PRECEDES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_release_yml_release_workflow", "to": "forgejo_workflows_release_yml_rc_guard_inverse", "label": "CONFIGURES", "title": "CONFIGURES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_release_yml_release_workflow", "to": "forgejo_workflows_release_yml_stable_tag_trigger", "label": "IMPLEMENTS", "title": "IMPLEMENTS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_release_yml_stable_build", "to": "forgejo_workflows_release_yml_stable_artifacts", "label": "PRECEDES", "title": "PRECEDES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_release_yml_stable_artifacts", "to": "forgejo_workflows_release_yml_github_release_upload", "label": "PRECEDES", "title": "PRECEDES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "forgejo_workflows_release_yml_stable_artifacts", "to": "forgejo_workflows_release_yml_stable_index_generation", "label": "PRECEDES", "title": "PRECEDES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "CONTRIBUTING.md:single-trunk-model", "to": "CONTRIBUTING.md:feature-branches", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "CONTRIBUTING.md:release-cycle", "to": "CONTRIBUTING.md:beta-track", "label": "IMPLEMENTS", "title": "IMPLEMENTS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "CONTRIBUTING.md:release-cycle", "to": "CONTRIBUTING.md:dev-track", "label": "IMPLEMENTS", "title": "IMPLEMENTS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "CONTRIBUTING.md:release-cycle", "to": "CONTRIBUTING.md:stable-track", "label": "IMPLEMENTS", "title": "IMPLEMENTS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "CONTRIBUTING.md:dev-track", "to": "CONTRIBUTING.md:bakery-integration", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "CONTRIBUTING.md:beta-track", "to": "CONTRIBUTING.md:bakery-integration", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "CONTRIBUTING.md:stable-track", "to": "CONTRIBUTING.md:bakery-integration", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:status-bar", "to": "README.md:GTK4", "label": "REQUIRES", "title": "REQUIRES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:status-bar", "to": "README.md:Hyprland", "label": "REQUIRES", "title": "REQUIRES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:status-bar", "to": "README.md:bluetooth-icon", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:status-bar", "to": "README.md:clock-widget", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:status-bar", "to": "README.md:gtk4-layer-shell", "label": "REQUIRES", "title": "REQUIRES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:status-bar", "to": "README.md:hamburger-button", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:status-bar", "to": "README.md:media-widget", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:status-bar", "to": "README.md:stats-widget", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:status-bar", "to": "README.md:wifi-icon", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:status-bar", "to": "README.md:workspace-buttons", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:control-panel", "to": "README.md:audio-sink-selector", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:control-panel", "to": "README.md:brightness-slider", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:control-panel", "to": "README.md:cpu-gpu-display", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:control-panel", "to": "README.md:power-buttons", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:control-panel", "to": "README.md:sni-tray", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:control-panel", "to": "README.md:volume-slider", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:control-panel", "to": "assets/Bluetooth Settings.svg:settings-gear", "label": "USES", "title": "USES [LIKELY]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "LIKELY"}, {"from": "README.md:notification-daemon", "to": "README.md:dbus", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:wifi-popover", "to": "README.md:wifi-icon", "label": "TRIGGERED_BY", "title": "TRIGGERED_BY [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:media-widget", "to": "assets/Next.svg:skip-forward", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:media-widget", "to": "assets/Pause.svg:pause-icon", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:media-widget", "to": "assets/Play.svg:play-icon", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:stats-widget", "to": "assets/AC Power.svg:ac-power", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:stats-widget", "to": "assets/Battery 1 Bar.svg:battery-low", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:stats-widget", "to": "assets/Battery 2 Bars.svg:battery-medium", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:stats-widget", "to": "assets/Battery 3 Bars.svg:battery-full", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:stats-widget", "to": "assets/Power Draw.svg:power-zap", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:bluetooth-icon", "to": "README.md:blueman-manager", "label": "OPENS", "title": "OPENS [LIKELY]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "LIKELY"}, {"from": "README.md:bluetooth-icon", "to": "assets/Bluetooth Connected.svg:bluetooth-connected", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:bluetooth-icon", "to": "assets/Bluetooth Off.svg:bluetooth-off", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:bluetooth-icon", "to": "assets/Bluetooth.svg:bluetooth-basic", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:brightness-slider", "to": "assets/Brightness.svg:brightness-sun", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:cpu-gpu-display", "to": "assets/CPU.svg:cpu-chip", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:power-buttons", "to": "assets/Lock.svg:lock-padlock", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:theme.rs", "to": "README.md:pywal-integration", "label": "SUPPORTS", "title": "SUPPORTS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:main.rs", "to": "README.md:bar-clock", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:main.rs", "to": "README.md:bar-control", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:main.rs", "to": "README.md:bar-media", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:main.rs", "to": "README.md:bar-stats", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:main.rs", "to": "README.md:bar-tray", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:main.rs", "to": "README.md:bar-wifi", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:main.rs", "to": "README.md:bar-workspaces", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:main.rs", "to": "README.md:notifications-mod", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:main.rs", "to": "README.md:osd", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:main.rs", "to": "README.md:theme.rs", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:bar-workspaces", "to": "README.md:Hyprland", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:bar-stats", "to": "README.md:iw", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:bar-stats", "to": "README.md:pactl", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:bar-stats", "to": "README.md:rfkill", "label": "READS", "title": "READS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:bar-media", "to": "README.md:playerctl", "label": "USES", "title": "USES [LIKELY]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "LIKELY"}, {"from": "README.md:bar-wifi", "to": "README.md:breadcrumbs", "label": "USES", "title": "USES [LIKELY]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "LIKELY"}, {"from": "README.md:bar-control", "to": "README.md:brightnessctl", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:bar-control", "to": "README.md:pactl", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:bar-control", "to": "README.md:wpctl", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:bar-tray", "to": "README.md:dbus", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "README.md:theme.rs", "to": "README.md:bread-theme", "label": "USES", "title": "USES [LIKELY]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "LIKELY"}, {"from": "assets_previous_svg_skip_back_icon", "to": "assets_previous_svg_triangle_shape", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_previous_svg_skip_back_icon", "to": "assets_previous_svg_vertical_line", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_previous_svg_skip_back_icon", "to": "https_lucide_icon_library", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "breadbar:icon-system", "to": "assets_previous_svg_skip_back_icon", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_ram_usage_svg_memory_stick_icon", "to": "assets_ram_usage_svg_memory_chassis", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_ram_usage_svg_memory_stick_icon", "to": "assets_ram_usage_svg_memory_modules", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_ram_usage_svg_memory_stick_icon", "to": "https_lucide_icon_library", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "breadbar:icon-system", "to": "assets_ram_usage_svg_memory_stick_icon", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_restart_svg_rotate_ccw_icon", "to": "assets_restart_svg_circular_arrow", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_restart_svg_rotate_ccw_icon", "to": "assets_restart_svg_corner_arrow", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_restart_svg_rotate_ccw_icon", "to": "https_lucide_icon_library", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "breadbar:icon-system", "to": "assets_restart_svg_rotate_ccw_icon", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_shutdown_svg_power_icon", "to": "assets_shutdown_svg_power_button", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_shutdown_svg_power_icon", "to": "assets_shutdown_svg_power_symbol", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_shutdown_svg_power_icon", "to": "https_lucide_icon_library", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "breadbar:icon-system", "to": "assets_shutdown_svg_power_icon", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_sleep_svg_moon_icon", "to": "assets_sleep_svg_crescent_shape", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_sleep_svg_moon_icon", "to": "https_lucide_icon_library", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "breadbar:icon-system", "to": "assets_sleep_svg_moon_icon", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_volume_svg_volume_2_icon", "to": "assets_volume_svg_sound_waves", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_volume_svg_volume_2_icon", "to": "assets_volume_svg_speaker_cone", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_volume_svg_volume_2_icon", "to": "https_lucide_icon_library", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "breadbar:icon-system", "to": "assets_volume_svg_volume_2_icon", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_connecting_svg_wifi_sync_icon", "to": "assets_wifi_connecting_svg_sync_arrows", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_connecting_svg_wifi_sync_icon", "to": "assets_wifi_connecting_svg_wifi_arcs", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_connecting_svg_wifi_sync_icon", "to": "https_lucide_icon_library", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "breadbar:icon-system", "to": "assets_wifi_connecting_svg_wifi_sync_icon", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_disconnect_svg_wifi_off_icon", "to": "assets_wifi_disconnect_svg_cancel_slash", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_disconnect_svg_wifi_off_icon", "to": "assets_wifi_disconnect_svg_wifi_arcs_disabled", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_disconnect_svg_wifi_off_icon", "to": "https_lucide_icon_library", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "breadbar:icon-system", "to": "assets_wifi_disconnect_svg_wifi_off_icon", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_medium_svg_wifi_high_icon", "to": "assets_wifi_medium_svg_signal_dot", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_medium_svg_wifi_high_icon", "to": "assets_wifi_medium_svg_two_signal_arcs", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_medium_svg_wifi_high_icon", "to": "https_lucide_icon_library", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "breadbar:icon-system", "to": "assets_wifi_medium_svg_wifi_high_icon", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_strong_svg_wifi_icon", "to": "assets_wifi_strong_svg_signal_dot_full", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_strong_svg_wifi_icon", "to": "assets_wifi_strong_svg_three_signal_arcs", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_strong_svg_wifi_icon", "to": "https_lucide_icon_library", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "breadbar:icon-system", "to": "assets_wifi_strong_svg_wifi_icon", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_weak_svg_wifi_low_icon", "to": "assets_wifi_weak_svg_one_signal_arc", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_weak_svg_wifi_low_icon", "to": "assets_wifi_weak_svg_signal_dot_low", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "assets_wifi_weak_svg_wifi_low_icon", "to": "https_lucide_icon_library", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "breadbar:icon-system", "to": "assets_wifi_weak_svg_wifi_low_icon", "label": "CONTAINS", "title": "CONTAINS [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "breadbar:icon-system", "to": "https_lucide_icon_library", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}, {"from": "breadbar:statusbar-ui", "to": "breadbar:icon-system", "label": "USES", "title": "USES [CERTAIN]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "CERTAIN"}];
|
|
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "App", "count": 77}, {"cid": 1, "color": "#F28E2B", "label": "notifications/mod.rs", "count": 49}, {"cid": 2, "color": "#E15759", "label": "Icon System", "count": 35}, {"cid": 3, "color": "#76B7B2", "label": "tray.rs", "count": 29}, {"cid": 4, "color": "#59A14F", "label": "stats.rs", "count": 28}, {"cid": 5, "color": "#EDC948", "label": "GTK4 app entry point and widget tree", "count": 46}, {"cid": 6, "color": "#B07AA1", "label": "history.rs", "count": 40}, {"cid": 7, "color": "#FF9DA7", "label": "screenshot.rs", "count": 19}, {"cid": 8, "color": "#9C755F", "label": "wifi.rs", "count": 18}, {"cid": 9, "color": "#BAB0AC", "label": "client.rs", "count": 16}, {"cid": 10, "color": "#4E79A7", "label": "bluetooth.rs", "count": 14}, {"cid": 11, "color": "#F28E2B", "label": "spawn", "count": 14}, {"cid": 12, "color": "#E15759", "label": "popup.rs", "count": 21}, {"cid": 13, "color": "#76B7B2", "label": "control.rs", "count": 13}, {"cid": 14, "color": "#59A14F", "label": "Control panel popover", "count": 11}, {"cid": 15, "color": "#EDC948", "label": "dev release workflow", "count": 8}, {"cid": 16, "color": "#B07AA1", "label": "AGENTS.md \u2014 Repo hygiene", "count": 6}, {"cid": 17, "color": "#FF9DA7", "label": "workspaces.rs", "count": 34}, {"cid": 18, "color": "#9C755F", "label": "rc release workflow", "count": 6}, {"cid": 19, "color": "#BAB0AC", "label": "bakery package manager integration", "count": 5}, {"cid": 20, "color": "#4E79A7", "label": "clock.rs", "count": 9}, {"cid": 21, "color": "#F28E2B", "label": "media.rs", "count": 7}, {"cid": 22, "color": "#E15759", "label": "Stable artifact preparation", "count": 4}, {"cid": 23, "color": "#76B7B2", "label": "stable release workflow", "count": 3}, {"cid": 24, "color": "#59A14F", "label": "feature/<name> short-lived branches", "count": 2}, {"cid": 25, "color": "#EDC948", "label": "bread-ecosystem release policy integration", "count": 1}, {"cid": 26, "color": "#B07AA1", "label": "fix/<name> short-lived branches", "count": 1}, {"cid": 27, "color": "#FF9DA7", "label": "Dev version auto-computation from latest tag", "count": 1}, {"cid": 28, "color": "#9C755F", "label": "GTK4 development environment", "count": 1}, {"cid": 29, "color": "#BAB0AC", "label": "Rust 1.77+ (LazyLock)", "count": 1}, {"cid": 30, "color": "#4E79A7", "label": "bread-theme palette loading", "count": 1}, {"cid": 31, "color": "#F28E2B", "label": "User CSS override (~/.config/breadbar/style.css)", "count": 1}, {"cid": 32, "color": "#E15759", "label": "Notification popups (top-right stack)", "count": 1}, {"cid": 33, "color": "#76B7B2", "label": "org.freedesktop.Notifications D-Bus service", "count": 1}, {"cid": 34, "color": "#59A14F", "label": "Layer-shell popup window and card stack", "count": 1}, {"cid": 35, "color": "#EDC948", "label": "SIGHUP theme reload", "count": 1}, {"cid": 36, "color": "#B07AA1", "label": "Volume/brightness OSD", "count": 1}, {"cid": 37, "color": "#FF9DA7", "label": "/srv/breadway-dl/dev/ distribution", "count": 1}, {"cid": 38, "color": "#9C755F", "label": "/srv/breadway-dl/beta/ distribution", "count": 1}, {"cid": 39, "color": "#BAB0AC", "label": "/srv/breadway-dl/breadbar/ distribution", "count": 1}, {"cid": 40, "color": "#4E79A7", "label": "bar/mod.rs", "count": 1}, {"cid": 41, "color": "#F28E2B", "label": "widgets/mod.rs", "count": 1}, {"cid": 42, "color": "#E15759", "label": "CLAUDE.md \u2014 Repo hygiene", "count": 5}, {"cid": 43, "color": "#76B7B2", "label": "build.sh", "count": 2}, {"cid": 44, "color": "#59A14F", "label": "theme.rs", "count": 13}, {"cid": 45, "color": "#EDC948", "label": "PanelSet", "count": 15}];
|
|
|
|
// 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)}" data-nid="${esc(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);
|
|
}
|
|
|
|
// Neighbor links use a data attribute + one delegated listener rather than an
|
|
// inline onclick. A node id/label sourced from a document or a scraped URL
|
|
// (graphify add) can contain a double-quote; dropping the stringified id
|
|
// unescaped into a quoted onclick both broke every link and allowed a hostile
|
|
// source to inject an event handler into the local report (stored XSS, #1838).
|
|
// esc() on data-nid keeps the value inside the attribute; the listener reads it
|
|
// back verbatim. Bound to document so it survives the innerHTML rebuild that
|
|
// recreates #neighbors-list on each showInfo().
|
|
document.addEventListener('click', e => {
|
|
const el = e.target.closest('.neighbor-link');
|
|
if (el && el.dataset.nid !== undefined) focusNode(el.dataset.nid);
|
|
});
|
|
|
|
// 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 = [{"label": "Multi-track release system", "nodes": ["forgejo_workflows_dev_release_yml_dev_release_workflow", "forgejo_workflows_rc_release_yml_rc_release_workflow", "forgejo_workflows_release_yml_release_workflow", "CONTRIBUTING.md:dev-track", "CONTRIBUTING.md:beta-track", "CONTRIBUTING.md:stable-track"], "reasoning": "Three parallel CI workflows implement three distribution tracks (dev, beta, stable) documented in CONTRIBUTING.md"}, {"label": "Component-module correspondence", "nodes": ["README.md:status-bar", "README.md:control-panel", "README.md:notification-daemon", "README.md:main.rs", "README.md:bar-workspaces", "README.md:bar-stats", "README.md:bar-media", "README.md:bar-control", "README.md:bar-tray", "README.md:notifications-mod"], "reasoning": "Each major UI component (status bar, control panel, notifications) has a corresponding source module (main.rs, bar-*.rs, notifications-*.rs)"}, {"label": "Dependency polling and caching pattern", "nodes": ["README.md:bar-stats", "README.md:bar-media", "README.md:bar-wifi", "README.md:bar-control"], "reasoning": "Multiple bar modules implement polling loops on 2s or 16s intervals with caching to reduce overhead"}, {"label": "D-Bus service protocol adoption", "nodes": ["README.md:notification-daemon", "README.md:notification-spec", "README.md:bar-tray", "README.md:dbus"], "reasoning": "Breadbar implements two standard D-Bus services: org.freedesktop.Notifications and org.kde.StatusNotifierWatcher"}, {"label": "External tool integration pattern", "nodes": ["README.md:bar-stats", "README.md:bar-media", "README.md:bar-wifi", "README.md:bar-control", "README.md:iw", "README.md:wpctl", "README.md:pactl", "README.md:brightnessctl", "README.md:playerctl", "README.md:breadcrumbs"], "reasoning": "Breadbar delegates to external CLI tools (iw, wpctl, pactl, brightnessctl, playerctl, breadcrumbs) rather than direct kernel/device access"}, {"label": "Theme customization layers", "nodes": ["README.md:theme.rs", "README.md:bread-theme-integration", "README.md:pywal-integration", "README.md:css-override", "README.md:sighup-reload"], "reasoning": "Three-tier theming: bread-theme defaults, pywal auto-loading, user CSS override with SIGHUP reload"}, {"label": "WiFi Signal Strength Variants", "nodes": ["assets_wifi_weak_svg_wifi_low_icon", "assets_wifi_medium_svg_wifi_high_icon", "assets_wifi_strong_svg_wifi_icon", "assets_wifi_connecting_svg_wifi_sync_icon", "assets_wifi_disconnect_svg_wifi_off_icon"], "reasoning": "Five related WiFi icons representing network states and signal strength levels: weak (1 arc), medium (2 arcs), strong (3 arcs), connecting (sync state), and disconnected (off state). These form a coherent visual language for network status indication."}, {"label": "System Control Icons", "nodes": ["assets_shutdown_svg_power_icon", "assets_sleep_svg_moon_icon", "assets_restart_svg_rotate_ccw_icon"], "reasoning": "Three power/system state control icons: shutdown (power symbol), sleep (moon), and restart (circular rotation). Together they represent the primary system control actions available in breadbar."}, {"label": "Status Bar Widget Icons", "nodes": ["assets_previous_svg_skip_back_icon", "assets_volume_svg_volume_2_icon", "assets_ram_usage_svg_memory_stick_icon"], "reasoning": "Three status indicator/widget icons: navigation skip-back, audio volume control, and memory/RAM usage monitoring. These represent interactive and informational status bar elements."}, {"label": "Lucide Icon Integration Pattern", "nodes": ["https_lucide_icon_library", "breadbar:icon-system", "assets_previous_svg_skip_back_icon", "assets_ram_usage_svg_memory_stick_icon", "assets_restart_svg_rotate_ccw_icon", "assets_shutdown_svg_power_icon", "assets_sleep_svg_moon_icon", "assets_volume_svg_volume_2_icon", "assets_wifi_connecting_svg_wifi_sync_icon", "assets_wifi_disconnect_svg_wifi_off_icon", "assets_wifi_medium_svg_wifi_high_icon", "assets_wifi_strong_svg_wifi_icon", "assets_wifi_weak_svg_wifi_low_icon"], "reasoning": "All 11 SVG icons in breadbar's assets follow the Lucide icon library pattern with consistent stroke-based design, 24x24 viewBox, and CSS class naming. This creates a unified visual design language across all status bar indicators."}, {"label": "SVG Vector Graphics Elements", "nodes": ["assets_previous_svg_triangle_shape", "assets_previous_svg_vertical_line", "assets_ram_usage_svg_memory_modules", "assets_ram_usage_svg_memory_chassis", "assets_restart_svg_circular_arrow", "assets_restart_svg_corner_arrow", "assets_shutdown_svg_power_button", "assets_shutdown_svg_power_symbol", "assets_sleep_svg_crescent_shape", "assets_volume_svg_speaker_cone", "assets_volume_svg_sound_waves", "assets_wifi_connecting_svg_wifi_arcs", "assets_wifi_connecting_svg_sync_arrows", "assets_wifi_disconnect_svg_wifi_arcs_disabled", "assets_wifi_disconnect_svg_cancel_slash", "assets_wifi_medium_svg_signal_dot", "assets_wifi_medium_svg_two_signal_arcs", "assets_wifi_strong_svg_signal_dot_full", "assets_wifi_strong_svg_three_signal_arcs", "assets_wifi_weak_svg_signal_dot_low", "assets_wifi_weak_svg_one_signal_arc"], "reasoning": "All icon designs are composed of basic SVG vector elements (paths, polygons, lines, rectangles) with stroke-based rendering. These primitives are combined to create recognizable iconography for status bar UI."}];
|
|
// 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> |